/* ====================================================================
   MY PETZ VET — PREMIUM CLINIC CSS DESIGN SYSTEM
   Modern, Conversion-Focused Veterinary Clinic Design
   ==================================================================== */

/* --------------------------------------------------------------------
   RESET & BASE
   -------------------------------------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors — My Petz (Red & Black) */
    --teal: #e11d48;
    /* brand red (primary) */
    --teal-dark: #be123c;
    /* brand red dark */
    --teal-light: #ffe4e6;
    /* brand red light tint */
    --teal-xlight: #fff1f2;
    /* brand red xlight */
    --blue: #111827;
    /* brand black */
    --blue-dark: #030712;
    /* brand black deep */
    --amber: #f59e0b;
    /* keep amber for CTAs */
    --amber-dark: #d97706;
    --amber-light: #fef3c7;
    --emerald: #10b981;
    --rose: #e11d48;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Typography */
    --font-head: 'Sora', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Spacing */
    --pad-xs: 0.5rem;
    --pad-sm: 1rem;
    --pad-md: 1.5rem;
    --pad-lg: 2rem;
    --pad-xl: 3rem;
    --pad-2xl: 5rem;

    /* Radii */
    --r-sm: 0.375rem;
    --r-md: 0.5rem;
    --r-lg: 0.75rem;
    --r-xl: 1rem;
    --r-2xl: 1.5rem;
    --r-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --ease: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-pad {
    padding: var(--pad-2xl) 0;
}

/* Common section header */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

/* Custom selection color */
::selection {
    background-color: var(--teal-light);
    color: var(--teal-dark);
}

.section-label {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-dark);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: var(--r-full);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------
   TOPBAR
   -------------------------------------------------------------------- */
.topbar {
    background-color: var(--teal-dark);
    color: var(--white);
    padding: 0.5rem 1.5rem;
}

.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.topbar-inner span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.9;
}

.topbar-inner i {
    font-size: 0.8rem;
}

.topbar-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--emerald);
    color: white;
    padding: 0.3rem 0.85rem;
    border-radius: var(--r-full);
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--ease);
}

.topbar-whatsapp:hover {
    background: #059669;
    transform: scale(1.05);
}

/* --------------------------------------------------------------------
   HEADER / NAVBAR
   -------------------------------------------------------------------- */
#header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: var(--ease);
}

#header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.875rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo-img {
    height: 54px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(225, 29, 72, 0.18));
    transition: var(--ease);
}

.nav-logo:hover .logo-img {
    transform: scale(1.04);
}

.footer-logo-img {
    height: 68px;
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(225, 29, 72, 0.5));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gray-400);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    -webkit-text-fill-color: var(--gray-400);
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    margin-left: auto;
}

.nav-links a {
    display: block;
    padding: 0.5rem 0.875rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    border-radius: var(--r-md);
    transition: var(--ease);
}

.nav-links a:hover {
    color: var(--teal);
    background: var(--teal-xlight);
}

/* Nav CTA */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: white;
    padding: 0.65rem 1.25rem;
    border-radius: var(--r-md);
    font-size: 0.875rem;
    font-weight: 700;
    white-space: nowrap;
    transition: var(--ease);
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.35);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(225, 29, 72, 0.5);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    border-radius: var(--r-md);
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--teal);
    border-radius: 2px;
    transition: var(--ease);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* --------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.3) brightness(0.7);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(3, 7, 18, 0.92) 0%,
            rgba(190, 18, 60, 0.55) 60%,
            rgba(17, 24, 39, 0.70) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 1.5rem 5rem;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: var(--r-full);
    margin-bottom: 1.75rem;
    width: fit-content;
}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 900;
    color: white;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    max-width: 700px;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--amber) 0%, #fb923c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2.5rem;
    max-width: 580px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--r-lg);
    font-size: 1rem;
    font-weight: 700;
    transition: var(--ease);
    box-shadow: 0 6px 24px rgba(225, 29, 72, 0.45);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(225, 29, 72, 0.6);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--r-lg);
    font-size: 1rem;
    font-weight: 700;
    transition: var(--ease);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Hero trust strip */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fb7185;
    line-height: 1;
}

.trust-item span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-top: 0.2rem;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    animation: bounce-y 2s infinite ease-in-out;
}

@keyframes bounce-y {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* --------------------------------------------------------------------
   STRIP URGENCY
   -------------------------------------------------------------------- */
.strip-urgency {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
}

.strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.strip-item i {
    color: #fb7185;
    font-size: 1.2rem;
}

.strip-item strong {
    color: white;
}

/* --------------------------------------------------------------------
   ABOUT
   -------------------------------------------------------------------- */
.about {
    background: var(--gray-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Images block */
.about-images {
    position: relative;
    min-height: 520px;
}

.about-img-main {
    border-radius: var(--r-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 80%;
    height: 420px;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 240px;
    border-radius: var(--r-2xl);
    overflow: hidden;
    border: 4px solid white;
    box-shadow: var(--shadow-xl);
}

.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge-float {
    position: absolute;
    top: 2rem;
    right: -1rem;
    background: linear-gradient(135deg, var(--amber), #fb923c);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: var(--r-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.about-badge-float i {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* About content */
.about-content .section-label {
    display: block;
    margin-bottom: 0.75rem;
}

.about-content .section-title {
    margin-bottom: 1.25rem;
}

.about-lead {
    font-size: 1.05rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
    line-height: 1.75;
}

.about-features {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--teal-light);
    color: var(--teal);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Primary button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: white;
    padding: 0.9rem 2rem;
    border-radius: var(--r-lg);
    font-size: 0.95rem;
    font-weight: 700;
    transition: var(--ease);
    box-shadow: 0 4px 16px rgba(225, 29, 72, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(225, 29, 72, 0.5);
}

/* --------------------------------------------------------------------
   SERVICES
   -------------------------------------------------------------------- */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}

.service-card {
    background: white;
    border-radius: var(--r-2xl);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--ease);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--teal-light);
}

.service-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.08);
}

.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.25));
}

.service-icon-wrap {
    position: absolute;
    top: 175px;
    left: 1.25rem;
    z-index: 10;
    width: 52px;
    height: 52px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1.35rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--teal-light);
    transition: var(--ease);
}

.service-card:hover .service-icon-wrap {
    background: var(--teal);
    color: white;
    border-color: var(--teal-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(225, 29, 72, 0.4);
}

.service-body {
    padding: 3rem 1.5rem 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.service-body p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--teal);
    transition: var(--ease);
}

.service-link:hover {
    gap: 0.7rem;
    color: var(--blue-dark);
}

/* Extra services strip */
.services-extra {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--r-xl);
    border: 1px solid var(--gray-200);
}

.extra-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    padding: 0.75rem;
}

.extra-item i {
    font-size: 1.25rem;
    color: var(--teal);
}


/* --------------------------------------------------------------------
   GALLERY
   -------------------------------------------------------------------- */
.gallery {
    background: var(--gray-900);
}

.gallery .section-title {
    color: white;
}

.gallery .section-label {
    background: rgba(225, 29, 72, 0.2);
    color: #fda4af;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 220px;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-xl);
    cursor: pointer;
}

.gallery-large {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(190, 18, 60, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    opacity: 0;
    transition: var(--ease);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* --------------------------------------------------------------------
   CTA BANNER
   -------------------------------------------------------------------- */
.cta-banner {
    position: relative;
    overflow: hidden;
    padding: 6rem 1.5rem;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
}

.cta-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(0.8);
}

.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(3, 7, 18, 0.88), rgba(190, 18, 60, 0.75));
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.cta-banner-text h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-banner-text h2 span {
    color: var(--amber);
}

.cta-banner-text p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.cta-benefits {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.cta-benefits li i {
    color: #fda4af;
}

.cta-banner-action {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.btn-cta-banner {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--amber);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--r-lg);
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
    transition: var(--ease);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.btn-cta-banner:hover {
    background: var(--amber-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.6);
}

.btn-cta-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--emerald);
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: var(--r-lg);
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    transition: var(--ease);
}

.btn-cta-whatsapp:hover {
    background: #059669;
    transform: translateY(-3px);
}

/* --------------------------------------------------------------------
   SCHEDULING
   -------------------------------------------------------------------- */
.scheduling {
    background: var(--gray-50);
}

.scheduling-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 4rem;
    align-items: start;
}

.scheduling-info .section-label {
    display: block;
    margin-bottom: 0.75rem;
}

.scheduling-info .section-title {
    margin-bottom: 1rem;
}

.scheduling-info>p {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.hours-card {
    background: white;
    border-radius: var(--r-xl);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.hours-card h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--teal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    border-top: 1px solid var(--gray-100);
    font-size: 0.9rem;
    color: var(--gray-600);
}

.hour-row strong {
    color: var(--gray-900);
    font-weight: 700;
}

.hour-row.emergency strong {
    color: var(--rose);
}

.contact-quick {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-quick-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--r-lg);
    background: white;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    color: var(--gray-700);
    transition: var(--ease);
}

.contact-quick-item:hover {
    border-color: var(--teal);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.12);
}

.contact-quick-item i {
    font-size: 1.5rem;
    color: var(--teal);
    flex-shrink: 0;
}

.contact-quick-whatsapp i {
    color: var(--emerald);
}

.contact-quick-item div {
    display: flex;
    flex-direction: column;
}

.contact-quick-item span {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-quick-item strong {
    font-size: 0.95rem;
    color: var(--gray-900);
}

/* Form card */
.form-card {
    background: white;
    border-radius: var(--r-2xl);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.form-card-header {
    background: linear-gradient(135deg, var(--teal), var(--blue));
    padding: 1.5rem 2rem;
    color: white;
}


.form-card-header h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.form-card-header p {
    font-size: 0.875rem;
    opacity: 0.8;
}

.appt-form {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.form-row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.field-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.field-group label i {
    color: var(--teal);
}

.field-group input,
.field-group select,
.field-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--r-lg);
    font-family: var(--font-body);
    font-size: 0.925rem;
    color: var(--gray-800);
    background: var(--gray-50);
    transition: var(--ease);
    outline: none;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
    border-color: var(--teal);
    background: white;
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.1);
}

.field-group textarea {
    resize: vertical;
    min-height: 90px;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: white;
    padding: 1rem;
    border-radius: var(--r-lg);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--ease);
    box-shadow: 0 4px 16px rgba(225, 29, 72, 0.35);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(225, 29, 72, 0.5);
}

.form-note {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--gray-400);
    text-align: center;
    justify-content: center;
}

/* --------------------------------------------------------------------
   TESTIMONIALS
   -------------------------------------------------------------------- */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-2xl);
    padding: 2rem;
    transition: var(--ease);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.testimonial-featured {
    background: linear-gradient(135deg, var(--teal), var(--blue));
    border-color: transparent;
}


.testimonial-featured .stars i {
    color: var(--amber);
}

.testimonial-featured p {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-featured strong {
    color: white;
}

.testimonial-featured span {
    color: rgba(255, 255, 255, 0.6);
}

.stars {
    margin-bottom: 1rem;
}

.stars i {
    color: var(--amber);
    font-size: 0.9rem;
}

.testimonial-card p {
    font-size: 0.925rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-featured .author-avatar {
    background: rgba(255, 255, 255, 0.2);
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* --------------------------------------------------------------------
   CONTACT
   -------------------------------------------------------------------- */
.contact {
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info .section-label {
    display: block;
    margin-bottom: 0.75rem;
}

.contact-info .section-title {
    margin-bottom: 1rem;
}

.contact-info>p {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: var(--r-xl);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.ci-icon {
    width: 44px;
    height: 44px;
    background: var(--teal-light);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1.1rem;
    flex-shrink: 0;
}


.contact-info-card strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.contact-info-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.social-row {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--r-lg);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 1rem;
    transition: var(--ease);
}

.social-btn:hover {
    background: var(--teal);
    color: white;
    transform: translateY(-3px);
}

.social-wa {
    background: var(--emerald) !important;
    color: white !important;
}

.social-wa:hover {
    background: #059669 !important;
}

.map-container {
    border-radius: var(--r-2xl);
    overflow: hidden;
    height: 380px;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    color: var(--gray-500);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--teal);
}

.map-placeholder span {
    font-weight: 600;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--teal);
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: var(--r-lg);
    font-size: 0.875rem;
    font-weight: 700;
    transition: var(--ease);
}

.map-btn:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------- */
footer {
    background: var(--gray-900);
}

.footer-top {
    padding: 4rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand .footer-logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-links h5,
.footer-contact h5 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links h5::after,
.footer-contact h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--teal);
}


.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: var(--ease);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transition: var(--ease);
}

.footer-links a:hover {
    color: #fda4af;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 0.625rem;
}

.footer-contact i {
    color: #fda4af;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.825rem;
    color: var(--gray-500);
}

.footer-bottom a {
    font-size: 0.825rem;
    color: var(--gray-500);
    margin-left: 1.5rem;
    transition: var(--ease);
}

.footer-bottom a:hover {
    color: #fda4af;
}

/* --------------------------------------------------------------------
   FLOATING BUTTONS
   -------------------------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--emerald);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.5);
    z-index: 999;
    transition: var(--ease);
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 32px rgba(16, 185, 129, 0.6);
}

.wa-tooltip {
    position: absolute;
    right: calc(100% + 0.75rem);
    background: var(--gray-900);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    border-radius: var(--r-md);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--ease);
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
}

.scroll-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 44px;
    height: 44px;
    background: var(--gray-800);
    color: white;
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: var(--ease);
    box-shadow: var(--shadow-lg);
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--teal);
}


/* --------------------------------------------------------------------
   FADE-IN ANIMATION
   -------------------------------------------------------------------- */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for children */
.fade-up:nth-child(2) {
    transition-delay: 0.1s;
}

.fade-up:nth-child(3) {
    transition-delay: 0.2s;
}

.fade-up:nth-child(4) {
    transition-delay: 0.3s;
}

.fade-up:nth-child(5) {
    transition-delay: 0.4s;
}

.fade-up:nth-child(6) {
    transition-delay: 0.5s;
}

/* ====================================================================
   RESPONSIVE — TABLET & MOBILE
   ==================================================================== */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-banner-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-banner-action {
        align-items: center;
        flex-direction: row;
        justify-content: center;
    }

    .cta-benefits {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    /* Nav */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 0;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        border-top: 1px solid var(--gray-100);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.open {
        max-height: 400px;
        padding: 0.75rem 0;
    }

    .nav-links a {
        padding: 0.875rem 1.5rem;
        border-radius: 0;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .navbar {
        flex-wrap: wrap;
    }

    /* Hero */
    .hero {
        min-height: 100svh;
    }

    .hero-trust {
        gap: 1.25rem;
    }

    .trust-divider {
        height: 30px;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-images {
        min-height: 360px;
    }

    .about-img-main {
        width: 100%;
        height: 300px;
    }

    .about-badge-float {
        right: 0;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-extra {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-large {
        grid-column: span 1;
    }

    /* Scheduling */
    .scheduling-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .topbar-inner span:not(:last-child) {
        display: none;
    }

    .section-pad {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-trust {
        gap: 1rem;
    }

    .trust-divider {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .form-row-two {
        grid-template-columns: 1fr;
    }

    .services-extra {
        grid-template-columns: 1fr 1fr;
    }

    .cta-banner-action {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-banner,
    .btn-cta-whatsapp {
        justify-content: center;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
        bottom: 1.25rem;
        right: 1.25rem;
    }
}