/* ============================================================
   Youth Bridge Travel University — Main Stylesheet
   Design: Modern, energetic, institutional. PHP 7.2 project.
   Colors: Orange/Gold #F5A623 | Dark Green #1A5C38 | Red #CC0000
           Navy #1A2B5F | Cream #FFF8F0 | Teal #00BCD4
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #2C3E50;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; }

/* ── CSS Variables ────────────────────────────────────────── */
:root {
    --orange:    #F5A623;
    --orange-dk: #D4881A;
    --green:     #1A5C38;
    --green-dk:  #124027;
    --red:       #CC0000;
    --navy:      #1A2B5F;
    --navy-dk:   #0F1A3B;
    --teal:      #00BCD4;
    --cream:     #FFF8F0;
    --white:     #ffffff;
    --text:      #2C3E50;
    --text-light:#6B7280;
    --border:    #E5E7EB;
    --radius:    12px;
    --radius-sm: 8px;
    --shadow:    0 4px 20px rgba(0,0,0,.10);
    --shadow-lg: 0 8px 40px rgba(0,0,0,.16);
    --transition:0.3s ease;
}

/* ── Typography ───────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 12px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--orange);
    margin: 14px auto 0;
    border-radius: 2px;
}

.section-sub {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Container ────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
    letter-spacing: .5px;
    text-align: center;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(245,166,35,.4);
}

.btn-primary:hover {
    background: var(--orange-dk);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,166,35,.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-green {
    background: var(--green);
    color: var(--white);
}

.btn-green:hover {
    background: var(--green-dk);
    transform: translateY(-2px);
}

/* ── Section Padding ──────────────────────────────────────── */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-bg { background: var(--cream); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-green { background: var(--green); color: var(--white); }


/* ═══════════════════════════════════════════════════════════
   HEADER / NAVIGATION
═══════════════════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
    padding: 16px 0;
}

.site-header.scrolled {
    background: var(--navy-dk);
    box-shadow: 0 2px 20px rgba(0,0,0,.3);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-img {
    height: 52px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.3));
}

.main-nav { display: flex; }

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-list li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    color: rgba(255,255,255,.9);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-list li a:hover { color: var(--orange); }

.nav-apply-btn {
    background: var(--orange) !important;
    color: var(--white) !important;
    padding: 9px 20px !important;
    border-radius: 50px !important;
    box-shadow: 0 3px 12px rgba(245,166,35,.4);
}

.nav-apply-btn:hover {
    background: var(--orange-dk) !important;
    transform: translateY(-1px);
}

/* Language Switcher */
.nav-right { display: flex; align-items: center; gap: 16px; }

.lang-switcher { display: flex; align-items: center; gap: 4px; }

.lang-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    color: rgba(255,255,255,.7);
    padding: 4px 8px;
    border-radius: 4px;
    transition: var(--transition);
}

.lang-btn.active,
.lang-btn:hover { color: var(--orange); }

.lang-sep { color: rgba(255,255,255,.4); font-size: .85rem; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 999;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy-dk);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-bg.loaded { transform: scale(1); }

/* Gradient overlay — orange-gold at top-left fading to deep navy */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 43, 95, 0.75) 0%,
        rgba(26, 43, 95, 0.55) 40%,
        rgba(245, 166, 35, 0.30) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 120px 20px 80px;
}

.hero-badge {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(245,166,35,.5);
    animation: fadeDown .6s ease both;
}

.hero-title {
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0,0,0,.4);
    animation: fadeDown .7s ease .1s both;
}

.hero-title-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 4vw, 3rem);
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    margin-top: 4px;
    text-shadow: 0 2px 10px rgba(0,0,0,.4);
    animation: fadeDown .7s ease .2s both;
}

.hero-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.3rem, 3.5vw, 2rem);
    font-weight: 800;
    color: var(--white);
    margin-top: 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
    animation: fadeDown .7s ease .3s both;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,.85);
    margin-top: 10px;
    font-weight: 500;
    animation: fadeDown .7s ease .4s both;
}

/* Info Boxes */
.hero-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    animation: fadeDown .7s ease .5s both;
}

.hero-info-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50px;
    padding: 8px 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    color: var(--white);
}

.hero-info-box i { color: var(--orange); font-size: 1rem; }

/* Hero Buttons */
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
    animation: fadeDown .7s ease .6s both;
}

.hero-btns .btn { font-size: 1rem; padding: 14px 34px; }

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.7);
    font-size: .75rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-scroll i { font-size: 1.4rem; color: var(--orange); }

/* ═══════════════════════════════════════════════════════════
   COVERAGE STRIP (what's included icons)
═══════════════════════════════════════════════════════════ */
.coverage-strip {
    background: var(--navy);
    padding: 50px 0;
}

.coverage-tagline {
    text-align: center;
    color: rgba(255,255,255,.7);
    font-size: .95rem;
    margin-bottom: 36px;
    font-style: italic;
}

.coverage-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.coverage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    min-width: 110px;
    transition: var(--transition);
}

.coverage-item:hover { transform: translateY(-4px); }

.coverage-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(245,166,35,.15);
    border: 2px solid rgba(245,166,35,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--orange);
    transition: var(--transition);
}

.coverage-item:hover .coverage-icon {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.coverage-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    text-align: center;
    letter-spacing: .3px;
}

/* ═══════════════════════════════════════════════════════════
   GENERAL OBJECTIVE
═══════════════════════════════════════════════════════════ */
.objective {
    background: var(--white);
}

.objective-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.objective-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.objective-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.objective-image::before {
    content: '';
    position: absolute;
    top: -10px; left: -10px;
    width: 80px; height: 80px;
    border-top: 4px solid var(--orange);
    border-left: 4px solid var(--orange);
    z-index: 1;
}

.objective-text .section-title { text-align: left; }
.objective-text .section-title::after { margin-left: 0; }

.objective-text p {
    color: var(--text-light);
    margin-top: 20px;
    font-size: 1.02rem;
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════
   CITIES SECTION
═══════════════════════════════════════════════════════════ */
.cities { background: var(--cream); }

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.city-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
    transition: var(--transition);
    cursor: pointer;
}

.city-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.city-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.city-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.city-card:hover .city-img-wrap img { transform: scale(1.08); }

.city-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26,43,95,.7) 0%, transparent 60%);
}

.city-name-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

.city-body {
    padding: 20px;
}

.city-body p {
    color: var(--text-light);
    font-size: .93rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.city-btn-link {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    color: var(--green);
    border: 2px solid var(--green);
    padding: 8px 20px;
    border-radius: 50px;
    transition: var(--transition);
}

.city-btn-link:hover {
    background: var(--green);
    color: var(--white);
}

/* ═══════════════════════════════════════════════════════════
   PROGRAM CONTENT
═══════════════════════════════════════════════════════════ */
.program-content { background: var(--white); }

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.program-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--cream);
    border-radius: var(--radius);
    padding: 24px;
    border-left: 4px solid var(--orange);
    transition: var(--transition);
}

.program-item:hover {
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.program-item-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.program-item p {
    font-weight: 600;
    color: var(--text);
    font-size: .98rem;
    line-height: 1.5;
    padding-top: 10px;
}

/* ═══════════════════════════════════════════════════════════
   ELIGIBILITY
═══════════════════════════════════════════════════════════ */
.eligibility { background: var(--navy); }
.eligibility .section-title { color: var(--white); }
.eligibility .section-title::after { background: var(--orange); }

.eligibility-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 50px;
}

.elig-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    flex: 1;
    min-width: 220px;
    max-width: 320px;
    transition: var(--transition);
}

.elig-card:hover {
    background: rgba(245,166,35,.12);
    border-color: var(--orange);
    transform: translateY(-4px);
}

.elig-icon {
    font-size: 2.2rem;
    color: var(--orange);
    margin-bottom: 16px;
}

.elig-card p {
    color: rgba(255,255,255,.85);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   COSTS COVERED
═══════════════════════════════════════════════════════════ */
.costs { background: var(--cream); }

.costs-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    margin-top: 50px;
}

.cost-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 30px;
    min-width: 250px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.cost-item:hover {
    border-color: var(--green);
    transform: translateY(-4px);
}

.cost-icon {
    font-size: 2rem;
    color: var(--green);
    flex-shrink: 0;
}

.cost-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
}

/* ═══════════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════════ */
.cta-section {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 50%, var(--green-dk) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    position: relative;
}

.cta-section p {
    color: rgba(255,255,255,.9);
    font-size: 1.1rem;
    max-width: 580px;
    margin: 0 auto 32px;
    position: relative;
}

.cta-section .btn-outline {
    border-color: var(--white);
    font-size: 1.1rem;
    padding: 15px 40px;
}

/* ═══════════════════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════════════════ */
.faq { background: var(--white); }

.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.open {
    border-color: var(--orange);
    box-shadow: 0 4px 15px rgba(245,166,35,.12);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.faq-question:hover { color: var(--orange); }

.faq-question i {
    flex-shrink: 0;
    color: var(--orange);
    transition: transform var(--transition);
}

.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: .97rem;
}

.faq-item.open .faq-answer { max-height: 300px; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--navy-dk);
    color: rgba(255,255,255,.75);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo { height: 52px; margin-bottom: 14px; }

.footer-tagline {
    font-size: .9rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 12px;
}

.footer-site-link {
    color: var(--orange);
    font-weight: 600;
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.footer-site-link:hover { color: var(--white); }

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,.65);
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--orange); }

.social-icons { display: flex; gap: 10px; flex-wrap: wrap; }

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: .9rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
}

.footer-apply-box {
    background: rgba(245,166,35,.1);
    border: 1px solid rgba(245,166,35,.3);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}

.footer-deadline {
    color: rgba(255,255,255,.8);
    font-size: .95rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.footer-deadline i { color: var(--orange); }

.footer-apply-box .btn { width: 100%; }

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    color: rgba(255,255,255,.4);
    font-size: .82rem;
}

/* ═══════════════════════════════════════════════════════════
   APPLY PAGE
═══════════════════════════════════════════════════════════ */
.apply-hero {
    background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 100%);
    padding: 140px 0 60px;
    text-align: center;
}

.apply-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 10px;
}

.apply-hero p {
    color: rgba(255,255,255,.75);
    font-size: 1.05rem;
}

.apply-section { padding: 60px 0 80px; background: var(--cream); }

.apply-form-wrap {
    max-width: 820px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 50px 50px;
}

.apply-form-wrap h2 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--orange);
    display: flex;
    align-items: center;
    gap: 10px;
}

.apply-form-wrap h2 i { color: var(--orange); }

.form-section-divider { margin: 36px 0; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .88rem;
    color: var(--navy);
}

.form-group label .req { color: var(--red); margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Open Sans', sans-serif;
    font-size: .97rem;
    color: var(--text);
    background: #F9FAFB;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(245,166,35,.12);
}

.form-group input.error,
.form-group select.error {
    border-color: var(--red);
}

.field-error {
    color: var(--red);
    font-size: .82rem;
    margin-top: 2px;
    display: none;
}

.field-error.show { display: block; }

.city-selector {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.city-selector-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: rgba(255,255,255,.8);
}

.city-selector select {
    background: rgba(255,255,255,.1);
    border: 1.5px solid rgba(255,255,255,.3);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 50px;
    outline: none;
    cursor: pointer;
}

.city-selector select option { background: var(--navy-dk); color: var(--white); }

/* Consent checkboxes */
.consent-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 8px;
}

.consent-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--orange);
    cursor: pointer;
}

.consent-group label {
    font-size: .9rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1.5;
}

/* Submit Row */
.form-submit {
    margin-top: 32px;
    text-align: center;
}

.form-submit .btn {
    min-width: 240px;
    font-size: 1.05rem;
    padding: 16px 40px;
}

/* Flash Messages */
.flash {
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.flash.success { background: #D1FAE5; color: #065F46; border-left: 4px solid #10B981; }
.flash.error   { background: #FEE2E2; color: #991B1B; border-left: 4px solid var(--red); }

/* ═══════════════════════════════════════════════════════════
   THANK YOU PAGE
═══════════════════════════════════════════════════════════ */
.thankyou-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    padding: 80px 20px;
    text-align: center;
}

.thankyou-box {
    max-width: 560px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 60px 48px;
}

.thankyou-icon {
    font-size: 4rem;
    color: var(--green);
    margin-bottom: 20px;
}

.thankyou-box h1 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 14px;
}

.thankyou-box p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ═══════════════════════════════════════════════════════════
   ADMIN PANEL
═══════════════════════════════════════════════════════════ */
.admin-body {
    background: #F1F5F9;
    font-family: 'Open Sans', sans-serif;
    min-height: 100vh;
}

.admin-header {
    background: var(--navy-dk);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-header h1 {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-header h1 span { color: var(--orange); }

.admin-nav a {
    color: rgba(255,255,255,.75);
    font-size: .88rem;
    margin-left: 16px;
    transition: var(--transition);
}

.admin-nav a:hover { color: var(--orange); }

.admin-wrap { max-width: 1300px; margin: 0 auto; padding: 30px 24px; }

.admin-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    padding: 24px;
    margin-bottom: 24px;
}

.admin-card h2 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.stat-box {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
}

.stat-number { font-size: 2rem; font-weight: 800; color: var(--orange); }
.stat-label  { font-size: .82rem; color: rgba(255,255,255,.7); margin-top: 4px; }

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
}

.admin-table th {
    background: var(--navy);
    color: var(--white);
    padding: 12px 14px;
    text-align: left;
    font-weight: 600;
}

.admin-table td { padding: 11px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table tr:hover td { background: #F8FAFC; }

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 700;
}

.badge-istanbul   { background: #DBEAFE; color: #1E40AF; }
.badge-ankara     { background: #D1FAE5; color: #065F46; }
.badge-konya      { background: #FEF3C7; color: #92400E; }
.badge-cappadocia { background: #FCE7F3; color: #9D174D; }

.admin-btn {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: .82rem;
    font-weight: 700;
    transition: var(--transition);
}

.admin-btn-view   { background: var(--navy); color: var(--white); }
.admin-btn-delete { background: #FEE2E2; color: var(--red); }
.admin-btn-csv    { background: var(--green); color: var(--white); }
.admin-btn:hover  { opacity: .85; }

.admin-filter {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 20px;
}

.admin-filter select,
.admin-filter input {
    padding: 9px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .9rem;
    outline: none;
}

.admin-filter select:focus,
.admin-filter input:focus { border-color: var(--orange); }

/* ─── Admin Login ─────────────────────────────────────────── */
.admin-login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-dk);
}

.admin-login-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 50px 44px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}

.admin-login-box .logo-img { margin: 0 auto 24px; height: 52px; }
.admin-login-box h1 { text-align: center; font-size: 1.4rem; margin-bottom: 28px; color: var(--navy); }

.admin-login-box input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .97rem;
    margin-bottom: 14px;
    outline: none;
    transition: var(--transition);
}

.admin-login-box input:focus { border-color: var(--orange); }
.admin-login-box .btn { width: 100%; }

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════ */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(10px); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .objective-inner { grid-template-columns: 1fr; gap: 36px; }
    .objective-image { max-width: 540px; margin: 0 auto; }
}

@media (max-width: 768px) {
    /* Header */
    .hamburger { display: flex; }

    .main-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy-dk);
        z-index: 1100;
        padding: 80px 28px 28px;
        transition: right var(--transition);
        box-shadow: -4px 0 20px rgba(0,0,0,.3);
    }

    .main-nav.open { right: 0; }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .nav-list li a {
        font-size: 1.05rem;
        padding: 12px 0;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
        display: block;
        width: 100%;
    }

    .mobile-nav-overlay { display: block; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
    .mobile-nav-overlay.show { opacity: 1; pointer-events: all; }

    /* Form */
    .form-grid { grid-template-columns: 1fr; }
    .apply-form-wrap { padding: 30px 20px; }
    .city-selector { flex-direction: column; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    /* Hero */
    .hero-content { padding: 100px 20px 60px; }
    .hero-btns .btn { width: 100%; text-align: center; }
    .hero-info-row { justify-content: flex-start; }

    /* Sections */
    .section { padding: 60px 0; }
    .cities-grid { grid-template-columns: 1fr; }

    /* Admin */
    .stats-row { grid-template-columns: 1fr 1fr; }
    .admin-wrap { padding: 20px 16px; }
}

@media (max-width: 480px) {
    .stats-row { grid-template-columns: 1fr; }
    .admin-login-box { padding: 36px 24px; }
    .thankyou-box { padding: 40px 24px; }
    .coverage-grid { gap: 14px; }
}
