/* ==========================================================================
   GOVCAREER CONNECT - MODERN DESIGN SYSTEM (FIXED)
   ========================================================================== */

@import url('design-system.css');

/* Modern Theme Variables (Aligned with Figma Specification) */
.govcareer-theme {
    --gc-navy: #002868;
    --gc-red: #bf0a30;
    --gc-blue: #003580;
    --gc-light-bg: #f8fafc;
    --gc-border: rgba(226, 232, 240, 1);
    --gc-text-main: #1e293b;
    --gc-text-muted: #64748b;
    --gc-radius: 20px;
    --gc-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --gc-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);
    --gc-shadow-hover: 0 25px 50px -12px rgb(0 0 0 / 0.15);

    background-color: #ffffff;
    color: var(--gc-text-main);
    font-family: var(--font-body, 'Inter', sans-serif);
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

html {
    overflow-x: hidden;
}

/* Header Fixes */
.gc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gc-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
    width: 100%;
    box-sizing: border-box;
}

.gc-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.gc-header-logo-img {
    height: 48px;
    width: auto;
}

.gc-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.gc-nav-link {
    color: var(--gc-text-main);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s;
}

.gc-nav-link:hover {
    color: var(--gc-red);
}

.gc-nav-signin {
    background: var(--gc-red);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
    white-space: nowrap;
}

.gc-nav-signin:hover {
    transform: translateY(-2px);
    background: #be123c;
}

/* Header Search Fix */
.gc-header-search {
    display: flex;
    align-items: center;
    max-width: 300px;
    width: 100%;
}
.gc-header-search-form {
    display: flex;
    width: 100%;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
    height: 40px;
    border: 1px solid #e2e8f0;
}
.gc-header-search-input {
    border: none !important;
    background: transparent !important;
    padding: 0 12px !important;
    width: 100% !important;
    font-size: 14px !important;
    outline: none !important;
}
.gc-header-search-btn {
    background: var(--gc-navy);
    border: none;
    color: white;
    padding: 0 15px;
    cursor: pointer;
}

/* Hero Main Grid */
.gc-hero-main {
    padding: 100px 8% 120px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #fff;
}

@media (max-width: 992px) {
    .gc-hero-main {
        grid-template-columns: 1fr;
        padding: 60px 5%;
        text-align: center;
    }
    .gc-hero-content {
        margin: 0 auto;
    }
    .gc-hero-images {
        display: none;
    }
    .gc-hamburger {
        display: block;
    }
}

/* Hero Section Fixes */
.gc-hero {
    padding: 120px 5% 160px;
    position: relative;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
}

.gc-hero-content {
    max-width: 650px;
    position: relative;
    z-index: 5;
}

.gc-hero h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: var(--gc-navy);
    line-height: 1.1;
    margin: 0 0 24px;
}

.gc-hero .text-red { color: var(--gc-red); }

.gc-hero p {
    font-size: 19px;
    color: var(--gc-text-muted);
    margin-bottom: 45px;
    line-height: 1.6;
}

/* Search Box Hero Fix */
.gc-search-box {
    display: flex;
    background: #fff;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    border: 1px solid #e2e8f0;
    max-width: 800px;
    align-items: center;
}

.gc-search-input {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    flex: 1;
}

.gc-search-input input {
    border: none;
    outline: none;
    font-size: 16px;
    width: 100%;
    font-family: inherit;
}

.gc-search-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

.gc-btn-primary {
    background: var(--gc-navy);
    color: white;
    padding: 15px 35px;
    border-radius: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}
.gc-btn-primary:hover {
    background: var(--gc-red);
    transform: translateY(-2px);
}

/* Popular Searches Fix */
.gc-popular-searches {
    margin-top: 25px;
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: var(--gc-text-muted);
    flex-wrap: wrap;
    align-items: center;
}
.gc-pop-search {
    color: var(--gc-navy);
    font-weight: 700;
    text-decoration: none;
    background: #f1f5f9;
    padding: 6px 15px;
    border-radius: 30px;
}

.gc-hero-bg {
    position: absolute;
    top: 0; right: 0;
    width: 45%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.15;
}

/* Stats Section Fix */
.gc-stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0 5%;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.gc-stats-card {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.gc-stat-icon {
    width: 60px; height: 60px;
    border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
}
.text-blue { background: #dbeafe; color: #1d4ed8; }
.text-red { background: #fee2e2; color: #dc2626; }
.text-green { background: #dcfce7; color: #15803d; }

.gc-stat-info h4 {
    font-size: 28px; font-weight: 800; margin: 0; color: var(--gc-navy);
}
.gc-stat-info p {
    font-size: 12px; color: var(--gc-text-muted); text-transform: uppercase; font-weight: 700; margin-top: 2px;
}

/* Jobs Grid Fix */
.gc-jobs-section {
    padding: 100px 5% 80px;
    background: var(--gc-light-bg);
}

.gc-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.gc-jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gc-job-card {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.gc-job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.gc-job-header {
    display: flex; justify-content: space-between; margin-bottom: 20px;
}
.gc-agency-logo {
    width: 50px; height: 50px; border-radius: 12px; object-fit: contain; background: #f8fafc; padding: 5px;
}

.gc-job-card h4 {
    font-size: 20px; color: var(--gc-navy); margin: 0 0 12px; line-height: 1.3;
}
.gc-job-card p {
    font-size: 14px; color: var(--gc-text-muted); display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}

.gc-job-tags { display: flex; gap: 8px; margin-top: auto; padding-top: 20px; }
.gc-tag {
    font-size: 10px; font-weight: 800; padding: 5px 12px; border-radius: 20px; text-transform: uppercase;
}
.gc-tag-green { background: #dcfce7; color: #15803d; }
.gc-tag-blue { background: #dbeafe; color: #1e40af; }

/* Services Section Fix */
.gc-services-section {
    padding: 100px 6%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
}
.gc-service-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 24px;
    transition: all 0.3s;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
}
.gc-service-card:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: var(--gc-shadow);
    border-color: var(--gc-navy);
}
.gc-service-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
}
.gc-service-info h5 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--gc-navy);
    margin-top: 0;
}
.gc-service-info p {
    font-size: 14px;
    color: var(--gc-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Footer Fix */
.gc-footer {
    background: var(--gc-navy);
    padding: 80px 6% 40px;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
}
.gc-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 50px;
    gap: 40px;
}
.gc-footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
}
.gc-footer-links {
    display: flex;
    gap: 35px;
}
.gc-footer-links a {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.gc-footer-links a:hover {
    color: #fff;
}

/*
   GO USA - COMPONENT OVERHAUL (MATCHING FIGMA REF)
   ========================================================================== */

/* Typography */
h1, h2, h3, h4, .display-font {
    font-family: var(--font-display, 'Barlow Condensed', sans-serif);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.section-label {
    color: var(--gc-red);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    display: block;
}

/* Stats Bar Overhaul */
.gc-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 30px 8%;
    border-top: 1px solid #f1f5f9;
    background: #fff;
}

.gc-stat-box {
    padding-left: 25px;
    border-left: 3px solid var(--gc-red);
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: default;
}

.gc-stat-box:hover {
    transform: translateX(8px);
    border-left-color: var(--gc-navy);
}

.gc-stat-num {
    font-family: var(--font-display, 'Barlow Condensed', sans-serif);
    font-size: 34px;
    font-weight: 800;
    color: var(--gc-navy);
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.gc-stat-box:hover .gc-stat-num {
    color: var(--gc-red);
    transform: scale(1.1);
}

.gc-stat-label {
    font-size: 12px;
    color: var(--gc-text-muted);
    font-weight: 600;
    margin-top: 4px;
}

/* Career Categories (Figma) */
.gc-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gc-category-card {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #f1f5f9;
    box-shadow: var(--gc-shadow-sm);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background: #fff;
    text-decoration: none;
    display: block;
}

.gc-category-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.gc-category-thumb {
    position: relative;
    overflow: hidden;
    height: 180px;
    background: #f1f5f9;
}

.gc-category-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gc-category-card:hover .gc-category-thumb img {
    transform: scale(1.05);
}

.gc-category-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 40, 104, 0.3);
}

.gc-category-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 24px;
}

.gc-category-body {
    padding: 16px;
    background: #fff;
}

.gc-category-title {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--gc-navy);
    margin: 0 0 4px;
    text-transform: none;
}

.gc-category-count {
    font-family: var(--font-mono, monospace);
    font-size: 11px;
    color: #94a3b8;
    margin: 0;
}

/* Featured Job Cards (Visual) */
.gc-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.gc-job-card-v {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.gc-job-card-v:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.gc-job-visual {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 15px;
}

.gc-card-grade {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
}

.gc-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gc-card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--gc-navy);
    margin-bottom: 4px;
    text-transform: none;
}

.gc-card-agency {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 15px;
}

.gc-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

/* Split Section */
.gc-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 100px 8%;
    align-items: center;
}

.gc-check-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.gc-check-item {
    display: flex;
    gap: 15px;
    margin-bottom: 24px;
}

.gc-check-icon {
    width: 24px;
    height: 24px;
    background: var(--gc-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

/* Navy Impact Banner (Figma) */
.gc-banner-navy {
    background: var(--gc-navy);
    padding: 60px 8%;
    color: white;
}

.gc-banner-navy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.gc-banner-navy-num {
    font-family: var(--font-display, 'Barlow Condensed', sans-serif);
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.gc-banner-navy-grid > div:hover .gc-banner-navy-num {
    transform: translateY(-5px) scale(1.1);
    color: #93c5fd;
}

.gc-banner-navy-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #93c5fd;
    margin-top: 8px;
    font-weight: 600;
}

/* Testimonials Section (Figma) */
.gc-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.gc-testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow: var(--gc-shadow-sm);
}

.gc-testimonial-thumb {
    height: 190px;
    overflow: hidden;
    background: #f1f5f9;
}

.gc-testimonial-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gc-testimonial-body {
    padding: 20px;
}

.gc-testimonial-stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.gc-testimonial-quote {
    font-size: 14px;
    color: #334155;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 16px;
}

.gc-testimonial-author {
    font-size: 13px;
    font-weight: 700;
    color: var(--gc-navy);
    margin: 0;
}

.gc-testimonial-role {
    font-size: 11px;
    color: #64748b;
    margin: 2px 0 0;
}

/* Process List */
.gc-process-list {
    list-style: none;
    padding: 0;
}

.gc-process-item {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #f1f5f9;
}

.gc-process-num {
    font-family: var(--font-display, 'Barlow Condensed', sans-serif);
    font-size: 42px;
    font-weight: 800;
    color: #e2e8f0;
    line-height: 1;
}

.gc-process-content h4 {
    margin-bottom: 10px;
}

/* Red CTA Banner */
.gc-banner-red {
    background: var(--gc-red);
    color: white;
    padding: 100px 5%;
    text-align: center;
}

.gc-banner-red h2 {
    font-family: var(--font-display, 'Barlow Condensed', sans-serif);
    font-size: 56px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

/* New Footer */
.gc-footer-main {
    background: #001a44;
    padding: 80px 8% 40px;
    color: white;
}

.gc-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.gc-footer-column h4 {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 25px;
    letter-spacing: 0.1em;
}

.gc-footer-links {
    list-style: none;
    padding: 0;
}

.gc-footer-links li {
    margin-bottom: 12px;
}

.gc-footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.gc-footer-links a:hover {
    color: white;
}

/* Responsive Rules & Container Utility */
.gc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
    box-sizing: border-box;
}

/* Fluid Typography */
.gc-fluid-h1 {
    font-size: clamp(48px, 10vw, 88px) !important;
}

/* Mobile Nav Styles */
.gc-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}
.gc-hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--gc-navy);
    margin: 5px 0;
    transition: 0.3s;
}

.gc-mobile-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: #fff;
    z-index: 999;
    transition: 0.3s;
    padding: 40px 5%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 4px solid var(--gc-red);
}
.gc-mobile-menu.active {
    left: 0;
}
.gc-mobile-menu a {
    font-size: 20px;
    font-weight: 700;
    color: var(--gc-navy);
    text-decoration: none;
}

@media (max-width: 1100px) {
    .gc-jobs-grid, .gc-featured-grid { grid-template-columns: repeat(2, 1fr); }
    .gc-categories-grid { grid-template-columns: repeat(2, 1fr); }
    .gc-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .gc-banner-navy-grid { grid-template-columns: repeat(2, 1fr); }
    .gc-stats-strip { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .gc-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .gc-header { height: 70px; padding: 0 4%; justify-content: space-between; }
    .gc-header-search, .gc-nav { display: none; }
    .gc-hamburger { display: block; }

    /* Logo scaling */
    .gc-header a > span:first-child { font-size: 20px !important; }
    .gc-header a > div { margin: 0 8px !important; }
    .gc-header a > span:last-child { display: none; }

    .gc-hero-main {
        padding: 40px 5% 60px !important;
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 30px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .gc-hero-content h1 { font-size: 38px !important; line-height: 1.1 !important; }
    .gc-hero-content p { font-size: 16px !important; margin-bottom: 30px !important; }
    .gc-hero-images { display: none !important; }

    /* Forced stack for WHY GO USA images */
    .gc-split > div:first-child {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
    }
    .gc-split > div:first-child img {
        width: 100% !important;
        height: auto !important;
        max-height: 250px !important;
        margin: 0 !important;
    }
    .gc-split > div:first-child > div {
        display: none !important; /* Hide the sub-grid of images on mobile for simplicity */
    }

    /* Forced stack for VETERANS grid */
    .gc-split + section + .gc-split > div:last-child {
        display: flex !important;
        flex-direction: column !important;
        grid-template-rows: auto !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .gc-stats-strip {
        grid-template-columns: 1fr !important;
        padding: 20px 5% !important;
        gap: 15px !important;
    }
    .gc-stat-box { padding: 15px !important; border-left: 4px solid var(--gc-red) !important; text-align: left !important; }

    .gc-split {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 40px 5% !important;
        overflow: hidden !important;
    }

    .gc-featured-grid, .gc-categories-grid, .gc-testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    section { padding: 40px 5% !important; width: 100% !important; box-sizing: border-box !important; overflow: hidden !important; }
    h2 { font-size: 28px !important; margin-bottom: 20px !important; line-height: 1.2 !important; }

    #landing-search-form {
        flex-direction: column !important;
        border-radius: 20px !important;
        padding: 15px !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    #landing-search-form > div { width: 100% !important; padding: 10px 0 !important; }
    .gc-search-divider { display: none !important; }
    #landing-search-form button { width: 100% !important; margin: 0 !important; padding: 15px !important; }

    .gc-pop-search-container {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    /* App Promo Reset */
    .gc-app-promo {
        flex-direction: column !important;
        padding: 40px 5% !important;
        gap: 40px !important;
        margin: 20px 0 !important;
        border-radius: 0 !important;
    }
    .gc-app-promo > div:last-child {
        min-height: 450px !important;
        transform: scale(0.7);
        width: 100% !important;
        margin-top: -100px !important;
    }

    /* Final CTA Banner */
    .gc-banner-red h2 { font-size: 34px !important; }
    .gc-banner-red div { flex-direction: column !important; gap: 15px !important; }
    .gc-banner-red a { width: 100% !important; padding: 15px !important; }

    /* Footer fix */
    .gc-footer-main { padding: 40px 5% !important; }
    .gc-footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .gc-footer-main > div:last-child {
        flex-direction: column !important;
        gap: 20px !important;
        text-align: center !important;
    }
}
