/* ===== CSS VARIABLES ===== */
:root {
    --teal: #26B0A0;
    --teal-dark: #1B8577;
    --teal-light: #56C9BB;
    --teal-soft: #DBF3EF;
    --sunny: #FFB13A;
    --sunny-soft: #FFEFD3;
    --coral: #FF7A6B;
    --coral-dark: #F2583F;
    --coral-soft: #FFE2DD;
    --cream: #FFF7EE;
    --cream-2: #FDEBD8;
    --ink: #133B3A;
    --slate: #3C5F5C;
    --muted: #7E9A97;
    --muted-light: #B2C7C4;
    --bg: #FFFDFA;
    --surface: #FFFFFF;
    --white: #FFFFFF;
    --dark: #133B3A;
    --line: #EAE0D2;
    --line-strong: #DED0BC;
    --shadow-sm: 0 2px 14px rgba(19, 59, 58, 0.05);
    --shadow-md: 0 16px 40px rgba(19, 59, 58, 0.10);
    --shadow-lg: 0 28px 64px rgba(19, 59, 58, 0.13);
    --shadow-xl: 0 38px 88px rgba(19, 59, 58, 0.17);
    --shadow-teal: 0 14px 34px rgba(38, 176, 160, 0.34);
    --shadow-coral: 0 14px 34px rgba(255, 122, 107, 0.34);
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-xl: 44px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
    font-family: 'Nunito', sans-serif;
    color: var(--slate);
    background: var(--bg);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 {
    font-family: 'Baloo 2', cursive;
    color: var(--ink);
    line-height: 1.2;
    font-weight: 700;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed; inset: 0; background: var(--cream); z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-paw {
    font-size: 3rem; margin-bottom: 10px;
    animation: pawPulse 1.1s ease-in-out infinite;
}
@keyframes pawPulse {
    0%, 100% { transform: scale(1) rotate(-6deg); opacity: 0.6; }
    50% { transform: scale(1.18) rotate(6deg); opacity: 1; }
}
.preloader-text {
    font-family: 'Baloo 2', cursive; font-weight: 800;
    font-size: 1.9rem; letter-spacing: 0.3px; color: var(--ink);
}
.preloader-text span { color: var(--teal); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 0; transition: all var(--transition);
}
.navbar.scrolled {
    background: rgba(255, 253, 250, 0.92); backdrop-filter: blur(20px);
    padding: 12px 0; box-shadow: var(--shadow-sm); border-bottom: 1px solid var(--line);
}
.nav-container {
    max-width: 1240px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo-icon {
    width: 44px; height: 44px; border-radius: 16px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.25rem; box-shadow: var(--shadow-teal);
}
.logo-text {
    font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 1.5rem;
    letter-spacing: -0.2px; color: var(--ink);
}
.logo-text span { color: var(--teal); }
.nav-links { display: flex; list-style: none; gap: 32px; }
.nav-links a {
    font-size: 0.95rem; font-weight: 700; color: var(--slate);
    transition: color var(--transition); position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 3px;
    background: var(--teal); transition: width var(--transition); border-radius: 3px;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
    padding: 11px 26px; background: var(--teal); color: var(--white) !important;
    border-radius: 50px; font-size: 0.92rem; font-weight: 700; transition: all var(--transition);
}
.nav-cta:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-teal); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { width: 25px; height: 3px; background: var(--ink); transition: all 0.3s; border-radius: 3px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 15px 34px; border-radius: 50px; font-family: 'Nunito', sans-serif;
    font-size: 0.98rem; font-weight: 700; cursor: pointer;
    transition: all var(--transition); border: none; white-space: nowrap;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-3px); box-shadow: var(--shadow-teal); }
.btn-accent { background: var(--coral); color: var(--white); }
.btn-accent:hover { background: var(--coral-dark); transform: translateY(-3px); box-shadow: var(--shadow-coral); }
.btn-outline { background: transparent; color: var(--teal-dark); border: 2px solid var(--line-strong); }
.btn-outline:hover { border-color: var(--teal); background: var(--cream); transform: translateY(-3px); }
.btn-white { background: var(--white); color: var(--teal-dark); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-full { width: 100%; }

/* ===== SECTION STYLES ===== */
.section-tag {
    display: inline-flex; align-items: center; gap: 7px; padding: 8px 18px;
    background: var(--teal-soft); border-radius: 50px; font-size: 0.78rem;
    font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
    color: var(--teal-dark); margin-bottom: 18px;
}
.section-tag.accent { background: var(--sunny-soft); color: var(--coral-dark); }
.section-tag.light { background: rgba(255,255,255,0.18); color: var(--white); }
.section-header { text-align: center; margin-bottom: 58px; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-title {
    font-size: clamp(2.1rem, 4.2vw, 3.2rem); font-weight: 700;
    letter-spacing: -0.3px; margin-bottom: 16px;
}
.section-title em { color: var(--teal); font-style: normal; }
.section-desc { font-size: 1.08rem; color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ===== HERO ===== */
.hero {
    position: relative; padding: 150px 0 110px;
    background:
        radial-gradient(ellipse at 88% 8%, rgba(38,176,160,0.14) 0%, transparent 52%),
        radial-gradient(ellipse at 6% 92%, rgba(255,177,58,0.14) 0%, transparent 50%),
        linear-gradient(180deg, var(--cream) 0%, var(--bg) 100%);
    overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px;
    background: var(--white); border: 1px solid var(--line); border-radius: 50px;
    font-size: 0.84rem; font-weight: 700; color: var(--slate); margin-bottom: 24px;
    box-shadow: var(--shadow-sm); animation: fadeInUp 0.8s ease-out;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(255,122,107,0.22); }
.hero-title {
    font-size: clamp(2.7rem, 5.2vw, 4.2rem); font-weight: 800; letter-spacing: -0.5px;
    line-height: 1.1; margin-bottom: 22px; animation: fadeInUp 0.8s ease-out 0.15s both;
}
.hero-title em { color: var(--teal); font-style: normal; }
.hero-subtitle {
    font-size: 1.15rem; color: var(--muted); max-width: 500px; margin-bottom: 34px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}
.hero-buttons { display: flex; gap: 14px; margin-bottom: 40px; animation: fadeInUp 0.8s ease-out 0.45s both; }
.hero-stats { display: flex; gap: 36px; animation: fadeInUp 0.8s ease-out 0.6s both; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat .stat-number { font-family: 'Baloo 2', cursive; font-size: 2.1rem; font-weight: 800; color: var(--ink); line-height: 1; display: inline; }
.hero-stat .stat-suffix { font-family: 'Baloo 2', cursive; font-size: 1.5rem; font-weight: 800; color: var(--coral); }
.hero-stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 8px; font-weight: 600; }

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

/* Hero Visual */
.hero-visual { position: relative; animation: fadeInUp 0.9s ease-out 0.4s both; }
.hero-visual-blob {
    position: absolute; inset: -6% -4% -6% 4%;
    background: linear-gradient(135deg, var(--teal-light), var(--teal));
    border-radius: 46% 54% 52% 48% / 55% 46% 54% 45%; z-index: 0;
    animation: blobMorph 13s ease-in-out infinite;
}
@keyframes blobMorph {
    0%, 100% { border-radius: 46% 54% 52% 48% / 55% 46% 54% 45%; }
    50% { border-radius: 54% 46% 45% 55% / 46% 55% 45% 54%; }
}
.hero-visual-img { position: relative; z-index: 1; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.hero-visual-img img { width: 100%; height: 480px; object-fit: cover; }
.hero-float-card {
    position: absolute; z-index: 2; background: var(--white); border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg); padding: 16px 20px; display: flex; align-items: center; gap: 12px;
}
.hero-float-card.top { top: 30px; left: -26px; animation: floatY 4s ease-in-out infinite; }
.hero-float-card.bottom { bottom: 34px; right: -22px; animation: floatY 4s ease-in-out infinite 1.5s; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-float-icon {
    width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center;
    justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.hero-float-icon.teal { background: var(--teal-soft); }
.hero-float-icon.coral { background: var(--coral-soft); }
.hero-float-card .fc-title { font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.hero-float-card .fc-sub { font-size: 0.76rem; color: var(--muted); }

/* ===== FEATURES ===== */
.features { padding: 90px 0; background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
    padding: 34px 26px; background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-md); transition: all var(--transition); text-align: center;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-card-icon {
    width: 66px; height: 66px; border-radius: 22px; background: var(--teal-soft);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 1.8rem;
}
.feature-card:nth-child(2) .feature-card-icon { background: var(--sunny-soft); }
.feature-card:nth-child(3) .feature-card-icon { background: var(--coral-soft); }
.feature-card:nth-child(4) .feature-card-icon { background: var(--sunny-soft); }
.feature-card h4 { font-size: 1.18rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.92rem; color: var(--muted); }

/* ===== ABOUT ===== */
.about { padding: 110px 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 480px; object-fit: cover; }
.about-badge {
    position: absolute; bottom: -26px; right: -22px; background: var(--white);
    border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 22px 28px; text-align: center;
}
.about-badge .num { font-family: 'Baloo 2', cursive; font-size: 2.4rem; font-weight: 800; color: var(--teal); line-height: 1; }
.about-badge .lbl { font-size: 0.8rem; color: var(--muted); margin-top: 4px; font-weight: 600; }
.about-list { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.about-list-item { display: flex; gap: 14px; align-items: flex-start; }
.about-check {
    width: 32px; height: 32px; border-radius: 50%; background: var(--teal-soft);
    display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; margin-top: 2px;
}
.about-list-item h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 2px; }
.about-list-item p { font-size: 0.92rem; color: var(--muted); }

/* ===== SERVICES ===== */
.services { padding: 110px 0; background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 38px 32px; transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 72px; height: 72px; border-radius: 24px; background: var(--teal-soft);
    display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 22px;
}
.service-card:nth-child(3n+2) .service-icon { background: var(--sunny-soft); }
.service-card:nth-child(3n) .service-icon { background: var(--coral-soft); }
.service-card h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 0.94rem; color: var(--muted); margin-bottom: 18px; line-height: 1.65; }
.service-link {
    font-size: 0.9rem; font-weight: 700; color: var(--teal); display: inline-flex;
    align-items: center; gap: 6px; transition: gap var(--transition);
}
.service-card:hover .service-link { gap: 12px; }

/* ===== STATS BAND ===== */
.stats-band { padding: 70px 0; background: var(--dark); position: relative; overflow: hidden; }
.stats-band::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 15% 30%, rgba(38,176,160,0.30) 0%, transparent 45%),
                radial-gradient(circle at 85% 80%, rgba(255,177,58,0.18) 0%, transparent 45%);
}
.stats-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: center; }
.stat-number { font-family: 'Baloo 2', cursive; font-size: 3.1rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-suffix { font-family: 'Baloo 2', cursive; font-size: 2.2rem; font-weight: 800; color: var(--sunny); }
.stat-label { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-top: 8px; letter-spacing: 0.3px; font-weight: 600; }

/* ===== VETS ===== */
.vets { padding: 110px 0; background: var(--cream); }
.vets-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.vet-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    overflow: hidden; transition: all var(--transition);
}
.vet-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.vet-photo { height: 300px; position: relative; overflow: hidden; }
.vet-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.6s ease; }
.vet-card:hover .vet-photo img { transform: scale(1.06); }
.vet-social {
    position: absolute; bottom: 14px; left: 50%; transform: translate(-50%, 20px);
    display: flex; gap: 10px; opacity: 0; transition: all var(--transition);
}
.vet-card:hover .vet-social { opacity: 1; transform: translate(-50%, 0); }
.vet-social a {
    width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.95);
    display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 0.75rem;
    font-weight: 700; transition: all var(--transition);
}
.vet-social a:hover { background: var(--teal); color: #fff; }
.vet-info { padding: 24px; text-align: center; }
.vet-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.vet-role { font-size: 0.78rem; color: var(--teal); font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; display: block; margin-bottom: 10px; }
.vet-info p { font-size: 0.88rem; color: var(--muted); }

/* ===== APPOINTMENT ===== */
.appointment { padding: 110px 0; background: var(--bg); }
.appointment-wrap {
    display: grid; grid-template-columns: 0.9fr 1.1fr; background: var(--surface);
    border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.appointment-side {
    position: relative; padding: 56px 44px; color: var(--white);
    background: linear-gradient(150deg, var(--teal) 0%, var(--teal-dark) 100%);
    display: flex; flex-direction: column; justify-content: center; overflow: hidden;
}
.appointment-side::before {
    content: ''; position: absolute; top: -60px; right: -60px; width: 240px; height: 240px;
    border-radius: 50%; background: rgba(255,255,255,0.09);
}
.appointment-side::after {
    content: ''; position: absolute; bottom: -80px; left: -50px; width: 200px; height: 200px;
    border-radius: 50%; background: rgba(255,255,255,0.07);
}
.appointment-side .as-inner { position: relative; z-index: 2; }
.appointment-side .section-tag { background: rgba(255,255,255,0.18); color: #fff; }
.appointment-side h2 { color: var(--white); font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom: 16px; }
.appointment-side h2 em { font-style: normal; color: var(--sunny); }
.appointment-side > .as-inner > p { opacity: 0.92; margin-bottom: 28px; font-size: 1rem; }
.appointment-benefits { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.appointment-benefits li { display: flex; align-items: center; gap: 12px; font-size: 0.96rem; font-weight: 600; }
.appointment-benefits li span {
    width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.20);
    display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0;
}
.appointment-form { padding: 52px 48px; }
.appointment-form h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 6px; }
.appointment-form > p { font-size: 0.92rem; color: var(--muted); margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 0; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--slate); margin-bottom: 7px; padding-left: 2px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 16px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
    font-family: 'Nunito', sans-serif; font-size: 0.92rem; font-weight: 500; color: var(--ink); background: var(--cream);
    transition: all var(--transition); outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted-light); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--teal); background: var(--white); box-shadow: 0 0 0 4px rgba(38,176,160,0.14);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select {
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2326B0A0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
}
.appointment-form .btn { margin-top: 10px; padding: 16px; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 110px 0; background: var(--cream); }
.testimonials-slider { max-width: 860px; margin: 0 auto; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card {
    min-width: 100%; padding: 50px; background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-sm);
}
.testimonial-stars { font-size: 1.2rem; color: var(--sunny); letter-spacing: 4px; margin-bottom: 22px; }
.testimonial-text { font-family: 'Baloo 2', cursive; font-weight: 500; font-size: 1.3rem; color: var(--ink); line-height: 1.6; margin-bottom: 30px; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.author-avatar {
    width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--white); font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 1.4rem;
}
.testimonial-author h4 { font-size: 1.05rem; font-weight: 700; }
.testimonial-author span { font-size: 0.85rem; color: var(--muted); }
.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 30px; }
.testimonial-btn {
    width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-strong); background: var(--white);
    font-size: 1.1rem; color: var(--slate); cursor: pointer; transition: all var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.testimonial-btn:hover { border-color: var(--teal); background: var(--teal); color: var(--white); }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dots .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); cursor: pointer; transition: all var(--transition); }
.testimonial-dots .dot.active { background: var(--teal); width: 30px; border-radius: 5px; }

/* ===== CTA ===== */
.cta-section { padding: 100px 0; position: relative; overflow: hidden; background: var(--bg); }
.cta-inner {
    position: relative; border-radius: var(--radius-xl); overflow: hidden; padding: 72px 40px; text-align: center;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
}
.cta-inner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.14) 0%, transparent 45%),
                radial-gradient(circle at 82% 85%, rgba(255,177,58,0.26) 0%, transparent 45%);
}
.cta-content { position: relative; z-index: 2; color: var(--white); }
.cta-content h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-content h2 em { font-style: normal; color: var(--sunny); }
.cta-content p { font-size: 1.12rem; opacity: 0.92; margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { padding: 110px 0; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.contact-card {
    padding: 32px 26px; background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-md); text-align: center; transition: all var(--transition);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.contact-icon {
    width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 20px; background: var(--teal-soft);
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.contact-card:nth-child(2) .contact-icon { background: var(--sunny-soft); }
.contact-card:nth-child(3) .contact-icon { background: var(--coral-soft); }
.contact-card:nth-child(4) .contact-icon { background: var(--sunny-soft); }
.contact-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.contact-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: var(--muted-light); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.09); }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 0.92rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
    padding: 8px 16px; background: rgba(255,255,255,0.08); border-radius: 50px; font-size: 0.8rem;
    font-weight: 600; color: rgba(255,255,255,0.75); transition: all var(--transition);
}
.social-link:hover { background: var(--teal); color: var(--white); }
.footer-links h4 { color: var(--white); font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--teal-light); }
.footer-newsletter h4 { color: var(--white); font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.footer-newsletter p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.newsletter-form { display: flex; }
.newsletter-form input {
    flex: 1; padding: 12px 16px; border: none; border-radius: 50px 0 0 50px; background: rgba(255,255,255,0.10);
    color: var(--white); font-family: 'Nunito', sans-serif; font-size: 0.88rem; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form button {
    padding: 12px 20px; background: var(--teal); color: var(--white); border: none;
    border-radius: 0 50px 50px 0; cursor: pointer; font-size: 1rem; transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--teal-dark); }
.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 0.84rem; color: rgba(255,255,255,0.45); }

/* ===== BACK TO TOP & WHATSAPP ===== */
.back-to-top {
    position: fixed; bottom: 100px; right: 30px; width: 50px; height: 50px; background: var(--teal);
    color: var(--white); border: none; border-radius: 50%; font-size: 1.2rem; cursor: pointer;
    opacity: 0; visibility: hidden; transition: all var(--transition); box-shadow: var(--shadow-md);
    z-index: 100; display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--teal-dark); transform: translateY(-3px); }
.whatsapp-btn {
    position: fixed; bottom: 30px; right: 30px; display: flex; align-items: center; gap: 8px;
    padding: 14px 24px; background: #25D366; color: var(--white); border-radius: 50px; font-size: 0.88rem;
    font-weight: 700; box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3); z-index: 100; transition: all var(--transition);
}
.whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4); }
.whatsapp-icon { font-size: 1.2rem; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero-visual { max-width: 540px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
    .vets-grid { grid-template-columns: repeat(2, 1fr); }
    .appointment-wrap { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .nav-links.active {
        display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(255,253,250,0.98); backdrop-filter: blur(20px); padding: 24px; gap: 16px;
        box-shadow: var(--shadow-md); border-bottom: 1px solid var(--line);
    }
    .hero { padding: 130px 0 90px; }
    .hero-float-card.top { left: 6px; }
    .hero-float-card.bottom { right: 6px; }
    .features-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .vets-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; gap: 52px; }
    .about-img-main img { height: 360px; }
    .about-badge { right: 16px; bottom: -20px; }
    .appointment-side { padding: 44px 32px; }
    .appointment-form { padding: 40px 28px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .hero-stats { gap: 24px; }
    .testimonial-card { padding: 34px 24px; }
    .cta-inner { padding: 52px 26px; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2.5rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .whatsapp-text { display: none; }
    .hero-stats { flex-wrap: wrap; gap: 20px 30px; }
}
