:root {
    --navy: #0a1628;
    --deep-blue: #0f2744;
    --mid-blue: #1a3a5c;
    --cyan: #00c8ff;
    --cyan-light: #5ce1ff;
    --cyan-dark: #00a3d4;
    --light-grey: #f8fafc;
    --white: #ffffff;
    --text-dark: #1a1a2e;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.98);
    padding: 0.75rem 5%;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.logo-img {
    height: 60px;
    width: auto;
    transition: height 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyan);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--cyan);
}

.nav-cta {
    background: var(--cyan);
    color: var(--navy) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--cyan-light);
    color: var(--navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 200, 255, 0.3);
}

.nav-cta::after {
    display: none !important;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 22, 40, 0.98);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--cyan);
}

.highlight {
    color: var(--cyan) !important;
}

.highlight:hover {
    color: var(--white) !important;
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero-aircraft.jpg') center center / cover no-repeat;
    z-index: -3;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(10, 22, 40, 0.9) 0%, rgba(15, 39, 68, 0.85) 40%, rgba(26, 58, 92, 0.8) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 70% 30%, rgba(0, 200, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(0, 200, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #5CE1FF;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 9vw, 6rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero h1 span {
    display: block;
    color: #5CE1FF;
}

.hero-subtitle {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.7;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(92, 225, 255, 0.5);
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #FFFFFF;
    font-weight: 500;
}

.hero-badge svg {
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--cyan);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--cyan-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 200, 255, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
    opacity: 0.6;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* Section Styles */
section {
    padding: 100px 5%;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem;
}

.section-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--cyan-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--navy);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    font-weight: 400;
}

/* Programs Section */
.programs {
    background: var(--light-grey);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.program-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
}

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

.program-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.program-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.program-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--cyan);
    color: var(--navy);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.program-content {
    padding: 1.75rem;
}

.program-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--navy);
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.program-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.program-details {
    display: flex;
    gap: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap;
}

.program-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #64748b;
}

.program-detail svg {
    width: 18px;
    height: 18px;
    fill: var(--cyan-dark);
}

.program-price {
    font-weight: 600;
    color: var(--navy);
}

/* Ground School Announcement */
.ground-school-banner {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    padding: 60px 5%;
    text-align: center;
}

.ground-school-banner h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.no-waitlist-badge {
    display: inline-block;
    background: var(--navy);
    color: var(--cyan);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
}

.groundschool-joke {
    color: var(--navy);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 0.75rem;
    opacity: 0.7;
}

.ground-school-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.gs-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gs-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.gs-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

.gs-card .gs-date {
    color: var(--cyan-dark);
    font-weight: 600;
}

/* About Parallax Section */
.about-parallax {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, var(--navy) 0%, var(--deep-blue) 50%, var(--mid-blue) 100%);
}

.about-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300c8ff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

.about-text {
    color: var(--white);
}

.about-text .section-title {
    color: var(--white);
    text-align: left;
}

.about-text .section-label {
    text-align: left;
    color: var(--cyan);
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    text-align: center;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 200, 255, 0.15);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 200, 255, 0.08);
    border-color: rgba(0, 200, 255, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--navy);
}

.feature-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--cyan);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.feature-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* Instructors Section */
.instructors {
    background: var(--white);
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.instructor-card {
    background: var(--light-grey);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.instructor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.instructor-photo {
    height: 220px;
    background-size: cover;
    background-position: center top;
    position: relative;
    background-color: var(--mid-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.instructor-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(10, 22, 40, 0.4) 100%);
}

.instructor-photo.no-photo::after {
    content: '';
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.4)'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
}

.instructor-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--cyan);
    color: var(--navy);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.instructor-content {
    padding: 1.75rem;
}

.instructor-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--navy);
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.instructor-title {
    color: var(--cyan-dark);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.instructor-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.instructor-credentials span {
    background: var(--navy);
    color: var(--white);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.instructor-bio {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.instructor-aircraft {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.5;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.instructor-aircraft strong {
    color: var(--navy);
}

/* Pricing Section */
.pricing {
    background: var(--light-grey);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--cyan-dark);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    border-color: var(--cyan);
    transform: translateY(-5px);
}

.pricing-card.featured {
    background: linear-gradient(160deg, var(--navy) 0%, var(--deep-blue) 100%);
    color: var(--white);
}

.pricing-card-image {
    width: calc(100% + 4rem);
    height: 120px;
    margin: -2rem -2rem 1.5rem -2rem;
    background-size: cover;
    background-position: center;
}

.pricing-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.pricing-card.featured h3 {
    color: var(--cyan);
}

.pricing-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--cyan-dark);
    margin: 1rem 0;
}

.pricing-card.featured .pricing-amount {
    color: var(--cyan);
}

.pricing-amount span {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    opacity: 0.7;
}

.pricing-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

.pricing-card.featured p {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-disclaimer {
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
    margin-top: 2rem;
    font-style: italic;
}

/* Sightseeing Section */
.sightseeing {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.sightseeing-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sightseeing-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--navy);
    margin-bottom: 1rem;
}

.sightseeing-text p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.sightseeing-price {
    background: var(--light-grey);
    padding: 1.5rem;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.sightseeing-price .price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--cyan-dark);
}

.sightseeing-price span {
    color: #64748b;
    font-size: 0.9rem;
}

.sightseeing-image {
    border-radius: 16px;
    height: 350px;
    background: url('long-point-aerial.jpg') center center / cover no-repeat;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Coming Soon Section */
.coming-soon {
    background: linear-gradient(160deg, var(--navy) 0%, var(--deep-blue) 100%);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.coming-soon .section-title {
    color: var(--white);
}

.coming-soon .section-label {
    color: var(--cyan);
    opacity: 0.75;
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.coming-soon .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.coming-soon-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 200, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.coming-soon-card:hover {
    background: rgba(0, 200, 255, 0.1);
    border-color: rgba(0, 200, 255, 0.4);
    transform: translateY(-5px);
}

.coming-soon-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
}

.coming-soon-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--cyan);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.coming-soon-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.coming-soon-cta {
    text-align: center;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.coming-soon-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.coming-soon-cta a {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 600;
}

.coming-soon-cta a:hover {
    text-decoration: underline;
}

/* Static Reviews Section */
.reviews {
    background: var(--light-grey);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.review-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--navy);
    flex-shrink: 0;
}

.review-meta h4 {
    font-weight: 600;
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.review-stars {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-text {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.7;
    font-style: italic;
}

.reviews-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Instagram Gallery Section (kept for future use) */
.gallery {
    background: var(--white);
}

.instagram-widget-container {
    max-width: 900px;
    margin: 0 auto 2rem;
}

.instagram-placeholder {
    background: var(--light-grey);
    border: 2px dashed #e2e8f0;
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
}

.instagram-placeholder-content {
    color: #94a3b8;
}

.instagram-placeholder-content svg {
    margin-bottom: 1rem;
    opacity: 0.5;
}

.instagram-placeholder-content p {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.instagram-placeholder-content span {
    font-size: 0.9rem;
}

.gallery-cta {
    text-align: center;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(160deg, var(--navy) 0%, var(--deep-blue) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section .section-title {
    color: var(--white);
}

.cta-section .section-label {
    color: var(--cyan);
}

.cta-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    background: var(--light-grey);
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
}

.contact-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: var(--navy);
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--navy);
}

.contact-item h4 {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.contact-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-item a {
    color: var(--cyan-dark);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 200, 255, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* Footer */
footer {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 60px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-column h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
    color: var(--cyan);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.6rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: var(--cyan);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sightseeing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sightseeing-image {
        height: 300px;
        order: -1;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .instructors-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 988px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .feature-item {
        padding: 1.25rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    section {
        padding: 70px 5%;
    }

    .ground-school-cards {
        grid-template-columns: 1fr;
    }

    .sightseeing-image {
        height: 250px;
    }

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

    .instructor-photo {
        height: 180px;
    }

    .coming-soon-grid {
        grid-template-columns: 1fr;
    }

    .hero-badge {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .hero-badge span {
        font-size: 0.85rem;
    }

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

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations on scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}