/* 
   Mistress Laura - Digital Dungeon Theme 
   Modern Premium Aesthetic
*/

:root {
    scroll-behavior: smooth;
    /* Colors */
    --color-bg: #050505;
    --color-bg-secondary: #0f0f0f;
    --color-text-main: #e0e0e0;
    --color-text-muted: #a0a0a0;

    --color-accent: #ff0033;
    --color-accent-dark: #8a0000;
    --color-accent-glow: rgba(255, 0, 51, 0.4);

    --glass-bg: rgba(20, 20, 20, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: 15px;

    /* Typography */
    /* Using system fonts fallback for now, will import Google Fonts in HTML */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Layout */
    --container-width: 1200px;
    --section-spacing: 6rem;
}

/* Custom Cursor Hide Default - Handled by JS adding class 'custom-cursor-active' now */
@media (min-width: 992px) {
    body.custom-cursor-active {
        cursor: none;
    }
}

/* Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, var(--color-accent), #ff4d6d);
    z-index: 10001;
    /* Higher than preloader or same */
    transition: width 0.2s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    box-shadow: 0 0 15px var(--color-accent-glow);
}

/* Custom Cursor Styles */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    display: none;
    /* Hidden on mobile via JS check usually, or media query */
}

@media (min-width: 992px) {

    .cursor-dot,
    .cursor-outline {
        display: block;
    }
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Hover State */
body.hovering .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 0, 51, 0.1);
    border-color: var(--color-accent);
}

/* Film Grain Texture */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.07'/%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Cinematic Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease, visibility 1s ease;
}

.preloader-text {
    font-family: var(--font-heading);
    color: var(--color-accent);
    font-size: 3rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    animation: textPulse 2s infinite ease-in-out;
    text-align: center;
    width: 100%;
}

@media (max-width: 768px) {
    .preloader-text {
        font-size: 1.5rem;
        /* Fit on mobile */
        letter-spacing: 3px;
    }
}

@keyframes textPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
        text-shadow: 0 0 20px var(--color-accent);
    }
}

body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navbar Wide Mode Override */
.nav-container {
    max-width: 100% !important;
    padding: 0 5% !important;
}

/* Form Input Improvements */
input[type="date"],
input[type="time"] {
    text-align: center;
    color-scheme: dark;
    /* Ensures native calendar popup is dark */
}

/* Force RED (#FF0000) Icons using SVG Data URIs to bypass browser default colors/filters issues */

/* DATE INPUT - Calendar Icon */
input[type="date"]::-webkit-calendar-picker-indicator {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23FF0000'%3E%3Cpath d='M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: none !important;
    /* Disable any filter */
    opacity: 1;
    cursor: pointer;
}

/* TIME INPUT - Clock Icon */
input[type="time"]::-webkit-calendar-picker-indicator {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23FF0000'%3E%3Cpath d='M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8 8-8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: none !important;
    /* Disable any filter */
    opacity: 1;
    cursor: pointer;
}



.section {
    padding: var(--section-spacing) 0;
    position: relative;
}

/* Typography Utilities */
.text-accent {
    color: var(--color-accent);
}

.text-center {
    text-align: center;
}

.heading-lg {
    font-size: 4rem;
    /* Increased */
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.heading-md {
    font-size: 3rem;
    /* Increased from 2.5rem */
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

/* ... existing code ... */

/* Navbar */
/* ... */
.logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.5s ease;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-glow {
    text-shadow:
        0 0 10px var(--color-accent-glow),
        0 0 20px var(--color-accent-glow),
        0 0 40px var(--color-accent-glow),
        0 0 80px rgba(255, 0, 51, 0.2);
    letter-spacing: 6px;
    transform: scale(1.02);
}

/* Subtle separator for headings */
.heading-md::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-accent);
    box-shadow: 0 0 10px var(--color-accent-glow);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--color-accent);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn:hover {
    color: #fff;
    box-shadow: 0 0 20px var(--color-accent-glow);
}

.btn:hover::before {
    width: 100%;
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 4px;
    /* Sharp minimal edges */
}

/* Scroll Animations Initial State */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* ... existing code ... */

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.4s ease;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.95);
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo definition removed here as it is unified above */

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links li a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    /* Transiciones suaves para todos los cambios */
    transition: color 0.3s ease, text-shadow 0.3s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Líneas horizontales (top y bottom) usando pseudo-elementos */
.nav-links li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transform: translateX(-50%);
    transition: width 0.4s ease;
    box-shadow: 0 0 5px var(--color-accent);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transform: translateX(-50%);
    transition: width 0.4s ease;
    box-shadow: 0 0 5px var(--color-accent);
}

/* Hover: texto rojo + líneas pequeñas */
.nav-links li a:hover {
    color: var(--color-accent);
    text-shadow: 0 0 10px rgba(255, 0, 51, 0.4);
}

.nav-links li a:hover::before,
.nav-links li a:hover::after {
    width: 60%;
}

/* Activo: rectángulo completo con transiciones (sin animation) */
.nav-links li a.active {
    color: var(--color-accent) !important;
    text-shadow: 0 0 12px rgba(255, 0, 51, 0.5);
    border-color: var(--color-accent);
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.2);
}

.nav-links li a.active::before,
.nav-links li a.active::after {
    width: 100%;
}

/* Animación de brillo pulsante */
@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 5px var(--color-accent), 0 0 10px rgba(255, 0, 51, 0.3);
    }

    50% {
        box-shadow: 0 0 15px var(--color-accent), 0 0 25px rgba(255, 0, 51, 0.5);
    }
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Removed .btn-nav to unify styles */

/* Hide mobile section label on desktop */
.mobile-header-center {
    display: none;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

/* Hero Section */
/* Background Container */
#background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000;
}

.bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    /* Keeps it filling screen */
    background-position: center top;
    /* Focus on faces/upper body */
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.bg-layer.active {
    opacity: 0.6;
    /* Slight transparency for overlay effect */
}

/* Ensure global overlay gradient for readability */
#background-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(5, 5, 5, 0.4),
            rgba(5, 5, 5, 0.9) 80%,
            var(--color-bg));
    pointer-events: none;
}

/* Updated Hero Section - Remove local backgrounds */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    /* Now handled by global bg */
    position: relative;
    margin-bottom: var(--section-spacing);
}

.hero-overlay-gradient {
    /* Optional additional local gradient if needed, or remove */
    display: none;
}

/* Updated Typography */
.hero-title {
    font-size: 7rem;
    /* Huge impact */
    margin-bottom: 2.5rem;
    /* Increased spacing */
    text-transform: uppercase;
    letter-spacing: -3px;
    line-height: 0.9;
    background: linear-gradient(to bottom, #fff, #a0a0a0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.8));
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 4rem;
        /* Responsive adjustment */
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--color-accent);
    margin-bottom: 3rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image .image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* Practices Grid */
.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.practice-card {
    text-align: center;
    padding: 3rem 2rem;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.practice-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
}

.practice-icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.practice-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.practice-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Rules List */
.rules-container {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 3rem;
}

.rules-list li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.rules-list li i {
    color: var(--color-accent);
    margin-top: 5px;
}

/* Contact Section Detailed */
.contact-section {
    padding-bottom: 5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Form Styles - Premium Minimalist */
.contact-form-col {
    background: rgba(10, 10, 10, 0.7);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

/* Subtle top accent line for the form */
.contact-form-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.form-intro {
    margin-bottom: 2.5rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-style: italic;
    border-left: 2px solid var(--color-accent);
    padding-left: 1rem;
}

/* Minimalist Inputs */
.booking-form input,
.booking-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    border-radius: 0;
    padding: 0.8rem 0;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.4s ease;
    margin-bottom: 0.8rem;
    /* Reduced from 1.5rem */
}

.booking-form .form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
    /* Reduced from 1.5rem */
}

.form-group {
    width: 100%;
    margin-bottom: 1rem;
    /* Added explicitly to control spacing */
}

.booking-form input:focus,
.booking-form textarea:focus {
    border-bottom-color: var(--color-accent);
    background: transparent;
    padding-left: 10px;
    /* Text slide effect */
}

/* Floating-style labels behavior (static but styled) */
.booking-form label {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.75rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.booking-form .form-group:focus-within label {
    color: #fff;
    text-shadow: 0 0 5px var(--color-accent);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin: 1.5rem 0;
    font-size: 0.8rem;
    line-height: 1.4;
}

.form-check input {
    width: auto;
    margin-top: 3px;
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
}

/* Info & Rates Styles */
.contact-info-col {
    padding: 2rem 0;
}

.info-block p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.contact-detail {
    font-size: 1.1rem;
    color: #fff !important;
}

.availability {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
}

.rates-block {
    margin-top: 1.5rem;
}

/* Pro Rates Cards */
.rate-item {
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 3px solid var(--color-accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rate-item:hover {
    transform: translateX(10px);
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.rate-item h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    letter-spacing: 1px;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
    display: inline-block;
    width: 100%;
}

.rate-item ul {
    list-style: none;
    /* Reset again just in case */
    padding-left: 0.5rem;
}

.rate-item ul li {
    margin-bottom: 0.3rem;
    color: var(--color-text-main);
}

.rate-note {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.5rem;
}

/* Hero Intro Text */
.hero-text-intro {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-style: italic;
    color: #ccc;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Footer */
footer {
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    background: #000;
    /* Solid background for footer */
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 2rem;
    /* Increased spacing */
    margin-bottom: 2rem;
}

/* OVERRIDES: Header Font Size */
.nav-links a {
    font-size: 1.2rem !important;
    /* Increased for better presence */
    letter-spacing: 1.5px;
}

/* Tributes Section */
.tributes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tribute-card {
    border: 1px solid var(--color-accent);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    background: rgba(20, 0, 0, 0.4);
    /* Alignment Fix */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.tribute-card:hover {
    transform: translateY(-10px);
    background: rgba(40, 0, 0, 0.6);
    box-shadow: 0 0 20px var(--color-accent-glow);
}

.tribute-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.tribute-btn {
    display: inline-block;
    /* Short version as requested */
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    border: 1px solid var(--color-accent);
    /* Red Border */
    background: rgba(255, 255, 255, 0.05);
    /* Slight fill */
    color: #fff;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;

    /* Animation Properties (Slide Fill) */
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: color 0.4s ease, border-color 0.4s ease, transform 0.3s ease;
}

.tribute-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--color-accent);
    transition: width 0.4s ease;
    z-index: -1;
}

.tribute-btn:hover {
    color: #fff;
    /* Ensure text visible */
    border-color: var(--color-accent);
    box-shadow: 0 0 15px var(--color-accent);
    transform: translateY(-2px);
}

.tribute-btn:hover::before {
    width: 100%;
    /* Trigger Slide */
}

/* FetLife Icon Custom */
.fa-heart-pulse {
    color: inherit;
}

.social-link-sm {
    font-size: 2rem;
    /* Increased from 1.2rem */
    color: #fff;
    opacity: 0.8;
    /* Slightly more visible by default */
    transition: all 0.3s ease;
}

.social-link-sm:hover {
    color: var(--color-accent);
    opacity: 1;
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 0.6rem 0;
        background: rgba(8, 8, 8, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-bottom: 2px solid rgba(255, 0, 0, 0.2);
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1.5rem;
        position: relative;
    }

    .logo {
        font-size: 0.85rem;
        flex: 0 0 auto;
        margin: 0;
        white-space: nowrap;
        max-width: none !important;
        width: auto !important;
        overflow: visible !important;
        text-overflow: clip !important;
    }

    /* Row 1 Middle: DYNAMIC LABEL */
    .mobile-header-center {
        flex: 1;
        text-align: center;
        overflow: hidden;
        padding: 0 0.2rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .current-section-label {
        font-family: var(--font-display);
        color: var(--color-accent);
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: block;
        text-shadow: 0 0 10px var(--color-accent-glow);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        border: 1px solid transparent;
        padding: 2px 8px;
        border-radius: 4px;
        /* Animación suave */
        opacity: 0;
        transform: translateY(-5px);
        transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease, border-color 0.3s ease;
    }

    .current-section-label.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .current-section-label.changing {
        opacity: 0;
        transform: translateY(5px);
    }

    .current-section-label.glow-effect {
        color: #fff;
        border-color: var(--color-accent);
        background: rgba(255, 0, 0, 0.1);
        text-shadow: 0 0 15px var(--color-accent);
    }

    .nav-links {
        display: none;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        width: 80% !important;
        height: 100vh !important;
        background: rgba(10, 10, 10, 0.98) !important;
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 2.5rem !important;
        z-index: 999;
        margin: 0 !important;
        padding: 0 !important;
        border-left: 2px solid var(--color-accent);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        opacity: 1 !important;
    }

    .nav-links.active {
        display: flex !important;
        transform: translateX(0);
    }

    .nav-links li {
        width: auto;
    }

    .nav-links li a {
        font-size: 1.4rem;
        padding: 0.8rem 2.5rem;
        border: 1px solid transparent;
        transition: all 0.3s ease;
    }

    /* THE RED RECTANGLE inside the drawer */
    .nav-links li a.active {
        border-color: var(--color-accent) !important;
        background: rgba(139, 0, 0, 0.15);
        color: #fff !important;
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    }

    .mobile-toggle {
        display: block !important;
        font-size: 1.5rem;
        color: #fff;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1000;
        margin-left: 1rem;
    }

    /* Move Lang switch to bottom of drawer */
    .lang-switch {
        margin: 2rem 0 0 0 !important;
        gap: 20px;
    }

    /* Mobile social icons in drawer */
    .mobile-socials {
        display: flex !important;
        flex-wrap: wrap;
        width: 100%;
        padding: 0 2rem !important;
    }

    .mobile-socials a {
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .mobile-socials a:hover {
        transform: scale(1.2);
        opacity: 0.8;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .heading-lg {
        font-size: 2.22rem;
    }
}

/* =========================================
   REBRANDING UPDATES & MODAL
   ========================================= */

/* 1. Date/Time Icon - Pure Red */
/* Force RED (#FF0000) Icons using SVG Data URIs to bypass browser default colors/filters issues */

/* DATE INPUT - Calendar Icon */
input[type="date"]::-webkit-calendar-picker-indicator {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23FF0000'%3E%3Cpath d='M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: none !important;
    /* Disable any filter */
    opacity: 1;
    cursor: pointer;
}

/* TIME INPUT - Clock Icon */
input[type="time"]::-webkit-calendar-picker-indicator {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23FF0000'%3E%3Cpath d='M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8 8-8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: none !important;
    /* Disable any filter */
    opacity: 1;
    cursor: pointer;
}

/* 2. Social Icons - White Default, Red Hover + Tooltip */
.social-link-sm {
    color: #fff !important;
    /* Force White */
    opacity: 0.7;
    transition: all 0.3s ease;
    position: relative;
    /* For tooltip */
}

.social-link-sm:hover {
    color: var(--color-accent) !important;
    /* Red on hover */
    opacity: 1;
    transform: scale(1.2);
}

/* Tooltip */
.social-link-sm[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: var(--color-accent);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    border: 1px solid var(--color-accent);
    z-index: 100;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
}

/* 3. Gift Card Modal Enhanced */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background: rgba(10, 10, 10, 0.95);
    margin: auto;
    padding: 2rem;
    border: 1px solid var(--color-accent);
    width: 95%;
    max-width: 600px;
    text-align: center;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.3);
    animation: slideIn 0.4s ease-out forwards;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--color-accent);
}

.gift-links-grid,
.gift-send-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.modal-step {
    text-align: left;
    margin-bottom: 1.5rem;
}

.modal-step h4 {
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Make Send button grid specific colors work */
.gift-send-grid .tribute-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    padding: 0.8rem;
    border-width: 1px;
    border-style: solid;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.gift-send-grid .tribute-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.gift-links-grid {
    display: grid;
    gap: 1rem;
    /* margin-top: 1.5rem;  <-- Remove duplicate margin if present upstairs */
}

/* 4. Logo Glow Effect (Pro Touch) */
.logo {
    transition: text-shadow 0.3s ease, transform 0.3s ease;
}

.logo:hover,
.logo.hero-glow {
    text-shadow: 0 0 20px var(--color-accent);
    transform: scale(1.02);
}

/* 5. Mobile Adjustments */
@media (max-width: 600px) {

    .gift-links-grid,
    .gift-send-grid {
        grid-template-columns: 1fr !important;
    }

    .modal-content {
        padding: 1.5rem;
        width: 90%;
    }
}

.gift-links-grid .tribute-btn {
    width: 100%;
    text-align: center;
    margin: 0;
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(255, 0, 51, 0.3);
    transform: translateY(20px);
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background: #fff;
    color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 0, 51, 0.4);
}

/* Accessibility Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid #fff !important;
    outline-offset: 4px !important;
}

/* Ensure better readability for screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===================================
   LOCATION SELECTOR - Premium Style
   =================================== */
.location-selector {
    margin: 1.5rem 0;
}

.location-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.75rem;
}

.location-option {
    cursor: pointer;
}

.location-option input[type="radio"] {
    display: none;
}

.location-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 140px;
    height: 100%;
}

.location-card i {
    font-size: 2rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.location-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.location-price {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-option input[type="radio"]:checked+.location-card {
    border-color: var(--color-accent);
    background: rgba(255, 0, 51, 0.1);
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.2);
}

.location-option input[type="radio"]:checked+.location-card i {
    color: var(--color-accent);
    transform: scale(1.1);
}

.location-option:hover .location-card {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .location-options {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   PRICE CALCULATOR - Premium Style
   =================================== */
.price-calculator {
    background: linear-gradient(135deg, rgba(20, 0, 0, 0.9) 0%, rgba(40, 0, 0, 0.8) 100%);
    border: 1px solid var(--color-accent);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.price-header {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-header i {
    margin-right: 0.5rem;
}

.price-breakdown {
    margin-bottom: 1rem;
}

.price-line {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-line:last-child {
    border-bottom: none;
}

.price-line span:last-child {
    color: var(--color-text-main);
    font-weight: 500;
}

.price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 2px solid var(--color-accent);
    margin-top: 0.5rem;
}

.price-total span:first-child {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    text-shadow: 0 0 20px rgba(255, 0, 51, 0.4);
}

.price-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.price-disclaimer i {
    color: var(--color-accent);
    margin-top: 2px;
    flex-shrink: 0;
}

/* ===================================
   LATE BOOKING NOTICE
   =================================== */
.late-booking-notice {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 8px;
    margin: 1rem 0 1.5rem 0;
    font-size: 0.85rem;
    color: #ffa500;
}

.late-booking-notice i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* 4-column layout for location options - 2x2 grid */
.location-options-4 {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 900px) {
    .location-options-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .location-options-4 {
        grid-template-columns: 1fr;
    }
}

/* Session Switcher */
.session-switch {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
    background: rgba(30, 30, 30, 0.5);
    padding: 5px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.session-switch-btn {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    /* Prevent text wrap */
}

@media (max-width: 400px) {
    .session-switch-btn {
        padding: 12px 10px;
        /* Smaller padding on tiny screens */
        font-size: 0.9rem;
        /* Slightly smaller font */
    }
}

/* Session Type Toggle */
.session-type-toggle {
    margin-bottom: 2rem;
}

.toggle-container {
    display: flex;
    gap: 0;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 8px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toggle-btn {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.toggle-btn:hover {
    color: var(--color-text-main);
}

.toggle-btn.active {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.3);
}

.toggle-btn i {
    font-size: 1.1rem;
}

/* Online Section Styles */
.online-section {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(0, 60, 120, 0.25) 0%, rgba(0, 40, 80, 0.35) 100%);
    border: 2px solid rgba(0, 150, 255, 0.3);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 1.5rem;
}

.online-section .form-group {
    width: 100%;
    margin-bottom: 1.5rem;
}

.online-section .form-group:last-child {
    margin-bottom: 0;
}

.online-section label {
    color: #66b3ff !important;
    font-weight: 600;
    display: block;
    margin-bottom: 0.75rem;
}

.online-service-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.75rem;
}

.online-service-option {
    cursor: pointer;
}

.online-service-option input[type="radio"] {
    display: none;
}

.online-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.75rem 1.25rem;
    background: rgba(0, 80, 160, 0.15);
    border: 2px solid rgba(0, 150, 255, 0.25);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 100px;
}

.online-service-card:hover {
    background: rgba(0, 100, 200, 0.2);
    border-color: rgba(0, 150, 255, 0.4);
}

.online-service-card i {
    font-size: 2.2rem;
    color: #66b3ff;
    margin-bottom: 0.75rem;
}

.online-service-card .service-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.online-service-option input[type="radio"]:checked+.online-service-card {
    border-color: #00aaff;
    background: rgba(0, 150, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 150, 255, 0.4);
}

.online-service-option input[type="radio"]:checked+.online-service-card i {
    color: #00ccff;
    text-shadow: 0 0 10px rgba(0, 200, 255, 0.5);
}

.online-duration-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.online-duration-option {
    cursor: pointer;
}

.online-duration-option input[type="radio"] {
    display: none;
}

.duration-card {
    display: block;
    padding: 15px 20px;
    background: rgba(0, 80, 160, 0.15);
    border: 2px solid rgba(0, 150, 255, 0.25);
    border-radius: 10px;
    text-align: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.duration-card:hover {
    background: rgba(0, 100, 200, 0.2);
    border-color: rgba(0, 150, 255, 0.4);
}

.online-duration-option input[type="radio"]:checked+.duration-card {
    border-color: #00aaff;
    background: rgba(0, 150, 255, 0.25);
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.4);
    color: #00ccff;
}

.online-price-box {
    background: linear-gradient(135deg, rgba(0, 100, 150, 0.3) 0%, rgba(0, 50, 100, 0.4) 100%);
    border: 2px solid #0099ff;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    border-radius: 10px;
}

.online-price-label {
    color: #66b3ff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.online-price-value {
    color: #0099ff;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(0, 150, 255, 0.4);
}

/* Online Theme - Blue labels and accents */
.booking-form {
    transition: all 0.4s ease;
}

.online-theme label {
    color: #66b3ff !important;
    transition: color 0.3s ease;
}

.online-theme .form-group input,
.online-theme .form-group textarea {
    border-color: rgba(0, 150, 255, 0.3);
    transition: all 0.3s ease;
}

.online-theme .form-group input:focus,
.online-theme .form-group textarea:focus {
    border-color: #0099ff;
    box-shadow: 0 0 15px rgba(0, 150, 255, 0.2);
}

.online-theme .toggle-btn.active {
    background: #0088ff;
    box-shadow: 0 0 15px rgba(0, 150, 255, 0.4);
}

.online-theme #practices-group {
    background: rgba(0, 60, 120, 0.15);
    border: 1px solid rgba(0, 150, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
}

/* Blue submit button for online */
.online-theme button[type="submit"] {
    background: transparent;
    border: 2px solid #0099ff;
    color: #0099ff;
    box-shadow: 0 0 15px rgba(0, 150, 255, 0.2);
    transition: all 0.3s ease;
}

.online-theme button[type="submit"]:hover {
    background: linear-gradient(135deg, #0088ff 0%, #0055cc 100%);
    border-color: #00aaff;
    color: #fff;
    box-shadow: 0 0 30px rgba(0, 150, 255, 0.5);
}

/* Section title and content styling for online */
.online-theme .form-title,
.online-theme h3 {
    color: #66b3ff !important;
    transition: color 0.3s ease;
}

/* Icons in form - FORCE BLUE for online */
.online-theme .form-group i,
.online-theme .fas,
.online-theme .far,
.online-theme .fab {
    color: #0099ff !important;
    text-shadow: 0 0 10px rgba(0, 153, 255, 0.4);
}

/* Force BLUE SVG Icons for Date/Time to override the red ones */
.online-theme input[type="date"]::-webkit-calendar-picker-indicator {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%230099ff'%3E%3Cpath d='M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z'/%3E%3C/svg%3E") !important;
    filter: none !important;
    opacity: 1;
}

.online-theme input[type="time"]::-webkit-calendar-picker-indicator {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%230099ff'%3E%3Cpath d='M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z'/%3E%3C/svg%3E") !important;
    filter: none !important;
    opacity: 1;
}

/* Force blue accent for date/time inputs */
.online-theme input[type="date"],
.online-theme input[type="time"] {
    accent-color: #0099ff !important;
    color-scheme: dark;
}

/* Section container styling */
.online-theme .contact-form-wrapper {
    border-color: rgba(0, 150, 255, 0.2);
}

/* SOLICITUD title underline - blue for online */
.online-theme .section-title::after,
.online-theme .content h2::after,
.online-theme .booking-form-title::after,
.online-theme h2::after,
.online-theme .heading-md::after {
    background: linear-gradient(90deg, #0099ff, transparent) !important;
    box-shadow: 0 0 10px rgba(0, 153, 255, 0.5) !important;
}

.online-theme .section-title,
.online-theme .booking-form-title,
.online-theme .form-header h2,
.online-theme .heading-md {
    color: #66b3ff !important;
}

/* Top red line changes to blue - TARGETING THE ACTUAL ELEMENT FOUND */
.contact-form-col.online-theme::before {
    background: linear-gradient(90deg, transparent, #0099ff, transparent) !important;
    box-shadow: 0 0 15px rgba(0, 153, 255, 0.4);
}

/* Ensure section top border stays RED by not targeting it with blue here */
/* Was: .online-theme.contact-section::before */

/* Border accent line */
.online-theme .form-intro {
    border-left-color: #0099ff !important;
}

/* SOLICITUD title text and underline */
.online-theme .heading-md {
    color: #66b3ff !important;
}

.online-theme .heading-md::after {
    background: linear-gradient(90deg, #0099ff 0%, transparent 100%) !important;
}

/* Top line of contact section */
.online-theme.booking-form::before,
.online-theme~.contact-section::before,
#contact-form.online-theme~*::before {
    background: #0099ff !important;
}


/* Mobile Fixes for Online Form - ULTIMATE ANDROID FIX */
@media (max-width: 600px) {

    /* 1. Force Vertical Stacking for Service Options */
    .online-service-options {
        display: block !important;
        /* No flex, no grid */
        width: 100% !important;
    }

    /* 2. Style individual Service Cards */
    .online-service-option {
        width: 100% !important;
        display: block !important;
        margin-bottom: 12px !important;
        /* Space between items */
    }

    .online-service-card {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
        padding: 15px !important;
        box-sizing: border-box !important;
        min-height: auto !important;
        gap: 15px !important;
    }

    .online-service-card i {
        margin-bottom: 0 !important;
        margin-right: 15px !important;
        /* Fallback for gap */
        font-size: 1.6rem !important;
        flex-shrink: 0 !important;
        /* Prevent icon shrinking */
    }

    .online-service-card .service-title {
        text-align: left !important;
        font-size: 1rem !important;
        line-height: 1.2 !important;
    }

    /* 3. Optimize Duration Grid */
    .online-duration-options {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr !important;
        /* 3 equal columns */
        gap: 6px !important;
        /* Small gap */
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 4. Style Duration Cards */
    .duration-card {
        padding: 10px 2px !important;
        width: 100% !important;
        text-align: center !important;
        font-size: 0.85rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        white-space: nowrap !important;
        /* Prevent text wrap */
        overflow: hidden !important;
    }

    /* 5. General Container Fixes */
    .online-section,
    .form-group {
        padding-left: 10px !important;
        padding-right: 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* ========================================
   FIX: Form Row Layout (S25 Ultra Mobile)
   ======================================== */
.form-row {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.form-row .form-group {
    flex: 1;
    min-width: 0;
    /* Allow shrinking */
}

/* Mobile: Stack form rows vertically */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }

    .form-row .form-group {
        width: 100% !important;
        flex: none !important;
    }
}

/* ========================================
   SAMSUNG S25 ULTRA / MOBILE OVERFLOW FIX
   ======================================== */
@media (max-width: 480px) {

    /* Prevent any horizontal overflow */
    html,
    body {
        overflow-x: hidden !important;
    }

    /* Reduce container padding/margins */
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Reduce form column padding drastically */
    .contact-form-col,
    .glass-card {
        padding: 15px !important;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Force toggle container to fit screen */
    .toggle-container,
    .session-type-toggle {
        width: 100% !important;
        max-width: 100% !important;
    }

    .toggle-btn {
        padding: 10px 8px !important;
        font-size: 0.85rem !important;
        flex: 1 !important;
    }

    /* Force location options to 2x2 grid that fits */
    .location-options,
    .location-options-4 {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        width: 100% !important;
    }

    .location-card {
        padding: 12px 8px !important;
        min-width: 0 !important;
    }

    .location-title {
        font-size: 0.75rem !important;
    }

    .location-price {
        font-size: 0.65rem !important;
    }

    /* Fix contact grid to single column */
    .contact-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .contact-form-col,
    .contact-info-col {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Ensure all inputs fit */
    input,
    select,
    textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* CRITICAL: Contact section full width and centered */
    #contact {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    /* Form rows and groups centered */
    .form-row,
    .form-group {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Container auto-center */
    .container {
        margin-left: auto !important;
        margin-right: auto !important;
        width: calc(100% - 20px) !important;
        max-width: calc(100% - 20px) !important;
    }
}