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

:root {
    --primary-color: #3B82F6;
    --primary-dark: #2563EB;
    --text-color: #1a1a1a;
    --text-muted: #6b7280;
    --bg-color: #ffffff;
    --bg-alt: #f9fafb;
    --border-color: #e5e7eb;
    --font-sans: 'DM Sans', sans-serif;
}

body {
    font-family: var(--font-sans);
    color: var(--text-color);
    line-height: 1.6;
    background: var(--bg-color);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-image: url('images/hero-jet-suit.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    padding: 0 1.5rem;
    max-width: 56rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 42rem;
    margin: 0 auto;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-header {
    max-width: 48rem;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Pricing Card */
.pricing-card {
    max-width: 28rem;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    text-align: center;
}

.pricing-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.currency-toggle {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.currency-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 0.375rem;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 500;
    transition: all 0.2s;
}

.currency-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.currency-btn:hover:not(.active) {
    background: var(--bg-alt);
}

.price-display {
    margin-bottom: 2rem;
}

.price {
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-vat {
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-sans);
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

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

.btn-outline:hover {
    background: var(--bg-alt);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    width: 100%;
}

/* Inclusions */
.inclusions-list {
    max-width: 42rem;
    margin: 0 auto;
}

.inclusion-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.inclusion-item p {
    font-size: 1.125rem;
}

/* Schedule */
.schedule-intro {
    font-size: 1.125rem;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 1.5rem;
}

.schedule-text {
    text-align: center;
    color: var(--text-muted);
    max-width: 48rem;
    margin: 0 auto 1.5rem;
}

.schedule-card {
    max-width: 42rem;
    margin: 3rem auto 0;
    padding: 2rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
}

.schedule-ready {
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

.schedule-times {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.schedule-time {
    text-align: center;
}

.schedule-time-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.schedule-time-value {
    font-size: 2rem;
    font-weight: 700;
}

.arrow-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--text-muted);
}

/* Testimonial */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    color: var(--text-muted);
}

.testimonial-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    display: block;
}

/* Training Centers */
.centers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.center-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
}

.center-image img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.center-content {
    padding: 1.5rem;
}

.center-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.center-location {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.center-description {
    line-height: 1.7;
}

.center-actions {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.external-icon {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
}

/* Package */
.package-card {
    max-width: 56rem;
    margin: 0 auto;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
}

.package-image img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.package-content {
    padding: 2rem;
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.package-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
}

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

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Enquire Form */
.enquire-form {
    max-width: 32rem;
    margin: 2rem auto 0;
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-family: var(--font-sans);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.375rem;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    display: block;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }

    .section {
        padding: 6rem 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .pricing-card {
        padding: 3rem;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .package-card {
        grid-template-columns: 2fr 3fr;
    }

    .package-image img {
        height: 100%;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .cta-title {
        font-size: 3.75rem;
    }
}
