/* Modern Reset and Base Styles */
:root {
    --bg-color: #f8f6f2;
    --bg-gradient: radial-gradient(circle at 50% 0%, #ffffff 0%, #e6e4df 100%);
    /* Soft Sand/Cream */
    --text-main: #2d3436;
    /* Dark Charcoal */
    --text-muted: #636e72;
    /* Slate Gray */
    --accent-color: #6a994e;
    /* Organic Green */
    --accent-vibrant: #386641;
    /* Deep Forest Green */
    --accent-glow: #a7c957;
    /* Light Green */
    --glass-bg: rgba(255, 255, 255, 0.85);
    /* Stronger opacity for visibility on beige */
    --glass-border: rgba(255, 255, 255, 0.7);
    --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);

    --font-main: 'Outfit', sans-serif;
    --transition-speed: 0.4s;
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

[data-theme="dark"] {
    --bg-color: #1a1b1e;
    --bg-gradient: radial-gradient(circle at 60% -20%, #2a2c33 0%, #151618 100%);
    --text-main: #f8f6f2;
    --text-muted: #a0a0a0;
    --accent-color: #88c46c;
    /* Brighter green for dark mode */
    --accent-vibrant: #5e8c46;
    --accent-glow: #bddb74;
    --glass-bg: rgba(30, 30, 35, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);

    /* Premium Mesh Gradient */
    background-image:
        radial-gradient(at 0% 0%, hsla(253, 16%, 7%, 1) 0, transparent 50%),
        radial-gradient(at 50% 0%, hsla(225, 39%, 30%, 1) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(339, 49%, 30%, 1) 0, transparent 50%);
    /* Light Mode Overrides (Default) - ELEGANT STONE/GRAIN TEXTURE */
    background-image:
        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.8' 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"),
        radial-gradient(at 20% 20%, #FDFCF5 0%, transparent 50%),
        /* Creamy Highlight */
        radial-gradient(at 80% 0%, #F8F4E6 0%, transparent 40%),
        /* Soft Beige */
        radial-gradient(at 50% 100%, #F3EFE0 0%, transparent 80%);
    /* Almond Base */
    background-color: #F8F5E9;
    /* Fallback Pastel Beige */

    background-attachment: fixed;
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.8;
    /* Increased line-height for accessibility */
    font-size: 18px;
    /* Increased base size (usually 16px) */
    transition: background-image 0.5s ease, color 0.5s ease;
    min-height: 100vh;
}

[data-theme="dark"] body {
    /* Dark Mode Mesh Gradient */
    background-image:
        radial-gradient(at 0% 0%, rgba(56, 102, 65, 0.15) 0, transparent 50%),
        radial-gradient(at 100% 0%, rgba(106, 153, 78, 0.1) 0, transparent 50%),
        radial-gradient(at 50% 50%, #1a1b1e 0, #111214 100%);
}

/* Global Noise Texture */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.08;
    /* Increased opacity for more visible texture in Light Mode */
    background-image: 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.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    mix-blend-mode: hard-light;
}

/* Adjust noise for dark mode if needed (keep it subtle there) */
[data-theme="dark"]::before {
    opacity: 0.05;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-main);
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent-vibrant), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.navbar nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.navbar nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s var(--ease-out);
}

.navbar nav a:hover {
    color: var(--text-main);
}

.navbar nav a:hover::after {
    width: 100%;
}

/* Theme Toggle & Lang Switch */
.header-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
}

.lang-btn:hover {
    color: var(--text-main);
}

.lang-btn.active {
    color: var(--accent-vibrant);
    font-weight: 800;
}

.lang-switch .divider {
    color: var(--glass-border);
    font-size: 0.8rem;
}

.theme-toggle {
    cursor: pointer;
    background: transparent;
    border: none;
    color: var(--text-main);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease, color 0.3s ease;
}

.theme-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--accent-color);
}

[data-theme="dark"] .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

[data-theme="light"] .sun-icon {
    display: none;
}

[data-theme="dark"] .moon-icon {
    display: none;
}

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

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--text-main);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 120px 1rem 0;

    /* Background Image */
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('assets/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Ambient Blobs */
/* Ambient Blobs (Enhanced) */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    /* Softest blur */
    opacity: 0.5;
    animation: float 25s infinite alternate ease-in-out;
    mix-blend-mode: multiply;
    /* Better color blending in light mode */
}

[data-theme="dark"] .blob {
    mix-blend-mode: screen;
    /* Lighten in dark mode */
    opacity: 0.3;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: var(--accent-glow);
    animation-delay: 0s;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--accent-vibrant);
    animation-delay: -5s;
}

.blob-3 {
    top: 30%;
    left: 40%;
    width: 40vw;
    height: 40vw;
    background: var(--accent-color);
    opacity: 0.2;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(20px, 40px) scale(1.1);
    }
}

.hero-content {
    z-index: 2;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.brand-title {
    font-size: clamp(3.5rem, 12vw, 10rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 0;
    background: linear-gradient(180deg, var(--text-main) 0%, var(--accent-vibrant) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.1));
    animation: fadeInUp 1s var(--ease-out) forwards;
}

.brand-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--accent-vibrant);
    margin-bottom: 0;
    font-weight: 600;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    animation: fadeInUp 1s var(--ease-out) 0.2s forwards;
    opacity: 0;

    /* New Glassmorphism Styles */
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .brand-subtitle {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}


.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #25D366;
    /* WhatsApp Green */
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 100px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    animation: fadeInUp 1s var(--ease-out) 0.4s forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    width: fit-content;
}

/* Button Shine Effect */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    background: #20BA56;
    color: white;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    animation: fadeInUp 1s ease-out 1s forwards;
    opacity: 0;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-main);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Services Section */
.services-section {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 5rem;
    color: var(--text-main);
    font-weight: 800;
    letter-spacing: -2px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '✦';
    display: block;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 1rem;
}

/* Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.service-card {
    background: var(--glass-bg);
    /* More translucent for glass effect */
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--glass-border);
    /* Glass border */
    backdrop-filter: blur(12px);
    /* Strong blur for glass effect */
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

[data-theme="dark"] .service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-vibrant);
    background: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .service-card:hover {
    background: rgba(40, 40, 45, 0.7);
    border-color: var(--accent-color);
}

.service-card.highlight {
    border: 1px solid var(--accent-color);
    background: rgba(255, 255, 255, 0.55);
    /* Slightly more opaque for highlight */
}

[data-theme="dark"] .service-card.highlight {
    background: rgba(50, 60, 50, 0.6);
}

.service-title {
    font-size: 1.6rem;
    /* Increased size */
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
    line-height: 1.3;
}

.service-duration {
    font-size: 1.1rem;
    /* Clearer duration */
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.service-price {
    font-size: 2rem;
    /* Much larger price for readability */
    font-weight: 800;
    color: var(--accent-vibrant);
    margin: 1rem 0;
}

[data-theme="dark"] .service-price {
    color: var(--accent-color);
}

.service-payment,
.cash-discount {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

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

.service-includes li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.8rem;
    font-size: 1.05rem;
    /* Larger text for lists */
    line-height: 1.6;
    color: var(--text-main);
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Price Lists (General Services) */
.price-row {
    padding: 1.2rem;
    border-bottom: 1px solid var(--glass-border);
    transition: background 0.2s ease;
    border-radius: 12px;
}

.price-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.price-row span {
    font-size: 1.05rem;
}

.services-footer {
    text-align: center;
    margin-top: 4rem;
    padding: 2.5rem;
    background: var(--glass-bg);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.included-msg {
    font-size: 1.3rem;
    /* Larger footer text */
    font-weight: 600;
    color: var(--accent-vibrant);
    margin-bottom: 1.5rem;
}

[data-theme="dark"] .included-msg {
    color: var(--accent-color);
}

.cash-discount {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.important-note {
    font-size: 1.1rem;
    /* Readable font size for important notes */
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.service-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    /* Increased readability */
    line-height: 1.8;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Promotional Containers */
.promo-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.promo-title {
    margin-bottom: 1.5rem;
    color: var(--accent-vibrant);
    font-size: 1.8rem;
}

[data-theme="dark"] .promo-title {
    color: var(--accent-color);
}

.promo-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-main);
    line-height: 1.6;
}

.promo-list {
    text-align: left;
    list-style: none;
    margin-bottom: 2rem;
    display: inline-block;
    max-width: 600px;
}

.promo-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.promo-footer {
    font-style: italic;
    color: var(--accent-vibrant);
    font-weight: 600;
    font-size: 1.1rem;
}

[data-theme="dark"] .promo-footer {
    color: var(--accent-color);
}

/* Button Variants */
.cta-button.gradient-orange {
    margin-top: 2.5rem;
    background: linear-gradient(135deg, #FF9966, #FF5E62);
    box-shadow: 0 10px 20px rgba(255, 94, 98, 0.3);
    opacity: 1;
    animation: none;
}

.cta-button.gradient-green {
    margin-top: 1.5rem;
    background: linear-gradient(135deg, #11998e, #38ef7d);
    box-shadow: 0 10px 20px rgba(56, 239, 125, 0.3);
    opacity: 1;
    animation: none;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.contact-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-intro {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: white;
}

/* Icon Colors */
.contact-icon-wrapper.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.contact-icon-wrapper.instagram {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
    box-shadow: 0 4px 15px rgba(253, 29, 29, 0.3);
}

.contact-icon-wrapper.facebook {
    background: linear-gradient(135deg, #1877F2, #165EAB);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.contact-icon-wrapper.location {
    background: linear-gradient(135deg, #FF512F, #DD2476);
    box-shadow: 0 4px 15px rgba(221, 36, 118, 0.3);
}

.contact-icon-wrapper.time {
    background: linear-gradient(135deg, #43cea2, #185a9d);
    box-shadow: 0 4px 15px rgba(24, 90, 157, 0.3);
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-vibrant);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .theme-toggle {
        margin-right: 0.5rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .navbar nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s var(--ease-out);
        z-index: 999;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .navbar nav ul {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 2rem;
    }

    .navbar nav.active {
        right: 0;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .brand-title {
        font-size: 4rem;
    }

    .services-section {
        padding: 4rem 1.5rem;
    }
}

/* WhatsApp Button */
/* WhatsApp Button */
/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    /* Standard WhatsApp Green */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 1000;
}

/* Tooltip on hover */
.whatsapp-btn::before {
    content: "¡Escribinos!";
    position: absolute;
    right: 70px;
    background: var(--glass-bg);
    color: var(--text-main);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--glass-border);
}

.whatsapp-btn:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #20b85c;
    /* Darker shade on hover */
}

.whatsapp-btn svg {
    width: 35px;
    height: 35px;
}



.included-msg {
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
    color: var(--accent-vibrant);
}

/* Cash Discount Pill */
.cash-discount {
    display: block;
    width: fit-content;
    margin: 0.5rem 0 1rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%);
    /* Fresh money green */
    color: #1e5631;
    /* Dark green text */
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(150, 230, 161, 0.4);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #b5e48c;
}

.cash-discount:hover {
    transform: scale(1.05);
}

.cash-discount::before {
    content: "💵 ";
}

.important-note {
    background: rgba(255, 165, 0, 0.1);
    border-left: 4px solid orange;
    padding: 1rem;
    border-radius: 0 8px 8px 0;
}

/* Refactored Inline Styles */
.cosmetology-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-vibrant);
}

.cosmetology-subtitle .section-subtitle-text {
    font-size: 1rem;
    font-weight: normal;
    color: var(--text-muted);
}

.service-addons-container {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--accent-vibrant);
}

.tab-note-centered {
    text-align: center;
    margin-top: 2rem;
}

.lashes-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.lash-card {
    padding: 1.5rem;
    text-align: center;
}

.lash-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.lash-price {
    font-size: 2rem;
}

.laser-zones-container {
    grid-template-columns: 1fr;
    margin-top: 3rem;
}

.laser-price-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem 2rem;
}

.laser-subtitle {
    text-align: center;
    margin-bottom: 2rem;
}