/* ═══════════════════════════════════════════════════
   DE LAS FLORES SPA — Design System & Styles
   ═══════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
    --primary: #b695c0;
    --primary-dark: #9a78a6;
    --primary-light: #cdb3d5;
    --accent: #c09596;
    --accent-light: #d4b3b4;
    --sage: #95c0a5;
    --sage-light: #b3d4bf;
    --cream: #FBF7FC;
    --cream-dark: #F0E8F3;
    --white: #FFFFFF;
    --dark: #2D2533;
    --dark-soft: #3E3445;
    --text: #3D3344;
    --text-light: #7A6E82;
    --text-muted: #A89DB0;
    --border: #E6DDE9;
    --shadow-sm: 0 2px 8px rgba(45, 37, 51, 0.06);
    --shadow-md: 0 4px 20px rgba(45, 37, 51, 0.1);
    --shadow-lg: 0 8px 40px rgba(45, 37, 51, 0.14);
    --shadow-xl: 0 16px 60px rgba(45, 37, 51, 0.18);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(45, 37, 51, 0);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast), background var(--transition-fast);
    z-index: 998;
}

body.menu-open::before {
    background: rgba(45, 37, 51, 0.42);
    opacity: 1;
    pointer-events: auto;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Section Common ── */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    transform: translateX(-100%);
    transition: var(--transition);
}

.btn:hover::after {
    transform: translateX(0);
}

.btn-primary {
    background: linear-gradient(135deg, #b695c0, #c09596);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(182, 149, 192, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #9a78a6, #a87a7b);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(182, 149, 192, 0.45);
}

.btn-outline {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(8px);
}

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

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.whatsapp-icon {
    flex-shrink: 0;
}

/* ═══════════════════ NAVBAR ═══════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(251, 247, 252, 0.85);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(230, 221, 233, 0.5);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1001;
}

.logo-icon {
    font-size: 1.6rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .logo-text {
    color: var(--dark);
}

.logo-accent {
    color: var(--accent);
}

.navbar.scrolled .logo-accent {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 0.92rem;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

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

.navbar.scrolled .nav-link {
    color: var(--text-light);
}

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

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #b695c0, #c09596);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(182, 149, 192, 0.3);
}

.nav-btn:hover {
    background: linear-gradient(135deg, #9a78a6, #a87a7b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(182, 149, 192, 0.4);
}

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

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--dark);
}

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

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

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

/* ═══════════════════ HERO / CAROUSEL ═══════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Carousel Container */
.carousel {
    position: relative;
    width: 100%;
    height: 100vh;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

.carousel-slide .hero-bg {
    position: absolute;
    inset: 0;
}

.carousel-slide .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}

.carousel-slide.active .hero-img {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(45, 37, 51, 0.72) 0%,
        rgba(45, 37, 51, 0.4) 50%,
        rgba(45, 37, 51, 0.62) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 800px;
}

/* Animate content on slide change */
.carousel-slide .hero-content > * {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.carousel-slide.active .hero-content > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.carousel-slide.active .hero-content > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.carousel-slide.active .hero-content > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.carousel-slide.active .hero-content > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.65s; }
.carousel-slide.active .hero-content > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.8s; }

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title--sm {
    font-size: clamp(2.2rem, 6vw, 4rem);
}

.hero-title em {
    font-style: italic;
    color: var(--accent-light);
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Service Pills */
.slide-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
}

.slide-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: rgba(255,255,255,0.9);
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
}

.slide-pill:hover {
    background: rgba(255,255,255,0.22);
    transform: translateY(-2px);
}

.slide-pill span {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent-light);
    font-size: 0.92rem;
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-arrow:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-50%) scale(1.08);
}

.carousel-prev { left: 24px; }
.carousel-next { right: 24px; }

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(255,255,255,0.5);
}

.carousel-dot.active {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(182, 149, 192, 0.5);
}

/* Progress Bar */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.1);
    z-index: 10;
}

.carousel-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #b695c0, #c09596, #95c0a5);
    width: 0%;
    transition: width 0.1s linear;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 10px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

/* ═══════════════════ SERVICES ═══════════════════ */
.services-section {
    padding: 100px 0 80px;
    background: var(--cream);
}

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cat-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.cat-tab:hover {
    border-color: #c09596;
    color: #b695c0;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cat-tab.active {
    background: linear-gradient(135deg, #b695c0, #95c0a5);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(149, 192, 165, 0.3);
}

.cat-icon {
    font-size: 1.2rem;
}

/* Category Panel */
.category-panel {
    display: none;
    animation: fadeSlideUp 0.5s ease;
}

.category-panel.active {
    display: block;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Category Hero Card */
.category-hero-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    height: 280px;
    box-shadow: var(--shadow-lg);
}

.cat-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-hero-card:hover .cat-hero-img {
    transform: scale(1.03);
}

.cat-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 37, 51, 0.8), rgba(45, 37, 51, 0.1));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.cat-hero-overlay h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.cat-hero-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    max-width: 500px;
}

/* Sub Tabs */
.sub-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 6px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.sub-tab {
    padding: 10px 20px;
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--text-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.sub-tab:hover {
    color: var(--primary);
    background: var(--cream);
}

.sub-tab.active {
    background: linear-gradient(135deg, #c09596, #b695c0);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(192, 149, 150, 0.3);
}

/* Sub Panel */
.sub-panel {
    display: none;
    animation: fadeSlideUp 0.4s ease;
}

.sub-panel.active {
    display: block;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Service Card */
.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #b695c0, #c09596, #95c0a5);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #d4b3b4;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    border-color: #95c0a5;
    background: linear-gradient(135deg, var(--white) 0%, #f0f8f3 100%);
}

.service-card.featured::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, #95c0a5, #b695c0);
}

.featured-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.service-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--cream);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.service-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 4px;
}

.service-note {
    font-size: 0.8rem;
    color: var(--primary);
    font-style: italic;
    margin-bottom: 4px;
    padding: 4px 0;
}

.service-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    gap: 12px;
    flex-wrap: wrap;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.price-unit {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    font-family: var(--font-body);
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-options .service-price {
    font-size: 0.95rem;
    font-weight: 600;
}

.price-options .service-price.couple {
    color: var(--sage);
}

.btn-reserve {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #b695c0, #c09596);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.82rem;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(182, 149, 192, 0.2);
}

.btn-reserve:hover {
    background: linear-gradient(135deg, #9a78a6, #a87a7b);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(182, 149, 192, 0.3);
}

/* Podology Section */
.podology-section {
    margin-top: 72px;
    padding: 44px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(40, 82, 78, 0.94), rgba(53, 106, 91, 0.9)),
        linear-gradient(45deg, #28524e, #356a5b);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.podology-section::before {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: calc(var(--radius-lg) - 8px);
    pointer-events: none;
}

.podology-intro {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin-bottom: 28px;
}

.podology-kicker {
    display: inline-flex;
    padding: 6px 14px;
    margin-bottom: 14px;
    border-radius: 50px;
    background: rgba(255,255,255,0.13);
    color: #d8eee4;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.podology-intro h3 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 10px;
}

.podology-intro p {
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
}

.podology-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.podology-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 24px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(255,255,255,0.36);
    border-radius: var(--radius-md);
    color: var(--dark);
    box-shadow: 0 16px 36px rgba(24, 51, 47, 0.24);
}

.podology-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #d8eee4;
    color: #28524e;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
}

.podology-card-content {
    min-width: 0;
}

.podology-badge {
    display: inline-flex;
    padding: 4px 10px;
    margin-bottom: 10px;
    border-radius: 50px;
    background: #eef7f2;
    color: #356a5b;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.podology-card h4 {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    line-height: 1.35;
    margin-bottom: 8px;
}

.podology-card p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.6;
}

.podology-card-footer {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(53, 106, 91, 0.16);
}

.podology-price {
    font-family: var(--font-heading);
    color: #28524e;
    font-size: 1.45rem;
    font-weight: 800;
}

.podology-reserve {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 22px;
    border-radius: 50px;
    background: #28524e;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition);
}

.podology-reserve:hover {
    background: #356a5b;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(40, 82, 78, 0.22);
}

/* ═══════════════════ ABOUT ═══════════════════ */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 3px solid #95c0a5;
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content .section-tag,
.about-content .section-title {
    text-align: left;
}

.about-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: inline;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 4px;
}

/* ═══════════════════ LOCATION ═══════════════════ */
.location-section {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.location-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 42px;
    align-items: stretch;
}

.location-content .section-tag,
.location-content .section-title {
    text-align: left;
}

.location-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 26px;
    max-width: 520px;
}

.location-details {
    display: grid;
    grid-template-columns: minmax(0, 320px);
    gap: 14px;
    margin-bottom: 28px;
}

.location-detail {
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.location-detail-label {
    display: block;
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 8px;
}

.location-detail p {
    color: var(--dark);
    font-size: 0.94rem;
    line-height: 1.6;
}

.location-map {
    min-height: 360px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    border: 0;
}

/* ═══════════════════ CTA ═══════════════════ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #3a2844 0%, #2D2533 40%, #332830 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #b695c0, #c09596, #95c0a5);
}

.cta-section::before {
    content: '';
    position: absolute;
    font-size: 240px;
    opacity: 0.03;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
}

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
    background: var(--dark);
    padding: 60px 0 0;
    color: rgba(255,255,255,0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1.2fr 1fr 0.9fr;
    gap: 28px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    margin-bottom: 16px;
    display: inline-flex;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.footer a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

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

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

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
}

/* ═══════════════════ WHATSAPP FLOAT ═══════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ═══════════════════ REVEAL ANIMATIONS ═══════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 360px;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-map {
        min-height: 320px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }

    .nav-container {
        padding: 0 18px;
    }

    .logo-text {
        font-size: 1.15rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: calc(100vw - 56px);
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 4px;
        transition: var(--transition);
        box-shadow: var(--shadow-xl);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-link {
        color: var(--text);
        font-size: 1rem;
        padding: 12px 16px;
        width: 100%;
        border-radius: var(--radius-sm);
    }

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

    .nav-btn {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero,
    .carousel {
        min-height: 100dvh;
        height: 100dvh;
    }

    .hero-content {
        padding: 0 48px;
    }

    .hero-subtitle {
        font-size: 0.78rem;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
        margin-bottom: 14px;
    }

    .hero-desc {
        font-size: 0.96rem;
        line-height: 1.65;
        margin-bottom: 22px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-actions .btn {
        width: min(100%, 300px);
        justify-content: center;
        padding: 12px 22px;
    }

    .carousel-arrow {
        width: 38px;
        height: 38px;
    }

    .carousel-prev { left: 12px; }
    .carousel-next { right: 12px; }

    .slide-services {
        gap: 6px;
        max-height: 82px;
        overflow: hidden;
        margin-bottom: 22px;
    }

    .slide-pill {
        padding: 6px 12px;
        font-size: 0.78rem;
    }

    .carousel-dots {
        bottom: 72px;
    }

    .category-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x proximity;
        margin: 0 -18px 40px;
        padding: 2px 18px 10px;
        scrollbar-width: none;
    }

    .category-tabs::-webkit-scrollbar {
        display: none;
    }

    .cat-tab {
        flex: 0 0 auto;
        scroll-snap-align: start;
        padding: 10px 16px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .cat-icon {
        display: none;
    }

    .sub-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 4px;
        padding: 4px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    .sub-tabs::-webkit-scrollbar {
        display: none;
    }

    .sub-tab {
        flex: 0 0 auto;
        scroll-snap-align: start;
        padding: 8px 14px;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .podology-section {
        margin-top: 52px;
        padding: 34px 24px;
    }

    .podology-section::before {
        inset: 12px;
    }

    .podology-grid {
        grid-template-columns: 1fr;
    }

    .category-hero-card {
        height: 200px;
    }

    .cat-hero-overlay {
        padding: 24px;
    }

    .cat-hero-overlay h3 {
        font-size: 1.5rem;
    }

    .about-content .section-tag,
    .about-content .section-title {
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .about-image-accent {
        display: none;
    }

    .location-section {
        padding: 70px 0;
    }

    .location-content .section-tag,
    .location-content .section-title,
    .location-text {
        text-align: center;
    }

    .location-text {
        margin-left: auto;
        margin-right: auto;
    }

    .location-details {
        grid-template-columns: 1fr;
    }

    .location-map {
        min-height: 280px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-grid ul {
        align-items: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .container,
    .nav-container {
        padding: 0 16px;
    }

    .logo-text {
        font-size: 1.05rem;
    }

    .nav-menu {
        width: 270px;
        max-width: calc(100vw - 44px);
    }

    .hero-content {
        padding: 0 34px;
    }

    .hero-title {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .hero-desc {
        font-size: 0.9rem;
    }

    .slide-services .slide-pill:nth-child(n+4) {
        display: none;
    }

    .carousel-arrow {
        width: 34px;
        height: 34px;
    }

    .carousel-prev { left: 8px; }
    .carousel-next { right: 8px; }

    .category-tabs {
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .about-stats {
        flex-direction: column;
        gap: 24px;
    }

    .service-card {
        padding: 22px;
    }

    .service-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .podology-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 22px;
    }

    .podology-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .podology-reserve {
        width: 100%;
    }

    .btn-reserve {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 380px) {
    .hero-content {
        padding: 0 28px;
    }

    .hero-actions .btn {
        font-size: 0.88rem;
        padding: 11px 18px;
    }

    .slide-pill {
        font-size: 0.72rem;
        padding: 5px 10px;
    }
}
