/* =========================================================
   FTO GROUPS - EXPLORE GEORGIA
   SAME HEADER STYLE AS INDEX
========================================================= */

:root {
    --primary-blue: #1e3a8a;
    --dark-blue: #172554;
    --accent-blue: #2563eb;
    --light-blue: #eff6ff;

    --text-dark: #1f2937;
    --text-muted: #64748b;

    --white: #ffffff;
    --bg-light: #f8fafc;
    --border: #e2e8f0;

    --shadow:
        0 15px 40px rgba(15,23,42,.10);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        "Segoe UI",
        Tahoma,
        Geneva,
        Verdana,
        sans-serif;

    color: var(--text-dark);
    background: white;
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 4%;
}


/* =========================================================
   HEADER - SAME FTO MODEL
========================================================= */

header:not(.site-header) {

    background: #ffffff;

    border-bottom:
        1px solid #e5e7eb;

    padding: 8px 0;

    position: sticky;

    top: 0;

    z-index: 1000;
}

.header-container {

    display: flex;

    justify-content:
        space-between;

    align-items:
        center;
}

.logo-container {

    display: flex;

    align-items: center;

    text-decoration: none;
}

.logo-container img {

    height: 38px;

    width: auto;

    object-fit: contain;
}

.legacy-page-nav {

    display: flex;

    align-items: center;

    gap: 18px;
}

.legacy-page-nav a {

    color:
        var(--text-dark);

    text-decoration: none;

    font-size: 14px;

    font-weight: 500;

    transition: .2s ease;
}

.legacy-page-nav a:hover {

    color:
        var(--accent-blue);
}


/* DROPDOWN */

.dropdown {

    position: relative;

    list-style: none;
}

.dropdown-content {

    display: none;

    position: absolute;

    top: 100%;

    left: 0;

    min-width: 250px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 8px;

    box-shadow:
        0 10px 25px rgba(0,0,0,.10);

    padding: 8px 0;

    z-index: 999;
}

.dropdown-content a {

    display: block;

    padding: 10px 15px;

    font-size: 13px;
}

.dropdown-content a:hover {

    background:
        var(--light-blue);
}

.dropdown:hover
.dropdown-content {

    display: block;
}


/* HEADER BUTTON */

.header-btn {

    display: inline-block;

    background:
        var(--accent-blue);

    color: white;

    border:
        2px solid var(--accent-blue);

    padding: 9px 18px;

    border-radius: 30px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    transition: .3s ease;
}

.header-btn:hover {

    background:
        #1d4ed8;

    border-color:
        #1d4ed8;
}


/* =========================================================
   HERO
========================================================= */

.georgia-hero {

    min-height:
        650px;

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    overflow:
        hidden;

    background:
        #172554;
}

.georgia-hero-image {

    position:
        absolute;

    inset:
        0;

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    animation:
        heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom {

    from {
        transform:
            scale(1);
    }

    to {
        transform:
            scale(1.08);
    }
}

.georgia-hero-overlay {

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            90deg,
            rgba(15,23,42,.94),
            rgba(23,37,84,.72),
            rgba(23,37,84,.20)
        );
}

.georgia-hero-content {

    position:
        relative;

    z-index:
        2;

    color:
        white;

    max-width:
        760px;

    padding:
        100px 4%;
}

.hero-label {

    color:
        #93c5fd;

    font-size:
        13px;

    font-weight:
        700;

    letter-spacing:
        2px;

    margin-bottom:
        14px;

    text-transform:
        uppercase;
}

.georgia-hero h1 {

    font-size:
        clamp(44px, 7vw, 78px);

    line-height:
        1.05;

    margin-bottom:
        22px;
}

.georgia-hero h1 span {

    color:
        #93c5fd;
}

.georgia-hero p {

    font-size:
        18px;

    color:
        #e2e8f0;

    max-width:
        700px;

    margin-bottom:
        30px;
}

.hero-buttons {

    display:
        flex;

    gap:
        12px;

    flex-wrap:
        wrap;
}

.btn {

    display:
        inline-block;

    padding:
        13px 24px;

    border-radius:
        30px;

    text-decoration:
        none;

    font-weight:
        700;

    transition:
        .3s ease;
}

.btn-primary {

    background:
        var(--accent-blue);

    color:
        white;
}

.btn-primary:hover {

    background:
        #1d4ed8;

    transform:
        translateY(-3px);
}

.btn-white {

    background:
        white;

    color:
        var(--primary-blue);
}

.btn-white:hover {

    transform:
        translateY(-3px);
}


/* =========================================================
   INTRO
========================================================= */

.section {

    padding:
        90px 0;
}

.section-light {

    background:
        var(--bg-light);
}

.section-heading {

    text-align:
        center;

    max-width:
        800px;

    margin:
        0 auto 45px;
}

.section-label {

    color:
        var(--accent-blue);

    font-size:
        11px;

    font-weight:
        800;

    letter-spacing:
        2px;

    text-transform:
        uppercase;

    display:
        block;

    margin-bottom:
        10px;
}

.section-title {

    font-size:
        clamp(32px, 5vw, 46px);

    color:
        var(--dark-blue);

    line-height:
        1.2;

    margin-bottom:
        15px;
}

.section-title span {

    color:
        var(--accent-blue);
}

.section-description {

    color:
        var(--text-muted);

    font-size:
        16px;

    line-height:
        1.8;
}


/* =========================================================
   QUICK FACTS
========================================================= */

.quick-facts {

    margin-top:
        -55px;

    position:
        relative;

    z-index:
        10;

    display:
        grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:
        15px;
}

.fact {

    background:
        white;

    padding:
        25px 20px;

    text-align:
        center;

    border:
        1px solid var(--border);

    border-radius:
        14px;

    box-shadow:
        var(--shadow);
}

.fact-icon {

    font-size:
        28px;

    margin-bottom:
        8px;
}

.fact span {

    display:
        block;

    color:
        var(--text-muted);

    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        1px;
}

.fact strong {

    display:
        block;

    color:
        var(--dark-blue);

    margin-top:
        5px;
}


/* =========================================================
   ABOUT GEORGIA
========================================================= */

.about-grid {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        55px;

    align-items:
        center;
}

.about-text p {

    color:
        var(--text-muted);

    margin-bottom:
        18px;

    font-size:
        15px;
}

.about-image {

    height:
        440px;

    border-radius:
        20px;

    overflow:
        hidden;

    box-shadow:
        var(--shadow);
}

.about-image img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        .6s ease;
}

.about-image:hover img {

    transform:
        scale(1.06);
}


/* =========================================================
   DESTINATION CARDS
========================================================= */

.destination-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:
        22px;
}

.destination-card {

    background:
        white;

    border-radius:
        16px;

    overflow:
        hidden;

    border:
        1px solid var(--border);

    box-shadow:
        0 8px 25px rgba(15,23,42,.06);

    transition:
        .35s ease;
}

.destination-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 20px 40px rgba(15,23,42,.12);
}

.destination-image {

    height:
        250px;

    overflow:
        hidden;
}

.destination-image img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        .6s ease;
}

.destination-card:hover
.destination-image img {

    transform:
        scale(1.08);
}

.destination-content {

    padding:
        23px;
}

.destination-content h3 {

    color:
        var(--dark-blue);

    font-size:
        21px;

    margin-bottom:
        8px;
}

.destination-content p {

    color:
        var(--text-muted);

    font-size:
        14px;

    line-height:
        1.7;
}


/* =========================================================
   FEATURED PEACE BRIDGE
========================================================= */

.feature-section {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    min-height:
        520px;

    background:
        var(--dark-blue);

    color:
        white;
}

.feature-image {

    min-height:
        520px;

    overflow:
        hidden;
}

.feature-image img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        .7s ease;
}

.feature-section:hover
.feature-image img {

    transform:
        scale(1.04);
}

.feature-content {

    padding:
        70px 8%;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;
}

.feature-content .section-label {

    color:
        #93c5fd;
}

.feature-content h2 {

    font-size:
        42px;

    line-height:
        1.2;

    margin-bottom:
        20px;
}

.feature-content p {

    color:
        #cbd5e1;

    line-height:
        1.8;

    margin-bottom:
        15px;
}


/* =========================================================
   GEORGIA REGIONS
========================================================= */

.region-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:
        16px;
}

.region-card {

    position:
        relative;

    height:
        260px;

    overflow:
        hidden;

    border-radius:
        15px;
}

.region-card img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        .5s ease;
}

.region-card:hover img {

    transform:
        scale(1.08);
}

.region-overlay {

    position:
        absolute;

    inset:
        0;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        flex-end;

    padding:
        22px;

    color:
        white;

    background:
        linear-gradient(
            transparent,
            rgba(15,23,42,.88)
        );
}

.region-overlay h3 {

    font-size:
        21px;

    margin-bottom:
        3px;
}

.region-overlay p {

    color:
        #cbd5e1;

    font-size:
        12px;
}


/* =========================================================
   WINTER
========================================================= */

.winter-section {

    position:
        relative;

    overflow:
        hidden;

    color:
        white;

    background:
        #0f172a;
}

.winter-background {

    position:
        absolute;

    inset:
        0;

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    opacity:
        .38;
}

.winter-overlay {

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            90deg,
            rgba(15,23,42,.96),
            rgba(15,23,42,.60)
        );
}

.winter-content {

    position:
        relative;

    z-index:
        2;

    max-width:
        700px;

    padding:
        100px 4%;
}

.winter-content h2 {

    font-size:
        48px;

    line-height:
        1.15;

    margin-bottom:
        18px;
}

.winter-content h2 span {

    color:
        #93c5fd;
}

.winter-content p {

    color:
        #dbeafe;

    font-size:
        16px;

    line-height:
        1.8;

    margin-bottom:
        15px;
}


/* =========================================================
   WINTER DESTINATIONS
========================================================= */

.winter-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:
        20px;
}

.winter-card {

    background:
        white;

    border-radius:
        16px;

    overflow:
        hidden;

    border:
        1px solid var(--border);

    box-shadow:
        0 8px 25px rgba(15,23,42,.06);
}

.winter-card img {

    width:
        100%;

    height:
        250px;

    object-fit:
        cover;

    transition:
        .5s ease;
}

.winter-card:hover img {

    transform:
        scale(1.06);
}

.winter-card-content {

    padding:
        22px;
}

.winter-card h3 {

    color:
        var(--dark-blue);

    margin-bottom:
        7px;
}

.winter-card p {

    color:
        var(--text-muted);

    font-size:
        14px;
}


/* =========================================================
   STUDENT LIFE
========================================================= */

.student-grid {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        50px;

    align-items:
        center;
}

.student-image {

    height:
        470px;

    overflow:
        hidden;

    border-radius:
        20px;
}

.student-image img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;
}

.student-content h2 {

    font-size:
        42px;

    color:
        var(--dark-blue);

    line-height:
        1.2;

    margin-bottom:
        20px;
}

.student-content h2 span {

    color:
        var(--accent-blue);
}

.student-content p {

    color:
        var(--text-muted);

    margin-bottom:
        17px;

    font-size:
        15px;
}


/* =========================================================
   STUDENT LIFE CARDS
========================================================= */

.life-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:
        16px;
}

.life-card {

    padding:
        28px 22px;

    background:
        white;

    border:
        1px solid var(--border);

    border-radius:
        14px;

    transition:
        .3s ease;
}

.life-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        var(--shadow);
}

.life-icon {

    font-size:
        30px;

    margin-bottom:
        12px;
}

.life-card h3 {

    color:
        var(--dark-blue);

    margin-bottom:
        7px;
}

.life-card p {

    color:
        var(--text-muted);

    font-size:
        13px;
}


/* =========================================================
   WHY GEORGIA
========================================================= */

.why-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:
        20px;
}

.why-card {

    background:
        #eff6ff;

    padding:
        30px;

    border-radius:
        15px;

    border:
        1px solid #dbeafe;
}

.why-number {

    color:
        var(--accent-blue);

    font-weight:
        800;

    font-size:
        13px;

    letter-spacing:
        1px;

    margin-bottom:
        12px;
}

.why-card h3 {

    color:
        var(--dark-blue);

    margin-bottom:
        8px;
}

.why-card p {

    color:
        var(--text-muted);

    font-size:
        14px;
}


/* =========================================================
   FTO SUPPORT
========================================================= */

.fto-support {

    background:
        var(--dark-blue);

    color:
        white;

    padding:
        90px 0;
}

.support-grid {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        25px;
}

.support-card {

    background:
        rgba(255,255,255,.07);

    border:
        1px solid rgba(255,255,255,.12);

    padding:
        30px;

    border-radius:
        15px;
}

.support-card h3 {

    color:
        white;

    margin-bottom:
        10px;
}

.support-card p {

    color:
        #cbd5e1;

    font-size:
        14px;

    line-height:
        1.7;
}


/* =========================================================
   CTA
========================================================= */

.final-cta {

    padding:
        90px 0;

    text-align:
        center;

    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #ffffff
        );
}

.final-cta h2 {

    font-size:
        42px;

    color:
        var(--dark-blue);

    margin-bottom:
        15px;
}

.final-cta p {

    max-width:
        700px;

    margin:
        0 auto 25px;

    color:
        var(--text-muted);
}


/* =========================================================
   FOOTER
========================================================= */

footer:not(.site-footer) {

    background:
        #0f172a;

    color:
        #94a3b8;

    padding:
        60px 0 25px;
}

.footer-grid {

    display:
        grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap:
        30px;

    margin-bottom:
        40px;
}

.footer-col h4 {

    color:
        white;

    margin-bottom:
        15px;
}

.footer-col ul {

    list-style:
        none;
}

.footer-col li {

    margin-bottom:
        8px;
}

.footer-col a {

    color:
        #94a3b8;

    text-decoration:
        none;
}

.footer-col a:hover {

    color:
        white;
}

.footer-bottom {

    border-top:
        1px solid rgba(255,255,255,.1);

    padding-top:
        20px;

    text-align:
        center;

    font-size:
        13px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1000px) {

    .legacy-page-nav {
        gap: 10px;
    }

    .legacy-page-nav a {
        font-size: 12px;
    }

    .quick-facts,
    .region-grid,
    .life-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .destination-grid,
    .winter-grid,
    .why-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .footer-grid {
        grid-template-columns:
            1fr 1fr;
    }
}


@media(max-width:800px) {

    header:not(.site-header) {
        padding:
            7px 0;
    }

    .header-container {
        flex-wrap:
            wrap;

        gap:
            10px;
    }

    .legacy-page-nav {
        display:
            none;
    }

    .header-btn {
        display:
            none;
    }

    .georgia-hero {
        min-height:
            620px;
    }

    .georgia-hero-content {
        padding:
            80px 5%;
    }

    .about-grid,
    .student-grid,
    .support-grid,
    .feature-section {
        grid-template-columns:
            1fr;
    }

    .feature-image {
        min-height:
            350px;
    }

    .feature-content {
        padding:
            60px 8%;
    }

    .destination-grid,
    .winter-grid,
    .why-grid {
        grid-template-columns:
            1fr;
    }

    .quick-facts,
    .region-grid,
    .life-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .footer-grid {
        grid-template-columns:
            1fr;
    }
}


@media(max-width:550px) {

    .quick-facts,
    .region-grid,
    .life-grid {
        grid-template-columns:
            1fr;
    }

    .georgia-hero h1 {
        font-size:
            43px;
    }

    .georgia-hero p {
        font-size:
            15px;
    }

    .section {
        padding:
            65px 0;
    }

    .about-image,
    .student-image {
        height:
            300px;
    }

    .feature-image {
        min-height:
            300px;
    }

    .winter-content h2,
    .student-content h2 {
        font-size:
            34px;
    }

    .final-cta h2 {
        font-size:
            32px;
    }
}

/* CSP-safe: converted inline style attributes */
.csp-exp-1{color:#93c5fd}
.csp-exp-2{color:white}
.csp-exp-3{color:#cbd5e1}
.csp-exp-4{margin-top:10px}
.csp-exp-5{margin-top:8px}
