/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
}

body {
    background: #011e24;
    color: #E8ECFF;
}

/* ================= container ================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= HEADER ================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    /* border-bottom: 1px solid rgb(0 153 193 / 42%); */
    /* box-shadow: inset -15px -14px 20px 0px rgba(0, 145, 205, .25); */
    background: #01121c;
    box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 38%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    color: #fff;
}

/* Logo */
.logo {
    font-size: 20px;
    font-weight: 600;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 38px;
    width: auto;
}

.logo span {
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

/* Nav */
.nav-menu {
    display: flex;
    gap: 34px;
}

.nav-menu a {
    text-decoration: none;
    color: #70e9fe;
    transition: .3s;
    font-size: 14px;
    text-transform: uppercase;
}

.nav-menu a:hover {
    color: #fff;
}

/* CTA */
.header-actions button {
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(90deg, #b66105, #fab40d);
    color: #fff;
    font-size: 14px;
    transition: .3s;
}

.header-actions button:hover {
    transform: translateY(-2px);
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
    background: #070914;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
}

.mobile-menu button {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #b66105, #fab40d);
    color: #fff;
}

/* Responsive */
@media(max-width:900px) {

    .nav-menu,
    .header-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu.active {
        display: flex;
    }
}

/* ================= HERO ================= */
.hero {
    padding: 60px 0 0;
    position: relative;
    background: linear-gradient(329deg, #4e3713, #000000);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}

/* .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 40px;
} */

/* left */
.tag {
    background: rgba(124, 140, 255, .15);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    opacity: .8;
    margin-bottom: 25px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.primary {
    background: linear-gradient(90deg, #b66105, #fab40d);
    border: none;
    padding: 14px 22px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
}

.ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 22px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
}

.legal {
    opacity: .6;
    font-size: 12px;
}

/* RIGHT IMAGE */
.hero-right {
    display: flex;
    justify-content: flex-end;
}

.hero-img {
    width: 100%;
    max-width: 560px;
    animation: heroFloat 6s ease-in-out infinite;
    margin-bottom: -20px;
}

/* subtle float */
@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

/* MOBILE */
@media(max-width:992px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-right {
        justify-content: center;
        margin-top: 40px;
    }
}

/* RESPONSIVE */
@media(max-width:900px) {

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 34px;
    }

    .rapid-menu {
        display: none;
    }
}

/* ================= TRUST SECTION PRO ================= */

.trust {
    padding: 140px 0;
    background: linear-gradient(180deg, #000000 0%, #00273052 100%);
    position: relative;
    overflow: hidden;
}

.trust-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* LEFT SIDE */
.trust-left span {
    color: #6fe8fd;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.trust-left h2 {
    font-size: 36px;
    margin: 20px 0;
    line-height: 1.3;
}

.trust-left p {
    opacity: .7;
    line-height: 1.7;
}

/* RIGHT SIDE CARDS */
.trust-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* stagger effect */
.trust-card:nth-child(2) {
    margin-top: 40px;
}

.trust-card:nth-child(4) {
    margin-top: 40px;
}

.trust-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px;
    border-radius: 20px;
    transition: .4s ease;
}

.trust-card:hover {
    transform: translateY(-10px);
    border-color: #6fe8fd;
    box-shadow: 0 30px 70px rgba(0, 145, 205, .2);
}

.trust-card i {
    font-size: 22px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0c91cd, #6fe8fd);
    color: #0c1224;
    margin-bottom: 18px;
}

.trust-card h4 {
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 14px;
    opacity: .7;
}

/* Responsive */
@media(max-width:1000px) {
    .trust-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .trust-cards {
        grid-template-columns: 1fr;
    }

    .trust-card:nth-child(2),
    .trust-card:nth-child(4) {
        margin-top: 0;
    }
}

/* ========== Reveal Animation ========== */

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: 1s cubic-bezier(.16, 1, .3, 1);
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* stagger delay */
.trust-card:nth-child(1) {
    transition-delay: .1s;
}

.trust-card:nth-child(2) {
    transition-delay: .2s;
}

.trust-card:nth-child(3) {
    transition-delay: .3s;
}

.trust-card:nth-child(4) {
    transition-delay: .4s;
}


/* ========== Animated Background Glow ========== */

.trust::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(111, 232, 253, .15), transparent 70%);
    top: -200px;
    left: -200px;
    animation: floatBg 12s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes floatBg {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(80px, 50px);
    }
}


/* ========== Card Hover Light Sweep ========== */

.trust-card {
    position: relative;
    overflow: hidden;
    transition: .5s cubic-bezier(.16, 1, .3, 1);
    transform-style: preserve-3d;
}

.trust-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .15),
            transparent);
    transition: .8s;
}

.trust-card:hover::after {
    left: 100%;
}

.trust-card:hover {
    transform: translateY(-15px) rotateX(4deg) rotateY(-4deg);
    box-shadow: 0 40px 90px rgba(0, 145, 205, .25);
}


/* Icon micro interaction */
.trust-card i {
    transition: .4s;
}

.trust-card:hover i {
    transform: scale(1.2) rotate(8deg);
    box-shadow: 0 0 30px rgba(111, 232, 253, .6);
}

/* ================= PRODUCTS ================= */
.products {
    position: relative;
    padding: 160px 0;
    background: linear-gradient(180deg, #01151a 0%, #021c28 100%);
    overflow: hidden;
}

/* animated gradient mesh background */
.products-bg {
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(12, 145, 205, .15), transparent 70%);
    top: -250px;
    right: -250px;
    animation: meshMove 18s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes meshMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-120px, 80px);
    }
}

.products-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 100px;
    align-items: center;
}

/* LEFT */
.products-tag {
    color: #6fe8fd;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.products-left h2 {
    font-size: 42px;
    margin: 20px 0;
    line-height: 1.2;
}

.products-left p {
    opacity: .7;
    margin-bottom: 50px;
}

/* GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    perspective: 1200px;
}

/* CARD */
.product-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px;
    border-radius: 24px;
    transform-style: preserve-3d;
    transition: .5s cubic-bezier(.16, 1, .3, 1);
    overflow: hidden;
}

.product-card span {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 60px;
    font-weight: 700;
    color: rgba(111, 232, 253, 0.07);
    transition: .6s;
}

.product-card:hover {
    transform: rotateX(6deg) rotateY(-6deg) translateY(-12px);
    box-shadow: 0 40px 80px rgba(0, 145, 205, .25);
    border-color: #6fe8fd;
}

.product-card:hover span {
    color: rgba(111, 232, 253, .2);
    transform: scale(1.1);
}

/* RIGHT IMAGE */
.products-visual {
    display: flex;
    justify-content: center;
}

.products-visual img {
    width: 500px;
    margin-top: 100px;
    animation: floatVisual 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, .5));
}

@keyframes floatVisual {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-25px);
    }
}

/* responsive */
@media(max-width:1000px) {
    .products-wrapper {
        grid-template-columns: 1fr;
    }

    .products-visual {
        /* margin-top: 60px; */
    }
}

/* ================= MODAL STYLING ================= */
.loan-modal {
    background: #0b0e1c;
    color: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.loan-modal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.loan-modal .modal-title {
    font-size: 20px;
}

/* FORM */
.loan-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-section h6 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    opacity: .7;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.loan-form input,
.loan-form select {
    flex: 1;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 10px;
}

.loan-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.loan-form select {
    appearance: none;
}

/* FIX SELECT DROPDOWN TEXT VISIBILITY */
.loan-form select {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

/* Dropdown options */
.loan-form select option {
    color: #000;
    /* text visible */
    background: #fff;
    /* dropdown panel white */
}

.loan-form select option {
    background: #0b0e1c;
    color: #fff;
}

.checkbox {
    font-size: 13px;
    opacity: .7;
}

.checkbox input {
    margin-right: 8px;
}

.submit-btn {
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(90deg, #b66105, #fab40d);
    color: #fff;
    font-size: 15px;
    transition: .3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* Mobile */
@media(max-width:768px) {
    .form-row {
        flex-direction: column;
    }
}

/* LEGAL PANEL */
.legal-panel {
    padding: 100px 0;
    background: linear-gradient(329deg, #4e3713, #000000);
}

/* frame */
.legal-frame {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    background: rgba(255, 255, 255, 0.02);
}

/* LEFT */
.legal-main .eyebrow {
    font-size: 12px;
    letter-spacing: 1px;
    color: #8a8fa3;
}

.legal-main h2 {
    font-size: 40px;
    line-height: 1.4;
    margin: 16px 0;
}

.legal-main p {
    opacity: .75;
    max-width: 520px;
}

/* RIGHT */
.legal-proof {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.proof-row {
    display: flex;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-row span {
    font-size: 16px;
    color: #6fe8fd;
    min-width: 28px;
    font-weight: 600;
}

.proof-row h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.proof-row p {
    opacity: .7;
    font-size: 14px;
}

/* mobile */
@media(max-width:900px) {
    .legal-frame {
        grid-template-columns: 1fr;
        padding: 40px 28px;
    }
}

/* ============================= */
/* LOAN PRODUCTS       */
/* ============================= */

.loan-products-pro {
    padding: 100px 0;
    background: linear-gradient(329deg, #4e3713, #000000);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

/* subtle background glow */
.loan-products-pro::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(12, 145, 205, .15), transparent 70%);
    top: -200px;
    right: -200px;
    animation: floatGlow 3s ease-in-out infinite alternate;
}

@keyframes floatGlow {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-100px, 80px);
    }
}

/* HEADER */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 90px;
}

.section-header span {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #9ca3af;
}

.section-header h2 {
    margin-top: 15px;
    line-height: 1.2;
}

.section-header p {
    opacity: .75;
    margin-top: 18px;
    font-size: 17px;
}

/* gradient heading text */
.gradient-text {
    background: linear-gradient(174deg, #ff9c00, #1ab8e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* CARD */
.pro-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all .5s cubic-bezier(.16, 1, .3, 1);
    position: relative;
    overflow: hidden;
}

/* hover lift */
.pro-card:hover {
    transform: translateY(-18px);
    box-shadow: 0 50px 100px rgba(12, 145, 205, .25);
}

/* icon styling */
.pro-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0c91cd, #6fe8fd);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 26px;
    color: #fff;
    animation: floatIcon 4s ease-in-out infinite alternate;
}

@keyframes floatIcon {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-8px);
    }
}

/* text */
.pro-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.pro-card p {
    font-size: 15px;
    opacity: .75;
    line-height: 1.6;
}

/* CTA reveal */
.pro-card a {
    display: inline-block;
    margin-top: 22px;
    opacity: 0;
    transform: translateY(10px);
    transition: .4s ease;
    color: #6fe8fd;
    text-decoration: none;
    font-weight: 500;
}

.pro-card:hover a {
    opacity: 1;
    transform: translateY(0);
}

/* FEATURED CARD */
.featured {
    background: linear-gradient(135deg, rgba(12, 145, 205, .25), rgba(111, 232, 253, .1));
    transform: scale(1.05);
    border: 1px solid rgba(12, 145, 205, .4);
}

/* RESPONSIVE */
@media(max-width:900px) {
    .loan-products-pro {
        padding: 120px 20px;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .pro-card {
        padding: 35px;
    }
}

/* ================= LEGAL SECTION ================= */
.legal-section {
    padding: 100px 0;
    /* background: #070914; */
    color: #fff;
    font-family: 'Inter', sans-serif;
}

/* Header */
.legal-header {
    max-width: 720px;
    margin: 0 auto 70px auto;
    text-align: center;
}

.legal-header span {
    font-size: 12px;
    letter-spacing: 1.2px;
    color: #9aa0b5;
    text-transform: uppercase;
}

.legal-header h2 {
    font-size: 38px;
    margin-top: 10px;
    line-height: 1.3;
}

.legal-header p {
    opacity: .7;
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.6;
}

/* Legal list */
.legal-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.legal-item {
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-item h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.legal-item p {
    opacity: .7;
    font-size: 15px;
    line-height: 1.6;
}

/* Links */
.legal-links {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.legal-links a {
    font-size: 14px;
    color: #70e9fe;
    text-decoration: none;
    transition: .3s;
}

.legal-links a:hover {
    color: #fff;
}

/* Mobile */
@media(max-width:900px) {
    .legal-section {
        padding: 100px 20px
    }

    .legal-header h2 {
        font-size: 30px
    }
}

/* ================= FOOTER ================= */
.site-footer {
    background: #05070f;
    color: #ffffff;
    padding: 60px 0 60px 0;
    font-family: 'Inter', sans-serif;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 22px;
    margin-bottom: 12px;
}

.footer-description {
    font-size: 14px;
    opacity: .7;
    line-height: 1.6;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 15px;
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    transition: .3s;
}

.footer-col ul li a:hover {
    color: #70e9fe;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin-bottom: 40px;
}

.footer-bottom {
    font-size: 13px;
    opacity: .6;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Company column */

.footer-company img {
    width: 200px;
    margin-bottom: 10px;
}

/* contact info */

.footer-contact {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.7;
    opacity: .75;
}

.footer-contact a {
    text-decoration: none;
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    transition: .3s;
}

.footer-contact a:hover {
    color: #70e9fe;
}

.footer-address {
    margin-bottom: 6px;
}

.footer-email {
    color: #70e9fe;
}

/* Responsive */
@media(max-width:900px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ================= LEGAL PAGES ================= */

.legalpage-header {
    padding: 120px 0 80px;
    background: linear-gradient(329deg, #4e3713, #000000);
    text-align: center;
    color: #fff;
}

.legalpage-header h1 {
    font-size: 46px;
    margin-bottom: 15px;
}

.legalpage-header p {
    opacity: .8;
    font-size: 16px;
}

.legalpage-content {
    padding: 80px 0;
    background: linear-gradient(178deg, #01151a 0%, #003e506e 100%);
    color: #fff;
}

.legalpage-content h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 20px;
}

.legalpage-content p,
.legalpage-content li {
    opacity: .8;
    line-height: 1.8;
    font-size: 15px;
}

.legalpage-content ul {
    padding-left: 20px;
}

.legalpage-footer {
    padding: 30px 0;
    text-align: center;
    background: #0b0e1c;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 14px;
    opacity: .6;
}

/* ============================= */
/* CONTACT HERO */
/* ============================= */

.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(329deg, #4e3713, #000000);
    text-align: center;
    color: #fff;
}

.contact-hero h1 {
    font-size: 46px;
    margin-bottom: 15px;
}

.contact-hero p {
    opacity: .8;
    font-size: 16px;
}

/* ============================= */
/* CONTACT SECTION */
/* ============================= */

.contact-modern {
    padding: 100px 0;
    background: #020b10;
    color: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* LEFT SIDE */

.contact-left h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-left p {
    opacity: .75;
    margin-bottom: 40px;
    line-height: 1.6;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    transition: .4s ease;
}

.info-box:hover {
    background: rgba(12, 145, 205, .15);
    transform: translateX(8px);
}

.info-box i {
    font-size: 20px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0c91cd, #6fe8fd);
    border-radius: 12px;
}

/* RIGHT SIDE FORM */

.contact-right {
    padding: 60px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-right h2 {
    margin-bottom: 35px;
}

/* Floating Label */

.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 14px 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.input-group label {
    position: absolute;
    left: 12px;
    top: 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    pointer-events: none;
    transition: .3s ease;
}

.input-group input:focus+label,
.input-group input:not(:placeholder-shown)+label,
.input-group textarea:focus+label,
.input-group textarea:not(:placeholder-shown)+label,
.input-group select:focus+label {
    top: -10px;
    left: 8px;
    font-size: 11px;
    background: #020b10;
    padding: 0 6px;
    color: #6fe8fd;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    border-color: #6fe8fd;
}

.contact-right select option {
    background: #0b0e1c;
    color: #fff;
}

/* BUTTON */

.contact-btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(90deg, #0c91cd, #6fe8fd);
    color: #000;
    transition: .4s ease;
}

.contact-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(12, 145, 205, .4);
}

/* RESPONSIVE */

@media(max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-right {
        padding: 40px;
    }

    .contact-hero h1 {
        font-size: 32px;
    }
}