/* ========================================
   REGEN CLINIC — Design System & Styles
   Full animation system + hero image
   ======================================== */

/* --- Design Tokens --- */
:root {
    --primary: #1B7A53;
    --primary-dark: #145C3E;
    --primary-light: #E8F5EE;
    --primary-rgb: 27, 122, 83;
    --accent: #D4872C;
    --accent-light: #FFF3E6;
    --accent-rgb: 212, 135, 44;
    --text-dark: #1A2B3C;
    --text-body: #374151;
    --text-muted: #5A6B7C;
    --bg-white: #FFFFFF;
    --bg-light: #F7F9FB;
    --bg-cream: #FDF8F3;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 2px 12px rgba(27, 122, 83, 0.06);
    --shadow-glow: 0 0 40px rgba(27, 122, 83, 0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 200ms ease;
    --transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-body);
    background: var(--bg-white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    color: var(--text-dark);
    line-height: 1.25;
    font-weight: 700;
}

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

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 620px;
    margin-bottom: 48px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

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

.btn--primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn--primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(var(--primary-rgb), 0.3);
}

.btn--glow {
    animation: btnPulse 2.5s ease-in-out infinite;
}

@keyframes btnPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(var(--primary-rgb), 0);
    }
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

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

.btn--whatsapp {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.btn--whatsapp:hover {
    background: #1EBE57;
    border-color: #1EBE57;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

.btn--white {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.btn--white:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.35s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border-bottom-color: transparent;
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.navbar__logo-img {
    height: 44px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar__logo:hover .navbar__logo-img {
    transform: scale(1.03);
}

.navbar__links {
    display: flex;
    gap: 32px;
}

.navbar__links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
}

.navbar__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
    transform: translateX(-50%);
}

.navbar__links a:hover,
.navbar__links a.active {
    color: var(--primary);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
    width: 100%;
}

.navbar__cta {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.navbar__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

/* ===== HERO ===== */
.hero {
    padding: 130px 0 90px;
    background: linear-gradient(165deg, var(--bg-white) 0%, var(--bg-light) 30%, var(--primary-light) 70%, #dff0e7 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Particles */
.hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 12s ease-in-out infinite;
}

.particle--1 {
    width: 8px;
    height: 8px;
    background: var(--primary);
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.particle--2 {
    width: 6px;
    height: 6px;
    background: var(--accent);
    top: 25%;
    right: 15%;
    animation-delay: 2s;
}

.particle--3 {
    width: 12px;
    height: 12px;
    background: rgba(var(--primary-rgb), 0.15);
    top: 60%;
    left: 5%;
    animation-delay: 4s;
}

.particle--4 {
    width: 5px;
    height: 5px;
    background: var(--primary);
    top: 70%;
    right: 20%;
    animation-delay: 6s;
}

.particle--5 {
    width: 10px;
    height: 10px;
    background: rgba(var(--accent-rgb), 0.15);
    top: 40%;
    left: 50%;
    animation-delay: 1s;
}

.particle--6 {
    width: 7px;
    height: 7px;
    background: rgba(var(--primary-rgb), 0.2);
    bottom: 20%;
    left: 30%;
    animation-delay: 3s;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0);
    }

    15% {
        opacity: 0.6;
        transform: translateY(0) scale(1);
    }

    85% {
        opacity: 0.6;
        transform: translateY(-40px) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-60px) scale(0);
    }
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Animations */
.animate-slide-up {
    opacity: 0;
    transform: translateY(32px);
    animation: heroSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay, 0s);
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.hero__title {
    font-size: clamp(2.2rem, 5.5vw, 3.4rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    margin-bottom: 20px;
    line-height: 1.12;
}

.hero__title-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #2AAF6E 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero__title-line {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.72em;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 520px;
}

.hero__rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    width: fit-content;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.hero__stars {
    display: flex;
    gap: 2px;
}

.hero__rating-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero__rating-text strong {
    color: var(--text-dark);
    font-weight: 700;
}

.hero__ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Image */
.hero__image-wrapper {
    position: relative;
}

.hero__image-frame {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border: 3px solid rgba(255, 255, 255, 0.6);
}

.hero__image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 6s ease;
}

.hero__image-frame:hover .hero__image {
    transform: scale(1.04);
}

.hero__image-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(var(--primary-rgb), 0.15), transparent);
    pointer-events: none;
}

/* Floating badges */
.hero__float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero__float-badge--top {
    top: 24px;
    right: -20px;
}

.hero__float-badge--bottom {
    bottom: 40px;
    left: -20px;
}

.animate-float {
    animation: floatBadge 3.5s ease-in-out infinite;
    animation-delay: var(--float-delay, 0s);
}

@keyframes floatBadge {

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

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

/* Scroll Cue */
.hero__scroll-cue {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    z-index: 2;
}

.scroll-arrow {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

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

    50% {
        transform: translateY(6px);
    }
}

/* ===== TRUST STRIP ===== */
.trust-strip {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
    position: relative;
    z-index: 3;
}

.trust-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-strip__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
}

.trust-strip__icon-wrap {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-strip__item:hover .trust-strip__icon-wrap {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.15);
}

.trust-strip__item div {
    display: flex;
    flex-direction: column;
}

.trust-strip__item strong {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
}

.trust-strip__item span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.trust-strip__divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
}

.about__inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: start;
}

.about__text {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 20px;
    color: var(--text-body);
}

.about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 32px;
}

.about__highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 14px 18px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    border: 1px solid rgba(var(--primary-rgb), 0.08);
    transition: all 0.3s ease;
}

.about__highlight-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.1);
}

.about__visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 48px;
}

.about__card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.about__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--primary-rgb), 0.15);
}

.about__card:hover::before {
    opacity: 1;
}

.about__card-icon {
    margin-bottom: 14px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.about__card:hover .about__card-icon {
    transform: scale(1.05) rotate(-5deg);
}

.about__card h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.about__card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card__ribbon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transform: scaleX(0);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left;
}

.service-card:nth-child(1) .service-card__ribbon {
    background: linear-gradient(90deg, var(--primary), #2AAF6E);
}

.service-card:nth-child(2) .service-card__ribbon {
    background: linear-gradient(90deg, var(--accent), #E5A24D);
}

.service-card:nth-child(3) .service-card__ribbon {
    background: linear-gradient(90deg, #7C3AED, #A78BFA);
}

.service-card:nth-child(4) .service-card__ribbon {
    background: linear-gradient(90deg, #2563EB, #60A5FA);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.service-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card__icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-card__icon--derm {
    background: var(--primary-light);
    color: var(--primary);
}

.service-card__icon--hair {
    background: var(--accent-light);
    color: var(--accent);
}

.service-card__icon--cosmo {
    background: #F0E6FF;
    color: #7C3AED;
}

.service-card__icon--clinical {
    background: #E6F3FF;
    color: #2563EB;
}

.service-card__title {
    font-size: 1.15rem;
    margin-bottom: 16px;
    line-height: 1.35;
}

.service-card__title small {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
}

.service-card__list {
    margin-bottom: 24px;
    flex: 1;
}

.service-card__list li {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.service-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card__list li::before {
    transform: scale(1.4);
}

.service-card:nth-child(1) .service-card__list li::before {
    background: var(--primary);
    opacity: 0.4;
}

.service-card:nth-child(2) .service-card__list li::before {
    background: var(--accent);
    opacity: 0.4;
}

.service-card:nth-child(3) .service-card__list li::before {
    background: #7C3AED;
    opacity: 0.4;
}

.service-card:nth-child(4) .service-card__list li::before {
    background: #2563EB;
    opacity: 0.4;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    transition: all var(--transition);
    cursor: pointer;
}

.service-card__link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* ===== WHY CHOOSE US ===== */
.why-us {
    padding: 100px 0;
    background: var(--bg-white);
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-us__card {
    padding: 32px 28px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.why-us__number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(var(--primary-rgb), 0.04);
    line-height: 1;
    transition: all 0.4s ease;
}

.why-us__card:hover .why-us__number {
    color: rgba(var(--primary-rgb), 0.08);
    transform: scale(1.1);
}

.why-us__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--primary-rgb), 0.15);
}

.why-us__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    margin-bottom: 18px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-us__card:hover .why-us__icon {
    transform: scale(1.08) rotate(-5deg);
}

.why-us__card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.why-us__card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== HOURS & LOCATION ===== */
.hours {
    padding: 100px 0;
    background: var(--bg-cream);
}

.hours__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.hours__schedule {
    margin-top: 24px;
    margin-bottom: 32px;
}

.hours__schedule-row {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.hours__schedule-row:last-child {
    border-bottom: none;
}

.hours__day {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.hours__time {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.hours__badge {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 10px;
    border-radius: 50px;
}

.hours__badge--open {
    background: var(--primary-light);
    color: var(--primary);
}

.hours__badge--closed {
    background: #FEE2E2;
    color: #DC2626;
}

.hours__address {
    display: flex;
    gap: 14px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.hours__address:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.hours__address div {
    font-size: 0.9rem;
    line-height: 1.6;
}

.hours__address strong {
    color: var(--text-dark);
}

.hours__note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 16px 20px;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent);
}

.hours__note svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.hours__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hours__map:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.hours__map iframe {
    display: block;
}

/* ===== CONTACT CTA ===== */
.contact-cta {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #0D3B28 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-cta__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.cta-shape--1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
    animation: shapeFloat 8s ease-in-out infinite;
}

.cta-shape--2 {
    width: 300px;
    height: 300px;
    bottom: -120px;
    left: -80px;
    animation: shapeFloat 10s ease-in-out infinite reverse;
}

.cta-shape--3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    animation: shapeFloat 6s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes shapeFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(20px, -15px) scale(1.03);
    }

    66% {
        transform: translate(-10px, 10px) scale(0.97);
    }
}

.contact-cta__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-cta__content h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-cta__content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin-bottom: 16px;
}

.contact-cta__note {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    border-left: 3px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}

.contact-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-btn {
    justify-content: center;
    padding: 18px 32px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    animation: whatsappPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.5s both;
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
    animation: whatsappRing 2s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPop {
    from {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }

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

@keyframes whatsappRing {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

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

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    height: 40px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer__brand p {
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer h4 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
}

.footer__links ul li {
    margin-bottom: 10px;
}

.footer__links a {
    font-size: 0.88rem;
    transition: all var(--transition);
    position: relative;
}

.footer__links a:hover {
    color: #fff;
    padding-left: 6px;
}

.footer__contact p {
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 12px;
}

.footer__bottom {
    padding: 20px 0;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

/* ===== SCROLL ANIMATIONS ===== */
[data-scroll] {
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-scroll].is-visible {
    opacity: 1;
}

/* Fade Up */
[data-scroll="fade-up"] {
    transform: translateY(40px);
}

[data-scroll="fade-up"].is-visible {
    transform: translateY(0);
}

/* Fade Right */
[data-scroll="fade-right"] {
    transform: translateX(-40px);
}

[data-scroll="fade-right"].is-visible {
    transform: translateX(0);
}

/* Fade Left */
[data-scroll="fade-left"] {
    transform: translateX(40px);
}

[data-scroll="fade-left"].is-visible {
    transform: translateX(0);
}

/* Scale Up */
[data-scroll="scale-up"] {
    transform: scale(0.85);
}

[data-scroll="scale-up"].is-visible {
    transform: scale(1);
}

/* Stagger delay from data attribute */
[data-scroll-delay="0"] {
    transition-delay: 0ms;
}

[data-scroll-delay="80"] {
    transition-delay: 80ms;
}

[data-scroll-delay="100"] {
    transition-delay: 100ms;
}

[data-scroll-delay="120"] {
    transition-delay: 120ms;
}

[data-scroll-delay="160"] {
    transition-delay: 160ms;
}

[data-scroll-delay="200"] {
    transition-delay: 200ms;
}

[data-scroll-delay="240"] {
    transition-delay: 240ms;
}

[data-scroll-delay="280"] {
    transition-delay: 280ms;
}

[data-scroll-delay="300"] {
    transition-delay: 300ms;
}

[data-scroll-delay="320"] {
    transition-delay: 320ms;
}

[data-scroll-delay="360"] {
    transition-delay: 360ms;
}

[data-scroll-delay="400"] {
    transition-delay: 400ms;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-scroll] {
        opacity: 1 !important;
        transform: none !important;
    }

    .animate-slide-up {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}

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

    .hero__image-wrapper {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero__image {
        height: 400px;
    }

    .hero__float-badge--top {
        right: 0;
    }

    .hero__float-badge--bottom {
        left: 0;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__visual {
        flex-direction: row;
        padding-top: 0;
    }

    .about__card {
        flex: 1;
    }

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

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

    .contact-cta__actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar__links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-xl);
    }

    .navbar__links.active {
        display: flex;
    }

    .navbar__links li {
        border-bottom: 1px solid var(--border-light);
    }

    .navbar__links a {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
    }

    .navbar__cta {
        display: none;
    }

    .navbar__hamburger {
        display: flex;
    }

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

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

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

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero__ctas {
        flex-direction: column;
    }

    .hero__ctas .btn {
        justify-content: center;
    }

    .hero__image {
        height: 320px;
    }

    .hero__float-badge {
        display: none;
    }

    .hero__scroll-cue {
        display: none;
    }

    .trust-strip__inner {
        flex-direction: column;
        gap: 4px;
    }

    .trust-strip__divider {
        display: none;
    }

    .trust-strip__item {
        width: 100%;
        padding: 12px 16px;
        background: var(--bg-light);
        border-radius: var(--radius-sm);
    }

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

    .about__visual {
        flex-direction: column;
    }

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

    .why-us__grid {
        grid-template-columns: 1fr;
    }

    .hours__map iframe {
        height: 280px;
    }

    .contact-cta__actions {
        flex-direction: column;
    }

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

    .section-title {
        font-size: 1.65rem;
    }

    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
}

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

    .hero__title {
        font-size: 1.8rem;
    }

    .hero__rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}