* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0d0f12;
    --secondary: #15181d;
    --silver: #c6c9ce;
    --silver-dark: #8d939b;
    --white: #ffffff;
    --light: #f5f7fa;
    --border: #e5e7eb;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #111827;
    overflow-x: hidden;
}

    body.menu-open {
        overflow: hidden;
    }

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1450px;
    margin: auto;
}

/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 28px 0;
    transition: 0.4s ease;
}

    .navbar.scrolled {
        background: rgba(8, 10, 12, 0.92);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 20px 0;
    }

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 280px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

    .nav-links a {
        color: #f9fafb;
        font-size: 15px;
        font-weight: 500;
        transition: 0.3s ease;
    }

        .nav-links a:hover {
            color: var(--silver);
        }

.nav-btn {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px 30px;
    border-radius: 100px;
}

    .nav-btn:hover {
        background: rgba(255, 255, 255, 0.08);
    }

.nav-links a.active {
    color: #ffffff;
    position: relative;
}

    .nav-links a.active::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 100%;
        height: 1px;
        background: var(--silver);
    }

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    background: transparent;
    border: none;
    width: 32px;
    height: 24px;
    position: relative;
    transition: all 0.3s ease;
}

    .hamburger span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: #ffffff;
        border-radius: 4px;
        opacity: 1;
        left: 0;
        transition: 0.25s ease-in-out;
    }

        .hamburger span:nth-child(1) {
            top: 0px;
        }

        .hamburger span:nth-child(2) {
            top: 10px;
        }

        .hamburger span:nth-child(3) {
            top: 20px;
        }

    .hamburger.active span:nth-child(1) {
        top: 10px;
        transform: rotate(135deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        left: -20px;
    }

    .hamburger.active span:nth-child(3) {
        top: 10px;
        transform: rotate(-135deg);
    }

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: rgba(13, 15, 18, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    padding: 120px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

    .mobile-menu.open {
        right: 0;
    }

    .mobile-menu a {
        color: #f9fafb;
        font-size: 24px;
        font-weight: 500;
        transition: 0.2s;
        font-family: 'Albra Sans TRIAL', sans-serif;
        letter-spacing: -0.3px;
    }

        .mobile-menu a:hover {
            color: var(--silver);
            transform: translateX(6px);
        }

    .mobile-menu .mobile-nav-btn {
        margin-top: 20px;
        display: inline-block;
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 14px 28px;
        border-radius: 100px;
        text-align: center;
        font-size: 28px;
        width: fit-content;
    }

        .mobile-menu .mobile-nav-btn:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(0);
        }

/* Close button inside mobile menu */
.menu-close {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: transparent;
    border: none;
}

    .menu-close::before,
    .menu-close::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 2px;
        background: #ffffff;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .menu-close::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

/* HERO */

.contact-hero {
    position: relative;
    padding: 132px 0 160px;
    background: radial-gradient(circle at top right, rgba(198, 201, 206, 0.12), transparent 35%), linear-gradient(to bottom, #0a0c0f, #12161c);
    overflow: hidden;
}

    .contact-hero::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(198, 201, 206, 0.08), transparent 70%);
        top: -280px;
        right: -220px;
    }

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 30px;
}

    .hero-tag::before {
        content: '';
        width: 45px;
        height: 1px;
        background: rgba(255, 255, 255, 0.4);
    }

.contact-hero h1 {
    font-family: 'Albra Sans TRIAL', sans-serif;
    font-size: 88px;
    line-height: 0.92;
    letter-spacing: -3px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    margin-bottom: 32px;
    max-width: 900px;
}

.contact-hero p {
    color: #d1d5db;
    font-size: 20px;
    line-height: 2;
    max-width: 760px;
    font-weight: 300;
}

/* SECTION */

.section {
    padding: 140px 0;
}

.section-tag {
    color: var(--silver-dark);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 18px;
    font-weight: 600;
}

.section-title {
    font-family: 'Albra Sans TRIAL', sans-serif;
    font-size: 68px;
    line-height: 1;
    letter-spacing: -1.5px;
    color: #0f172a;
    font-weight: 400;
    max-width: 900px;
    margin-bottom: 35px;
}

.section-text {
    color: #4b5563;
    line-height: 2;
    font-size: 18px;
}

/* CONTACT LAYOUT */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: start;
}

/* LEFT INFO */

.contact-info-card {
    background: #0f1115;
    border-radius: 38px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

    .contact-info-card::before {
        content: '';
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(198, 201, 206, 0.10), transparent 70%);
        top: -180px;
        right: -140px;
    }

.contact-info-content {
    position: relative;
    z-index: 2;
}

.contact-info-card h3 {
    font-family: 'Albra Sans TRIAL', sans-serif;
    font-size: 52px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 28px;
    font-weight: 400;
}

.contact-info-card p {
    color: #d1d5db;
    line-height: 2;
    font-size: 17px;
    margin-bottom: 45px;
}

.contact-detail {
    margin-bottom: 35px;
}

    .contact-detail span {
        display: block;
        color: var(--silver);
        font-size: 12px;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 14px;
        font-weight: 600;
    }

    .contact-detail a,
    .contact-detail div {
        color: #ffffff;
        font-size: 18px;
        line-height: 1.8;
    }

/* FORM */

.contact-form-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 38px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.05);
}

    .contact-form-card h3 {
        font-family: 'Albra Sans TRIAL', sans-serif;
        font-size: 52px;
        line-height: 1;
        color: #111827;
        margin-bottom: 25px;
        font-weight: 400;
    }

    .contact-form-card p {
        color: #4b5563;
        line-height: 2;
        margin-bottom: 40px;
        font-size: 17px;
    }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    padding: 18px 22px;
    border-radius: 18px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: 0.3s ease;
    color: #111827;
}

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        outline: none;
        border-color: #c6c9ce;
        background: #ffffff;
        box-shadow: 0 0 0 4px rgba(198, 201, 206, 0.18);
    }

.form-group textarea {
    min-height: 170px;
    resize: vertical;
}

.submit-btn {
    background: #111214;
    color: #ffffff;
    border: none;
    padding: 20px 38px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.45s ease;
    font-family: 'Inter', sans-serif;
}

    .submit-btn:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgba(17, 18, 20, 0.18);
    }

/* OFFICE SECTION */

.office-section {
    background: #f5f7fa;
}

.office-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 70px;
}

.office-card {
    background: #ffffff;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: 0.45s ease;
}

    .office-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
    }

    .office-card img {
        width: 100%;
        height: 320px;
        object-fit: cover;
    }

.office-content {
    padding: 45px;
}

    .office-content h4 {
        font-family: 'Albra Sans TRIAL', sans-serif;
        font-size: 38px;
        line-height: 1;
        margin-bottom: 20px;
        font-weight: 400;
        color: #111827;
    }

    .office-content p {
        color: #4b5563;
        line-height: 2;
        font-size: 16px;
    }

/* FOOTER */

footer {
    background: #0a0b0d;
    padding: 90px 0 60px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-logo-col {
    flex: 1;
    min-width: 180px;
}

    .footer-logo-col img {
        width: 290px;
    }

.footer-desc-col {
    flex: 2;
    max-width: 500px;
}

    .footer-desc-col p {
        color: #9ca3af;
        line-height: 1.7;
        font-size: 15px;
        margin: 0;
    }

.footer-info-col {
    flex: 1;
    min-width: 200px;
    text-align: right;
}

.footer-info {
    color: #d1d5db;
    line-height: 2.2;
    font-size: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 10px;
    padding-top: 30px;
    color: #6b7280;
    font-size: 14px;
    text-align: center;
}

/* RESPONSIVE */

@media (max-width:1200px) {

    .contact-grid,
    .office-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 72px;
    }

    .section-title {
        font-size: 56px;
    }
}

@media (max-width:991px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .contact-hero {
        padding: 190px 0 100px;
    }

        .contact-hero h1 {
            font-size: 58px;
        }

    .contact-hero-content {
        padding-top: 20px;
    }

    .section-title {
        font-size: 48px;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 45px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    /* Footer stacking */
    .footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 48px;
    }

    .footer-logo-col,
    .footer-desc-col,
    .footer-info-col {
        flex: auto;
        width: 100%;
        text-align: center;
        max-width: 100%;
    }

    .footer-info-col {
        text-align: center;
    }

    .footer-logo-col img {
        margin: 0 auto;
    }
}

@media (max-width:600px) {
    .logo img {
        width: 220px;
    }

    .contact-hero {
        padding: 80px 0 80px;
    }

        .contact-hero h1 {
            font-size: 44px;
        }

        .contact-hero p {
            font-size: 17px;
        }

    .contact-hero-content {
        padding-top: 30px;
    }

    .section {
        padding: 90px 0;
    }

    .section-title {
        font-size: 40px;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 38px 25px;
    }

        .contact-info-card h3,
        .contact-form-card h3 {
            font-size: 38px;
        }

    .office-content {
        padding: 35px 28px;
    }

        .office-content h4 {
            font-size: 32px;
        }

    .mobile-menu {
        max-width: 100%;
        padding: 100px 32px 40px;
    }

        .mobile-menu a {
            font-size: 28px;
        }
}


/* ─── HERO ───────────────────────────────────────────── */
.contact-hero {
    padding: 200px 0 160px;
}

.contact-hero-content {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
}

.contact-hero-left h1 {
    font-family: 'Albra Sans TRIAL', sans-serif;
    font-size: 88px;
    line-height: 0.9;
    letter-spacing: -4px;
    color: rgba(255,255,255,0.92);
    font-weight: 400;
    margin: 0;
}

.contact-hero-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 8px;
}

.hero-tag {
    margin-bottom: 0;
}

.contact-hero-right p {
    color: rgba(209,213,219,0.7);
    font-size: 18px;
    line-height: 2;
    font-weight: 300;
    margin: 0;
}

/* ─── CONTACT SECTION ────────────────────────────────── */

.contact-section {
    background: #ffffff;
    padding: 140px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 50px;
    align-items: start;
}

/* ─── INFO PANEL ─────────────────────────────────────── */

.contact-side {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-radius: 32px;
    overflow: hidden;
    position: sticky;
    top: 110px;
}

.contact-side-top {
    background: #0b0d10;
    padding: 60px 52px;
}

.contact-side-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
    color: rgba(198,201,206,0.4);
    margin-bottom: 28px;
}

.contact-side-top h3 {
    font-family: 'Albra Sans TRIAL', sans-serif;
    font-size: 38px;
    line-height: 1.05;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: -0.5px;
    margin-bottom: 22px;
}

.contact-side-top > p {
    color: rgba(209,213,219,0.5);
    font-size: 15px;
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 44px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-detail-item {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

    .contact-detail-item:first-child {
        border-top: none;
    }

.contact-detail-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
    color: rgba(198,201,206,0.35);
    margin-bottom: 8px;
}

.contact-detail-value {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 300;
}

    .contact-detail-value a {
        color: rgba(255,255,255,0.75);
        transition: color 0.25s ease;
    }

        .contact-detail-value a:hover {
            color: #ffffff;
        }

.contact-side-bottom {
    background: #f5f7fa;
    padding: 44px 52px;
    border-top: 1px solid #e5e7eb;
}

    .contact-side-bottom h4 {
        font-family: 'Albra Sans TRIAL', sans-serif;
        font-size: 22px;
        color: #111827;
        font-weight: 400;
        letter-spacing: -0.3px;
        margin-bottom: 14px;
    }

    .contact-side-bottom p {
        color: #9ca3af;
        font-size: 14px;
        line-height: 1.8;
        font-weight: 300;
    }

/* ─── FORM CARD ──────────────────────────────────────── */

.contact-form-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 32px;
    padding: 70px;
    box-shadow: 0 20px 60px rgba(15,23,42,0.04);
}

.form-heading-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 52px;
    padding-bottom: 52px;
    border-bottom: 1px solid #f3f4f6;
}

    .form-heading-row h3 {
        font-family: 'Albra Sans TRIAL', sans-serif;
        font-size: 48px;
        line-height: 1.0;
        color: #111827;
        font-weight: 400;
        letter-spacing: -1px;
    }

    .form-heading-row p {
        color: #9ca3af;
        font-size: 15px;
        line-height: 1.9;
        font-weight: 300;
        max-width: 220px;
        padding-top: 6px;
        flex-shrink: 0;
    }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #9ca3af;
    margin-bottom: 12px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid #e5e7eb;
    background: #fafafa;
    padding: 17px 20px;
    border-radius: 14px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: 0.3s ease;
    color: #111827;
    outline: none;
    appearance: none;
}

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #c1c5cc;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        border-color: #b7bcc4;
        background: #ffffff;
        box-shadow: 0 0 0 3px rgba(198,201,206,0.15);
    }

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-footer {
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.form-footer-note {
    color: #9ca3af;
    font-size: 13px;
    line-height: 1.7;
    font-weight: 300;
    max-width: 340px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0f1115;
    color: #ffffff;
    border: none;
    padding: 20px 40px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.35s ease;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
}

    .submit-btn::after {
        content:;
        font-size: 16px;
    }

    .submit-btn:hover {
        transform: translateY(-4px);
        background: #181c22;
        box-shadow: 0 16px 40px rgba(15,23,42,0.18);
    }

/* ─── ENVIRONMENT SECTION ────────────────────────────── */

.environment-section {
    background: #f5f7fa;
    padding: 140px 0;
}

.env-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e5e7eb;
}

    .env-head h2 {
        font-family: 'Albra Sans TRIAL', sans-serif;
        font-size: 64px;
        line-height: 1.0;
        letter-spacing: -2px;
        color: #0f172a;
        font-weight: 400;
    }

.env-head-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: flex-end;
}

.env-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    color: #9ca3af;
}

.env-head p {
    color: #6b7280;
    font-size: 17px;
    line-height: 1.9;
    font-weight: 300;
}

/* Full-bleed image pair */
.env-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.env-image-card {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

    .env-image-card img {
        width: 100%;
        height: 460px;
        object-fit: cover;
        display: block;
        transition: transform 0.9s ease;
    }

    .env-image-card:hover img {
        transform: scale(1.04);
    }

.env-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 40px 36px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

    .env-image-caption h4 {
        font-family: 'Albra Sans TRIAL', sans-serif;
        font-size: 28px;
        color: #ffffff;
        font-weight: 400;
        letter-spacing: -0.3px;
        margin-bottom: 8px;
    }

    .env-image-caption p {
        color: rgba(255,255,255,0.65);
        font-size: 14px;
        line-height: 1.7;
        font-weight: 300;
    }

/* ─── RESPONSIVE ─────────────────────────────────────── */

@media (max-width: 1200px) {
    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-hero-left h1 {
        font-size: 72px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-side {
        position: relative;
        top: 0;
    }

    .env-head {
        grid-template-columns: 1fr;
        gap: 30px;
    }

        .env-head h2 {
            font-size: 48px;
        }
}

@media (max-width: 800px) {
    .form-heading-row {
        flex-direction: column;
        gap: 16px;
    }

        .form-heading-row p {
            max-width: 100%;
        }

        .form-heading-row h3 {
            font-size: 36px;
        }

    .form-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-form-card {
        padding: 44px 36px;
    }

    .env-images {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .contact-hero-left h1 {
        font-size: 52px;
        letter-spacing: -2px;
    }

    .contact-hero {
        padding: 150px 0 100px;
    }

    .contact-section {
        padding: 90px 0;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }

    .environment-section {
        padding: 90px 0;
    }

    .env-head h2 {
        font-size: 36px;
    }

    .env-image-card img {
        height: 320px;
    }

    .contact-side-top {
        padding: 44px 36px;
    }

    .contact-side-bottom {
        padding: 36px;
    }
}

/* ─── FOOTER (extended) ──────────────────────────────── */
.footer-grid {
    grid-template-columns: 180px 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* ─── NEW: footer nav links row (4 columns) ──────────── */
.footer-nav-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 20px 0 20px;
    text-align: center;
}

    .footer-nav-row a {
        color: rgba(209, 213, 219, 0.6);
        font-size: 14px;
        font-weight: 400;
        text-decoration: none;
        transition: color 0.3s ease, transform 0.2s ease;
        letter-spacing: 0.3px;
        display: inline-block;
    }

        .footer-nav-row a:hover {
            color: #ffffff;
            transform: translateY(-2px);
        }   
