/* =========================
   RESET & BASE
========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: #0f172a;
    color: #e2e8f0;
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* =========================
   LAYOUT SYSTEM
========================= */
.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

section {
    padding: clamp(50px, 6vw, 90px) 0;
}

/* =========================
   BUTTONS
========================= */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.3s ease;
    text-align: center;
}

.primary-btn { background: #6366f1; color: #fff; }
.primary-btn:hover { background: #4f46e5; }

.secondary-btn {
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
}
.secondary-btn:hover { background: rgba(255,255,255,0.18); }

/* =========================
   HEADER / NAV
========================= */
.site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(12px);
    background: rgba(2,6,23,0.75);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    list-style: none;
}

.nav-links a:hover { color: #38bdf8; }

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger span {
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: 0.3s;
}

/* =========================
   HERO
========================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 100px 20px 70px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    max-width: 850px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 16px;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 28px;
    color: #cbd5e1;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================
   STATS
========================= */
.stats-section {
    background: #020617;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat h2 {
    font-size: 2.4rem;
    color: #38bdf8;
}

/* =========================
   PRESS LOGOS
========================= */
.press-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    opacity: 0.75;
}
.press-logos img {
    height: 42px;
    filter: grayscale(100%);
}

/* =========================
   GALLERY (MODERN LARGE)
========================= */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.gallery-item {
    height: 420px;
    border-radius: 22px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

/* =========================
   TESTIMONIALS
========================= */
.testimonials {
    background: #020617;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background: #0f172a;
    padding: 28px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.06);
}

/* =========================
   STICKY CTA (MOBILE)
========================= */
.sticky-cta { display: none; }

/* =========================
   MOBILE NAV
========================= */
@media (max-width: 768px) {

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 260px;
        background: #020617;
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: right 0.3s ease;
    }

    .nav-links.active { right: 0; }
    .hamburger { display: flex; }

    .hero { min-height: 85vh; padding-top: 90px; }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 90%;
        max-width: 320px;
    }

    .gallery-item { height: 300px; }

    .sticky-cta {
        position: fixed;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 90%;
        z-index: 1000;
    }

    .sticky-cta .btn { width: 100%; }
}

/* Scroll reveal base state */
.fade-in-init {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}
/* =========================
   PAGE HERO (SMALL)
========================= */
.page-hero {
    padding: 120px 20px 70px;
    text-align: center;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
}

.page-hero.small-hero {
    padding: 110px 20px 60px;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-hero p {
    color: #94a3b8;
}

/* =========================
   BOOKING FORM CARD
========================= */
.booking-wrapper {
    padding: 60px 20px 100px;
    display: flex;
    justify-content: center;
}

.booking-card {
    width: 100%;
    max-width: 640px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    border-radius: 28px;
    padding: 45px 35px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.booking-card h2 {
    text-align: center;
    margin-bottom: 35px;
    color: #38bdf8;
}

/* =========================
   FLOATING LABEL INPUTS
========================= */
.form-group {
    position: relative;
    margin-bottom: 28px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 14px 16px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.15);
    background: #020617;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group label {
    position: absolute;
    left: 14px;
    top: 16px;
    color: #94a3b8;
    font-size: 0.95rem;
    pointer-events: none;
    transition: 0.2s ease;
    background: #020617;
    padding: 0 6px;
}

/* Floating effect */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -9px;
    font-size: 0.75rem;
    color: #38bdf8;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56,189,248,0.2);
}

/* Button full width */
.full-btn {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
}

/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 768px) {
    .page-hero h1 { font-size: 2rem; }
    .booking-card { padding: 35px 22px; border-radius: 22px; }
}
/* =========================
   CONTACT PAGE CARD
========================= */
.contact-wrapper {
    padding: 60px 20px 100px;
    display: flex;
    justify-content: center;
}

.contact-card {
    width: 100%;
    max-width: 640px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    border-radius: 28px;
    padding: 45px 35px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.contact-card h2 {
    text-align: center;
    margin-bottom: 35px;
    color: #38bdf8;
}

/* Reuse floating input styles from booking page */
.contact-form .form-group {
    position: relative;
    margin-bottom: 28px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.15);
    background: #020617;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form label {
    position: absolute;
    left: 14px;
    top: 16px;
    color: #94a3b8;
    font-size: 0.95rem;
    pointer-events: none;
    transition: 0.2s ease;
    background: #020617;
    padding: 0 6px;
}

/* Floating label animation */
.contact-form input:focus + label,
.contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:focus + label,
.contact-form textarea:not(:placeholder-shown) + label {
    top: -9px;
    font-size: 0.75rem;
    color: #38bdf8;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56,189,248,0.2);
}

.contact-form .full-btn {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
}

/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 768px) {
    .contact-card {
        padding: 35px 22px;
        border-radius: 22px;
    }
}

/* Prevent background scroll when mobile menu is open */
body.nav-open {
  overflow: hidden;
}

/* Mobile nav styles */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 75%;
    max-width: 320px;
    background: #0f172a;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transition: right 0.35s ease;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1000;
  }

  .hamburger span {
    width: 26px;
    height: 3px;
    background: white;
    transition: 0.3s ease;
  }

  /* Hamburger animation */
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}
