:root {
    /* Premium Luxury Palette */
    --primary: #d4af37; /* Warm Gold */
    --primary-hover: #c5a028;
    --primary-light: rgba(212, 175, 55, 0.1);
    
    --black: #0b0c10;
    --dark: #141722; /* Deep Navy */
    --text-color: #a8b2d1;
    --text-light: #fdfbf7;
    
    --bg-light: #141722; /* Set default bg to dark navy */
    --bg-gray: #1b1f2e; /* Slightly lighter navy for cards/sections */
    --border-color: #2a3143; /* Dark border */
    
    --warning: #d4af37;
    --danger: #fc5185;
    --saffron: #f39c12;
    --saffron-bright: #f1c40f;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* UI Values */
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.4);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--bg-light);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-color);
    max-width: 650px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-large {
    padding: 14px 36px;
    font-size: 1.05rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #b38b22 100%);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e5c158 0%, #c5a028 100%);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

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

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
    background-color: transparent;
}

.site-header.scrolled {
    background-color: rgba(20, 23, 34, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.site-header.scrolled .nav-book-btn {
    background: linear-gradient(135deg, #d4af37 0%, #b38b22 100%);
    color: var(--black);
}

.site-header.scrolled .logo-text,
.site-header.scrolled .main-nav a:not(.btn) {
    color: var(--text-light);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-img {
    height: 54px;
    width: auto;
    border-radius: 50%;
    border: 2px solid var(--primary);
    padding: 2px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a:not(.btn) {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav a:not(.btn):hover {
    color: var(--primary);
}

.nav-book-btn {
    background: linear-gradient(135deg, #d4af37 0%, #b38b22 100%);
    color: var(--black);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.nav-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: var(--transition);
}

.site-header.scrolled .menu-toggle span {
    background-color: var(--black);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 10s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1.05);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 12, 16, 0.4) 0%, rgba(20, 23, 34, 0.9) 100%);
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    max-width: 900px;
    padding: 0 24px;
    z-index: 1;
    margin-bottom: 80px;
}

.hero-title {
    font-size: 4.5rem;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 48px;
    color: var(--text-light);
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
}

.trust-indicator {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Dev Deepawali Video CTA Section */
.video-cta-section {
    position: relative;
    margin-top: -80px;
    z-index: 10;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    background-color: var(--bg-gray);
    border: 1px solid var(--border-color);
}

.split-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

@media (max-width: 768px) {
    .split-cta {
        flex-direction: column;
        text-align: center;
    }
    .split-cta .video-cta-content {
        text-align: center;
    }
    .split-cta .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.video-cta-content {
    flex: 1;
    z-index: 2;
}

.video-cta-media {
    flex: 1;
    max-width: 400px;
    height: 250px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.video-cta-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* Cards (Boats and Hotels) */
.boat-grid, .hotel-grid, .features-grid, .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.boat-card, .hotel-card {
    background-color: var(--bg-gray);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.boat-card:hover, .hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(212, 175, 55, 0.15);
    border-color: var(--primary);
}

.card-image-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-bottom: 2px solid var(--primary);
}

.card-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.7s ease;
}

.boat-card:hover .card-image-wrap img,
.hotel-card:hover .card-image-wrap img {
    transform: scale(1.08);
}

.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--danger);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.badge-premium {
    background: linear-gradient(135deg, #d4af37 0%, #b38b22 100%);
    color: var(--black);
}

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-light);
    font-family: var(--font-heading);
}

.card-desc {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.pricing-options {
    margin-bottom: 24px;
    background-color: var(--dark);
    border-radius: var(--border-radius);
    padding: 16px;
    border: 1px solid var(--border-color);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.pricing-row:not(:last-child) {
    border-bottom: 1px dashed var(--border-color);
}

.pricing-type {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-color);
}

.pricing-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

.availability-notice {
    background-color: var(--bg-gray);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    max-width: 800px;
    margin: 40px auto 0;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.availability-notice h3 {
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 1.5rem;
}

.availability-notice p {
    color: var(--text-light);
}

.availability-notice .small-note {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-top: 12px;
    font-style: italic;
}

/* Dev Deepawali Section */
.dev-deepawali-section {
    position: relative;
    padding: 100px 0;
    color: var(--text-light);
    background-color: var(--black);
}

.dev-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.dev-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

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

.light-text h2 {
    color: var(--primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.light-text p {
    color: var(--text-light);
    opacity: 0.9;
}

.festival-tag {
    display: inline-block;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.dev-deepawali-section .boat-card {
    background-color: var(--dark);
    border-color: rgba(212, 175, 55, 0.3);
}

.dev-deepawali-section .boat-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
}

.features-list {
    list-style: none;
    margin-bottom: 24px;
}

.features-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #bbb;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--warning);
    font-weight: bold;
}

/* Countdown */
.countdown-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 15px 20px;
    min-width: 90px;
    backdrop-filter: blur(5px);
}
.countdown-box span {
    display: block;
    font-size: 2.25rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--warning);
    line-height: 1;
}
.countdown-box small {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    color: white;
}

/* Animated Logo Text */
.animated-logo-text {
    background: linear-gradient(90deg, #ffffff, #d3bfff, #ffffff);
    background-size: 200% auto;
    color: #ffffff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Hotel Section */
.hotel-section {
    background-color: var(--bg-gray);
}

.hotel-controls {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
}

.hotel-filters select {
    padding: 10px 16px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    font-family: var(--font-primary);
    background-color: white;
    cursor: pointer;
}

.hotel-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.hotel-location {
    color: var(--text-color);
}

.hotel-rating {
    font-weight: 700;
    color: var(--dark);
}

.hotel-rating span {
    color: var(--warning);
}

.hotel-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.amenity-tag {
    background-color: var(--bg-gray);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-color);
}

/* Features */
.feature-card {
    background-color: var(--bg-gray);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

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

/* Timeline */
.how-it-works-section {
    background-color: var(--bg-gray);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    position: relative;
}

.timeline-item {
    text-align: center;
    background-color: var(--dark);
    padding: 30px 20px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.timeline-number {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.timeline-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.timeline-item p {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Experience */
.experience-section {
    padding: 0;
}

.experience-container {
    display: flex;
    flex-wrap: wrap;
}

.experience-content {
    flex: 1 1 500px;
    padding: 80px 60px;
    background-color: var(--primary);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.experience-content p {
    font-size: 1.05rem;
    color: var(--primary-light);
    max-width: 500px;
}

.experience-images {
    flex: 1 1 500px;
    display: flex;
}

.experience-images img {
    width: 50%;
    object-fit: cover;
}

/* Reviews */
.reviews-section {
    background-color: var(--bg-gray);
}
.review-card {
    background-color: var(--dark);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.review-stars {
    color: var(--warning);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.review-card p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 24px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
}

.reviewer-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.reviewer-info span {
    font-size: 0.8rem;
    color: #999;
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    margin-bottom: 12px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: transparent;
    border: none;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Final CTA */
.final-cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, rgba(20, 23, 34, 0.98) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    color: white;
    padding: 100px 0;
}

.final-cta-section h2 {
    color: white;
}

.final-cta-section p {
    color: var(--primary-light);
    margin-bottom: 40px;
}

.final-cta-section .btn-outline {
    border-color: white;
    color: white;
}

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

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* Footer */
.site-footer {
    background-color: var(--black);
    color: var(--text-light);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    text-decoration: none;
}

.footer-brand .logo img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.footer-brand .logo .animated-logo-text {
    font-size: 1.8rem;
    line-height: 1.2;
    background: linear-gradient(90deg, #d4af37, #fdfbf7, #d4af37);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

.footer-brand p {
    color: var(--text-color);
    max-width: 320px;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-links h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 24px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.footer-links a {
    display: block;
    color: var(--text-color);
    margin-bottom: 14px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px dashed rgba(212, 175, 55, 0.2);
    color: var(--text-color);
    font-size: 0.9rem;
}

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

/* Base style for floating circular buttons */
.floating-btn, .floating-whatsapp {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-decoration: none;
}

.floating-whatsapp {
    background-color: #25D366;
}

.floating-btn {
    background-color: var(--dark);
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.floating-whatsapp:hover, .floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn:hover {
    background-color: var(--primary);
    color: var(--dark);
}

/* Modal CSS */
.hotel-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
}
.hotel-modal-overlay.active {
    opacity: 1; visibility: visible;
}
.hotel-modal-content {
    background: white;
    width: 90%; max-width: 800px;
    max-height: 90vh; overflow-y: auto;
    border-radius: var(--border-radius-lg);
    position: relative;
    transform: scale(0.95);
    transition: all 0.3s ease;
    display: flex; flex-direction: column;
}
.hotel-modal-overlay.active .hotel-modal-content {
    transform: scale(1);
}
.hotel-modal-close {
    position: absolute;
    top: 15px; right: 20px;
    background: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 10;
}
.hotel-modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.hotel-modal-body {
    padding: 30px;
}
.hotel-modal-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--dark);
    font-family: var(--font-heading);
}
.hotel-modal-meta {
    display: flex; gap: 20px;
    color: #555;
    margin-bottom: 20px;
}
.hotel-modal-amenities {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-bottom: 25px;
}
.hotel-modal-desc {
    font-size: 1.1rem; line-height: 1.6; color: #444;
    margin-bottom: 30px;
}
.hotel-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.75rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .booking-widget-inner { grid-template-columns: 1fr; } /* Stack booking form */
    .booking-widget-section { padding: 0 20px; }
    .section { padding: 80px 0; }
}

@media (max-width: 768px) {
    .header-container { padding: 0 20px; }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(20, 23, 34, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease;
        box-shadow: var(--shadow-md);
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    .main-nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    .main-nav a:not(.btn) { color: var(--text-light); }
    
    .site-header .menu-toggle span { background-color: var(--text-light); }
    .site-header.scrolled .menu-toggle span,
    .site-header .menu-toggle.active span { background-color: var(--primary); }
    .menu-toggle { display: flex; }
    
    .hero-section { min-height: 60vh; }
    .hero-title { font-size: 2.25rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; }
    
    .booking-widget-section { margin-top: -30px; }
    .widget-tabs button { padding: 12px 16px; font-size: 0.95rem; }
    
    .experience-content { padding: 40px 20px; }
    .experience-images { flex-direction: column; }
    .experience-images img { width: 100%; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .footer-brand .logo { justify-content: center; }
    .footer-brand p { margin: 0 auto; }
    
    .section { padding: 60px 0; }
    .section-header h2 { font-size: 2rem; }
    
    .countdown-container { flex-wrap: wrap; }
    .countdown-box { min-width: 70px; padding: 10px 15px; }
    .countdown-box span { font-size: 1.75rem; }
}

@media (max-width: 480px) {
    .hero-section { min-height: 50vh; }
    .hero-title { font-size: 1.85rem; }
    .hero-content { padding-top: 100px; }
    
    .boat-grid, .hotel-grid, .features-grid, .reviews-grid, .booking-form {
        grid-template-columns: 1fr;
    }
    
    .widget-content { padding: 20px; }
    .price-calculation { flex-direction: column; text-align: center; gap: 10px; }
    
    .dev-deepawali-section { padding: 60px 0; }
    
    .fab-group {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .floating-btn, .floating-whatsapp {
        width: 50px;
        height: 50px;
    }
    
    .floating-btn svg {
        width: 20px;
        height: 20px;
    }
}

.dev-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Quick Booking Widget restored */
.booking-widget-section {
    position: relative;
    margin-top: 20px;
    margin-bottom: 60px;
    z-index: 10;
    padding: 0 24px;
}

.booking-widget-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--bg-gray);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.widget-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.widget-tab {
    flex: 1;
    padding: 24px;
    background: var(--dark);
    border: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.widget-tab.active {
    color: var(--primary);
    background-color: var(--bg-gray);
    border-bottom: 3px solid var(--primary);
}

.widget-content {
    display: none;
    padding: 40px;
}

.widget-content.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

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

.booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    background-color: var(--dark);
    color: var(--text-light);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.price-calculation {
    background-color: var(--dark);
    padding: 16px 20px;
    border-radius: var(--border-radius);
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px dashed var(--border-color);
}

.price-breakdown {
    color: var(--text-color);
    font-size: 0.95rem;
}

.total-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
}


/* Corner Contact Buttons */
.corner-contact-buttons {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

@media (max-width: 768px) {
    .corner-contact-buttons {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0 10px;
    }
    .hero-section {
        padding-bottom: 80px; /* Space for buttons */
    }
}

@media (max-width: 480px) {
    .corner-contact-buttons .btn {
        font-size: 0.85rem !important;
        padding: 8px 12px !important;
    }
    .corner-contact-buttons svg {
        width: 16px !important;
        height: 16px !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }
    .corner-contact-buttons {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin-top: 25px;
        z-index: 20;
    }
}

/* ======================================================================
   Responsive foundation
   These rules deliberately sit last so that every page (including pages
   with small inline layout helpers) shares the same fluid layout system.
   ====================================================================== */
:root {
    --page-gutter: clamp(16px, 4vw, 48px);
    --section-space: clamp(48px, 7vw, 96px);
}

html { overflow-x: hidden; }
body { min-width: 0; overflow-x: clip; }

body, button, input, select, textarea { font-size: clamp(0.95rem, 0.3vw + 0.86rem, 1rem); }
img, video, iframe, svg, canvas { max-width: 100%; }
input, select, textarea, button { max-width: 100%; }

/* Prevent long names, URLs and dynamically-rendered booking content from
   widening a flex or grid track beyond the viewport. */
.container, .header-container, .hero-content, .card-content,
.video-cta-content, .experience-content, .footer-grid > *,
.booking-widget-container, .widget-content, .service-details-container,
.status-container, .confirmation-card, .status-card { min-width: 0; }

.container {
    width: min(100%, 1280px);
    padding-inline: var(--page-gutter);
}
.section { padding-block: var(--section-space); }
.section-header { margin-bottom: clamp(28px, 5vw, 50px); }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
.hero-title { font-size: clamp(2.25rem, 6.2vw, 4.5rem); }
.hero-subtitle { font-size: clamp(1rem, 1.6vw, 1.3rem); margin-bottom: clamp(28px, 5vw, 48px); }

.boat-grid, .hotel-grid, .features-grid, .reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
    gap: clamp(16px, 2.5vw, 30px);
}
.timeline { grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr)); }
.booking-form { grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr)); }
.card-content { padding: clamp(20px, 3vw, 30px); }
.card-title { font-size: clamp(1.3rem, 2.5vw, 1.5rem); }
.card-desc, .pricing-type, .pricing-value, .footer-links a,
.feature-card p, .review-card p { overflow-wrap: anywhere; }
.card-image-wrap img { aspect-ratio: 16 / 10; object-fit: cover; }
/* Boat photography should show the complete vessel instead of cropping its
   bow, stern, or passengers to fill a fixed card ratio. */
.boat-card .card-image-wrap {
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 10;
}
.boat-card .card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    aspect-ratio: auto;
}

.video-cta-section {
    width: min(calc(100% - (var(--page-gutter) * 2)), 1000px);
    padding: clamp(20px, 4vw, 40px);
}
.split-cta { gap: clamp(24px, 4vw, 40px); }
.video-cta-media { width: 100%; height: auto; aspect-ratio: 16 / 10; }

.footer-grid { grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr)); gap: clamp(24px, 4vw, 40px); }
.site-footer { padding: clamp(48px, 7vw, 80px) 0 clamp(24px, 4vw, 40px); }

/* Secondary booking-status and confirmation pages have a compact header
   rather than the main navigation component. Keep it equally adaptive. */
.site-header > .logo:first-child { margin-left: var(--page-gutter); }
.site-header > .site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(12px, 2vw, 28px);
    margin-right: var(--page-gutter);
    min-width: 0;
}
.site-nav a { font-size: clamp(0.78rem, 1.2vw, 0.95rem); white-space: nowrap; }

@media (max-width: 1100px) {
    .header-container { padding-inline: var(--page-gutter); }
    .main-nav { gap: 18px; }
    .main-nav a:not(.btn) { font-size: 0.82rem; letter-spacing: 0.5px; }
    .nav-book-btn { padding-inline: 18px; }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    .site-header { padding-block: 14px; }
    .header-container { min-height: 48px; }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        background-color: rgba(20, 23, 34, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: stretch;
        padding: 20px var(--page-gutter) 28px;
        gap: 8px;
        clip-path: inset(0 0 100% 0);
        pointer-events: none;
    }
    .main-nav.active { clip-path: inset(0); pointer-events: auto; }
    .main-nav a:not(.btn), .main-nav .nav-book-btn { width: 100%; text-align: center; }
    .main-nav a:not(.btn) { padding: 10px; font-size: 0.92rem; }
    .menu-toggle { display: flex; flex-shrink: 0; }
    .logo { gap: 10px; min-width: 0; }
    .logo-img { height: 44px; }
    .logo-text { font-size: clamp(1.05rem, 4vw, 1.35rem); white-space: nowrap; }
    .site-header > .site-nav { display: none; }
    .site-header > .logo:first-child { margin-inline: auto; }
}

@media (max-width: 640px) {
    .hero-section { min-height: max(560px, 100svh); padding: 100px var(--page-gutter) 36px; }
    .hero-content { margin-bottom: 0; padding-inline: 0; }
    .hero-buttons, .cta-buttons { align-items: stretch; width: 100%; }
    .hero-buttons .btn, .cta-buttons .btn { width: 100%; }
    .corner-contact-buttons { width: 100%; padding-inline: var(--page-gutter); }
    .corner-contact-buttons .btn { flex: 1 1 180px; }
    .video-cta-section { margin-top: -28px; }
    .hotel-controls { justify-content: stretch; }
    .hotel-filters, .hotel-filters select { width: 100%; }
    .pricing-row { gap: 12px; align-items: flex-start; }
    .pricing-value { text-align: right; }
    .widget-tabs { flex-wrap: wrap; }
    .widget-tab { min-width: 50%; padding: 14px 10px; font-size: 1rem; }
    .widget-content { padding: 20px; }
    .availability-notice, .feature-card, .review-card { padding: 24px 20px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand .logo { justify-content: center; }
    .experience-content { padding: 48px var(--page-gutter); }
    .experience-content h2 { font-size: clamp(2rem, 9vw, 2.75rem) !important; }
    .service-details-container { grid-template-columns: 1fr !important; gap: 20px !important; }
    .status-page, .confirmation-page { padding: 6rem var(--page-gutter) 3rem !important; }
    .status-card, .confirmation-card { padding: 1.25rem !important; border-radius: 16px !important; }
    .status-search, .ticket-details-grid { grid-template-columns: 1fr !important; }
    .ticket-display .ticket-id { font-size: clamp(1.2rem, 6vw, 1.5rem) !important; overflow-wrap: anywhere; }
}

@media (max-width: 360px) {
    .container { padding-inline: 14px; }
    .logo-text { font-size: 1rem; }
    .logo-img { height: 38px; }
    .btn { padding: 11px 16px; font-size: 0.9rem; }
    .countdown-box { min-width: 62px; padding: 8px; }
    .countdown-box span { font-size: 1.5rem; }
}

/* Visual refinement: keeps the existing content intact while giving the
   booking experience stronger hierarchy and a more polished premium feel. */
body {
    background:
        radial-gradient(circle at 10% 0%, rgba(212, 175, 55, 0.08), transparent 25rem),
        var(--bg-light);
}

.site-header.scrolled {
    background-color: rgba(11, 12, 16, 0.88);
    border-bottom-color: rgba(212, 175, 55, 0.26);
}
.site-header:not(.scrolled) .header-container { text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55); }

.hero-overlay {
    background: linear-gradient(180deg, rgba(11, 12, 16, 0.3) 0%, rgba(11, 12, 16, 0.54) 42%, rgba(20, 23, 34, 0.96) 100%);
}
.hero-content { max-width: 980px; }
.hero-title {
    text-wrap: balance;
    background: linear-gradient(120deg, #f7df80 8%, #d4af37 48%, #fff0ac 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-subtitle { text-wrap: balance; }
.trust-indicator {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 8px 14px;
    border: 1px solid rgba(212, 175, 55, 0.38);
    border-radius: 999px;
    background: rgba(11, 12, 16, 0.38);
    backdrop-filter: blur(6px);
}

.section-header h2 { text-wrap: balance; }
.section-header p { text-wrap: balance; }
.festival-tag {
    padding: 6px 12px;
    border: 1px solid rgba(212, 175, 55, 0.42);
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.1);
}

.btn {
    min-height: 46px;
    border-radius: 10px;
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.18);
}
.btn-primary { box-shadow: 0 8px 22px rgba(212, 175, 55, 0.22); }
.btn-outline { background-color: rgba(255, 255, 255, 0.03); }

.boat-card, .hotel-card, .feature-card, .review-card, .timeline-item {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}
.boat-card, .hotel-card {
    isolation: isolate;
}
.card-image-wrap { background: var(--dark); }
.card-image-wrap img { transition: transform 0.6s ease, filter 0.6s ease; }
.boat-card:hover .card-image-wrap img, .hotel-card:hover .card-image-wrap img {
    filter: saturate(1.12) contrast(1.04);
}
.card-title { line-height: 1.25; }
.card-kicker {
    margin: 0 0 8px;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    line-height: 1.35;
    text-transform: uppercase;
}
.pricing-options { background: linear-gradient(135deg, rgba(11, 12, 16, 0.8), rgba(27, 31, 46, 0.9)); }
.availability-notice {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.11), var(--bg-gray));
    border-color: rgba(212, 175, 55, 0.32);
}

.video-cta-section {
    background: linear-gradient(135deg, rgba(36, 40, 57, 0.98), rgba(20, 23, 34, 0.98));
    border-color: rgba(212, 175, 55, 0.3);
}
.video-cta-content > .btn { margin-top: 2px; }
.hero-buttons .btn { min-width: min(100%, 210px); }
.video-cta-media { border: 1px solid rgba(212, 175, 55, 0.28); }
.feature-card { background: linear-gradient(145deg, var(--bg-gray), rgba(27, 31, 46, 0.72)); }
.feature-icon { filter: drop-shadow(0 5px 12px rgba(212, 175, 55, 0.2)); }
.review-card { border-left: 3px solid rgba(212, 175, 55, 0.75); }

.site-footer { background: linear-gradient(180deg, #0b0c10, #07080b); }
.footer-links h3 { color: var(--primary); }
.footer-links a:hover { padding-left: 4px; color: var(--primary); }

@media (max-width: 640px) {
    .trust-indicator { font-size: 0.72rem; letter-spacing: 0.45px; line-height: 1.45; }
    .hero-title { line-height: 1.05; }
    .video-cta-media > div[style*="bottom"] { bottom: 18px !important; left: 18px !important; }
    .video-cta-media h3 { font-size: 1.35rem !important; }
    .feature-card, .review-card, .timeline-item { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.05); opacity: 0.8; } 100% { transform: scale(1); opacity: 1; } }

#modalBoatImage {
    object-fit: contain !important;
    background-color: var(--dark);
}

.boat-card .card-image-wrap img {
    object-fit: contain !important;
}




img.boat-modal-mode {
    object-fit: contain !important;
    background-color: var(--dark);
}
