/* General Reset and Layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #05070a; /* Deep black-blue background */
    color: white;
    overflow-x: hidden;
}

/* --- Header Styles --- */
header {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) 180px;
    align-items: center;
    gap: 24px;
    min-height: 120px;
    padding: 18px clamp(24px, 5vw, 72px);
    background-color: #05070a;
    border-bottom: 1px solid rgba(185, 224, 32, 0.12);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.logo-container {
    display: flex;
    align-items: center;
    min-width: 0;
}

/* Logo Image (uncropped) */
.header-logo {
    width: clamp(170px, 15vw, 230px);
    height: auto;
    object-fit: contain;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #b9e020; /* Green */
    letter-spacing: -0.5px;
}

.sub-brand {
    display: flex;
    align-items: center;
    gap: 5px;
}

.sub-brand .blue-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #0066ff; /* Blue */
}

.sub-brand .arrow {
    color: #0066ff;
    font-size: 20px;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: clamp(18px, 2vw, 34px);
}

nav ul li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    text-decoration: none;
    color: #b8bec8;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 2px;
    background: #b9e020;
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

nav ul li.active a,
nav ul li a:hover {
    color: #b9e020;
}

nav ul li.active a::after,
nav ul li a:hover::after {
    transform: scaleX(1);
}

nav ul li a:focus-visible,
.btn-outline-black:focus-visible,
.menu-circle:focus-visible {
    outline: 2px solid #b9e020;
    outline-offset: 4px;
}

nav ul li a:active {
    color: #ffffff;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.btn-outline-black {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #b9e020;
    color: #b9e020;
    min-height: 42px;
    padding: 0 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    white-space: nowrap;
}

.btn-outline-black:hover {
    background-color: #b9e020;
    color: #05070a;
    border-color: #b9e020;
}

.menu-circle {
    background: #0066ff;
    border: 0;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    display: none;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 85vh;
    padding: 0 100px 40px; /* removed top padding to sit flush under header */
    position: relative;
    gap: 50px;
}

/* Decorative Background Elements */
.brush-stroke-left {
    position: absolute;
    left: -50px;
    bottom: 0;
    height: 80%;
    width: 150px;
    background: linear-gradient(135deg, transparent 40%, #0066ff 50%, transparent 60%);
    filter: blur(20px);
    opacity: 0.4;
    transform: skewX(-15deg);
    z-index: 0;
}
.brush-stroke-right {
    position: absolute;
    right: -50px;
    bottom: 0;
    height: 80%;
    width: 150px;
    background: linear-gradient(225deg, transparent 40%, #b9e020 50%, transparent 60%);
    filter: blur(20px);
    opacity: 0.4;
    transform: skewX(15deg);
    z-index: 0;
}

.dot-matrix {
    position: absolute;
    right: 15%;
    top: 30%;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#ffffff 10%, transparent 10%);
    background-size: 10px 10px;
    opacity: 0.1;
    z-index: 0;
}

/* Hero Text Content */
.hero-content {
    flex: 1;
    z-index: 10;
    max-width: 550px;
}

.main-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    line-height: 0.95;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.main-headline .text-white { color: #ffffff; }
.main-headline .text-green { color: #b9e020; }
.main-headline .text-blue { color: #0066ff; }

.sub-headline {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 30px;
}

.cta-group {
    display: flex;
    gap: 15px;
}

.btn-solid-green {
    background-color: #b9e020;
    color: #05070a;
    border: none;
    padding: 12px 25px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-outline-blue {
    background: transparent;
    border: 1px solid #0066ff;
    color: #ffffff;
    padding: 12px 25px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
}

/* Hero Graphic / Mascot Image */
.hero-graphic {
    flex: 1;
    z-index: 10;
    display: flex;
    justify-content: center;
    position: relative;
    max-width: 550px;
}

/* Updated Mascot Image Styles */
.mascot-image {
    max-width: 170%;
    height: auto;
    object-fit: contain;
    /* Optional: Uncomment and adjust width if the image is too large */
    /* width: 450px; */
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    header {
        grid-template-columns: 1fr auto;
        min-height: 88px;
        padding: 12px 20px;
    }

    .header-logo {
        width: 160px;
    }

    nav {
        display: block;
        grid-column: 1 / -1;
        order: 3;
    }

    nav ul {
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 8px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        background: rgba(5, 7, 10, 0.98);
        border: 1px solid rgba(185, 224, 32, 0.18);
        border-radius: 8px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li a {
        width: 100%;
        min-height: 46px;
        padding: 0 10px;
    }

    nav ul li a::after {
        left: 10px;
        right: auto;
        width: 42px;
    }

    .btn-outline-black {
        min-height: 40px;
        padding: 0 18px;
    }

    .menu-circle {
        display: flex;
    }

    .hero {
        flex-direction: column;
        padding: 20px 20px; /* reduced top padding on smaller screens */
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .cta-group {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    header {
        min-height: 76px;
        padding: 10px 16px;
    }

    .header-logo {
        width: 132px;
    }

    .btn-outline-black {
        display: none;
    }

    nav ul {
        left: 16px;
        right: 16px;
    }
}

/* after the hero section, you can add more sections and styles as needed */
/* ==========================================
   SERVICES SECTION STYLES
   ========================================== */
.services-section {
    width: 100%;
    background-color: #05070a; /* Deep black background */
    padding: 80px 20px 100px 20px;
    display: flex;
    justify-content: center;
}

.services-container {
    max-width: 1400px;
    width: 100%;
}

/* Header Styles */
.services-header {
    margin-bottom: 40px;
    padding-left: 10px;
}

.services-header .sub-title {
    color: #b9e020;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.services-header .main-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 38px;
    color: #ffffff;
    line-height: 1.1;
}

.services-header .main-title .text-blue {
    color: #0066ff;
}

/* 1 Row Layout for Cards */
.services-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    flex-wrap: nowrap; /* FORCES STRICTLY 1 ROW */
    width: 100%;
}

/* Individual Card Styles */
.service-card {
    flex: 1 1 0; /* Forces all cards to be equal width */
    min-width: 140px; /* Prevents them from squishing too small */
    background: linear-gradient(180deg, rgba(18, 22, 30, 0.8) 0%, rgba(10, 12, 16, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 30px 15px 25px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

/* Subtle Card Hover Effect */
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

/* Icon Circle Styles */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.icon-circle svg {
    width: 26px;
    height: 26px;
}

/* Exact Background Gradients from Image */
.green-bg {
    background: radial-gradient(circle at 30% 30%, #a4e320, #6fa515);
}
.blue-bg {
    background: radial-gradient(circle at 30% 30%, #3b8bff, #0055e0);
}

/* Card Typography */
.card-title {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-desc {
    font-family: 'Open Sans', sans-serif;
    color: #a0a0a0;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1; /* Keeps the button aligned at the bottom */
}

/* Learn More Link */
.learn-more {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s, transform 0.2s;
}

.learn-more:hover {
    opacity: 0.8;
    transform: translateX(3px);
}

.learn-more.green-text { color: #b9e020; }
.learn-more.blue-text { color: #0066ff; }

/* ==========================================
   RESPONSIVE OVERRIDE (STRICT 1 ROW)
   ========================================== */
/* To ensure the website doesn't break on smaller screens, 
   we force a horizontal scroll for the cards while keeping them in 1 row. */
@media (max-width: 1200px) {
    .services-row {
        overflow-x: auto; /* Adds horizontal scrollbar */
        padding-bottom: 20px; /* Space for scrollbar */
        gap: 20px;
        justify-content: flex-start; /* Aligns to start for scrolling */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on mobile */
    }
    
    /* Optional: Hide scrollbar for cleaner look */
    .services-row::-webkit-scrollbar {
        height: 6px;
    }
    .services-row::-webkit-scrollbar-thumb {
        background: #333;
        border-radius: 10px;
    }

    .service-card {
        flex: 0 0 220px; /* Fixed width on tablets so they stack horizontally */
    }
}

@media (max-width: 600px) {
    .services-header .main-title {
        font-size: 28px;
    }
    .service-card {
        flex: 0 0 200px; /* Slightly smaller cards on phones, still 1 row */
    }
}
/* Additional after the services section */
/* ==========================================
   WHY CHOOSE US & PROCESS SECTION STYLES
   ========================================== */
.why-choose-section {
    width: 100%;
    background-color: #05070a; /* Deep dark background */
    padding: 80px 20px 100px 20px;
    display: flex;
    justify-content: center;
}

.why-choose-container {
    max-width: 1300px;
    width: 100%;
}

/* --- Top Half: 2-Column Layout --- */
.why-choose-top {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: stretch;
}

/* Left Column (Text) */
.why-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 10px;
}

.why-text-col .sub-title {
    color: #b9e020;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.why-text-col .main-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.why-text-col .main-title .text-blue {
    color: #0066ff;
}

.why-text-col .desc-text {
    font-family: 'Open Sans', sans-serif;
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Checkmark List */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    font-family: 'Open Sans', sans-serif;
    color: #cfcfcf;
    font-size: 13px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.check-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #b9e020;
    color: #05070a;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: bold;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Right Column (Stats Box) */
.why-stats-col {
    flex: 1.2;
    display: flex;
    align-items: stretch;
}

.stats-box {
    width: 100%;
    background: rgba(18, 22, 32, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Dashed Lines inside Stats Grid */
.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    border-right: 1px dashed rgba(255, 255, 255, 0.1);
}
.stat-item:nth-child(3)::after { display: none; } /* Remove right border from 3rd item */
.stat-item:nth-child(4)::after { display: none; } /* Remove right border from 4th item (start of row 2) */
.stat-item:nth-child(5)::after { display: none; }

.stat-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}
.stat-item:nth-child(4)::before { display: none; } /* Remove bottom border from 4th item */
.stat-item:nth-child(5)::before { display: none; } /* Remove bottom border from 5th item */
.stat-item:nth-child(3)::before { display: none; } /* Remove bottom border from 3rd item */

.stat-icon svg {
    width: 32px;
    height: 32px;
}
.stat-icon.green-text { color: #b9e020; }
.stat-icon.blue-text { color: #0066ff; }

.stat-number {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin: 10px 0 4px 0;
}

.stat-label {
    font-family: 'Open Sans', sans-serif;
    color: #b0b0b0;
    font-size: 13px;
}

/* --- Lower Half: Our Process --- */
.our-process-section {
    text-align: center;
}

.process-header {
    margin-bottom: 50px;
}

.sub-title-line {
    color: #b9e020;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
}

.process-header .main-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 34px;
    color: #ffffff;
}

.process-header .main-title .text-blue {
    color: #0066ff;
}

.process-steps-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

/* Dashed Line behind the Process Icons */
.process-steps-row::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 8%;
    width: 84%;
    height: 2px;
    border-top: 2px dashed rgba(255, 255, 255, 0.15);
    z-index: 0;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0e121a;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.step-icon:hover {
    transform: scale(1.08);
}

.step-icon.green-border { border: 2px solid #b9e020; }
.step-icon.blue-border { border: 2px solid #0066ff; }

.step-icon svg {
    width: 24px;
    height: 24px;
}

.step-title {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-desc {
    font-family: 'Open Sans', sans-serif;
    color: #a0a0a0;
    font-size: 13px;
    line-height: 1.5;
    text-align: left;
    max-width: 180px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .why-choose-top {
        flex-direction: column;
    }
    .stats-box {
        padding: 20px;
    }
    .process-steps-row {
        flex-wrap: wrap;
        justify-content: center;
    }
    .process-steps-row::before {
        display: none; /* Hide horizontal dashed line on mobile */
    }
    .step-item {
        flex: 1 1 45%;
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
    }
    .step-desc {
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .stats-box {
        grid-template-columns: 1fr 1fr;
    }
    .stat-item {
        border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
        padding: 15px 5px;
    }
    .stat-item::after, .stat-item::before {
        display: none;
    }
    .stat-item:nth-child(odd) {
        border-right: 1px dashed rgba(255, 255, 255, 0.08);
    }
    .stat-item:nth-last-child(1), .stat-item:nth-last-child(2) {
        border-bottom: none;
    }
    
    .step-item {
        flex: 1 1 100%;
    }
    .why-text-col .main-title {
        font-size: 28px;
    }
    .process-header .main-title {
        font-size: 26px;
    }
}

/* A footer section */
/* ==========================================
   FOOTER SECTION STYLES
   ========================================== */
.main-footer {
    width: 100%;
    background-color: #05070a;
    padding: 40px 20px 20px 20px;
    display: flex;
    justify-content: center;
}

.footer-container {
    max-width: 1300px;
    width: 100%;
}

/* --- Top CTA Banner --- */
.cta-banner {
    position: relative;
    width: 100%;
    background: #0b0e14;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    margin-bottom: 60px;
}

/* Simulated Brush Strokes */
.brush-green {
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, rgba(185, 224, 32, 0.25) 0%, transparent 100%);
    filter: blur(30px);
    z-index: 0;
}
.brush-blue {
    position: absolute;
    right: 0;
    top: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(-90deg, rgba(0, 102, 255, 0.25) 0%, transparent 100%);
    filter: blur(30px);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 8px;
}

.cta-text h2 .highlight-green {
    color: #b9e020;
}

.cta-text p {
    font-family: 'Open Sans', sans-serif;
    color: #b0b0b0;
    font-size: 14px;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-cta-green {
    background-color: #b9e020;
    color: #05070a;
    border: none;
    padding: 12px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
}

.btn-cta-blue {
    background: transparent;
    color: #ffffff;
    border: 1px solid #0066ff;
    padding: 12px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s, transform 0.2s;
}

.btn-cta-blue:hover {
    background: rgba(0, 102, 255, 0.1);
}
.btn-cta-green:hover, .btn-cta-blue:hover {
    transform: translateY(-2px);
}

/* --- Main Footer Content (5 Columns) --- */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

/* Column 1: Brand */
.footer-col {
    flex: 1;
    min-width: 160px;
}
.brand-col {
    flex: 1.5;
    min-width: 220px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo-img {
    width: 120px;
    height: auto;
    object-fit: contain;
    display: block;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.footer-brand-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #b9e020;
    letter-spacing: -0.5px;
}
.footer-sub-brand {
    display: flex;
    align-items: center;
    gap: 5px;
}
.footer-sub-brand .blue-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #0066ff;
}
.footer-sub-brand .arrow {
    color: #0066ff;
    font-size: 20px;
}

.footer-about {
    font-family: 'Open Sans', sans-serif;
    color: #b0b0b0;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}
.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #b9e020;
    color: #b9e020;
    transition: background 0.3s, color 0.3s;
}
.social-icon svg {
    width: 14px;
    height: 14px;
}
.social-icon:hover {
    background: #b9e020;
    color: #05070a;
}

/* Columns 2, 3, 4, 5 (Text Columns) */
.footer-heading {
    font-family: 'Montserrat', sans-serif;
    color: #b9e020;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    font-family: 'Open Sans', sans-serif;
    color: #cfcfcf;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #b9e020;
}

/* Contact List Styles */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
    color: #cfcfcf;
    font-size: 13px;
    line-height: 1.4;
}
.contact-icon {
    flex-shrink: 0;
    color: #b9e020;
    display: flex;
    margin-top: 2px;
}
.contact-icon svg {
    width: 18px;
    height: 18px;
}

/* Newsletter Styles */
.newsletter-desc {
    font-family: 'Open Sans', sans-serif;
    color: #b0b0b0;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
}
.newsletter-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    outline: none;
}
.newsletter-form input::placeholder {
    color: #777;
}
.newsletter-btn {
    background: #0066ff;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.newsletter-btn svg {
    width: 18px;
    height: 18px;
}
.newsletter-btn:hover {
    background: #0050cc;
}

/* --- Bottom Copyright --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    font-family: 'Open Sans', sans-serif;
    color: #777;
    font-size: 12px;
    margin: 0;
}

.bottom-links {
    display: flex;
    gap: 20px;
}
.bottom-links a {
    font-family: 'Open Sans', sans-serif;
    color: #aaaaaa;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s;
}
.bottom-links a:hover {
    color: #ffffff;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    .cta-buttons {
        justify-content: center;
    }
    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .brand-col {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }
    .footer-logo-wrapper {
        justify-content: center;
    }
    .footer-socials {
        justify-content: center;
    }
    .newsletter-col {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .cta-banner {
        padding: 30px 20px;
    }
    .cta-text h2 {
        font-size: 24px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .contact-list li {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}
