/* =========================================
   1. FONTS & IMPORTS
   ========================================= */

/* Custom Local Fonts */

@font-face {
    font-family: 'ShearsForServices';
    src: url('/static/fonts/Shearsforservices.ttf') format('truetype');
    font-display: block;
}

@font-face {
    font-family: 'MyFontVero';
    src: url('/static/fonts/myfontVero.otf?v={{ version }}') format('opentype');
    font-display: block;
}

@font-face {
    font-family: 'DubielPlain';
    src: url('/static/fonts/DubielPlain.ttf') format('truetype');
    font-display: block;
}

/* =========================================
   2. VARIABLES & THEME SETUP
   ========================================= */
:root {
    /* Color Palette */
    --primary-color: #f87171;
    --gold-color: #D4AF37;
    --dark-zinc: #18181b;

    /* Light Mode Defaults */
    --bg-color: #fffafb;
    --text-color: #333333;
    --text-light: #666666;
    --card-bg: #ffffff;
    --header-bg: rgba(255, 255, 255, 0.85);
    --border-color: rgba(0, 0, 0, 0.08);

    /* Fonts */
    --font-display: 'Playfair Display', serif;
    --font-hand: 'Great Vibes', cursive;
    --font-body: 'Montserrat', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
}

/* Dark Mode Overrides */
[data-theme="dark"] {
    --bg-color: #121212;
    --text-color: #f3f4f6;
    --text-light: #9ca3af;
    --card-bg: #1c1c1c;
    --header-bg: rgba(18, 18, 18, 0.85);
    --border-color: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Anti-zoom on iPhone */
input,
select,
textarea {
    font-size: 16px !important;
}

/* =========================================
   3. HEADER & NAVIGATION
   ========================================= */
#main-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background-color: var(--header-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

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

.logo-img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: contain;
    background-color: white;
    border: 1px solid var(--gold-color);
    padding: 2px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-title {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 1.1rem;
    color: var(--text-color);
}

.brand-subtitle {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 3px;
}

.desktop-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-btn {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 5px;
    transition: 0.2s;
}

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

.btn-book-nav {
    background: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(248, 113, 113, 0.3);
    transition: transform 0.2s;
}

.btn-book-nav:hover {
    transform: translateY(-2px);
    background: #ef4444;
}

.lang-switcher {
    display: flex;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    align-items: center;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px 5px;
    color: var(--text-light);
    font-weight: 600;
}

.lang-btn.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.mobile-only {
    display: none;
}

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
    background: radial-gradient(circle at center, #fff5f6 0%, #ffe4e6 40%, #fffafb 100%);
    transition: background 0.5s ease;
}

[data-theme="dark"] .hero-section {
    background: radial-gradient(circle at center, #5e403d 0%, #3e2b2a 40%, #1a1110 100%);
}

.hero-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px 80px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    transition: all 0.5s ease;
}

[data-theme="dark"] .hero-card {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-welcome,
h2.hero-welcome,
.hero-section .hero-welcome {
    font-family: 'Great Vibes', cursive !important;
    font-size: 3.5rem;
    margin: 0 0 10px;
    color: var(--text-color);
    transition: color 0.3s;
    font-weight: 400 !important;
    font-style: normal !important;
}

[data-theme="dark"] .hero-welcome {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title,
h1.hero-title,
.hero-section .hero-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 5rem;
    line-height: 1.1;
    margin: 0 0 20px;
    color: #1a1a1a;
    transition: color 0.3s;
    font-weight: 400 !important;
}

[data-theme="dark"] .hero-title {
    color: #ffffff;
}

.text-gradient,
.hero-title .text-gradient,
span.text-gradient {
    color: var(--primary-color);
    font-style: italic !important;
    font-family: inherit !important;
    transition: text-shadow 0.3s;
}

[data-theme="dark"] .text-gradient {
    text-shadow: 0 0 20px rgba(248, 113, 113, 0.4);
}

.hero-subtitle,
p.hero-subtitle,
.hero-section .hero-subtitle {
    font-family: 'Great Vibes', cursive !important;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    font-style: normal !important;
    font-weight: 400 !important;
    color: var(--text-light);
    margin-bottom: 40px;
    transition: color 0.3s;
}

[data-theme="dark"] .hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

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

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(248, 113, 113, 0.25);
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-outline {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    transition: 0.3s;
}

[data-theme="dark"] .btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline:hover {
    transform: scale(1.05);
}

[data-theme="dark"] .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.scroll-indicator {
    bottom: 40px;
    color: var(--primary-color);
    background: var(--card-bg);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
}

.scroll-indicator span {
    font-size: 2.2rem;
}

[data-theme="dark"] .scroll-indicator {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.scroll-indicator:hover {
    background: var(--primary-color);
    color: white;
}

[data-theme="dark"] .scroll-indicator:hover {
    background: var(--primary-color);
    color: white;
}

/* =========================================
   5. SERVICES (Stack Cards)
   ========================================= */
.services-section {
    padding: 100px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.section-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.section-divider-mini {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto;
}

.section-subtitle {
    margin-top: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    color: var(--text-light);
}

.card-stack-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
}

.card-stack-item {
    position: sticky;
    top: 120px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 450px;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .card-stack-item {
        flex-direction: row;
    }

    .card-img-col {
        width: 50%;
    }

    .card-content-col {
        width: 50%;
        padding: 60px;
    }
}

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

.card-content-col {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-tag {
    color: var(--primary-color);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 15px;
    display: block;
}

.card-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.card-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 300;
}

.price-list {
    list-style: none;
    margin-bottom: 30px;
    border-top: 1px dashed var(--border-color);
    padding-top: 20px;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 8px 0;
    color: var(--text-color);
    border-bottom: 1px dashed var(--border-color);
}

.price-list li span:last-child {
    font-weight: 700;
    color: var(--text-color);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price-start {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-light);
}

.btn-card {
    background: #111;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
}

[data-theme="dark"] .btn-card {
    background: white;
    color: black;
}

/* =========================================
   6. ABOUT & REVIEWS
   ========================================= */
.about-section {
    padding: 100px 20px;
    background: var(--bg-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

@media(min-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-main-img {
    border-radius: 32px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img-wrapper {
    position: relative;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

[data-theme="dark"] .about-badge {
    background: rgba(0, 0, 0, 0.8);
}

.founder-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.founder-role {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
}

.commitment-list {
    margin-top: 30px;
    list-style: none;
}

.commitment-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-check {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.item-title {
    font-weight: 700;
    display: block;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.item-desc {
    font-size: 0.85rem;
    color: var(--text-light);
}

.reviews-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: var(--gold-color);
    margin-bottom: 20px;
}

.review-text {
    font-style: italic;
    color: var(--text-light);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: rgba(248, 113, 113, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.reviewer-name {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.review-date {
    font-size: 0.7rem;
    color: #999;
}

/* =========================================
   7. FOOTER (Modern Zinc Dark)
   ========================================= */
.footer-modern {
    background-color: var(--dark-zinc);
    color: white;
    padding: 80px 20px 40px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.footer-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.contact-row:hover .icon-circle {
    background-color: var(--primary-color);
}

.contact-label {
    color: #9ca3af;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1.2rem;
    font-weight: 500;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.footer-buttons {
    display: flex;
    gap: 15px;
    margin-top: 50px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.btn-whatsapp,
a.btn-whatsapp,
.footer-buttons .btn-whatsapp,
.btn-instagram,
a.btn-instagram,
.footer-buttons .btn-instagram {
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    display: inline-block !important;
    width: auto !important;
    max-width: none !important;
    min-width: auto !important;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s;
    white-space: nowrap;
    flex: none !important;
    box-sizing: border-box !important;
    text-align: center;
    line-height: normal;
}

.btn-whatsapp .material-icons-outlined,
.btn-whatsapp .material-symbols-outlined {
    display: none !important;
}

.btn-whatsapp,
a.btn-whatsapp,
.footer-buttons .btn-whatsapp {
    background-color: #16a34a;
}

.btn-instagram,
a.btn-instagram,
.footer-buttons .btn-instagram {
    background-color: var(--primary-color);
}

.btn-whatsapp:hover,
a.btn-whatsapp:hover {
    background-color: #15803d;
}

.btn-instagram:hover,
a.btn-instagram:hover {
    background-color: #e11d48;
}

.map-wrapper {
    position: relative;
    height: 450px;
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    background: #1a1a1a;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 28px;
}

[data-theme="dark"] .map-wrapper {
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.15);
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: #6b7280;
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* =========================================
   8. PREMIUM BOOKING POPUP
   ========================================= */
.premium-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.premium-modal-overlay.active {
    display: flex;
}

.premium-booking-popup {
    background: white;
    border-radius: 32px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

[data-theme="dark"] .premium-booking-popup {
    background: #1c1c1c;
}

.watercolor-top-left,
.watercolor-bottom-right {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
}

.watercolor-top-left {
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, var(--primary-color), transparent);
}

.watercolor-bottom-right {
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, var(--gold-color), transparent);
}

.modal-header {
    padding: 40px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-color);
}

.modal-header-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    transition: 0.3s;
}

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

.modal-content {
    padding: 40px;
}

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

@media (min-width: 768px) {
    .booking-form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.form-left-col,
.form-right-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.field-group {
    display: flex;
    flex-direction: column;
}

.field-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    color: var(--text-color);
}

.custom-input,
.custom-select,
.custom-textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--card-bg);
    color: var(--text-color);
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.custom-input:focus,
.custom-select:focus,
.custom-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.phone-group {
    display: flex;
    gap: 10px;
}

.country-code {
    width: 80px;
    flex-shrink: 0;
}

.calendar-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
}

.calendar-header {
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    text-align: center;
}

.day {
    font-size: 0.7rem;
    color: var(--text-light);
}

.form-footer {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.recaptcha-wrapper {
    display: flex;
    justify-content: center;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: transform 0.3s;
    box-shadow: 0 10px 20px rgba(248, 113, 113, 0.25);
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* =========================================
   9. SUCCESS POPUP
   ========================================= */
.success-card {
    background: white;
    border-top: 4px solid var(--primary-color);
    border-radius: 24px;
    overflow: hidden;
    max-width: 500px;
    width: 90%;
    text-align: center;
    padding-bottom: 30px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.success-icon-area {
    padding: 40px 0 20px;
    display: flex;
    justify-content: center;
}

.success-circle {
    width: 80px;
    height: 80px;
    border: 2px solid var(--gold-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-color);
}

.success-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.success-msg {
    color: #666;
    padding: 0 30px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-close-success {
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

/* =========================================
   10. EDITORIAL GLASS MENU
   ========================================= */
.editorial-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s step-end;
}

[data-theme="dark"] .editorial-menu-overlay {
    background-color: rgba(24, 24, 27, 0.9);
}

.editorial-menu-overlay.active {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s step-start;
}

.menu-header {
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.menu-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    transition: transform 0.5s ease;
    color: var(--gold-color);
}

.menu-close-btn span {
    font-size: 3rem;
    font-weight: 300;
}

.menu-close-btn:hover {
    transform: rotate(90deg);
}

.menu-nav-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.menu-item {
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.menu-link {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-link:hover {
    color: var(--primary-color);
}

[data-theme="dark"] .menu-link {
    color: white;
}

[data-theme="dark"] .menu-link:hover {
    color: var(--primary-color);
}

.menu-link.italic-style {
    font-style: italic;
    font-size: 3rem;
    color: var(--text-light);
}

[data-theme="dark"] .menu-link.italic-style {
    color: #9ca3af;
}

.editorial-menu-overlay.active .menu-item {
    opacity: 1;
    transform: translateY(0);
}

.editorial-menu-overlay.active .menu-item:nth-child(1) {
    transition-delay: 0.1s;
}

.editorial-menu-overlay.active .menu-item:nth-child(2) {
    transition-delay: 0.15s;
}

.editorial-menu-overlay.active .menu-item:nth-child(3) {
    transition-delay: 0.2s;
}

.editorial-menu-overlay.active .menu-item:nth-child(4) {
    transition-delay: 0.25s;
}

.editorial-menu-overlay.active .menu-item:nth-child(5) {
    transition-delay: 0.3s;
}

.menu-footer {
    width: 100%;
    padding: 2rem;
    padding-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s ease 0.4s;
}

.editorial-menu-overlay.active .menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.social-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.social-link {
    color: var(--text-color);
    text-decoration: none;
    transition: 0.3s;
}

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

[data-theme="dark"] .social-link {
    color: white;
}

.icon-lg {
    font-size: 2rem;
}

.icon-sm {
    font-size: 1rem;
}

.theme-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 1.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.theme-toggle-btn:hover {
    color: var(--primary-color);
}

/* =========================================
   11. TIME SLOTS - BOOKING FORM
   ========================================= */
#timeSlotsContainer {
    display: none;
    margin-top: 20px;
}

.time-slots-wrapper {
    margin-top: 20px;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.time-slots-wrapper p {
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 0.95rem;
}

.time-slot-btn {
    padding: 12px 20px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
}

.time-slot-btn:hover {
    border-color: var(--primary-color);
    background: rgba(248, 113, 113, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(248, 113, 113, 0.15);
}

.time-slot-btn.selected {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(248, 113, 113, 0.3);
}

.time-slot-btn.selected::before {
    content: '✓';
    position: absolute;
    top: 4px;
    right: 8px;
    font-size: 0.8rem;
    opacity: 0.8;
}

.time-slot-btn:active {
    transform: translateY(0);
}

.time-slot-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
}

.time-slots-wrapper.loading {
    opacity: 0.6;
    pointer-events: none;
}

.time-slots-wrapper>div>div {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

[data-theme="dark"] .time-slot-btn {
    background: #252525;
    border-color: #333;
    color: #fff;
}

[data-theme="dark"] .time-slot-btn:hover {
    background: rgba(248, 113, 113, 0.1);
    border-color: var(--primary-color);
}

[data-theme="dark"] .time-slot-btn.selected {
    background: var(--primary-color);
    color: white;
}

/* =========================================
   12. UI POLISH (Cursor & Selection)
   ========================================= */
a,
button,
.btn-primary,
.btn-outline,
.btn-card,
.submit-btn,
.scroll-indicator,
.icon-btn,
.menu-close-btn,
.mobile-link,
.nav-link,
.social-link,
.theme-toggle-btn {
    cursor: pointer !important;
    user-select: none !important;
    -webkit-user-select: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.hero-subtitle,
.hero-welcome,
.section-title,
.section-subtitle,
.brand-title,
.brand-subtitle,
.contact-label,
.social-label,
.footer-title,
.logo-area,
.stars,
.material-icons-outlined,
.material-symbols-outlined {
    cursor: default !important;
    user-select: none !important;
    -webkit-user-select: none;
}

input,
textarea {
    cursor: text !important;
    user-select: text !important;
    -webkit-user-select: text;
}

/* =========================================
   13. ANIMATIONS
   ========================================= */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =========================================
   14. MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 768px) {

    .desktop-nav,
    .btn-book-nav {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .hero-section {
        padding-top: 130px;
        align-items: flex-start;
    }

    .hero-card {
        padding: 40px 20px;
    }

    .hero-title,
    h1.hero-title,
    .hero-section .hero-title {
        font-family: 'Playfair Display', serif !important;
        font-size: 2.8rem !important;
        line-height: 1.1;
        font-weight: 400 !important;
    }

    .hero-welcome,
    h2.hero-welcome,
    .hero-section .hero-welcome {
        font-family: 'Great Vibes', cursive !important;
        font-size: 2.5rem;
        font-weight: 400 !important;
        font-style: normal !important;
    }

    .card-content-col {
        padding: 30px;
    }

    .card-stack-item {
        top: 90px;
    }

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

    .modal-content,
    .modal-header {
        padding: 20px;
    }

    .premium-booking-popup {
        border-radius: 20px;
        max-height: 100vh;
    }

    .calendar-container {
        display: none;
    }

    .booking-card {
        padding: 1.5rem 1rem !important;
    }

    .submit-btn {
        min-height: 55px !important;
        font-size: 1.1rem !important;
    }

    .time-slots-grid,
    .time-slots-wrapper>div>div {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        width: 100% !important;
    }

    .time-slots-wrapper {
        padding: 15px;
    }

    .time-slot-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .footer-modern,
    .contact-row {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    .footer-buttons {
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }

    .btn-whatsapp,
    a.btn-whatsapp,
    .footer-buttons .btn-whatsapp,
    .btn-instagram,
    a.btn-instagram,
    .footer-buttons .btn-instagram {
        display: inline-block !important;
        width: auto !important;
        max-width: none !important;
        min-width: auto !important;
        flex: none !important;
    }

    .contact-row p,
    .contact-row a,
    .contact-row span,
    .contact-value {
        display: block !important;
        overflow-wrap: anywhere !important;
        word-break: break-word !important;
        white-space: normal !important;
        max-width: 100% !important;
    }

    .map-wrapper,
    .map-wrapper iframe {
        width: 100% !important;
        max-width: calc(100vw - 40px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }


    .map-wrapper {
        padding: 0 !important;
        margin-bottom: 30px !important;
    }
}

@media (max-width: 380px) {

    .time-slots-grid,
    .time-slots-wrapper>div>div {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .hero-title,
    h1.hero-title,
    .hero-section .hero-title {
        font-family: 'Playfair Display', serif !important;
        font-size: 2.2rem !important;
        font-weight: 400 !important;
    }

    .hero-welcome,
    h2.hero-welcome,
    .hero-section .hero-welcome {
        font-family: 'Great Vibes', cursive !important;
        font-size: 2rem !important;
        font-weight: 400 !important;
        font-style: normal !important;
    }
}

/* =========================================
   15. AEPD EDITORIAL COOKIE SYSTEM (2026)
   ========================================= */
.aepd-editorial-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 550px;
    background: var(--card-bg);
    /* Uses your theme variable */
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px;
    z-index: 100001;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    font-family: var(--font-body);
    display: none;
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Glassmorphism for Dark Mode */
[data-theme="dark"] .aepd-editorial-banner {
    background: rgba(24, 24, 27, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.aepd-editorial-content {
    text-align: center;
}

.aepd-editorial-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.aepd-editorial-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 28px;
}

.aepd-editorial-text strong {
    color: var(--text-color);
    font-weight: 600;
}

.aepd-editorial-actions {
    display: flex;
    gap: 16px;
    width: 100%;
}

.aepd-editorial-btn {
    flex: 1;
    padding: 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.aepd-editorial-btn-accept {
    background: var(--primary-color);
    color: white;
}

/* Dark Mode Glow for Aceptar */
[data-theme="dark"] .aepd-editorial-btn-accept {
    box-shadow: 0 0 15px rgba(248, 113, 113, 0.3);
}

.aepd-editorial-btn-reject {
    background: var(--dark-zinc);
    color: white;
}

[data-theme="dark"] .aepd-editorial-btn-reject {
    background: #333;
    /* Slightly lighter for contrast in dark mode */
}

.aepd-editorial-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.aepd-editorial-link {
    display: block;
    margin-top: 20px;
    font-size: 0.7rem;
    color: var(--text-light);
    text-decoration: underline;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Floating Withdrawal Trigger (Bottom Left) */
.aepd-withdrawal-cog {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 44px;
    height: 44px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.aepd-withdrawal-cog:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.aepd-withdrawal-cog:hover .material-icons-outlined {
    color: white !important;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .aepd-editorial-actions {
        flex-direction: column;
    }

    .aepd-editorial-banner {
        width: calc(100% - 40px);
        padding: 24px;
        bottom: 20px;
    }

    .aepd-editorial-title {
        font-size: 1.4rem;
    }
}

#cookieSettings {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#cookieSettings:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

#cookieSettings:active {
    transform: scale(0.95);
}

/* Bigger tap target on mobile for WCAG 2.5.5 compliance */
@media (max-width: 768px) {
    #cookieSettings {
        width: 60px !important;
        height: 60px !important;
        bottom: 80px !important;
        /* Higher position to avoid overlap */
        left: 15px !important;
    }
}

@media (max-width: 768px) {
    .map-wrapper {
        height: 350px;
        border-radius: 20px;
    }
}

/* AFTER: Support for long pricing lists (2 columns) */
.price-list.two-cols {
    column-count: 2;
    column-gap: 20px;
    border-top: 1px dashed var(--border-color);
    padding-top: 20px;
}

.price-list.two-cols li {
    border-bottom: none;
    padding: 4px 0;
    font-size: 0.75rem;
    break-inside: avoid;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .price-list.two-cols li {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.category-subheader {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 200,
        'GRAD' 0,
        'opsz' 24;
    vertical-align: middle;
}

/* Desktop-only adjustment for scroll indicator bounce clearance */
@media (min-width: 992px) {
    .scroll-indicator {
        bottom: 15px;
    }
}

/* Hide scrollbars for the booking modal containers */
.premium-booking-popup,
.modal-content {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.premium-booking-popup::-webkit-scrollbar,
.modal-content::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

/* --- ULTRA PREMIUM CINEMATIC SLIDER --- */
.card-img-col {
    position: relative;
    overflow: hidden;
}

.premium-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
    background: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Slow cinematic zoom effect on the image */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
    transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Service overlay tag */
.slide-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s ease 0.5s;
    display: flex;
    gap: 10px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide.active .slide-overlay {
    opacity: 1;
    transform: translateX(0);
}

.slide-name {
    font-size: 0.75rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.slide-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* --- Price List Hover Effects (Light & Dark) --- */
.price-list li {
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 8px;
    /* Adds breathing room for the border accent */
}

/* Light Theme Hover */
.price-list li:hover {
    border-left-color: var(--primary-color);
}

.price-list li:hover span:first-child {
    color: var(--primary-color);
}

/* Dark Theme Hover */
[data-theme="dark"] .price-list li:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-left-color: var(--primary-color);
}

[data-theme="dark"] .price-list li:hover span:first-child {
    color: var(--primary-color);
}

/* --- MOBILE UX AUDIT FIXES --- */
@media (max-width: 768px) {

    /* Full-screen mobile modal & larger tap targets */
    .premium-booking-popup .modal-content {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
        padding: 20px 15px 80px 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px;
        font-size: 16px !important;
    }

    .checkbox-label {
        align-items: flex-start;
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .checkbox-label input[type="checkbox"] {
        width: 22px;
        height: 22px;
        margin-top: 2px;
        flex-shrink: 0;
    }

    /* Card padding & Typography scaling */
    .card-content-col {
        padding: 25px 20px !important;
    }

    .hero-title {
        font-size: 3rem !important;
    }

    .hero-welcome {
        font-size: 1.8rem !important;
    }

    .section-title {
        font-size: 2.2rem !important;
    }

    .card-title {
        font-size: 1.8rem !important;
    }

    /* Force single column price lists on mobile */
    .price-list.two-cols {
        column-count: 1 !important;
    }

    /* Compact Cookie Banner */
    .aepd-editorial-banner {
        padding: 15px;
    }

    .aepd-editorial-actions {
        flex-direction: row !important;
        flex-wrap: wrap;
    }

    .aepd-editorial-actions button {
        flex: 1;
        padding: 10px;
        font-size: 0.8rem;
    }

    /* Slimmer Sticky Header */
    #main-header {
        height: 65px !important;
        padding: 10px 15px;
    }

    body {
        padding-top: 65px !important;
    }
}

/* --- HYBRID SLIDER & STICKY FIX --- */
@media (max-width: 768px) {
    .card-img-col {
        display: block !important;
        height: 250px;
        /* Gives the auto-slider a fixed mobile presence */
    }

    .card-stack-item {
        top: 85px !important;
    }

    .slider-progress-container {
        position: absolute;
        bottom: 15px;
        left: 0;
        width: 100%;
        display: flex;
        gap: 4px;
        padding: 0 15px;
        z-index: 10;
    }

    .progress-line {
        flex: 1;
        height: 3px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
    }

    .progress-fill {
        height: 100%;
        width: 0%;
        background: #fff;
        border-radius: inherit;
    }

    .progress-line.active .progress-fill {
        animation: fillProgress 3s linear forwards;
    }

    .progress-line.completed .progress-fill {
        width: 100%;
    }
}

@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

@keyframes fillProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.scroll-indicator-wrapper {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
    /* Prevents wrapper from blocking clicks */
}

.scroll-indicator {
    position: relative;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-indicator span {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fix the hover state to only translate Y, since X is now handled by flexbox */
.scroll-indicator:hover {
    transform: translateY(2px) !important;
}

/* --- TAP ACTIVE STATES (MOBILE & DESKTOP ALIGNMENT) --- */
.price-list li.active-row {
    border-left-color: var(--primary-color);
}

.price-list li.active-row span:first-child {
    color: var(--primary-color);
}

[data-theme="dark"] .price-list li.active-row {
    background-color: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {

    /* Convert animated progress bars into static active indicators */
    .progress-line.active .progress-fill {
        animation: none !important;
        width: 100% !important;
    }
}

/* --- PREMIUM CARD CTA BUTTONS (MOBILE ONLY) --- */
:root {
    /* Ensure a dark variant exists for the gradient. */
    --primary-color-dark: #b3415f;
}

.premium-card-cta {
    display: none;
    /* Hidden on desktop */
    margin-top: 25px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    color: #ffffff;

    /* Font Properties Matched with Navbar Button */
    font-family: inherit;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;

    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 768px) {
    .premium-card-cta {
        display: block;
        width: 100%;
    }
}

.premium-card-cta:hover {
    transform: scale(1.02);
    /* Soft glowing shadow */
    box-shadow: 0 8px 25px rgba(220, 80, 100, 0.35);
}

/* Dark Mode Overrides */
[data-theme="dark"] .premium-card-cta {
    /* More luminous gradient for dark backgrounds */
    background: linear-gradient(135deg, #ff8fa3, var(--primary-color));
    box-shadow: 0 4px 15px rgba(255, 143, 163, 0.2);
}

[data-theme="dark"] .premium-card-cta:hover {
    box-shadow: 0 8px 25px rgba(255, 143, 163, 0.45);
}

/* --- GLOBAL BOOKING SUBMIT BUTTON --- */
.modal-submit-btn {
    background: var(--primary-color);
    color: #ffffff;
    font-family: inherit;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    width: 100%;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-submit-btn:hover {
    opacity: 0.9;
}

/* Text Swapping Logic */
.modal-submit-btn .mobile-text {
    display: none;
}

.modal-submit-btn .desktop-text {
    display: block;
}

/* --- MOBILE BOOKING MODAL FIXES --- */
@media (max-width: 768px) {
    .modal-submit-btn {
        padding: 14px 24px;
    }

    .modal-submit-btn .desktop-text {
        display: none;
    }

    .modal-submit-btn .mobile-text {
        display: block;
    }

    /* General form spacing */
    .premium-booking-popup .modal-content {
        padding: 20px 15px;
    }

    .form-group,
    .field-group {
        margin-bottom: 12px;
    }
}