/* ==========================================================================
   DESIGN SYSTEM - L'ECLAT BEAUTY
   ========================================================================== */
:root {
    /* Pink & Luxury Color Palette */
    --pink-primary: hsl(340, 75%, 58%);      /* Vibrant luxury pink #f34c77 */
    --pink-hover: hsl(340, 80%, 48%);
    --pink-light: hsl(342, 85%, 96%);       /* Ultra soft pinkish blush */
    --pink-glow: rgba(243, 76, 119, 0.35);
    --pink-gradient: linear-gradient(135deg, #ff8e9e 0%, #e84a7f 100%);
    --pink-gradient-glow: linear-gradient(135deg, rgba(255, 142, 158, 0.65) 0%, rgba(232, 74, 127, 0.65) 100%);
    
    /* Elegant Accents */
    --gold-gradient: linear-gradient(135deg, #dfab6c 0%, #c48c49 100%);
    --body-bg: linear-gradient(135deg, #fffcfd 0%, #ffeef2 100%);
    --card-bg: rgba(255, 255, 255, 0.85);
    
    /* Typography & Text */
    --text-main: hsl(335, 30%, 15%);         /* Luxurious warm plum black */
    --text-muted: hsl(335, 15%, 45%);
    --text-light: #ffffff;
    
    /* Shadows & Borders */
    --shadow-soft: 0 15px 35px rgba(243, 76, 119, 0.06);
    --shadow-glowing: 0 20px 45px rgba(243, 76, 119, 0.22);
    --shadow-inset: inset 0 2px 5px rgba(0, 0, 0, 0.05);
    --border-glass: 1px solid rgba(255, 255, 255, 0.6);
    --border-pink-soft: 1px solid rgba(243, 76, 119, 0.15);
    
    /* Theme-specific Component Backgrounds */
    --header-bg: rgba(255, 255, 255, 0.8);
    --header-scrolled-bg: rgba(255, 255, 255, 0.92);
    --bottom-nav-bg: rgba(255, 255, 255, 0.85);
    --bottom-nav-bg-mobile: rgba(255, 255, 255, 0.94);
    --popup-bg: rgba(255, 255, 255, 0.95);
    --input-bg: rgba(255, 255, 255, 0.7);
    --input-focus-bg: #ffffff;

    /* Transitions */
    --transition-liquid: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
}

[data-theme="dark"] {
    /* Elegant Accents in Dark Mode */
    --body-bg: linear-gradient(135deg, #12090b 0%, #1f0f13 100%);
    --card-bg: rgba(30, 16, 20, 0.82);
    
    /* Typography & Text in Dark Mode */
    --text-main: hsl(340, 35%, 90%);
    --text-muted: hsl(340, 15%, 72%);
    --text-light: #ffffff;
    
    /* Shadows & Borders in Dark Mode */
    --shadow-soft: 0 15px 35px rgba(0, 0, 0, 0.4);
    --shadow-glowing: 0 20px 45px rgba(243, 76, 119, 0.15);
    --shadow-inset: inset 0 2px 5px rgba(0, 0, 0, 0.2);
    --border-glass: 1px solid rgba(255, 255, 255, 0.07);
    --border-pink-soft: 1px solid rgba(243, 76, 119, 0.3);
    
    /* Dark Theme Component Overrides */
    --pink-light: hsl(342, 45%, 15%);
    --header-bg: rgba(30, 16, 20, 0.8);
    --header-scrolled-bg: rgba(24, 12, 15, 0.92);
    --bottom-nav-bg: rgba(30, 16, 20, 0.85);
    --bottom-nav-bg-mobile: rgba(24, 12, 15, 0.94);
    --popup-bg: rgba(28, 14, 18, 0.95);
    --input-bg: rgba(45, 25, 30, 0.65);
    --input-focus-bg: rgba(55, 30, 36, 0.85);
}

/* ==========================================================================
   BASE & RESET STYLE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.65;
    background: var(--body-bg);
    background-attachment: fixed;
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    transition: background var(--transition-fast), color var(--transition-fast);
}

/* Page Load Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in-page {
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3 {
    font-family: 'Lora', Georgia, serif;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

/* Title liquid underlines */
h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--pink-gradient);
    border-radius: 10px;
    box-shadow: 0 2px 8px var(--pink-glow);
}

p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

/* ==========================================================================
   LIQUID BUTTONS
   ========================================================================== */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: var(--pink-gradient);
    color: white !important;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-liquid);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-decoration: none;
    gap: 8px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250%;
    height: 250%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
    border-radius: 50%;
}

.btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-glowing);
}

.btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

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

/* Secondary Button - Glassmorphic */
.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--pink-primary) !important;
    border: 1.5px solid rgba(243, 76, 119, 0.3);
}

.btn-secondary:hover {
    background: var(--pink-light);
    border-color: var(--pink-primary);
}

/* ==========================================================================
   LIQUID GLASS CARDS / SECTIONS
   ========================================================================== */
section, form {
    background: var(--card-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: var(--border-glass);
    border-radius: 24px;
    padding: 40px;
    margin: 30px auto;
    max-width: 1000px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-liquid);
    position: relative;
    overflow: hidden;
}

section:hover, form:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glowing);
    border-color: rgba(243, 76, 119, 0.25);
}

/* Liquid light shimmer overlay */
section::before, form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0) 45%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 55%
    );
    transform: rotate(45deg) translate(-50%, -50%);
    transition: none;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

section:hover::before, form:hover::before {
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform: rotate(45deg) translate(50%, 50%);
    opacity: 1;
}

/* ==========================================================================
   HEADER & FLOATING LOGO
   ========================================================================== */
header {
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(243, 76, 119, 0.1);
    padding: 18px 60px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 25px rgba(243, 76, 119, 0.04);
    transition: var(--transition-liquid);
}

header.scrolled {
    padding: 12px 60px;
    background: var(--header-scrolled-bg);
    box-shadow: 0 10px 30px rgba(243, 76, 119, 0.08);
}

/* ==========================================================================
   THEME TOGGLE & HEADER ACTIONS
   ========================================================================== */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.theme-toggle {
    background: rgba(243, 76, 119, 0.1);
    border: 1px solid rgba(243, 76, 119, 0.2);
    color: var(--pink-primary);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 4px 10px rgba(243, 76, 119, 0.05);
}

.theme-toggle:hover {
    background: var(--pink-primary);
    color: white;
    transform: scale(1.08) rotate(15deg);
    box-shadow: 0 8px 20px rgba(243, 76, 119, 0.25);
}

.theme-toggle:active {
    transform: scale(0.95);
}

.theme-toggle .icon-light,
.theme-toggle .icon-dark,
.theme-toggle .icon-auto {
    display: none;
    pointer-events: none;
}

html[data-theme-preference="light"] .theme-toggle .icon-light {
    display: block;
}

html[data-theme-preference="dark"] .theme-toggle .icon-dark {
    display: block;
}

html[data-theme-preference="auto"] .theme-toggle .icon-auto {
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    cursor: pointer;
}

.logo-image {
    max-width: 50px;
    height: auto;
    border-radius: 50%;
    border: 2px solid var(--pink-primary);
    box-shadow: 0 5px 15px var(--pink-glow);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover .logo-image {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 8px 25px rgba(243, 76, 119, 0.4);
}

.logo span {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.65rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-main) 30%, var(--pink-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

/* Navigation Links (Desktop) */
nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
}

.nav-links li a {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    position: relative;
    padding: 10px 22px;
    border-radius: 30px;
    transition: var(--transition-fast);
}

/* Liquid underline sliding effect */
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--pink-gradient);
    border-radius: 10px;
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links li a:hover {
    color: var(--pink-primary);
}

.nav-links li a:hover::after {
    width: 60%;
}

.nav-links li a.active {
    background: var(--pink-gradient);
    color: white !important;
    box-shadow: 0 6px 18px rgba(232, 74, 127, 0.3);
}

.nav-links li a.active::after {
    display: none;
}

.burger {
    display: none;
}

/* ==========================================================================
   HOME PAGE EXCLUSIVES
   ========================================================================== */
.centered-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.text-content {
    max-width: 850px;
    margin: 0 auto;
}

/* Modern liquid rounded image container */
.home-image {
    display: block;
    max-width: 60%;
    margin: 30px auto;
    border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%; /* Liquid organic shape */
    border: 4px solid var(--pink-primary);
    box-shadow: var(--shadow-glowing);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    animation: liquidMorph 12s ease-in-out infinite alternate;
}

.home-image:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 55px rgba(243, 76, 119, 0.35);
}

@keyframes liquidMorph {
    0% {
        border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
    }
    50% {
        border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
    }
    100% {
        border-radius: 70% 30% 60% 40% / 30% 70% 40% 60%;
    }
}

.text-content h3 {
    font-size: 1.45rem;
    color: var(--pink-primary);
    margin: 25px 0 15px;
    letter-spacing: 0px;
}

.text-content h3::after {
    display: none;
}

.text-content p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 10px;
}

/* ==========================================================================
   FORM & BOOKING STYLE
   ========================================================================== */
form {
    max-width: 650px;
    margin: 30px auto;
    text-align: left;
}

form label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

form input, form select {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 25px;
    border: 1.5px solid rgba(243, 76, 119, 0.15);
    background: var(--input-bg);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    box-shadow: var(--shadow-inset);
    transition: var(--transition-fast);
}

form input:focus, form select:focus {
    outline: none;
    border-color: var(--pink-primary);
    background: var(--input-focus-bg);
    box-shadow: 0 0 0 4px var(--pink-glow);
}

#booking h3 {
    font-size: 1.35rem;
    margin-top: 25px;
    color: var(--pink-primary);
    display: block;
}
#booking h3::after {
    display: none;
}

#booking p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#booking a {
    color: var(--pink-primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px dashed rgba(243, 76, 119, 0.4);
    transition: var(--transition-fast);
}

#booking a:hover {
    color: var(--pink-hover);
    border-bottom-style: solid;
}

/* ==========================================================================
   GALLERY PAGE STYLE
   ========================================================================== */
#gallery p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 40px auto 20px;
    width: 100%;
}

.gallery-item {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid rgba(243, 76, 119, 0.1);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.04);
    border-color: var(--pink-primary);
    box-shadow: var(--shadow-glowing);
}

/* Gallery Glass Popup */
.popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(42, 26, 32, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.popup.show {
    display: flex;
    opacity: 1;
}

.popup-content {
    position: relative;
    background: var(--popup-bg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 35px 25px 25px;
    border-radius: 24px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.popup.show .popup-content {
    transform: scale(1);
}

.popup img {
    max-width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 16px;
    border: 3px solid var(--pink-primary);
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
}

.popup p {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 0;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    font-size: 28px;
    color: var(--text-muted);
    transition: var(--transition-fast);
    line-height: 1;
}

.close:hover {
    color: var(--pink-primary);
    transform: scale(1.1) rotate(90deg);
}

/* ==========================================================================
   CONTACT PAGE STYLE
   ========================================================================== */
.map-container {
    margin: 25px auto 0;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(243, 76, 119, 0.15);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-liquid);
}

.map-container:hover {
    box-shadow: var(--shadow-glowing);
    border-color: var(--pink-primary);
}

#contact h2 {
    display: block;
    margin-top: 30px;
}

#contact p a {
    color: var(--pink-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

#contact p a:hover {
    color: var(--pink-hover);
    text-decoration: underline;
}

#contact i {
    margin-right: 8px;
    font-size: 1.15rem;
}

#contact ul {
    list-style: none;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#contact ul li {
    font-size: 1.05rem;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
}

#contact ul li::before {
    content: '🌸';
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 0.85rem;
}

/* ==========================================================================
   FOOTER STYLE
   ========================================================================== */
footer {
    background: rgba(42, 26, 32, 0.95);
    color: #ffd4e0;
    text-align: center;
    padding: 40px 20px 30px;
    margin-top: 60px;
    border-top: 3px solid var(--pink-primary);
    font-size: 0.95rem;
}

footer p {
    color: #cca4b0;
    max-width: 600px;
    margin: 0 auto 10px;
}

footer .social-media {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

footer .social-media p {
    margin: 0;
    font-weight: 600;
    color: #ffffff;
}

footer .social-media a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

footer .social-media a:hover {
    background: var(--pink-gradient);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(232, 74, 127, 0.3);
    transform: translateY(-3px);
}

footer .social-media a i {
    font-size: 1.2rem;
}

footer .copyright {
    font-size: 0.88rem;
    color: #b08d9b;
    margin-top: 20px;
}

footer .created-by {
    font-size: 0.85rem;
    color: #997482;
    margin-top: 6px;
}

footer .created-by a {
    color: var(--pink-primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

footer .created-by a:hover {
    color: #ff7597;
    text-decoration: underline;
}

/* ==========================================================================
   WHATSAPP FLOAT BUTTON
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(18, 140, 126, 0.35);
    z-index: 999;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float i {
    font-size: 32px;
}

.whatsapp-float:hover {
    transform: translateY(-8px) scale(1.1) rotate(15deg);
    box-shadow: 0 15px 30px rgba(18, 140, 126, 0.5);
}

/* ==========================================================================
   MOBILE BOTTOM NAVIGATION BAR
   ========================================================================== */
.bottom-nav {
    position: fixed;
    bottom: 25px;
    left: 20px;
    right: 20px;
    height: 72px;
    background: var(--bottom-nav-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: var(--border-glass);
    border-radius: 40px;
    box-shadow: 0 15px 35px rgba(243, 76, 119, 0.16);
    z-index: 9999;
    display: none; /* Desktop hidden */
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
    transition: var(--transition-liquid);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-muted);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    transition: var(--transition-liquid);
    position: relative;
}

.bottom-nav-item i {
    font-size: 1.35rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bottom-nav-item span {
    font-size: 0.65rem;
    font-weight: 600;
    margin-top: 2px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transform: translateY(5px);
    transition: var(--transition-liquid);
}

/* Active State Liquid Bubble Effect */
.bottom-nav-item.active {
    color: white;
    background: var(--pink-gradient);
    box-shadow: 0 8px 22px rgba(232, 74, 127, 0.35);
    transform: translateY(-10px);
}

.bottom-nav-item.active i {
    transform: scale(1.05);
}

.bottom-nav-item.active span {
    opacity: 1;
    height: auto;
    overflow: visible;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Tablet & Mobile styles */
@media (max-width: 768px) {
    body {
        font-size: 0.92rem;
        padding-bottom: 90px !important; /* Space for bottom nav & footer on mobile */
    }

    h2 {
        font-size: 1.55rem !important;
        margin-bottom: 1.2rem !important;
    }

    h2::after {
        height: 3px !important;
        width: 45px !important;
        bottom: -6px !important;
    }

    h3 {
        font-size: 1.15rem !important;
        margin-top: 18px !important;
    }

    p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 0.9rem !important;
    }

    header {
        padding: 12px 18px !important;
    }

    header.scrolled {
        padding: 10px 18px !important;
    }

    header nav {
        display: none; /* Hide top links on mobile in favor of bottom nav */
    }

    .logo-image {
        max-width: 38px !important;
    }

    .logo span {
        font-size: 1.25rem !important;
    }

    .burger {
        display: none;
    }

    section, form {
        padding: 24px 18px !important;
        margin: 18px 12px !important;
        border-radius: 18px !important;
    }

    .home-image {
        max-width: 65% !important;
        margin: 18px auto !important;
    }

    .buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 22px !important;
    }

    .buttons .btn {
        width: 100%;
        padding: 12px 24px !important;
        font-size: 0.9rem !important;
    }

    /* Booking Form compact styles */
    form label {
        font-size: 0.82rem !important;
        margin-bottom: 6px !important;
    }

    form input, form select {
        padding: 11px 14px !important;
        margin-bottom: 18px !important;
        font-size: 0.92rem !important;
        border-radius: 10px !important;
    }

    #booking h3 {
        font-size: 1.1rem !important;
        margin-top: 18px !important;
    }

    /* Gallery compact grid */
    .gallery {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        margin: 22px auto 12px !important;
    }

    .gallery-item {
        height: 140px !important;
        border-radius: 12px !important;
    }

    /* Map container compact */
    .map-container {
        margin: 18px auto 0 !important;
        border-radius: 14px !important;
    }

    .map-container iframe {
        height: 250px !important;
    }

    #contact ul {
        gap: 10px !important;
    }

    #contact ul li {
        font-size: 0.92rem !important;
    }

    /* Bottom Nav stuck to absolute bottom */
    .bottom-nav {
        display: flex !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 64px !important;
        border-radius: 20px 20px 0 0 !important;
        background: var(--bottom-nav-bg-mobile) !important;
        border: none !important;
        border-top: 1px solid rgba(243, 76, 119, 0.15) !important;
        box-shadow: 0 -8px 30px rgba(243, 76, 119, 0.12) !important;
        padding: 0 10px !important;
        z-index: 99999 !important;
    }

    .bottom-nav-item {
        width: 44px !important;
        height: 44px !important;
    }

    .bottom-nav-item i {
        font-size: 1.15rem !important;
    }

    .bottom-nav-item span {
        font-size: 0.58rem !important;
        margin-top: 1px !important;
    }

    .bottom-nav-item.active {
        transform: translateY(-6px) !important;
        box-shadow: 0 6px 16px rgba(232, 74, 127, 0.3) !important;
    }

    /* WhatsApp button placed compact right above the bottom nav bar */
    .whatsapp-float {
        bottom: 78px !important;
        left: 15px !important;
        width: 50px !important;
        height: 50px !important;
        box-shadow: 0 6px 18px rgba(18, 140, 126, 0.3) !important;
    }

    .whatsapp-float i {
        font-size: 26px !important;
    }

    /* Show footer properly styled on mobile */
    footer {
        display: block !important;
        padding: 30px 15px 20px !important;
        margin-top: 30px !important;
    }
}

/* Small mobile portrait adjustment */
@media (max-width: 480px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    section, form {
        padding: 20px 14px !important;
        margin: 12px 8px !important;
    }

    .home-image {
        max-width: 80% !important;
    }
}

