/* ==========================================================================
   Bayu Seafood - Premium Light Aesthetic CSS Design System
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Custom Properties (Design System Tokens) */
:root {
    /* Color Palette - Light Coastal & Gold */
    --color-bg-deep: #fbfaf7;
    --color-bg-card: #ffffff;
    --color-bg-nav: rgba(251, 250, 247, 0.85);
    --color-gold: #b38f2d;
    --color-gold-light: #dfc785;
    --color-gold-dark: #8c6a15;
    --color-gold-glow: rgba(179, 143, 45, 0.15);

    --color-text-white: #0a131c;
    /* Deep slate dark replacing white */
    --color-text-light: #1c2730;
    /* Dark grey replacing light */
    --color-text-muted: #5e6c77;
    --color-text-dark: #ffffff;
    /* White replacing dark for gold button text */

    --color-whatsapp: #25d366;
    --color-whatsapp-glow: rgba(37, 211, 102, 0.2);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    --gradient-ocean: linear-gradient(180deg, #fbfaf7 0%, #f4f1ea 100%);
    --gradient-dark: linear-gradient(135deg, #ffffff 0%, #f4f1ea 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 248, 244, 0.95) 100%);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Layout Details */
    --nav-height: 80px;
    --border-radius-sm: 6px;
    --border-radius-md: 16px;
    --border-radius-lg: 32px;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --box-shadow-soft: 0 10px 30px rgba(13, 23, 39, 0.05), 0 1px 3px rgba(13, 23, 39, 0.02);
    --box-shadow-gold: 0 15px 35px var(--color-gold-glow);
}

/* Reset & Global Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.skip-to-content {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--color-gold);
    color: #ffffff;
    padding: 12px 24px;
    z-index: 9999;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 20px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-deep);
    color: var(--color-text-light);
    line-height: 1.65;
    overflow-x: clip;
}

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

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

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 110px 0;
    position: relative;
}

.section-dark {
    background: var(--gradient-ocean);
}

.section-darker {
    background: var(--color-bg-deep);
}

.gold-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

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

/* Typography & Titles */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-white);
    letter-spacing: -0.3px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-family: var(--font-body);
    color: var(--color-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
}

.section-title {
    font-size: 2.8rem;
    line-height: 1.25;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

/* Scroll Reveal Transition Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Button & Link Styles */
.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-text-dark);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 34px;
    border-radius: var(--border-radius-sm);
    display: inline-block;
    box-shadow: 0 4px 15px rgba(179, 143, 45, 0.25);
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(179, 143, 45, 0.4);
    filter: brightness(1.05);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-white);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 34px;
    border-radius: var(--border-radius-sm);
    display: inline-block;
    border: 2px solid var(--color-gold);
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(179, 143, 45, 0.05);
    color: var(--color-gold);
    transform: translateY(-3px);
}

.btn-wa {
    background-color: var(--color-whatsapp);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 15px 34px;
    border-radius: var(--border-radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px var(--color-whatsapp-glow);
    transition: var(--transition-smooth);
}

.btn-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    filter: brightness(1.05);
}

/* Header & Navigation */
header {
    height: var(--nav-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    opacity: 0;
    visibility: hidden;
}

header.visible {
    opacity: 1;
    visibility: visible;
}

header.scrolled {
    background: var(--color-bg-nav);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(179, 143, 45, 0.15);
    opacity: 1;
    visibility: visible;
}

/* Contrast adjustment for transparent header visible over dark intro section */
header.visible:not(.scrolled) .logo-text {
    color: #ffffff;
}

header.visible:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.75);
}

header.visible:not(.scrolled) .nav-link:hover {
    color: #ffffff;
}

header.visible:not(.scrolled) .nav-link.active {
    color: var(--color-gold);
}

header.visible:not(.scrolled) .social-links-header .social-icon {
    color: rgba(255, 255, 255, 0.75);
}

header.visible:not(.scrolled) .social-links-header .social-icon:hover {
    color: #ffffff;
}

header.visible:not(.scrolled) .mobile-nav-toggle span {
    background-color: #ffffff;
}

/* Explicit colors for scrolled state */
header.scrolled .logo-text {
    color: var(--color-text-white);
}

header.scrolled .nav-link {
    color: var(--color-text-light);
}

header.scrolled .nav-link:hover {
    color: var(--color-gold-dark);
}

header.scrolled .nav-link.active {
    color: var(--color-gold);
}

header.scrolled .social-links-header .social-icon {
    color: var(--color-text-light);
}

header.scrolled .social-links-header .social-icon:hover {
    color: var(--color-gold-dark);
}

header.scrolled .mobile-nav-toggle span {
    background-color: var(--color-text-white);
}

.nav-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    /* Prevent logo wrapper from shrinking */
}

.logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    box-shadow: 0 0 10px var(--color-gold-glow);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--color-text-white);
    white-space: nowrap;
    /* Prevent logo text from wrapping */
}

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

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--color-text-light);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-smooth);
}

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

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

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

.social-links-header {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--color-text-light);
    transition: var(--transition-smooth);
}

.social-icon:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(179, 143, 45, 0.05);
    box-shadow: 0 0 8px var(--color-gold-glow);
}

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 1100;
    flex-shrink: 0;
    /* Prevent toggle from shrinking on small viewports */
}

.mobile-nav-toggle span {
    display: block;
    height: 2.5px;
    width: 100%;
    background-color: var(--color-text-white);
    transition: var(--transition-smooth);
    transform-origin: center;
    /* Center transform-origin for perfect X rotation */
}

/* CSS-based transitions for the Hamburger-to-X animation */
.mobile-nav-toggle.active span:nth-child(1) {
    transform: translateY(7.75px) rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: translateY(-7.75px) rotate(-45deg);
}

/* Scroll-Linked Video Section */
.video-scroll-wrapper {
    height: 300vh;
    /* Determines the scroll depth for the video */
    position: relative;
    background-color: #081225;
}

.video-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#scroll-canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(8, 18, 37, 0.3) 0%, rgba(8, 18, 37, 0.75) 100%);
    z-index: 2;
    pointer-events: none;
}

.video-text-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 850px;
    padding: 0 24px;
    color: #ffffff;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--color-gold-light);
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 700;
}

.video-title {
    font-size: 4.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #ffffff;
}

.video-desc {
    font-size: 1.15rem;
    color: #f1f5f9;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.video-scroll-hint {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    animation: scrollDownLoop 2s infinite ease-in-out;
}

@keyframes scrollDownLoop {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.7;
    }

    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

/* Scroll-Linked Text Story Overlay */
.scroll-story-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15;
    pointer-events: none;
}

.scroll-text-block {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    max-width: 240px; /* Small default for mobile */
    padding: 14px 18px; /* Compact padding for mobile */
    background: rgb(255 255 255 / 3%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: visibility 0.4s ease;
}

.scroll-text-block.active {
    visibility: visible;
}

.scroll-text-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.scroll-text-subtitle {
    font-family: var(--font-body);
    font-size: 0.65rem; /* Small on mobile */
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold-light);
    font-weight: 700;
}

.scroll-text-title {
    font-family: var(--font-heading);
    font-size: 1.25rem; /* Small on mobile */
    line-height: 1.3;
    color: #ffffff;
    font-weight: 700;
}

.scroll-text-desc {
    font-family: var(--font-body);
    font-size: 0.78rem; /* Small on mobile */
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Positions on all screens (Mobile First) */
.text-bottom-left {
    left: 4%;
    bottom: 6%;
    text-align: left;
}

.text-center-right {
    right: 4%;
    top: 45%;
    transform: translateY(-50%);
    text-align: right;
}

.text-center-right .scroll-text-inner {
    align-items: flex-end;
}

.text-bottom-right {
    right: 4%;
    bottom: 6%;
    text-align: right;
}

.text-bottom-right .scroll-text-inner {
    align-items: flex-end;
}

/* Specific Positions & Scaling for Desktop (Viewport > 768px) */
@media (min-width: 769px) {
    .scroll-text-block {
        max-width: 380px;
        padding: 24px;
    }
    
    .text-bottom-left {
        left: 8%;
        bottom: 12%;
    }
    
    .text-center-right {
        right: 8%;
        top: 50%;
    }
    
    .text-bottom-right {
        right: 8%;
        bottom: 12%;
    }
    
    .scroll-text-subtitle {
        font-size: 0.75rem;
    }
    
    .scroll-text-title {
        font-size: 1.9rem;
    }
    
    .scroll-text-desc {
        font-size: 0.9rem;
    }
}

/* Breath Animation */
.breath-animation {
    animation: breath 3.5s ease-in-out infinite;
}

@keyframes breath {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Food Gallery Section Variables & Sizing */
:root {
    --gallery-phone-w: 240px;
    --gallery-phone-h: 480px;
    --gallery-slide-w: 220px;
    --gallery-slide-h: 440px;
}

@media (max-width: 768px) {
    :root {
        --gallery-phone-w: 152px;
        --gallery-phone-h: 304px;
        --gallery-slide-w: 140px;
        --gallery-slide-h: 280px;
    }
}

/* Live Catch Aquarium Experience Cards Grid */
.aquarium-experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.aq-exp-card {
    background: var(--color-bg-card);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(179, 143, 45, 0.2);
    box-shadow: var(--box-shadow-soft);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.aq-exp-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-gold);
    box-shadow: 0 18px 40px rgba(13, 23, 39, 0.12), 0 0 20px rgba(179, 143, 45, 0.15);
}

.aq-exp-image-wrap {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.aq-exp-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.aq-exp-card:hover .aq-exp-image-wrap img {
    transform: scale(1.06);
}

.aq-exp-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(13, 23, 39, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--color-gold-light);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(179, 143, 45, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.aq-exp-content {
    padding: 24px;
}

.aq-exp-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 10px;
}

.aq-exp-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .aquarium-experience-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 35px;
    }
    .aq-exp-image-wrap {
        height: 190px;
    }
    .aq-exp-content {
        padding: 16px;
    }
    .aq-exp-title {
        font-size: 1.15rem;
    }
    .aq-exp-desc {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   Executive Chef & Orbital Certificates Showcase System
   ========================================================================== */
.chef-section-wrapper {
    position: relative;
    overflow: hidden;
}

.chef-showcase-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .chef-showcase-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Left Stage: Chef Centerpiece & 3D Orbital Certificates System */
.chef-stage-wrapper {
    position: relative;
    width: 100%;
    height: 580px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    perspective: 1000px;
}

@media (max-width: 768px) {
    .chef-stage-wrapper {
        height: 440px;
    }
}

/* Background Golden Aura Glow */
.chef-aura-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(179, 143, 45, 0.25) 0%, rgba(179, 143, 45, 0.05) 50%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    animation: pulseAura 4s ease-in-out infinite alternate;
}

@keyframes pulseAura {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* Floor Pedestal Ring */
.chef-pedestal-ring {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) rotateX(75deg);
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 2px dashed rgba(179, 143, 45, 0.35);
    box-shadow: 0 0 30px rgba(179, 143, 45, 0.2);
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 768px) {
    .chef-pedestal-ring {
        width: 250px;
        height: 250px;
        bottom: 10px;
    }
}

/* Chef Portrait (Animates from bottom to top on scroll reveal) */
.chef-image-container {
    position: relative;
    z-index: 10;
    height: 100%;
    max-height: 540px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transform: translateY(80px);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.chef-stage-wrapper.active .chef-image-container,
.chef-stage-wrapper.in-view .chef-image-container {
    transform: translateY(0);
    opacity: 1;
}

.chef-portrait {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
    pointer-events: none;
}

/* Orbit System Container */
.cert-orbit-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: auto;
}

/* Certificate Orbit Card */
.cert-card-orbit {
    position: absolute;
    top: 48%;
    left: 50%;
    width: 105px;
    height: 145px;
    margin: 0;
    pointer-events: auto;
    cursor: pointer;
    border-radius: var(--border-radius-sm);
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15), 0 0 15px rgba(179, 143, 45, 0.2);
    border: 2px solid var(--color-gold);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    will-change: transform, opacity;
}

@media (max-width: 768px) {
    .cert-card-orbit {
        width: 75px;
        height: 105px;
    }
}

.cert-card-orbit:hover {
    border-color: var(--color-gold-light);
    box-shadow: 0 18px 40px rgba(179, 143, 45, 0.4), 0 0 25px rgba(179, 143, 45, 0.5);
}

.cert-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.cert-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay Badge on Card Hover */
.cert-badge-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 19, 28, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cert-card-orbit:hover .cert-badge-overlay {
    opacity: 1;
}

.cert-badge-overlay i {
    font-size: 1.2rem;
    color: var(--color-gold-light);
}

.cert-badge-overlay span {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Right Column: Chat Bubbles Stream */
.chef-message-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chef-header-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--color-bg-card);
    padding: 16px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-soft);
    border: 1px solid rgba(179, 143, 45, 0.2);
}

.chef-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(179, 143, 45, 0.3);
    flex-shrink: 0;
}

.chef-badge-details {
    flex-grow: 1;
}

.chef-badge-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-white);
    margin: 0;
}

.chef-badge-role {
    font-size: 0.8rem;
    color: var(--color-gold-dark);
    font-weight: 600;
}

.chef-live-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    background: rgba(179, 143, 45, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(179, 143, 45, 0.15);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Chat Stream & Bubbles */
.chef-chat-stream {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-bubble {
    position: relative;
    background: var(--color-bg-card);
    border-radius: 20px;
    border-top-left-radius: 4px;
    padding: 20px 24px;
    box-shadow: var(--box-shadow-soft);
    border: 1px solid rgba(179, 143, 45, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chat-bubble:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(13, 23, 39, 0.08);
}

.chat-bubble-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.75rem;
    font-weight: 700;
}

.chat-sender {
    color: var(--color-gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chat-badge-tag {
    color: var(--color-text-muted);
    background: rgba(13, 23, 39, 0.04);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.chat-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.chat-text:last-child {
    margin-bottom: 0;
}

.highlight-bubble {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(251, 248, 240, 0.98) 100%);
    border: 1.5px solid var(--color-gold-light);
}

/* Chef Achievement Button */
.chef-achievement-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gradient-gold);
    color: var(--color-text-dark);
    padding: 16px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 25px rgba(179, 143, 45, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    margin-top: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chef-achievement-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(179, 143, 45, 0.45);
}

.achieve-btn-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.achieve-btn-left i {
    font-size: 1.3rem;
    color: #ffffff !important;
}

.achieve-btn-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.achieve-btn-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: background 0.3s ease;
}

.chef-achievement-btn:hover .achieve-btn-badge {
    background: rgba(255, 255, 255, 0.35);
}

/* Achievement Modal Custom Styling */
.achievement-modal-body {
    padding: 24px;
    background: #0d1727;
    max-height: 65vh;
    overflow-y: auto;
}

.achievement-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(179, 143, 45, 0.25);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.achievement-item:hover {
    transform: translateX(4px);
    border-color: var(--color-gold);
    background: rgba(179, 143, 45, 0.08);
}

.achieve-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(179, 143, 45, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    border: 1px solid rgba(179, 143, 45, 0.3);
}

.achieve-details h5 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.achieve-details p {
    font-size: 0.8rem;
    color: var(--color-gold-light);
    font-weight: 600;
    margin: 0;
}

/* Mobile responsive font sizing for chef section */
@media (max-width: 768px) {
    .chef-header-badge {
        padding: 12px 16px;
        gap: 12px;
    }

    .chef-avatar {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .chef-badge-name {
        font-size: 0.95rem;
    }

    .chef-badge-role {
        font-size: 0.72rem;
    }

    .chef-live-status {
        font-size: 0.68rem;
        padding: 4px 10px;
    }

    .chat-bubble {
        padding: 14px 16px;
        border-radius: 16px;
    }

    .chat-bubble-header {
        margin-bottom: 6px;
        font-size: 0.7rem;
    }

    .chat-sender {
        font-size: 0.7rem;
    }

    .chat-badge-tag {
        font-size: 0.65rem;
        padding: 2px 8px;
    }

    .chat-text {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 6px;
    }

    .chef-achievement-btn {
        padding: 12px 18px;
    }

    .achieve-btn-title {
        font-size: 0.95rem;
    }

    .achieve-btn-badge {
        font-size: 0.72rem;
        padding: 4px 12px;
    }

    .achievement-item {
        padding: 12px 14px;
        gap: 12px;
    }

    .achieve-details h5 {
        font-size: 0.82rem;
    }

    .achieve-details p {
        font-size: 0.72rem;
    }
}

/* Certificate Modal Lightbox Popup */
.cert-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 19, 28, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s step-end;
}

.cert-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cert-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: var(--border-radius-md);
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 30px rgba(179, 143, 45, 0.3);
    border: 2px solid var(--color-gold);
    transform: scale(0.85) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cert-modal-backdrop.active .cert-modal-content {
    transform: scale(1) translateY(0);
}

.cert-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: #0d1727;
    color: #ffffff;
    border-bottom: 1px solid rgba(179, 143, 45, 0.2);
}

.cert-modal-header h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0;
}

.cert-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.cert-modal-close:hover {
    background: var(--color-gold);
    transform: rotate(90deg);
}

.cert-modal-body {
    padding: 20px;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f1ea;
    max-height: 70vh;
}

.cert-modal-body img {
    max-width: 100%;
    max-height: 65vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cert-modal-caption {
    padding: 12px 20px;
    background: #0d1727;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.75rem;
    text-align: center;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    padding-right: 20px;
}

.about-text {
    color: var(--color-text-muted);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.highlight-item {
    border-left: 3px solid var(--color-gold);
    padding-left: 16px;
}

.highlight-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-text-white);
    line-height: 1;
    margin-bottom: 8px;
}

.highlight-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-image-wrap {
    position: relative;
}

.about-image-main {
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 2;
    position: relative;
    width: 90%;
    transition: var(--transition-smooth);
}

.about-image-wrap:hover .about-image-main {
    transform: scale(1.02);
}

.about-image-overlap {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 45%;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--color-gold);
    z-index: 3;
    transition: var(--transition-smooth);
}

.about-image-wrap:hover .about-image-overlap {
    transform: translate(-10px, -10px) rotate(5deg);
}

/* Live Seafood Showcase (Redesigned) */
#aquariums.section {
    padding: 70px 0;
}

.aquarium-showcase {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    min-height: 380px;
    position: relative;
}

.showcase-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    justify-content: center;
    position: relative;
    user-select: none;
}

.showcase-images-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    justify-content: center;
    width: 100%;
}

.showcase-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(179, 143, 45, 0.35);
    background: var(--color-bg-card);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--box-shadow-soft);
    transition: var(--transition-smooth);
    opacity: 1;
    transform: scale(1);
}

.aquarium-showcase.js-enabled .showcase-arrow {
    opacity: 0;
    transform: scale(0.7);
}

.showcase-arrow:hover {
    background: var(--gradient-gold);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(179, 143, 45, 0.25);
}

.showcase-arrow.arrow-up:hover {
    transform: translateY(-4px) scale(1.05);
}

.showcase-arrow.arrow-down:hover {
    transform: translateY(4px) scale(1.05);
}

.showcase-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.showcase-img-wrap.small {
    width: 80px;
    height: 80px;
    background: transparent;
    cursor: pointer;
    opacity: 0.55;
    transform: scale(0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.aquarium-showcase.js-enabled .showcase-img-wrap.small {
    opacity: 0;
    transform: scale(0.7);
}

.showcase-img-wrap.small:hover {
    opacity: 0.95;
    transform: scale(1.15) rotate(-5deg);
}

.showcase-img-wrap.small .showcase-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
    transition: var(--transition-smooth);
}

.showcase-img-wrap.active {
    width: 220px;
    height: 220px;
    z-index: 5;
    /* Animated via CSS Variable in JS */
}

.center-img-holder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-img-wrap.active:hover .center-img-holder {
    transform: scale(1.08);
}

.center-img-holder .showcase-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.12));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-img-wrap.active:hover .showcase-img {
    transform: scale(1.18) rotate(8deg);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

.showcase-right {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    padding: 50px 40px 40px 40px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    min-height: 420px;
    width: 100%;
    opacity: 1;
    transform: translateX(0);
    /* Background Properties */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease-in-out, opacity 0.5s ease, transform 0.5s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    /* 45% transparent black layer overlay (darker) */
    z-index: 1;
    transition: background-color 0.3s ease;
}

.aquarium-showcase.js-enabled .showcase-right {
    opacity: 0;
    transform: translateX(-40px);
    /* Shift left for left-to-right animation */
}

.showcase-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    background: var(--gradient-gold);
    border: none;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 0;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(179, 143, 45, 0.35);
}

.showcase-badge i {
    color: #ffffff;
}

.showcase-title {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 15px;
    line-height: 1.2;
    z-index: 2;
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.showcase-desc {
    font-size: 1.05rem;
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.7;
    margin-bottom: 30px;
    min-height: 80px;
    z-index: 2;
    position: relative;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.showcase-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    z-index: 2;
    position: relative;
}

.showcase-nav-tab-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    position: relative;
    padding: 6px 0;
    display: inline-block;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.showcase-nav-tab-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-smooth);
}

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

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

/* Intro Animations keyframes & transitions */
.aquarium-showcase.animate-intro #aqCenterImgWrap {
    animation: centerToLeft 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.aquarium-showcase.animate-intro .showcase-arrow,
.aquarium-showcase.animate-intro .showcase-img-wrap.small {
    opacity: 0.55;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    transition-delay: 1.1s;
}

/* Up/Down buttons transition hover defaults override */
.aquarium-showcase.animate-intro .showcase-arrow {
    opacity: 1;
    transform: scale(1);
}

.aquarium-showcase.animate-intro .showcase-right {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 1.2s;
    /* Triggers after active image slides left faster */
}

.aquarium-showcase.animate-intro .showcase-img-wrap.active .center-img-holder {
    animation: breath 4s ease-in-out infinite;
    animation-delay: 1.5s;
    /* Begins after centerToLeft animation finishes */
}

@keyframes breath {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}

@keyframes centerToLeft {
    0% {
        transform: translate(var(--center-x, 0), var(--center-y, 0)) scale(0.6);
        opacity: 0;
    }

    30% {
        transform: translate(var(--center-x, 0), var(--center-y, 0)) scale(1.35);
        opacity: 1;
    }

    65% {
        transform: translate(var(--center-x, 0), var(--center-y, 0)) scale(1.35);
        opacity: 1;
    }

    100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
}

/* Fallback Visibility (in case scroll-reveal triggers without JS) */
.aquarium-showcase:not(.animate-intro).reveal-visible .showcase-arrow,
.aquarium-showcase:not(.animate-intro).reveal-visible .showcase-img-wrap.small,
.aquarium-showcase:not(.animate-intro).reveal-visible .showcase-right,
.aquarium-showcase:not(.animate-intro).reveal-visible #aqCenterImgWrap {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
}

/* Responsive Styles (Maintaining Split Grid Layout on Mobile and Tablet) */
@media (max-width: 991px) {
    .aquarium-showcase {
        grid-template-columns: 260px 1fr;
        gap: 35px;
        min-height: 340px;
    }

    .showcase-img-wrap.active {
        width: 180px;
        height: 180px;
    }

    .showcase-img-wrap.small {
        width: 65px;
        height: 65px;
    }

    .showcase-right {
        padding: 30px;
        min-height: 360px;
    }

    .showcase-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .aquarium-showcase {
        grid-template-columns: 160px 1fr;
        gap: 20px;
        min-height: auto;
    }

    .showcase-left {
        gap: 10px;
    }

    .showcase-images-stack {
        gap: 12px;
    }

    .showcase-img-wrap.active {
        width: 120px;
        height: 120px;
    }

    .showcase-img-wrap.small {
        width: 50px;
        height: 50px;
    }

    .showcase-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .showcase-right {
        padding: 25px;
        min-height: 320px;
    }

    .showcase-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .showcase-desc {
        font-size: 0.7rem;
        margin-bottom: 20px;
        line-height: 1.5;
        min-height: auto;
    }

    .showcase-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        margin-bottom: 0;
        padding: 6px 12px;
        font-size: 0.65rem;
    }

    .showcase-actions {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .showcase-actions .btn-primary {
        flex-shrink: 0 !important;
        padding: 6px 12px !important;
        font-size: 0.65rem !important;
    }
}

@media (max-width: 480px) {
    .aquarium-showcase {
        grid-template-columns: 120px 1fr;
        gap: 15px;
    }

    .showcase-img-wrap.active {
        width: 90px;
        height: 90px;
    }

    .showcase-img-wrap.small {
        width: 40px;
        height: 40px;
    }

    .showcase-title {
        font-size: 1.3rem;
    }

    .showcase-right {
        padding: 20px 15px 15px 15px;
        min-height: 280px;
    }

    .showcase-desc {
        font-size: 0.7rem;
        margin-bottom: 15px;
    }

    .showcase-badge {
        top: 10px;
        right: 10px;
        padding: 4px 10px;
        font-size: 0.6rem;
    }

    .showcase-actions {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
    }

    .showcase-actions .btn-primary {
        padding: 5px 8px !important;
        font-size: 0.6rem !important;
    }
}

/* ==========================================================================
   Artisan Culinary Highlights Carousel
   ========================================================================== */
.culinary-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: visible;
    padding: 30px 0;
    margin: 0 auto;
}

.culinary-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.carousel-track-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Slide Base Style */
.carousel-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        z-index 0.8s step-end;
}

.slide-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.08));
    transition: transform 0.5s ease;
}

.plate-base {
    position: absolute;
    top: 6%;
    left: 6%;
    width: 88%;
    height: 88%;
    object-fit: contain;
    pointer-events: none;
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 1;
    opacity: 0;
}

.food-image {
    position: absolute;
    top: 6%;
    left: 6%;
    width: 88%;
    height: 88%;
    object-fit: contain;
    pointer-events: none;
    transition: transform 0.5s ease;
    z-index: 2;
}

/* Position States */
.carousel-slide.active {
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1.2);
}

.carousel-slide.active .slide-image-wrapper {
    filter: drop-shadow(0 25px 40px rgba(179, 143, 45, 0.25));
}

.carousel-slide.prev {
    opacity: 0.6;
    z-index: 5;
    transform: translate(-50%, -50%) translateX(-300px) scale(0.85);
    filter: blur(0.5px) brightness(0.9);
}

.carousel-slide.next {
    opacity: 0.6;
    z-index: 5;
    transform: translate(-50%, -50%) translateX(300px) scale(0.85);
    filter: blur(0.5px) brightness(0.9);
}

/* Hover Interactivity on Active Item */
.carousel-slide.active:hover .food-image {
    transform: scale(1.08) rotate(4deg);
}

.carousel-slide.active:hover .plate-base {
    transform: translateY(-8px) scale(1.02);
}

/* Text Description Box */
.carousel-info-box {
    margin-top: 40px;
    text-align: center;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.info-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 12px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.info-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    min-height: 60px;
}

/* Navigation Buttons */
.carousel-nav-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--color-bg-card);
    border: 1px solid rgba(179, 143, 45, 0.3);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--box-shadow-soft);
    z-index: 15;
    transition: var(--transition-smooth);
}

.carousel-nav-btn:hover {
    background: var(--gradient-gold);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-50%) translateY(-5px);
    box-shadow: 0 10px 20px rgba(179, 143, 45, 0.25);
}

.carousel-nav-btn.prev-btn {
    left: 20px;
}

.carousel-nav-btn.next-btn {
    right: 20px;
}

/* Entrance Animations triggers */
.culinary-carousel-container.init-intro .carousel-slide {
    opacity: 0;
    pointer-events: none;
}

.culinary-carousel-container.animate-intro .carousel-slide.active {
    animation: activeSlideIntro 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.culinary-carousel-container.animate-intro .carousel-slide.active .plate-base {
    animation: plateSpinAndFade 1.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.culinary-carousel-container.animate-intro .carousel-slide.active .food-image {
    opacity: 0;
    animation: foodScaleIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1.1s forwards;
}

.culinary-carousel-container.animate-intro .carousel-slide.prev {
    opacity: 0;
    animation: prevSlideReveal 1.1s cubic-bezier(0.16, 1, 0.3, 1) 1.3s forwards;
}

.culinary-carousel-container.animate-intro .carousel-slide.next {
    opacity: 0;
    animation: nextSlideReveal 1.1s cubic-bezier(0.16, 1, 0.3, 1) 1.3s forwards;
}

.culinary-carousel-container.animate-intro .carousel-info-box {
    opacity: 0;
    animation: textFadeIn 0.8s ease 1.6s forwards;
}

.culinary-carousel-container.animate-intro .carousel-nav-btn {
    opacity: 0;
    animation: btnFadeIn 0.8s ease 1.6s forwards;
}

/* Animation Keyframes */
@keyframes activeSlideIntro {
    0% {
        transform: translate(-50%, -50%) translateX(100vw) scale(0.5);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

@keyframes plateSpinAndFade {
    0% {
        transform: rotate(540deg);
        opacity: 1;
    }

    58% {
        transform: rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: rotate(0deg);
        opacity: 0;
    }
}

@keyframes foodScaleIn {
    0% {
        transform: scale(0) rotate(-120deg);
        opacity: 0;
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes prevSlideReveal {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) translateX(-300px) scale(0.85);
        opacity: 0.6;
    }
}

@keyframes nextSlideReveal {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) translateX(300px) scale(0.85);
        opacity: 0.6;
    }
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes btnFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Responsive Styles for Carousel */
@media (max-width: 1024px) {
    .carousel-slide {
        width: 260px;
        height: 260px;
    }

    .carousel-slide.active {
        transform: translate(-50%, -50%) scale(1.15);
    }

    .carousel-slide.prev {
        transform: translate(-50%, -50%) translateX(-220px) scale(0.8);
    }

    .carousel-slide.next {
        transform: translate(-50%, -50%) translateX(220px) scale(0.8);
    }

    @keyframes prevSlideReveal {
        0% {
            transform: translate(-50%, -50%) scale(0.5);
            opacity: 0;
        }

        100% {
            transform: translate(-50%, -50%) translateX(-220px) scale(0.8);
            opacity: 0.6;
        }
    }

    @keyframes nextSlideReveal {
        0% {
            transform: translate(-50%, -50%) scale(0.5);
            opacity: 0;
        }

        100% {
            transform: translate(-50%, -50%) translateX(220px) scale(0.8);
            opacity: 0.6;
        }
    }
}

@media (max-width: 768px) {
    .carousel-track-wrapper {
        height: 320px;
    }

    .carousel-slide {
        width: 200px;
        height: 200px;
    }

    .carousel-slide.active {
        transform: translate(-50%, -50%) scale(1.15);
    }

    .carousel-slide.prev {
        transform: translate(-50%, -50%) translateX(-140px) scale(0.75);
        opacity: 0.45;
    }

    .carousel-slide.next {
        transform: translate(-50%, -50%) translateX(140px) scale(0.75);
        opacity: 0.45;
    }

    .carousel-nav-btn {
        width: 44px;
        height: 44px;
        font-size: 0.95rem;
    }

    .carousel-nav-btn.prev-btn {
        left: 5px;
    }

    .carousel-nav-btn.next-btn {
        right: 5px;
    }

    @keyframes prevSlideReveal {
        0% {
            transform: translate(-50%, -50%) scale(0.5);
            opacity: 0;
        }

        100% {
            transform: translate(-50%, -50%) translateX(-140px) scale(0.75);
            opacity: 0.45;
        }
    }

    @keyframes nextSlideReveal {
        0% {
            transform: translate(-50%, -50%) scale(0.5);
            opacity: 0;
        }

        100% {
            transform: translate(-50%, -50%) translateX(140px) scale(0.75);
            opacity: 0.45;
        }
    }

    .info-title {
        font-size: 1.7rem;
    }

    .info-desc {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .carousel-track-wrapper {
        height: 260px;
    }

    .carousel-slide {
        width: 160px;
        height: 160px;
    }

    .carousel-slide.active {
        transform: translate(-50%, -50%) scale(1.15);
    }

    .carousel-slide.prev {
        transform: translate(-50%, -50%) translateX(-105px) scale(0.75);
        opacity: 0.35;
    }

    .carousel-slide.next {
        transform: translate(-50%, -50%) translateX(105px) scale(0.75);
        opacity: 0.35;
    }

    @keyframes prevSlideReveal {
        0% {
            transform: translate(-50%, -50%) scale(0.5);
            opacity: 0;
        }

        100% {
            transform: translate(-50%, -50%) translateX(-105px) scale(0.75);
            opacity: 0.35;
        }
    }

    @keyframes nextSlideReveal {
        0% {
            transform: translate(-50%, -50%) scale(0.5);
            opacity: 0;
        }

        100% {
            transform: translate(-50%, -50%) translateX(105px) scale(0.75);
            opacity: 0.35;
        }
    }

    .carousel-nav-btn {
        top: auto;
        bottom: -45px;
        transform: none;
    }

    .carousel-nav-btn:hover {
        transform: translateY(-3px);
    }

    .carousel-nav-btn.prev-btn {
        left: calc(50% - 60px);
    }

    .carousel-nav-btn.next-btn {
        right: calc(50% - 60px);
    }
}

/* Call to Action Reservation Bar */
.reserve-banner {
    background: radial-gradient(circle at center, rgba(251, 250, 247, 0.75) 0%, rgba(244, 241, 234, 0.95) 100%),
        url('https://lh3.googleusercontent.com/gps-cs-s/AHRPTWkdiTQKhTqX1s8VelA4yW2EdoxgZp5ft119tqS2bQiEqYgNFKMFGReRNz41vAsyIgO3Mv_D10-BjOShirAcd82EHvRx911tQXEERfLoOPERT1d63dC34VDgJwt8cKi0tBVJ-A9OjhfMS67w=s1360-w1360-h1020-rw') no-repeat center center/cover;
    background-attachment: fixed;
    padding: 110px 0;
    text-align: center;
    border-top: 1px solid rgba(179, 143, 45, 0.15);
    border-bottom: 1px solid rgba(179, 143, 45, 0.15);
}

.reserve-banner-content {
    max-width: 750px;
    margin: 0 auto;
}

.reserve-banner-title {
    font-size: 3.4rem;
    margin-bottom: 20px;
}

.reserve-banner-text {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

/* Interactive Booking Calculator / Form */
.booking-form-box {
    background: var(--color-bg-card);
    border: 1px solid rgba(179, 143, 45, 0.15);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    border-radius: var(--border-radius-md);
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.booking-form-group {
    display: flex;
    flex-direction: column;
}

.booking-form-group.full-width {
    grid-column: span 2;
}

.booking-form-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-gold);
    margin-bottom: 8px;
    font-weight: 700;
}

.booking-form-input {
    width: 100%;
    max-width: 100%;
    background: #faf9f6;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 12px 16px;
    color: var(--color-text-white);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.booking-form-input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(179, 143, 45, 0.1);
    background: #ffffff;
    outline: none;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 20px;
}

.gallery-item {
    height: 280px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--box-shadow-soft);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(251, 250, 247, 0.93);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
    padding: 20px;
    text-align: center;
}

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

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

.gallery-overlay h4 {
    font-size: 1.6rem;
    color: var(--color-text-white);
    margin-bottom: 8px;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.gallery-overlay p {
    color: var(--color-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* Location & Contact Section */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.contact-info-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    background: rgba(179, 143, 45, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact-card-title {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 6px;
    font-weight: 700;
}

.contact-card-value {
    font-size: 1.05rem;
    color: var(--color-text-light);
}

.contact-card-value a:hover {
    color: var(--color-gold);
    text-decoration: underline;
}

.map-container {
    height: 100%;
    min-height: 450px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid rgba(179, 143, 45, 0.2);
    box-shadow: 0 15px 40px rgba(13, 23, 39, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-whatsapp);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: pulseFloat 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

.whatsapp-float-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-gold);
    color: var(--color-text-white);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.whatsapp-float:hover .whatsapp-float-tooltip {
    opacity: 1;
}

@keyframes pulseFloat {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Footer styling */
footer {
    background: #f4f1ea;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 80px 0 30px 0;
}

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

.footer-brand img {
    height: 70px;
    width: auto;
    margin-bottom: 24px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 400px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-title {
    font-size: 1.4rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-contact-icon {
    color: var(--color-gold);
    margin-top: 4px;
}

.footer-contact div {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

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

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-bottom a {
    color: var(--color-gold);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.mobile-only-cta {
    display: none;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 1024px) {
    .section-title {
        font-size: 2.3rem;
    }

    .video-title {
        font-size: 3.5rem;
    }

    .about-grid,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        padding-right: 0;
    }

    .about-image-wrap {
        margin-bottom: 30px;
    }

    .about-image-overlap {
        bottom: -20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    .section {
        padding: 60px 0;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background: var(--color-bg-deep);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        transform: translateX(-100%);
        transition: var(--transition-smooth);
        z-index: 1000;
        padding: 40px 20px;
        overflow-y: auto;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    /* Ensure nav menu links are always readable dark slate on light mobile drawer background */
    .nav-menu .nav-link {
        color: var(--color-text-light) !important;
        font-size: 1.1rem;
        padding: 10px 0;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--color-gold) !important;
    }

    .nav-menu .mobile-only-cta {
        display: inline-block !important;
        background: var(--gradient-gold);
        color: var(--color-text-dark) !important;
        padding: 12px 34px !important;
        border-radius: var(--border-radius-sm);
        font-weight: 700;
        box-shadow: 0 4px 15px rgba(179, 143, 45, 0.25);
        margin-top: 15px;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .nav-menu .mobile-only-cta::after {
        display: none !important;
    }

    .header-cta {
        display: none;
        /* Hide on mobile to simplify header */
    }

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

    .video-desc {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .booking-form-box {
        padding: 24px;
    }

    .booking-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .booking-form-group.full-width {
        grid-column: span 1;
    }

    .map-container {
        min-height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

@media (max-width: 600px) {
    .menu-item {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .menu-item-img {
        width: 100%;
        height: 180px;
    }

    .reserve-banner-title {
        font-size: 2rem;
    }

    .reserve-banner-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .logo img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.1rem;
        white-space: nowrap;
    }

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

    .video-title {
        font-size: 2.1rem;
    }

    /* Prevent booking form and buttons overflow on narrow devices */
    .booking-form-box {
        padding: 20px 16px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-wa {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}
