@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --brand-blue: #2e3d8b;
    --brand-green: #2ba81f;
    --brand-dark: #1a1a1a;
    --brand-charcoal: #2d2d2d;
    --brand-silver: #8a8a8a;
    --brand-light: #f4f3f0;
    --brand-white: #ffffff;
    --brand-accent: #40aae8;
    --text-primary: #1a1a1a;
    --text-secondary: #5a5a5a;
    --border-light: rgba(0, 0, 0, 0.08);
    --section-gap: 80px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--brand-white);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 15px;
}

.text-sm {
    font-size: 14px;
    line-height: 1.6;
}

/* ── NAV ── */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 60px; /* Note: We will remove this fixed height on mobile */
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-badge {
    background: var(--brand-green);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 4px 10px;
    text-transform: uppercase;
    text-decoration: none; /* Removes the underline */
}

.nav-logo-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
}

.nav-logo-text strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

/* New Wrapper for Desktop Layout */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0; /* Ensure no default browser margins break the layout */
    padding: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.15s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: opacity 0.15s;
    border-radius: 4px; /* Optional: Softens the buttons slightly */
}

.btn-whatsapp:hover {
    opacity: 0.9;
}

.btn-call {
    background: var(--brand-blue);
    color: #fff;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: opacity 0.15s;
    border-radius: 4px; /* Optional */
}

.btn-call:hover {
    opacity: 0.9;
}

/* ── HAMBURGER BUTTON (Hidden on Desktop) ── */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 101; /* Keep above the dropdown */
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ── HERO ── */
.hero {
    background: var(--brand-dark);
    min-height: 540px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}
.hero-left {
    padding: 72px 48px 72px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.hero-geo-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(57, 192, 39, 0.15);
    border: 1px solid rgba(54, 192, 39, 0.3);
    color: #71f885;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    margin-bottom: 24px;
    width: fit-content;
}
.hero-geo-dot {
    width: 6px;
    height: 6px;
    background: #71f88e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}
.hero-h1 {
    font-family: "Poppins", sans-serif;
    font-size: 50px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}
.hero-h1 span {
    color: var(--brand-green);
    display: block;
}
.hero-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
    margin-bottom: 32px;
    max-width: 380px;
    line-height: 1.7;
}
.hero-sub strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}
.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.btn-primary {
    background: var(--brand-blue);
    color: #fff;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.15s;
    cursor: pointer;
    border: none;
}
.btn-primary:hover {
    background: #20287e;
}
.btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition:
        border-color 0.15s,
        color 0.15s;
    cursor: pointer;
}
.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}
.hero-trust {
    display: flex;
    gap: 24px;
}
.hero-trust-item {
    text-align: left;
}
.hero-trust-item .num {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.hero-trust-item .label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 2px;
}
.hero-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    align-self: center;
}
/* 1. Ensure the right container fills its grid track and handles positioning */
.hero-right {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex; /* Helps with alignment if needed later */
    align-items: center;
    justify-content: center;
}

/* 2. Target the wrapper div around the image (Optional but recommended) */
.hero-right > div:first-of-type {
    width: 100%;
    height: 100%;
    position: absolute; /* Takes it out of normal flow to cover the area */
    top: 0;
    left: 0;
}

/* 3. The Image itself must cover the area without stretching */
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This is the magic property. It crops instead of squishing */
    object-position: center; /* Adjust this to 'top' or 'left' if the crop cuts off important parts */
    display: block; /* Removes weird bottom spacing common with inline images */
}

/* 4. Style the overlay tag so it floats nicely over the image */
.hero-overlay-tag {
    position: absolute;
    top: 30px; /* Distance from bottom */
    right: 30px; /* Distance from right edge */
    background: rgba(2, 99, 15, 0.75); /* Dark semi-transparent background */
    color: #fefeff;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    backdrop-filter: blur(4px); /* Adds a modern blur effect behind the tag */
    z-index: 10;
}

/* ── MARQUEE ── */
.marquee-bar {
    background: var(--brand-blue);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}
.marquee-inner {
    display: inline-flex;
    gap: 0;
    animation: marquee 20s linear infinite;
}
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.marquee-item {
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.marquee-dot {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

/* ── SECTION COMMON ── */
.section {
    padding: 80px 48px;
}
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-blue);
    margin-bottom: 12px;
}
.section-title {
    font-family: "Poppins", sans-serif;
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: -0.3px;
    margin-bottom: 16px;
    color: var(--brand-dark);
}
.section-title span {
    color: var(--brand-green);
}
.section-desc {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.6;
    font-weight: 400;
}

/* ── MATGENIE SECTION ── */

.matgenie-section {
    background-color: #ffffff;
    padding: 80px 24px;
    font-family: "Poppins", sans-serif;
}

.matgenie-grid {
    margin: 0 auto;
    display: grid;
    /* Forces LHS image and RHS text on desktop */
    grid-template-columns: 1.5fr 1fr;
    gap: 30px; /* Reducing gap also gives image more room */
    max-width: 1400px;
    align-items: stretch;
}

/* Image Column (LHS) */
.matgenie-image-col {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--bg-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    height: 100%;
}

.matgenie-image {
   width: 100%;
    height: 100%; 
    /* object-fit: cover; */
}

/* Text Column (RHS) */
.matgenie-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.matgenie-label {
    color: var(--brand-blue);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.matgenie-title {
    color: var(--brand-dark);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.matgenie-title span {
    color: var(--brand-green);
}

.matgenie-subtitle {
    color: var(--brand-dark);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.matgenie-desc {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.matgenie-desc:last-of-type {
    margin-bottom: 32px;
}

.btn-matgenie {
    display: inline-block;
    background-color: var(--brand-dark);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.btn-matgenie:hover {
    background-color: var(--brand-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 61, 139, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .matgenie-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .matgenie-title {
        font-size: 28px;
    }

    .matgenie-subtitle {
        font-size: 16px;
    }
}

/* ── ABOUT ── */
/* ── THE LAYOUT ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; /* Increased gap for better breathing room */
    align-items: center;
}

/* ── THE IMAGE COLLAGE ── */
.about-image-mock {
    background: var(--brand-light);
    height: 500px; /* Made slightly taller to show off images better */
    position: relative;
    border-radius: 12px; /* Modern softening of the hard edges */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); /* Premium shadow */
}

.about-image-inner {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 5fr 3fr; /* Adjusted ratio so the main image is bigger */
    grid-template-rows: 2fr 1fr;
    gap: 6px; /* Slightly thicker gap */
    padding: 6px; /* Added inner padding so the border-radius works cleanly */
    background: #fff; /* Acts as the "border" between images */
}

.about-img-block {
    position: relative;
    overflow: hidden;
    background: #e0e0e0;
    border-radius: 6px; /* Internal rounding */
}

.about-img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Add a subtle zoom effect when hovering over the collage */
.about-image-mock:hover .about-img-block img {
    transform: scale(1.05);
}

/* Make the first image span the full left side */
.about-img-block:nth-child(1) {
    grid-row: 1 / 3;
}

/* ── THE BADGE ── */
.about-badge {
    position: absolute;
    bottom: -1px; /* Flush with bottom */
    left: -1px; /* Flush with left */
    background: var(--brand-dark);
    color: #fff;
    padding: 24px;
    border-radius: 0 16px 0 0; /* Smooth inner curve */
    font-family: "Poppins", sans-serif;
    z-index: 2;
    box-shadow: 10px -10px 30px rgba(0, 0, 0, 0.2); /* Pops it off the image */
}

.about-badge .big {
    font-size: 42px; /* Bigger impact */
    font-weight: 800;
    color: var(--brand-green);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.about-badge .sm {
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    max-width: 140px; /* Forces text to wrap nicely */
}

/* ── THE CONTENT & FEATURES ── */
.about-content .section-title {
    margin-bottom: 24px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
}

.about-feat {
    padding: 20px;
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--brand-green); /* Thicker accent line */
    background: #fff; /* Clean white instead of off-white */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.about-feat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.about-feat-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-dark);
    letter-spacing: 0;
    margin-bottom: 6px;
}

.about-feat-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.btn-dark {
    background: var(--brand-blue);
    color: #fff;
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background 0.15s;
}
.btn-dark:hover {
    background: #333;
}
.link-arrow {
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-blue);
    text-decoration: none;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

/* ── PRODUCTS ── */
.products-section {
    background: var(--brand-light);
    padding: 80px 48px;
}
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}
.product-filter {
    display: flex;
    gap: 12px;
    /* 1. Mobile Scrolling Logic */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    /* 2. Hide the scrollbar for a clean look */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding-bottom: 5px; /* Prevent box-shadow clipping */
}

/* Hide scrollbar for Chrome/Safari */
.product-filter::-webkit-scrollbar {
    display: none;
}

/* ── PREMIUM FILTER DOCK ── */
.premium-filter-dock {
    display: inline-flex;
    gap: 8px;
    background: #ffffff;
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);

    /* Mobile Scrolling Logic */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.premium-filter-dock::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    flex-shrink: 0;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    border-radius: 40px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

/* The Active & Hover States */
.filter-btn.active {
    background: var(--brand-dark);
    color: var(--acd-gold-light, #f5e6c0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.filter-btn:hover:not(.active) {
    background: var(--acd-smoke, #f4f3f0);
    color: var(--text-primary);
}

/* Accessibility */
.filter-btn:focus-visible {
    outline: 2px solid var(--brand-accent);
    outline-offset: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

/* ── DYNAMIC CATEGORY DESCRIPTION ── */
.category-desc-box {
    text-align: center;
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 32px;
    /* max-width: 700px; */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    transition: opacity 0.2s ease-in-out;
}
/* 1. Make the whole card a vertical flexbox that fills the grid row */
.product-card {
    background: #fff;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex; /* THE FIX: Turn card into a flex column */
    flex-direction: column; /* THE FIX: Stack items vertically */
    height: 100%; /* THE FIX: Force card to stretch to row height */
}

/* 2. Tell the body container to expand and consume all leftover empty space */
.product-card-body {
    padding: 18px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.15s;
    display: flex; /* THE FIX: Turn body into a flex column */
    flex-direction: column; /* THE FIX: Stack text and button vertically */
    flex-grow: 1; /* THE FIX: Force body to stretch and fill the card */
}

.product-card-image {
    height: 220px;
    background: var(--pc, #ccc);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}
.product-card:hover .product-card-image {
    transform: scale(1.03);
}
.product-card-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
    z-index: 1;
}

.product-card:hover .product-card-body {
    border-color: var(--brand-blue);
}
.product-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand-blue);
    margin-bottom: 6px;
}
.product-name {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--brand-dark);
    line-height: 1.15;
    margin-bottom: 8px;
}
.product-desc {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 14px;
}
.product-arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    background: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.15s;
}
.product-card:hover .product-arrow {
    opacity: 1;
}

/* ── EMBEDDED SPECS ANIMATION ── */
.product-specs {
    position: absolute;
    bottom: -100%; /* Hides it below the image container */
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.85); /* Semi-transparent dark overlay */
    backdrop-filter: blur(3px); /* Premium glass effect */
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Pushes list to the bottom */
    transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

/* On hover, slide the specs up into view */
.product-card:hover .product-specs {
    bottom: 0;
}

/* Style the text inside */
.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #ffffff;
    font-size: 11px;
    line-height: 1.8;
}

.spec-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 0;
    display: flex;
    justify-content: space-between; /* Puts label on left, value on right */
}

.spec-list li:last-child {
    border-bottom: none;
}

.spec-list strong {
    color: var(--brand-accent, #40aae8); /* Highlight the label */
    font-weight: 600;
}

/* Ensure the image doesn't scale over the new overlay */
.product-card:hover .product-card-image {
    transform: scale(1.05); /* Slightly bigger scale for premium feel */
}

/* ── FREE TEST BANNER ── */
.test-banner {
    background: var(--brand-dark);
    padding: 60px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.test-banner-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #71f885;
    margin-bottom: 12px;
}
.test-banner-title {
    font-family: "Poppins", sans-serif;
    font-size: 44px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    margin-bottom: 16px;
}
.test-banner-title span {
    color: var(--brand-green);
}
.test-banner-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 400px;
}
.test-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.test-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
}
.test-feat-icon {
    width: 32px;
    height: 32px;
    background: rgba(57, 230, 118, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.test-feat-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--brand-green);
}
.test-feat-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}
.test-feat-text strong {
    color: #fff;
    display: block;
    font-size: 13px;
    font-weight: 600;
}

/* ── WHY CHOOSE ── */
.why-section {
    background: #fff;
    padding: 80px 48px;
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.why-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-top: 32px;
}
.why-item {
    display: flex;
    gap: 20px;
    padding: 24px; /* Increased padding for breathing room */
    background: var(--brand-light);
    cursor: pointer;
    transition: all 0.3s ease; /* Smoother transition */
    border-left: 4px solid transparent;
    border-radius: 0 8px 8px 0; /* Modern subtle rounding */
}

/* Base state for description: Hide it to act like an accordion */
.why-item-desc {
    font-size: 13px; /* Slightly larger for readability */
    color: var(--text-secondary);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    margin-top: 0;
}

/* Active State: Expand description and highlight */
.why-item.active {
    background: #fff;
    border-left-color: var(--brand-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Deeper shadow for active state */
    transform: translateX(10px); /* Pop out effect */
}

.why-item.active .why-item-desc {
    max-height: 100px;
    opacity: 1;
    margin-top: 8px;
}

.why-item.active .why-item-title {
    color: var(--brand-green);
}

.why-item:hover .why-num,
.why-item.active .why-num {
    color: var(--brand-green);
    transform: scale(1.1); /* Subtle number zoom */
    transition: transform 0.2s;
}
.why-num {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: rgba(39, 192, 52, 0.15);
    line-height: 1;
    width: 32px;
    flex-shrink: 0;
    padding-top: 2px;
}
.why-item:hover .why-num,
.why-item.active .why-num {
    color: var(--brand-green);
}
.why-item-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 4px;
}
.why-item-desc {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.why-certifications {
    background: var(--brand-light);
    padding: 32px;
}
.why-certs-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}
.cert-badge {
    background: #fff;
    border: 1px solid var(--border-light);
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cert-icon {
    width: 36px;
    height: 36px;
    background: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cert-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-dark);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.3;
}
.cert-sub {
    font-size: 10px;
    color: var(--text-secondary);
    margin-top: 2px;
}
.authorized-strip {
    background: var(--brand-blue);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0;
}
.auth-text {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.auth-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}
.auth-logo {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.why-image-card {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 24px; /* Space between image and authorized strip */
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.why-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.why-image-card:hover .why-image {
    transform: scale(1.08);
}

.why-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.2) 100%
    );
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 24px;
    color: white;
}

.why-image-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.why-image-text strong {
    font-size: 16px;
    color: #fff;
    letter-spacing: 0.5px;
}

.why-image-arrow {
    width: 40px;
    height: 40px;
    background: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.why-image-card:hover .why-image-text {
    transform: translateY(0);
}

.why-image-card:hover .why-image-arrow {
    transform: translateX(0);
    opacity: 1;
}

/* Ensure the authorized strip matches the new border radii */
.authorized-strip {
    border-radius: 8px;
}

/* ── PROJECTS ── */
.projects-section {
    background: var(--brand-light);
    padding: 80px 48px;
}
.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
}
.projects-filter {
    display: flex;
    gap: 8px;
}
/* ── 1. THE GRID LAYOUT ── */
.projects-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 200px;
    gap: 4px; /* Clean, modern gap */
}

/* ── 2. THE CELL CONTAINER ── */
.proj-cell {
    background: var(--brand-dark); /* Fallback color before image loads */
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Make the first item massive (spans two rows) */
.proj-cell:nth-child(1) {
    grid-row: 1 / 3;
}
/* Note: I deleted all the nth-child(--pc) colors because the images replace them */

/* ── 3. THE ACTUAL IMAGE (New) ── */
.proj-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crops perfectly */
    z-index: 1; /* Sits at the back */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Buttery smooth zoom */
}

/* Hover Effect: Zoom the image */
.proj-cell:hover .proj-image {
    transform: scale(1.08);
}

/* ── 4. THE GRADIENT OVERLAY ── */
.proj-overlay {
    position: absolute;
    inset: 0; /* Shorthand for top/right/bottom/left: 0 */
    z-index: 2; /* Sits on top of the image */
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        /* Darker at bottom for text readability */ transparent 60%
    );
    display: flex;
    align-items: flex-end;
    padding: 20px;

    /* UX FIX: Do not use opacity: 0 here if you want mobile users to see the titles. 
       If you insist on hiding it, use opacity: 0, but override it in mobile media queries. */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.proj-cell:hover .proj-overlay {
    opacity: 1;
}

/* ── 5. THE TEXT TAGS ── */
.proj-info-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px); /* Increased blur for premium feel */
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 14px;
    transform: translateY(10px); /* Starts slightly pushed down */
    transition: transform 0.3s ease; /* Slides up on hover */
}

.proj-cell:hover .proj-info-tag {
    transform: translateY(0); /* Completes the slide-up animation */
}

.proj-tag-loc {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.proj-tag-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.projects-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 200px;
    grid-auto-rows: 200px; /* THE FIX: Controls height of items 6, 7, 8, etc. */
    gap: 4px;
}

.proj-cell {
    position: relative;
    overflow: hidden;
    cursor: pointer;

    /* THE FIX: A sleek fallback gradient if the image is missing */
    background: linear-gradient(135deg, var(--brand-dark) 0%, #2a2a2a 100%);
}

/* ── 6. THE FEATURED BADGE ── */
.proj-cell .proj-number {
    position: absolute;
    z-index: 3; /* Must be the highest layer */
    top: 16px;
    left: 16px;
    background: var(--brand-red, #d32f2f); /* Added fallback hex just in case */
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Pops off the image */
}

.proj-image {
    /* Existing rules... */
    color: transparent; /* Hides the ugly default broken image text */
}

/* If a 6th item exists, make it span all 3 columns to prevent an ugly empty row */
.proj-cell:nth-child(6) {
    grid-column: 1 / -1;
    height: 120px; /* Make it a thin banner instead of a massive empty box */
}

/* Disable the zoom and hover states for empty placeholder cells */
.placeholder-cell {
    cursor: default;
}
.placeholder-cell:hover .proj-image {
    transform: none;
}

/* ── SERVICE AREAS ── */
.areas-section {
    background: var(--brand-dark);
    padding: 60px 48px;
}
.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}
.areas-title {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}
.areas-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}
.areas-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
}
.area-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 14px;
    cursor: pointer;
    transition:
        background 0.15s,
        border-color 0.15s;
    text-align: center;
}
.area-card:hover {
    background: rgba(59, 192, 39, 0.1);
    border-color: rgba(39, 192, 85, 0.3);
}
.area-name {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2px;
}
.area-count {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px); /* Pushes it down slightly */
    transition: all 0.2s ease; /* Buttery smooth fade and slide up */
}

/* 2. The Triggers: Show on Hover OR when Javascript adds .is-nearest */
.area-card:hover .area-count,
.area-card.is-nearest .area-count {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 3. The Exception: Force the Special Card to always show its text */
.area-card-special .area-count {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Special "View All" Card Modifier */
.area-card-special {
    background: rgba(75, 192, 39, 0.08);
    border-color: rgba(54, 192, 39, 0.2);
}

.area-card-special .area-name {
    color: #71f8a5;
}

/* Optional UX Upgrade: Make the special card pop on hover */
.area-card-special:hover {
    background: rgba(75, 192, 39, 0.15);
    border-color: rgba(54, 192, 39, 0.4);
}

/* Highlight the nearest location */
.area-card.is-nearest {
    background: rgba(43, 168, 31, 0.15); /* Subtle green tint */
    border-color: #2ba81f; /* Solid green border */
    transform: translateY(-4px); /* Slight pop-up effect */
    box-shadow: 0 6px 15px rgba(43, 168, 31, 0.2);
}

.area-card.is-nearest .area-name {
    color: #2ba81f; /* Make the text green */
}

.area-card.is-nearest::after {
    content: "📍 Nearest";
    display: block;
    font-size: 10px;
    color: #2ba81f;
    font-weight: 700;
    margin-top: 4px;
    text-transform: uppercase;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
    background: #fff;
    padding: 80px 48px;
    position: relative;
    overflow: hidden;
}

/* 1. The Scroll Track (Replaces Grid) */
.testimonials-grid {
    display: flex; /* Switched from grid to flex */
    gap: 24px;
    margin-top: 40px;
    padding-bottom: 30px; /* Space for the hover shadow to expand */
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* Snaps cards into place when scrolling stops */
    -webkit-overflow-scrolling: touch; /* Smooth iOS scrolling */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

/* 2. The Card Layout */
.testimonial-card {
    /* MATH: Shows ~3 cards, letting the 4th card "peek" in from the right to hint at scrolling */
    flex: 0 0 calc(32% - 16px);
    scroll-snap-align: start;
    background: var(--brand-light);
    padding: 30px; /* Increased padding for premium feel */
    position: relative;
    border-radius: 12px; /* Modern rounded corners */
    border: 1px solid var(--border-light);
    border-top: 4px solid transparent;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    cursor: grab; /* Indicates the user can drag/swipe */
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-card:active {
    cursor: grabbing;
}

.testimonial-card:hover {
    border-top-color: var(--brand-green);
    background: #fff;
    /* transform: translateY(-6px);  */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* 3. The Premium Quote Watermark */
.testimonial-quote {
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 120px; /* Massive background quote */
    color: rgba(192, 39, 45, 0.04); /* Faint watermark */
    font-family: Georgia, serif;
    line-height: 1;
    z-index: -1;
    pointer-events: none;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--brand-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.author-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-dark);
}

.author-loc {
    font-size: 11px;
    color: var(--brand-red);
    font-weight: 600;
    margin-top: 2px;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 14px;
    display: block;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: #f0f0f0; /* Fallback color before image loads */
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light); /* Adds a crisp edge to the image */
}

/* ── 12. FAQ SECTION ── */
.faq-section {
    background: var(--brand-light);
    padding: 80px 48px;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-top: 40px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Increased gap so boxes don't touch */
}
.faq-item {
    background: #fff;
    border-left: 4px solid transparent; /* Thicker border */
    border-radius: 6px; /* Modern rounding */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03); /* Subtle depth */
    transition: all 0.2s ease;
    overflow: hidden; /* Keeps the border-radius clean when expanding */
}
.faq-item.open {
    border-left-color: var(--brand-green);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px; /* Slightly larger, more readable */
    font-weight: 600;
    color: var(--brand-dark);
    gap: 16px;
    user-select: none; /* Prevents text highlighting when clicking fast */
}
.faq-toggle {
    width: 28px;
    height: 28px;
    background: var(--brand-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: var(--brand-green);
    font-weight: 700;
    transition: all 0.2s ease;
}
.faq-item.open .faq-toggle {
    background: var(--brand-green);
    color: #fff;
    transform: rotate(180deg); /* Smooth spin effect */
}
.faq-answer {
    padding: 0 24px;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.faq-item.open .faq-answer {
    max-height: 600px; /* INCREASED BUFFER: Prevents long answers from clipping */
    opacity: 1;
    padding: 0 24px 24px;
}

/* ── MAP & CONTACT BLOCK ── */
.faq-schema-note {
    background: var(--brand-dark);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-schema-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* The actual map container */
.faq-map-container {
    width: 100%;
    height: 220px;
    border-radius: 8px;
    overflow: hidden; /* Clips the square corners of the iframe */
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #2a2a2a; /* Fallback while map loads */
}

/* Force the iframe to behave */
.faq-map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Clean structural spacing using flex gap, no inline margins */
.nap-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.nap-block strong {
    color: #fff;
    font-weight: 600;
}

/* Style the interactive links */
.nap-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nap-link:hover {
    color: var(--brand-red);
}

/* ── ENQUIRY FORM ── */
.enquiry-section {
    background: var(--brand-dark);
    padding: 80px 48px;
}
.enquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}
.enquiry-left .section-title {
    color: #fff;
}
.enquiry-left .section-label {
    color: #76f871;
}
.enquiry-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-bottom: 32px;
}
.enquiry-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
}
.contact-method:hover {
    background: rgba(255, 255, 255, 0.05);
}
.contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(44, 192, 39, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    stroke: #4ade80;
    /* fill: #4ade80; */
}
.contact-info strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}
.contact-info span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.3px;
}
.form-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px;
}
.form-title {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 12px;
}
.form-field label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}
.form-field input,
.form-field select,
.form-field textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 14px;
    font-size: 13px;
    font-family: "Barlow", sans-serif;
    transition: border-color 0.15s;
    outline: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(192, 39, 45, 0.5);
}
.form-field select option {
    background: #333;
}
.form-field textarea {
    resize: vertical;
    min-height: 80px;
}
.form-submit {
    background: var(--brand-blue);
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    margin-top: 4px;
    transition: background 0.15s;
    font-family: "Poppins", sans-serif;
}
.form-submit:hover {
    background: #2f1fa8;
}

/* ── FORM VALIDATION STYLES ── */
.form-field input.input-error,
.form-field select.input-error,
.form-field textarea.input-error {
    border-color: #ff4444;
    background: rgba(255, 68, 68, 0.05);
}

.error-msg {
    display: block;
    color: #ff4444;
    font-size: 11px;
    margin-top: 4px;
    height: 14px; /* Keeps the layout from jumping when text appears */
}

/* Rounded corners make forms feel modern */
.form-field input,
.form-field select,
.form-field textarea,
.form-submit,
.form-card,
.contact-method {
    border-radius: 6px;
}
.contact-icon {
    border-radius: 4px;
}

/* ── MOBILE OVERRIDE FOR ENQUIRY (Max 768px) ── */
@media (max-width: 768px) {
}

/* ── FOOTER ── */
.footer {
    background: #111;
    padding: 64px 48px 24px;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-logo-block .footer-logo {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--brand-green);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}
.footer-logo-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.footer-about-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 90%;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px; /* Softens the sharp corners */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none; /* Removes underline from links */
    transition: all 0.2s ease;
}
.social-btn:hover {
    background: var(--brand-red);
    color: #fff;
    border-color: var(--brand-red);
    transform: translateY(-2px);
}
.footer-col-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.15s;
}
.footer-links a:hover {
    color: #fff;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.6;
}
.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
}
.footer-legal a:hover {
    color: #fff;
}

/* ── FLOATING WHATSAPP ── */
.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25d366;
    width: 56px;
    fill: #fff;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 200;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Section dividers */
.section-divider {
    height: 1px;
    background: var(--border-light);
}
