:root {
    --color-primary: #1a1a1a;
    --color-secondary: #555555;
    --color-gold: #C5A059;
    --color-gold-hover: #B08D45;
    --color-background: #faf9f6;
    --color-white: #ffffff;
    --color-border: #e5e5e5;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem; /* Increased for modern spacious look */
    
    --container-width: 1280px;
    --header-height: 100px; /* Taller header */
    
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.02);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.06);
    --shadow-lg: 0 25px 50px rgba(0,0,0,0.1);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    font-family: var(--font-sans);
    color: var(--color-primary);
    background-color: var(--color-background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 40px; /* Thicker and wider (was 14px 32px) */
    font-size: 1rem; /* Slightly larger text */
    font-weight: 700; /* Bolder text */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-white);
    border: 1px solid var(--color-gold);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid rgba(26, 26, 26, 0.2);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Header */
.site-header {
    position: fixed;
    top: 20px; /* Floating from top */
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-md);
    border-radius: 24px; /* Fully rounded floating tab */
    width: 95%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.site-header.header-hidden {
    transform: translateY(calc(-100% - 40px));
}

.site-header:not(.header-hidden) {
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 2rem;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    background: var(--color-background);
    border-radius: 12px;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}
.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}
.mobile-menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    padding-top: calc(var(--header-height) + 20px); /* Reduced spacing from header */
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    background-color: var(--color-background);
    background-image: url('https://pub-53e78df282d94cf7941efba33c5a88ab.r2.dev/satin.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(250, 249, 246, 0.4) 0%, rgba(250, 249, 246, 0.9) 100%);
    pointer-events: none;
}

.hero-container-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--spacing-xl);
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-text-content {
    animation: fadeInUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero h1 {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1;
    letter-spacing: -0.03em;
}

.subheadline {
    font-size: 1rem;
    color: var(--color-gold);
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 580px;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.hero-hours {
    font-size: 0.85rem;
    color: var(--color-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.7;
}

.hero-visual {
    position: relative;
    height: 700px;
    border-radius: 350px 350px 40px 40px; /* Sophisticated arch shape */
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.12);
    animation: fadeInRight 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
    transform: translateX(50px);
    border: 8px solid var(--color-white);
}

.hero-image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s ease;
}

.hero-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(197, 160, 89, 0.1), transparent);
    pointer-events: none;
}

/* Services Section */
.services {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
    position: relative;
}

.services::before {
    content: 'ZONOVA';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: 20vw;
    color: rgba(197, 160, 89, 0.03);
    z-index: 0;
    pointer-events: none;
    letter-spacing: 2vw;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    font-size: 1.15rem;
    color: var(--color-secondary);
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-color: rgba(197, 160, 89, 0.2);
}

.service-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 1s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--color-primary);
}

.service-description {
    color: var(--color-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.service-features li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-secondary);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 1px;
    background-color: var(--color-gold);
}

.learn-more-btn {
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 0;
    border-bottom: 2px solid transparent;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    transform: translateX(5px);
}

/* About Section */
.about {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-background);
    overflow: hidden;
    position: relative;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content h2 {
    font-size: clamp(3rem, 5vw, 4rem);
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.about-content p {
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    line-height: 1.9;
}

.about-image-container {
    position: relative;
    padding: 20px;
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-md);
    z-index: 0;
    opacity: 0.4;
}

.about-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: url('https://pub-53e78df282d94cf7941efba33c5a88ab.r2.dev/Zonova%20logo%20.jpeg') no-repeat center;
    background-size: contain;
    opacity: 0.1;
    z-index: 2;
    filter: grayscale(1);
}

.about-image {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

/* Booking Section */
.booking {
    padding: var(--spacing-xl) 0;
    background-color: #f4f1ea; /* Subtle warm background change */
    position: relative;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
    opacity: 0.3;
}

.booking-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.booking-embed-container {
    width: 100%;
    max-width: 480px; /* Reduced to match Mangomint widget perfectly and remove black lines */
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.booking-iframe {
    width: 100%;
    height: 800px;
    border: none;
    display: block;
}

.booking-alternatives {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    width: 100%;
    max-width: 600px;
}

.booking-alternatives p:first-child {
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.phone-link {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-primary);
    margin: 0.5rem 0;
    font-weight: 400;
}

.phone-link:hover {
    color: var(--color-gold);
    transform: scale(1.05);
}

/* Footer */
.site-footer {
    background-color: #111;
    color: #fff;
    padding: var(--spacing-lg) 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-col h3 {
    color: var(--color-gold);
    font-size: 1rem;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 50px;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
}

.footer-info p {
    color: #888;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-info a {
    color: #fff;
}

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

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

/* Animations */
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 1024px) {
    :root {
        --spacing-xl: 5rem;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-sm: 1.25rem;
        --spacing-md: 2rem;
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
        --header-height: 80px; /* Taller mobile header */
    }

    /* Mobile Header */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .mobile-menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* V5 Redesign overrides desktop styles */
    .main-nav {
        display: none; /* Controlled by JS and critical.css */
    }

    .main-nav .btn {
        width: 100%;
    }

    /* Hero Mobile - Elegant & Simple */
    .hero {
        padding-top: calc(var(--header-height) + 3.5rem); /* Adjusted spacing from header */
        padding-bottom: 3rem;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        background-attachment: scroll;
        background-position: center;
        background-image: url('https://pub-53e78df282d94cf7941efba33c5a88ab.r2.dev/satin.jpg') !important;
        background-size: cover;
    }

    .hero::after {
        background: radial-gradient(circle at center, rgba(250, 249, 246, 0.4) 0%, rgba(250, 249, 246, 0.8) 100%);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .hero-container-split {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .hero-text-content {
        text-align: center;
        order: 1;
        padding: 0 1.5rem;
        transform: none !important;
        animation: fadeInUp 0.8s ease forwards;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 10vw, 3.2rem); 
        letter-spacing: -0.02em;
        margin-bottom: 1.5rem;
        line-height: 1.1;
        color: #111;
        font-family: var(--font-serif);
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8); /* Subtle highlight for contrast */
    }

    .hero h1 span {
        display: inline-block;
        white-space: nowrap;
    }
    
    .subheadline {
        font-size: 0.85rem;
        letter-spacing: 4px;
        margin-bottom: 1.5rem;
        font-weight: 800;
        text-shadow: 0 1px 1px rgba(255, 255, 255, 0.9); /* Clearer on light background */
        color: #A67C37; /* Slightly deeper gold for better contrast */
        line-height: 1.6;
        text-transform: uppercase;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        color: #222; /* Darker for better contrast */
        line-height: 1.6;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-cta-group .btn {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        padding: 20px;
        font-size: 1.1rem;
        letter-spacing: 2px;
        border-radius: 40px;
    }
    
    .hero-visual {
        display: none !important;
    }

    .booking-embed-container {
        max-width: 480px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    }

    .site-header {
        top: 15px;
        height: var(--header-height);
    }

    .logo-img {
        height: 40px;
    }

    /* Mobile Menu Toggle Refined */
    .mobile-menu-toggle {
        width: 24px;
        height: 18px; /* Tighter toggle icon */
    }

    /* Services Mobile - Modern Cards */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 0.5rem; /* Subtle inset */
    }
    
    .section-header h2 {
        font-size: 2.25rem;
        letter-spacing: -0.01em;
    }

    .service-card {
        box-shadow: 0 10px 30px rgba(0,0,0,0.06); /* Elegant shadow */
        border-radius: 20px; /* Softer corners */
    }
    
    .service-image {
        height: 260px; /* Balanced height */
    }
    
    .service-content {
        padding: 1.75rem;
        text-align: left; /* Keep left alignment for readability */
    }

    /* About Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-container {
        order: -1;
        margin-bottom: 1rem;
        padding: 0 1rem; /* Inset image slightly */
    }
    
    .about-image-container::before {
        right: 0;
        top: 15px;
        width: 100%;
        border-width: 1px;
    }
    
    .about-content {
        padding: 0 0.5rem;
        text-align: center;
    }
    
    .about-content h2 {
        font-size: 2.25rem;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-col h3 {
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 1.25rem;
    }
    
    .footer-logo {
        margin: 0 auto 1.5rem;
    }
}

/* --- Results Gallery & Admin Styles --- */

/* Results Grid */
.results-hero {
    padding: calc(var(--header-height) + 80px) 0 var(--spacing-lg);
    background-color: var(--color-background);
    background-image: url('https://pub-53e78df282d94cf7941efba33c5a88ab.r2.dev/satin.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.results-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(250, 249, 246, 0.4) 0%, var(--color-background) 100%);
}

.results-gallery {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
    position: relative;
}

.results-grid-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl); /* More space between pairs */
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.result-pair {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    padding: 3rem;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.02);
}

.result-pair:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
    border-color: rgba(197, 160, 89, 0.15);
}

.result-pair-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.result-pair-header h3 {
    font-size: 2.25rem;
    color: var(--color-primary);
}

.result-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
}

.result-img-container {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/5;
    background-color: var(--color-background);
}

.result-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.result-img-container:hover img {
    transform: scale(1.08);
}

.result-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    letter-spacing: 2px;
}

/* Admin Trigger */
.admin-trigger {
    background: none;
    border: none;
    color: #ccc; 
    opacity: 0.5;
    cursor: pointer;
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 10px;
    transition: all 0.3s ease;
    z-index: 10;
}

.admin-trigger:hover {
    opacity: 1;
    color: var(--color-gold);
    transform: scale(1.1);
}

/* Admin Modals & Forms */
.admin-modal-content {
    text-align: center;
    max-width: 450px;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: var(--radius-lg);
}

.admin-dashboard-content {
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
}

.manage-section {
    margin-top: 2rem;
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
}

.manage-section h4 {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.admin-login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.form-input {
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    background-color: #faf9f6;
    transition: all 0.3s ease;
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

.admin-login-form button {
    width: 100%;
}

.error-msg {
    color: #d32f2f;
    font-size: 0.9rem;
    margin-top: 5px;
}

.status-msg {
    margin-top: 10px;
    font-weight: 500;
}

/* Upload Section */
.upload-section {
    background: var(--color-background);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
}

.upload-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.dropzone {
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-md);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.dropzone:hover, .dropzone.dragover {
    border-color: var(--color-gold);
    background: rgba(197, 160, 89, 0.05);
}

.dropzone-label {
    color: var(--color-secondary);
    pointer-events: none;
    font-size: 0.9rem;
}

.preview-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
}

.upload-controls {
    display: flex;
    gap: var(--spacing-sm);
}

.upload-controls input {
    flex-grow: 1;
}

/* Admin List */
.admin-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.admin-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: transform 0.2s ease;
}

.admin-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.admin-item-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.admin-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid #eee;
}

.admin-item-info span {
    font-weight: 500;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.admin-item-actions {
    display: flex;
    gap: 5px;
}

.btn-icon {
    background: none;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.btn-delete {
    color: #d32f2f;
}

.btn-delete:hover {
    background: #ffebee;
    border-color: #d32f2f;
}

@media (max-width: 600px) {
    .upload-container {
        grid-template-columns: 1fr;
    }
    .result-images {
        grid-template-columns: 1fr; 
        gap: 1.5rem;
    }
    .result-pair {
        padding: 1.5rem;
        border-radius: 24px;
    }
    .result-pair-header h3 {
        font-size: 1.75rem;
    }
}

/* Mobile Menu Refined */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: calc(var(--header-height) + 30px); /* Positioned below floating header */
        left: 2.5%; /* Match 95% width */
        right: 2.5%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2.5rem 2rem;
        gap: 1.5rem;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 24px;
        display: flex !important;
        visibility: hidden;
        opacity: 0;
        z-index: 999;
        pointer-events: none;
    }
    
    .main-nav.open {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
    
    .main-nav .nav-link {
        width: 100%;
        text-align: center;
        font-size: 1.25rem;
        padding: 12px;
        font-family: var(--font-serif);
        text-transform: none;
        letter-spacing: 0;
    }
    
    .main-nav .btn {
        width: 100%;
        margin-top: 1rem;
        padding: 20px;
    }

    .site-header {
        top: 15px;
        height: 80px;
    }

    .logo-img {
        height: 40px;
    }
}

@media (max-width: 768px) {
    .booking-iframe {
        height: 1000px !important; /* Slightly more compact but still functional */
    }
}

/* --- Mobile Efficiency Refinements --- */
@media (max-width: 768px) {
    /* Hero CTA Refinement */
    .hero-cta-group .btn {
        width: 100%;
        max-width: 100%; /* Ensure full width on mobile for efficiency */
        padding: 18px 24px; /* Even thicker on mobile for touch targets */
        font-size: 1.1rem;
        box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3); /* Pop more */
    }

    /* Service Cards - Clearer Layout */
    .service-card {
        margin-bottom: 1.5rem; /* More separation */
    }

    .service-content h3 {
        font-size: 1.75rem; /* Larger headings for scanning */
    }

    .learn-more-btn {
        width: 100%; /* Full width tap target */
        text-align: center;
        padding: 12px;
        background: rgba(197, 160, 89, 0.1);
        border-radius: 8px;
        border: none;
        margin-top: auto;
    }

    /* Bottom Sticky Book Bar for High Conversion */
    body {
        padding-bottom: 80px; /* Space for sticky bar */
    }

    .mobile-sticky-cta {
        position: fixed;
        bottom: 20px; /* Lift off the bottom to match floating chat style */
        left: 20px;
        right: 20px;
        height: 60px;
        background: transparent; /* Remove background */
        padding: 0;
        box-shadow: none; /* Remove container shadow */
        z-index: 9990; /* Ensure it doesn't block chat if overlapping */
        display: grid;
        grid-template-columns: 60px 1fr 60px; /* Left btn, Center btn, Right placeholder */
        align-items: center;
        gap: 10px;
        pointer-events: none; /* Let clicks pass through empty space */
    }

    .mobile-sticky-cta > * {
        pointer-events: auto; /* Re-enable clicks on buttons */
        box-shadow: 0 4px 20px rgba(0,0,0,0.15); /* Add shadow directly to buttons */
    }

    .mobile-sticky-cta .phone-icon-btn {
        grid-column: 1;
        width: 60px; /* Match standard chat bubble size */
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff; /* White background like chat bubble */
        border-radius: 50%; /* Perfect circle */
        color: var(--color-primary);
        justify-self: start;
    }

    .mobile-sticky-cta .btn {
        grid-column: 2;
        justify-self: center; /* Center in the middle column */
        flex-grow: 0; /* Don't stretch */
        width: auto;
        min-width: 140px; /* Ensure decent width */
        padding: 0 24px;
        font-size: 1rem;
        height: 60px; /* Match height of circles */
        border-radius: 30px; /* Fully rounded pills */
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex !important; /* Force show on mobile */
    }
}
