:root {
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --secondary: #FFD700;
    --dark: #0A0A0A;
    --dark-gray: #1A1A1A;
    --gray: #333333;
    --light-gray: #666666;
    --white: #FFFFFF;
    --overlay: rgba(10, 10, 10, 0.7);
    --gradient-primary: linear-gradient(135deg, #0066FF 0%, #0088FF 100%);
    --gradient-secondary: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-full {
    max-width: 100%;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    opacity: 1 !important;
}

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

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.nav-menu a:hover {
    color: var(--primary);
}

.btn-book-nav {
    background: var(--gradient-primary);
    border-radius: 4px;
    font-weight: 600;
}

.btn-book-nav::after {
    display: none;
}

.btn-book-nav:hover {
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 59, 0, 0.4);
}
.btn-book-nav-header {
    padding: 0.75rem 1.5rem !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, rgba(255, 215, 0, 0.2) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%230A0A0A" width="1200" height="800"/><g opacity="0.1"><path fill="%230066FF" d="M0 400 Q300 200 600 400 T1200 400 L1200 800 L0 800 Z"/></g></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    line-height: 0.9;
    margin-bottom: 1rem;
}

.title-line {
    display: block;
    font-size: 4rem;
    letter-spacing: 0.3rem;
    animation: fadeInUp 1s ease-out;
}

.title-massive {
    font-size: 10rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    text-shadow: 0 0 80px rgba(0, 102, 255, 0.5);
}

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    margin-bottom: 3rem;
    color: var(--secondary);
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.5);
}

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

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

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

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

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeIn 1s ease-out 1s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(20px); opacity: 1; }
}

/* Stats Bar */
.stats-bar {
    background: var(--dark-gray);
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    border-top: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
    position: relative;
    z-index: 10;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.stat {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
}

.stat-label {
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--light-gray);
    font-weight: 400;
}

/* Section Styling */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--light-gray);
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

/* Experience Section */
.experience {
    background: var(--dark);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.experience-card {
    background: var(--dark-gray);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.experience-card:hover::before {
    left: 100%;
}

.experience-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.experience-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--primary);
}

.experience-card p {
    color: var(--light-gray);
    line-height: 1.8;
    font-weight: 300;
}

/* Gallery Section */
.gallery {
    background: var(--dark-gray);
    padding: 6rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item-large {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.gallery-item-tall {
    grid-row: span 2;
    aspect-ratio: 1/2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

/* Booking CTA */
.booking-cta {
    background: 
        linear-gradient(135deg, rgba(0, 102, 255, 0.9) 0%, rgba(0, 136, 255, 0.9) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%230A0A0A" width="1200" height="400"/><g opacity="0.3"><circle fill="%23FFD700" cx="200" cy="200" r="150"/><circle fill="%23FFD700" cx="1000" cy="200" r="150"/></g></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0;
    text-align: center;
    position: relative;
}

.booking-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.3) 100%);
}

.booking-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    letter-spacing: 0.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.booking-text {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.booking-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* FAQ Section */
.faq {
    background: var(--dark);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    background: var(--dark-gray);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
}

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--light-gray);
    line-height: 1.8;
    font-weight: 300;
}

/* Contact Section */
.contact {
    background: var(--dark-gray);
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-info > p {
    color: var(--light-gray);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.contact-item a,
.contact-item p {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

/* Booking Section */
.book {
    background: var(--dark-gray);
    padding: 3rem 0;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.social-links svg {
    width: 24px;
    height: 24px;
}

.contact-form-wrapper {
    background: var(--dark);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--dark-gray);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 4px;
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    padding: 3rem 0 1.5rem;
    border-top: 3px solid var(--primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--light-gray);
    font-weight: 300;
}

.footer-links h4,
.footer-contact h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary);
}

.footer-contact p {
    color: var(--light-gray);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
}

.footer-bottom p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .title-massive {
        font-size: 7rem;
    }
    
    .gallery-item-large {
        grid-column: span 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .title-line {
        font-size: 3rem;
    }
    
    .title-massive {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 4rem 2rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .booking-title {
        font-size: 3.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-item-tall {
        grid-row: span 1;
    }
}

@media (max-width: 480px) {
    .title-line {
        font-size: 2rem;
    }
    
    .title-massive {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stats-bar {
        grid-template-columns: 1fr;
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .booking-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Page Header */
.page-header {
    background: var(--dark-gray);
    padding: 8rem 0 1rem;
    text-align: center;
    border-bottom: 3px solid var(--primary);
}

.page-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    letter-spacing: 0.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    font-weight: 300;
}

/* Intro Section */
.intro-section {
    padding: 6rem 0;
    background: var(--dark);
}

.intro-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.1rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

.intro-cta {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Quick Features */
.quick-features {
    background: var(--dark-gray);
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-card p {
    color: var(--light-gray);
    line-height: 1.8;
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 0;
    background: var(--dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.stars {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--primary);
    font-weight: 600;
}

/* Timeline */
.what-to-expect {
    background: var(--dark-gray);
    padding: 6rem 0;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 60px;
    bottom: -40px;
    width: 2px;
    background: var(--primary);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.timeline-content p {
    color: var(--light-gray);
    line-height: 1.8;
}

/* Rental Options */
.rental-options {
    padding: 2rem 0;
    background: var(--dark);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.option-card {
    background: var(--dark-gray);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border: 2px solid rgba(0, 102, 255, 0.2);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.3);
}

.option-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, var(--dark-gray) 50%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-secondary);
    color: var(--dark);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.option-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.duration {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.option-card p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Safety Section */
.safety-section {
    padding: 6rem 0;
    background: var(--dark);
}

.safety-content {
    max-width: 900px;
    margin: 0 auto;
}

.safety-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--light-gray);
    margin-bottom: 2rem;
}

.safety-list {
    list-style: none;
    margin-top: 2rem;
}

.safety-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
    color: var(--light-gray);
    line-height: 1.8;
}

.safety-list li strong {
    color: var(--primary);
}

/* Gallery Intro */
.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--light-gray);
    line-height: 1.8;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* FAQ Intro */
.faq-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--light-gray);
    line-height: 1.8;
}

.faq-intro a {
    color: var(--primary);
    text-decoration: none;
}

.faq-intro a:hover {
    text-decoration: underline;
}

/* Contact Page Specific */
.contact-note {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-top: 0.25rem;
}

.social-links h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.contact-form-wrapper h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.1rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--light-gray);
    text-align: center;
}

/* Section Intro Text */
.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--light-gray);
    line-height: 1.9;
}

/* Active Nav Link */
nav .active {
    color: var(--primary) !important;
}

nav .active::after {
    width: 100% !important;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 3rem;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-item::before {
        display: none;
    }
    
    .intro-cta {
        flex-direction: column;
    }
    
    .intro-cta .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .option-card {
        padding: 2rem 1.5rem;
    }
}

/* =====================
   LeadConnector Form Integration
   ===================== */
.leadconnector-form-container {
    min-height: 600px;
    background: transparent;
    overflow: hidden;
}

.leadconnector-form-container iframe {
    display: block;
    border-radius: 0 !important;
}

/* Adjust form wrapper for iframe */
.contact-form-wrapper:has(.leadconnector-form-container) {
    padding: 2.5rem 2rem;
    overflow: hidden;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .leadconnector-form-container iframe {
        height: 700px !important;
    }
}

/* ── Booking flow styles ── */
.booking-iframe-section {
    display: none;
}
.booking-iframe-section.active {
    display: block;
}
.booking-iframe-section .container {
    max-width: 860px;
}
.booking-iframe-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--primary, #0066FF);
    color: var(--primary, #0066FF);
    padding: 10px 20px;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.btn-back:hover {
    background: var(--primary, #0066FF);
    color: #fff;
}
.booking-iframe-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #fff;
    letter-spacing: 0.04em;
    margin: 0;
}
.booking-iframe-title span {
    color: var(--primary, #0066FF);
}
.iframe-wrapper {
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
}
.iframe-wrapper iframe {
    width: 100%;
    border: none;
    display: block;
}

/* hide rental options when iframe is active */
.rental-options.hidden {
    display: none;
}

/* smooth fade transition */
.rental-options,
.booking-iframe-section {
    transition: opacity 0.3s ease;
}