/* ======================================================
   KITES Training Center - Complete Redesign
   Inspired by TLAB Global Design Language
   ====================================================== */

:root {
    --orange: #f26522;
    --orange-dark: #d95a1e;
    --orange-light: #fff3ec;
    --dark-blue: #1c2d5e;
    --dark-blue-hover: #162348;
    --navy: #0f1f4b;
    --light-bg: #f5f7fb;
    --gray: #6b7280;
    --text: #1a1a2e;
    --white: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.nav-link,
.btn {
    font-family: 'Maven Pro', sans-serif;
}

/* ===== UTILITIES ===== */
.text-orange {
    color: var(--orange) !important;
}

.bg-orange {
    background-color: var(--orange) !important;
}

.text-dark-blue {
    color: var(--dark-blue) !important;
}

.bg-dark-blue {
    background-color: var(--dark-blue) !important;
}

/* ===== STICKY HEADER WRAPPER ===== */
.sticky-header-wrap {
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
}

/* ===== TOP BAR ===== */
.topbar-strip {
    background: var(--dark-blue);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
    padding: 7px 0;
}

.topbar-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.topbar-link:hover {
    color: var(--orange);
}

.topbar-sep {
    color: rgba(255, 255, 255, 0.25);
}

.topbar-social {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.topbar-social:hover {
    color: var(--orange);
}

/* ===== NAVBAR ===== */
.main-nav {
    border-bottom: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12) !important;
    border-bottom-color: transparent;
}

.main-nav .nav-link {
    color: var(--dark-blue) !important;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 1rem;
    transition: color 0.2s;
    position: relative;
}

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
    width: 60%;
}

.main-nav .nav-link:hover {
    color: var(--orange) !important;
}

.btn-enroll {
    background: var(--orange);
    color: white;
    border: none;
    padding: 8px 22px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-enroll:hover {
    background: var(--orange-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(242, 101, 34, 0.35);
}

/* ===== HERO SECTION (TLAB full-width style) ===== */
.hero-full {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(rgba(15, 31, 75, 0.82), rgba(15, 31, 75, 0.88)),
        url('images/kites_classroom_scene.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15, 31, 75, 0.9) 0%, rgba(28, 45, 94, 0.6) 100%);
}

.hero-body {
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 20px;
}

.min-vh-hero {
    min-height: calc(90vh - 130px);
}

.hero-batch-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(242, 101, 34, 0.2);
    border: 1px solid rgba(242, 101, 34, 0.5);
    color: #ffb380;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: glow 2.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 4px rgba(242, 101, 34, 0.3);
    }

    to {
        box-shadow: 0 0 16px rgba(242, 101, 34, 0.6);
    }
}

.hero-headline {
    font-size: clamp(2.5rem, 5.5vw, 5rem);
    font-weight: 900;
    color: white;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.hero-days {
    color: var(--orange);
    font-size: clamp(3rem, 6.5vw, 6rem);
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.3px;
}

.btn-hero-primary {
    background: var(--orange);
    color: white;
    border: none;
    padding: 13px 32px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background: var(--orange-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 101, 34, 0.4);
}

.btn-hero-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 11px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: white;
    color: var(--dark-blue);
    border-color: white;
    transform: translateY(-2px);
}

.btn-hero-wa {
    background: #25d366;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-hero-wa:hover {
    background: #1ebe5a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Hero stats bar */
.hero-stats-bar {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-item {
    padding: 24px 20px;
    text-align: center;
    color: white;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s;
}

.hero-stat-item:last-child {
    border-right: none;
}

.hero-stat-item:hover {
    background: rgba(242, 101, 34, 0.15);
}

.hero-stat-icon {
    font-size: 1.8rem;
    color: var(--orange);
    display: block;
    margin-bottom: 6px;
}

.hero-stat-val {
    font-size: 1.6rem;
    font-weight: 900;
    color: white;
    font-family: 'Maven Pro', sans-serif;
    line-height: 1;
}

.hero-stat-lbl {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== SECTION LABELS ===== */
.section-label-wrap {
    display: block;
}

.section-label {
    display: inline-block;
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 14px;
    border-radius: 3px;
    background: rgba(242, 101, 34, 0.1);
    border-left: 3px solid var(--orange);
}

.section-label-light {
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: var(--dark-blue);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.title-accent {
    color: var(--orange);
}

.title-accent-light {
    color: var(--orange);
}

.title-divider {
    width: 55px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
    margin-top: 14px;
}

.section-body {
    color: var(--gray);
    line-height: 1.75;
    font-size: 0.97rem;
}

/* ===== ABOUT SECTION ===== */
.about-strip {
    background: var(--light-bg);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.about-img-grid {
    position: relative;
}

.about-img-main {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: block;
    max-height: 460px;
    object-fit: cover;
}

.about-stat-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    border-radius: 10px;
    padding: 20px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.14);
    min-width: 200px;
}

.asc-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark-blue);
    font-family: 'Maven Pro', sans-serif;
    line-height: 1.1;
}

.asc-lbl {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.about-check-item {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
}

/* ===== PROGRAMS SECTION ===== */
.programs-section {
    background: white;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.course-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}

.course-card-img {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.course-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
}

.course-icon-big {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.course-card-body {
    padding: 1.4rem 1.4rem 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.ctag {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    padding: 3px 10px;
    border-radius: 100px;
}

.ctag-purple {
    background: #EEF2FF;
    color: #4F46E5;
}

.ctag-orange {
    background: #FFF7ED;
    color: #EA580C;
}

.ctag-red {
    background: #FFF1F2;
    color: #E11D48;
}

.ctag-blue {
    background: #F0F9FF;
    color: #0EA5E9;
}

.ctag-cyan {
    background: #ECFEFF;
    color: #0891B2;
}

.ctag-yellow {
    background: #FFFBEB;
    color: #D97706;
}

.ctag-outline {
    background: transparent;
    color: var(--gray);
    border: 1px solid #e0e0e0;
}

.course-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}

.course-desc {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 0.6rem;
}

.course-points {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    flex-grow: 1;
}

.course-points li {
    font-size: 0.82rem;
    color: var(--dark-blue);
    font-weight: 600;
    padding: 3px 0;
    padding-left: 18px;
    position: relative;
}

.course-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 900;
}

.btn-course-enroll {
    display: inline-flex;
    align-items: center;
    background: var(--dark-blue);
    color: white;
    border: none;
    padding: 9px 20px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    align-self: flex-start;
    margin-top: auto;
}

.btn-course-enroll:hover {
    background: var(--orange);
    color: white;
    transform: translateX(3px);
}

/* Batch CTA */
.batch-cta-box {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #2B7FFA 100%);
    border-radius: 12px;
    padding: 2rem 2.5rem;
}

.batch-cta-icon {
    width: 52px;
    height: 52px;
    background: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

.btn-batch-primary {
    background: var(--orange);
    color: white;
    border: none;
    padding: 11px 28px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-batch-primary:hover {
    background: var(--orange-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 101, 34, 0.4);
}

.btn-batch-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 9px 24px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-batch-outline:hover {
    background: white;
    color: var(--dark-blue);
    border-color: white;
}

/* ===== OBJECTIVES / WHY KITES ===== */
.objectives-section {
    background: var(--navy);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.obj-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem 1.6rem;
    height: 100%;
    transition: all 0.3s ease;
    text-align: left;
}

.obj-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(242, 101, 34, 0.4);
}

.obj-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.1rem;
    transition: transform 0.3s;
}

.obj-card:hover .obj-icon-box {
    transform: scale(1.1) rotate(-5deg);
}

.obj-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.obj-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
}

/* ===== STATS BAND ===== */
.stats-band {
    background: var(--orange);
}

.stat-band-item {
    padding: 0.5rem;
    transition: transform 0.3s;
}

.stat-band-item:hover {
    transform: scale(1.05);
}

.stat-band-num {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: white;
    font-family: 'Maven Pro', sans-serif;
    line-height: 1;
}

.stat-band-lbl {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* ===== INQUIRY SECTION ===== */
.inquiry-section {
    background: var(--light-bg);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.inquiry-card {
    background: white;
    border-radius: 12px;
    padding: 2rem 2.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--orange);
}

.tlab-input {
    border: 1.5px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fafafa;
}

.tlab-input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.12);
    background: white;
    outline: none;
}

.btn-submit-form {
    background: var(--orange);
    color: white;
    border: none;
    padding: 13px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-submit-form:hover {
    background: var(--orange-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 101, 34, 0.35);
}

/* Contact Info */
.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.contact-info-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.cinfo-icon {
    width: 40px;
    height: 40px;
    background: rgba(242, 101, 34, 0.1);
    color: var(--orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cinfo-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    font-weight: 600;
}

.cinfo-val {
    font-size: 0.9rem;
    color: var(--dark-blue);
    font-weight: 600;
    line-height: 1.5;
}

.map-wrapper {
    height: 320px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--navy);
}

.footer-top {
    padding: 4rem 0 2rem;
}

.footer-body {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.footer-heading {
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

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

.footer-links li {
    margin-bottom: 0.6rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
    color: var(--orange);
    padding-left: 5px;
}

.footer-social-row {
    display: flex;
    gap: 10px;
}

.ftr-social {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
}

.ftr-social:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
}

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.55rem;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fab-pulse 3s infinite;
}

.whatsapp-fab:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes fab-pulse {

    0%,
    100% {
        box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 6px 32px rgba(37, 211, 102, 0.75), 0 0 0 10px rgba(37, 211, 102, 0.12);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .hero-full {
        min-height: 70vh;
    }

    .hero-stats-bar .hero-stat-item {
        padding: 16px 12px;
    }

    .hero-stat-val {
        font-size: 1.2rem;
    }

    .about-stat-card {
        left: 10px;
        bottom: -10px;
    }

    .inquiry-card {
        padding: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-full {
        min-height: 60vh;
    }

    .about-stat-card {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 16px;
    }

    .batch-cta-box {
        padding: 1.5rem;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--dark-blue);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--orange);
}