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

:root {
    --primary-color: #102a43;
    --secondary-color: #243b53;
    --gold-accent: #c5a355;
    --light-gold: #e6d2a1;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333;
    --text-gray: #555;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    width: 100%;
    overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.navbar.scrolled {
    background: rgba(16, 42, 67, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

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

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
    background: #fff3d6;
    border-radius: 50%;
    padding: 6px;
}

.logo img:hover {
    transform: scale(1.05);
}

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link:hover {
    color: var(--gold-accent);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.book-now-float {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--gold-accent);
    color: var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(197, 163, 85, 0.4);
    transition: all 0.3s ease;
    animation: pulse-book 2s infinite;
}

.book-now-float i {
    font-size: 20px;
}

.book-now-float:hover {
    transform: scale(1.05);
    background: var(--light-gold);
    box-shadow: 0 6px 30px rgba(197, 163, 85, 0.6);
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128c7e;
}

@keyframes pulse-book {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(197, 163, 85, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(197, 163, 85, 0.7);
    }
}

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

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 42, 67, 0.75), rgba(36, 59, 83, 0.65));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--light-gold);
    font-style: italic;
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

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

/* Force the tertiary button onto a new row on desktop without stretching */
.hero-buttons::before {
    content: '';
    flex-basis: 100%;
    order: 2; /* ensures items with order > 2 move to next line */
}

.coming-soon-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-style: italic;
    text-align: center;
    flex-basis: 100%; /* force new line on desktop */
    order: 3; /* place below buttons on desktop */
    margin-top: 0.5rem;
}

/* Button variant used between hero actions */
.coming-soon-btn {
    width: auto; /* desktop: take only needed width like other buttons */
    max-width: none;
    order: 3; /* after the two main CTAs */
    margin-top: 0.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--gold-accent);
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(197, 163, 85, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(197, 163, 85, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
}

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

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

/* Subtle tertiary button for secondary actions */
.btn-tertiary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn-tertiary:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.btn-tertiary:active {
    transform: translateY(-1px);
}

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.btn-full {
    width: 100%;
}

/* Section Styles */
section {
    padding: 60px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 36px;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gold-accent);
    margin: 0 auto 0.8rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--light-gray);
    margin-top: -80px;
    position: relative;
    z-index: 5;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    padding-top: 110px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--gold-accent);
}

.feature-item i {
    font-size: 2rem;
    color: var(--gold-accent);
    min-width: 40px;
}

.feature-item h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.feature-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

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

.about-image:hover img {
    transform: scale(1.1);
}

/* Experiences Section */
.experiences {
    background: white;
}

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

.experience-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.experience-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background: var(--white);
    border-color: var(--gold-accent);
}

.experience-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.experience-card:hover .experience-icon {
    background: linear-gradient(135deg, var(--gold-accent), var(--light-gold));
}

.experience-icon i {
    font-size: 2rem;
    color: white;
}

.experience-card:hover .experience-icon i {
    color: var(--primary-color);
}

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

.experience-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Packages Section */
.packages {
    background: var(--light-gray);
}

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

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-icon i {
    font-size: 2rem;
    color: var(--gold-accent);
}

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

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 1rem;
}

.price span {
    font-size: 1.2rem;
    font-weight: 400;
}

.pricing-card p {
    color: var(--text-gray);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
    content-visibility: auto;
}

.package-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    border-color: var(--gold-accent);
}

.package-card.featured {
    border: 2px solid var(--gold-accent);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(197, 163, 85, 0.25);
}

.package-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 25px 60px rgba(197, 163, 85, 0.35);
}

.package-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--gold-accent);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.package-header {
    text-align: center;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 1rem;
}

.package-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.package-duration {
    color: var(--text-gray);
    font-size: 1rem;
}

.package-price {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 1.25rem;
}

.package-details h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.1rem;
}

.package-details ul {
    list-style: none;
    margin-bottom: 1rem;
}

.package-details ul li {
    padding: 0.6rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.package-details ul li i {
    color: var(--gold-accent);
    margin-top: 3px;
}

.package-note {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.package-note strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.package-note p {
    color: var(--text-gray);
    margin: 0.3rem 0;
    font-size: 0.95rem;
}

.package-card .btn {
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
}

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

.info-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-box i {
    font-size: 2.5rem;
    color: var(--gold-accent);
}

.info-box p {
    color: var(--text-gray);
    line-height: 1.6;
}

.mt-20 {
    margin-top: 20px;
}

/* Gallery Section */
.gallery {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    grid-auto-flow: dense;
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover img {
    will-change: transform;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 42, 67, 0.85), rgba(36, 59, 83, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay i {
    color: white;
    font-size: 3rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

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

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

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Gallery Video Item */
.gallery-video-item {
    grid-column: 3;
    grid-row: 1 / span 2;
    aspect-ratio: 0.63; /* tuned to include row gap visually */
    cursor: pointer;
}

@media (min-width: 1100px) {
    .gallery-video-item { aspect-ratio: 0.64; }
}

@media (max-width: 1099px) and (min-width: 900px) {
    .gallery-video-item { aspect-ratio: 0.63; }
}

@media (max-width: 899px) and (min-width: 769px) {
    .gallery-video-item { aspect-ratio: 0.625; }
}

.gallery-video-item:hover {
    transform: none;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mute toggle button (shown on hover) */
.video-mute-toggle {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(16, 42, 67, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.gallery-video-item:hover .video-mute-toggle {
    opacity: 1;
    pointer-events: auto;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 42, 67, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-video-item.playing .video-play-overlay {
    opacity: 0;
}

.video-play-overlay i {
    color: white;
    font-size: 4rem;
    background: rgba(197, 163, 85, 0.9);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding-left: 5px;
    transition: all 0.3s ease;
}

.gallery-video-item:hover .video-play-overlay i {
    transform: scale(1.1);
    background: var(--gold-accent);
}


/* Testimonials Section */
.testimonials {
    background: white;
}

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

.testimonial-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background: var(--white);
    border-color: var(--gold-accent);
}

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

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

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Testimonials Swiper adjustments */
.testimonials .swiper {
    padding-bottom: 20px;
}

/* Prevent horizontal overflow from carousels */
.swiper { width: 100%; overflow: hidden; }
#gallery-swiper { width: 100%; }

.testimonials .swiper-slide {
    height: auto;
}

.testimonials .swiper-pagination {
    position: static;
    margin-top: 12px;
}

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

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--gold-accent);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--gold-accent);
    font-size: 1.5rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
    color: var(--text-gray);
    text-decoration: none;
}

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

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

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

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

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    background: white;
    box-shadow: 0 0 0 3px rgba(197, 163, 85, 0.1);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
}

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

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold-accent);
    padding-left: 5px;
}

.footer-section ul li i {
    color: var(--gold-accent);
    margin-right: 0.5rem;
}

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

/* Image Loading States */
.hero-image {
    opacity: 0;
    transition: opacity 0.8s ease-in;
}

.hero-image.loaded,
img.loaded {
    opacity: 1;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Optimize image loading with blur-up technique */
img[loading="lazy"]:not(.loaded) {
    filter: blur(5px);
}

img[loading="lazy"].loaded {
    filter: blur(0);
}

@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Smooth transitions for all interactive elements */
a, button, .btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-accent);
    border-radius: 5px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
    }

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

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    /* Remove desktop line-break pseudo element on mobile */
    .hero-buttons::before { content: none; }

    /* Keep the text between the two buttons on mobile */
    .coming-soon-text {
        order: 0; /* respect DOM order (between) */
        flex-basis: auto;
        margin: 0.5rem 0;
    }

    /* Ensure the button sits between the two CTAs on mobile */
    .coming-soon-btn {
        order: 0; /* respect DOM order (between) */
        flex-basis: auto;
        margin: 0.5rem 0;
        width: 100%; /* mobile: full width like other buttons */
        max-width: none;
        align-self: stretch;
    }

    /* Ensure all hero buttons span full width on mobile */
    .hero-buttons .btn {
        width: 100%;
    }

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

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

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

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

    .package-card.featured {
        transform: scale(1);
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .book-now-float {
        padding: 10px 18px;
        font-size: 14px;
    }

    .book-now-float i {
        font-size: 18px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }

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

    .gallery-video-item {
        grid-column: auto;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }
}

/* Compact mobile adjustments */
@media (max-width: 576px) {
    /* Global scale */
    section { padding: 40px 0; }
    .navbar { padding: 0.75rem 0; }
    .logo img { height: 40px; }
    .section-title { font-size: 1.6rem; }
    .section-subtitle { font-size: 1rem; }
    .btn { padding: 0.75rem 1.25rem; font-size: 0.95rem; }

    /* Hero */
    .hero { min-height: 520px; }
    .hero-title { font-size: 2.1rem; }
    .hero-subtitle { font-size: 1.3rem; }
    .hero-tagline { font-size: 1rem; }

    /* About features */
    .feature-item { padding: 1rem; gap: 0.8rem; }
    .feature-item i { font-size: 1.4rem; }

    /* Pricing compact */
    .pricing-info { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .pricing-card { padding: 1rem; }
    .pricing-card h3 { font-size: 1rem; }
    .price { font-size: 1.6rem; }
    .price span { font-size: 0.95rem; }

    /* Package cards compact */
    .packages-grid .package-card { padding: 1.25rem; }
    .package-header { padding-bottom: 0.8rem; margin-bottom: 1rem; }
    .package-header h3 { font-size: 1.2rem; }
    .package-duration { font-size: 0.95rem; }
    .package-price { font-size: 1.8rem; margin-bottom: 1rem; }
    .package-details h4 { font-size: 1rem; margin: 1rem 0 0.6rem; }
    .package-details ul li { padding: 0.4rem 0; gap: 0.5rem; }
    .package-details ul li i { font-size: 0.9rem; }
    .package-note { padding: 1rem; margin: 1rem 0; }
    .package-card .btn { padding: 0.6rem 1rem; font-size: 0.95rem; }

    /* Package info compact */
    .package-info { gap: 12px; }
    .info-box { padding: 12px; gap: 10px; }
    .info-box i { font-size: 1.3rem; }
    .info-box p { font-size: 0.95rem; line-height: 1.4; }

    /* Experiences 2x2 */
    .experiences-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .experience-card { padding: 1rem; }
    .experience-icon { width: 48px; height: 48px; }
    .experience-icon i { font-size: 1.4rem; }

    /* Gallery: show swiper on mobile */
    .gallery-grid { display: none; }
    #gallery-swiper[hidden] { display: none; }
    #gallery-swiper { display: block; }
    #gallery-swiper .swiper-pagination { position: static; margin-top: 8px; }
    #gallery-swiper .gallery-page { display: flex; flex-direction: column; gap: 12px; }
    #gallery-swiper .gallery-page .gallery-item { aspect-ratio: 4/3; }
    #gallery-swiper .gallery-page.video-only .gallery-video-item { aspect-ratio: 2 / 3; }
    #gallery-swiper .gallery-page.video-only { padding-bottom: 12px; }
    /* Always show mute button on mobile swiper */
    #gallery-swiper .gallery-video-item .video-mute-toggle { opacity: 1; pointer-events: auto; }

    /* Footer/contact compact */
    .contact-form { padding: 1.5rem; }
    .contact-content { gap: 1.5rem; }
    .footer { padding: 40px 0 24px; }
    .footer-content { gap: 1.5rem; }
}

/* Toast styles */
.toast {
    position: fixed;
    left: 50%;
    bottom: calc(20px + env(safe-area-inset-bottom));
    transform: translateX(-50%) translateY(10px);
    background: rgba(16, 42, 67, 0.92);
    color: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    z-index: 11000;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    max-width: min(90vw, 480px);
    width: max-content;
    text-align: center;
    pointer-events: none;
    font-size: 0.95rem;
}
.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}