/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-blue: #1E88E5;
    --secondary-green: #43A047;
    --background-white: #FFFFFF;
    --background-light: #F8F9FA;
    --accent-orange: #FF9800;
    --text-dark: #212529;
    --text-gray: #6C757D;
    --border-light: #E9ECEF;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--background-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: var(--primary-blue);
}

.logo i {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: white;
}

.btn-primary:hover {
    background-color: #F57C00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.btn-secondary {
    background-color: var(--primary-blue);
    color: white;
}

.btn-secondary:hover {
    background-color: #1565C0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

.btn-cta {
    background-color: var(--secondary-green);
    color: white;
}

.btn-cta:hover {
    background-color: #2E7D32;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 160, 71, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: white;
}

/* Hero section specific outline button */
.hero-cta .btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta .btn-outline:hover {
    background-color: white;
    color: var(--primary-blue);
    text-shadow: none;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
}

.btn i {
    margin-right: 8px;
}

/* ========================================
   1. HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 120px 20px 80px;
    margin-top: 70px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
    background-image: url('https://images.unsplash.com/photo-1537151608828-ea2b11777ee8?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.85) 0%, rgba(67, 160, 71, 0.85) 100%);
    background: rgba(0, 0, 0, 0.5);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    opacity: 0.9;
}

.hero-feature i {
    color: #4CAF50;
    font-size: 1.1rem;
}

.hero-cta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 20px 30px;
    font-size: 1.1rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    min-height: 100px;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-large i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.btn-large small {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    opacity: 0;
    animation: fadeInScale 1s ease forwards;
    animation-delay: 0.5s;
}

.hero-stat:nth-child(2) { animation-delay: 0.7s; }
.hero-stat:nth-child(3) { animation-delay: 0.9s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 5px;
}

.hero-stat .stat-label {
    font-size: 1rem;
    color: white;
    opacity: 0.9;
    font-weight: 500;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    opacity: 0.8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(-10px); }
    60% { transform: rotate(45deg) translateY(-5px); }
}

.hero-scroll-indicator span {
    font-size: 0.85rem;
    font-weight: 500;
}

/* ========================================
   2. QUICK INFO STRIP
   ======================================== */
.quick-info {
    background: linear-gradient(135deg, var(--background-light) 0%, white 100%);
    padding: 60px 20px;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.quick-info::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.quick-info::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(67, 160, 71, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.quick-info-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.quick-info-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.quick-info-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.quick-info-item {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.quick-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.quick-info-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-blue);
}

.quick-info-item:hover::before {
    transform: scaleX(1);
}

.quick-info-icon {
    position: relative;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 50%;
    opacity: 0.3;
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
}

.quick-info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-info-content h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.timing-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.timing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: var(--background-light);
    border-radius: 8px;
    border-left: 3px solid var(--primary-blue);
}

.timing-days {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.timing-time {
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 0.9rem;
}

.location-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
}

.location-detail {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.pets-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pet-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(67, 160, 71, 0.1));
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    border: 1px solid rgba(30, 136, 229, 0.2);
    transition: all 0.3s ease;
}

.pet-tag:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.15), rgba(67, 160, 71, 0.15));
}

.pet-tag i {
    color: var(--primary-blue);
}

.quick-info-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 10px;
}

.quick-info-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.3);
}

/* ========================================
   3. LEGACY & TRUST SECTION
   ======================================== */
.legacy-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--background-white) 0%, var(--background-light) 100%);
    position: relative;
    overflow: hidden;
}

.legacy-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.legacy-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(67, 160, 71, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.legacy-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.legacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
}

.legacy-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legacy-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.legacy-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.legacy-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.legacy-timeline {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.legacy-timeline:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.timeline-header {
    text-align: center;
    margin-bottom: 40px;
}

.timeline-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-header p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 25px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.02), rgba(67, 160, 71, 0.02));
    border-radius: 15px;
    border: 1px solid rgba(30, 136, 229, 0.1);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.timeline-year {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
}

.timeline-dot {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
}

.timeline-content {
    flex: 1;
}

.timeline-content h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.timeline-achievement {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(67, 160, 71, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--secondary-green);
    font-weight: 500;
}

.timeline-achievement i {
    font-size: 0.8rem;
}

.legacy-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.legacy-stats {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.legacy-stats:hover {
    border-color: var(--secondary-green);
    transform: translateY(-5px);
}

.stats-header {
    text-align: center;
    margin-bottom: 30px;
}

.stats-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.stats-header p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.02), rgba(67, 160, 71, 0.02));
    border-radius: 15px;
    border: 1px solid rgba(30, 136, 229, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-card.experience:hover {
    border-color: var(--primary-blue);
}

.stat-card.first:hover {
    border-color: var(--accent-orange);
}

.stat-card.generations:hover {
    border-color: var(--secondary-green);
}

.stat-card.pets:hover {
    border-color: #9C27B0;
}

.stat-icon {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-card.experience .stat-icon {
    background: linear-gradient(135deg, var(--primary-blue), #1976D2);
}

.stat-card.first .stat-icon {
    background: linear-gradient(135deg, var(--accent-orange), #F57C00);
}

.stat-card.generations .stat-icon {
    background: linear-gradient(135deg, var(--secondary-green), #388E3C);
}

.stat-card.pets .stat-icon {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
}

.icon-bg {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
    margin-bottom: 5px;
}

.stat-description {
    font-size: 0.85rem;
    color: var(--text-gray);
    opacity: 0.8;
}

.legacy-story {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.legacy-story:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.story-header {
    text-align: center;
    margin-bottom: 30px;
}

.story-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
    text-align: center;
}

.legacy-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.02), rgba(67, 160, 71, 0.02));
    border-radius: 15px;
    border: 1px solid rgba(30, 136, 229, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.value-content h5 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.value-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.legacy-cta {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 15px;
    color: white;
}

.legacy-cta h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.legacy-cta p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 25px;
    font-size: 1rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-blue);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.cta-buttons .btn small {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-left: 5px;
}

/* ========================================
   4. ABOUT SECTION
   ======================================== */
.about-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-white) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.about-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
}

.doctor-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    transform: translateY(0);
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.doctor-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.doctor-card:hover .doctor-image {
    transform: scale(1.05);
}

.doctor-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-orange), #F57C00);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.doctor-quick-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 5px;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-intro h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
}

.about-intro h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 2px;
}

.about-intro p,
.about-philosophy p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.about-philosophy h4 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.about-values h4 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.value-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.value-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.value-content h5 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.value-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.about-cta {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.about-cta .btn {
    padding: 15px 35px;
    font-size: 1.05rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-cta .btn:hover {
    transform: translateY(-3px);
}

/* ========================================
   5. SERVICES SECTION
   ======================================== */
.services-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--background-white) 0%, var(--background-light) 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.services-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.service-card.featured {
    border-color: var(--accent-orange);
    transform: scale(1.02);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--accent-orange), #F57C00);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.service-icon {
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(67, 160, 71, 0.1));
    overflow: hidden;
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary-blue);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
    color: var(--secondary-green);
}

.icon-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
}

.service-card:hover .icon-bg {
    transform: scale(1.2);
}

.service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-light);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: var(--secondary-green);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.3);
}

.service-cta.emergency {
    background: linear-gradient(135deg, #f44336, #d32f2f);
}

.service-cta.emergency:hover {
    box-shadow: 0 8px 20px rgba(244, 67, 54, 0.3);
}

/* ========================================
   6. PETS SECTION
   ======================================== */
.pets-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-white) 100%);
    position: relative;
    overflow: hidden;
}

.pets-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(67, 160, 71, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.pets-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.pets-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pets-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.pets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pet-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.pet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-green);
}

.pet-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.pet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pet-card:hover .pet-image img {
    transform: scale(1.1);
}

.pet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(67, 160, 71, 0.8), rgba(30, 136, 229, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pet-card:hover .pet-overlay {
    opacity: 1;
}

.pet-overlay i {
    font-size: 3rem;
    color: white;
    transform: scale(0);
    transition: transform 0.3s ease 0.1s;
}

.pet-card:hover .pet-overlay i {
    transform: scale(1);
}

.pet-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pet-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    align-self: flex-start;
}

.pet-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.pet-content p {
    color: var(--text-gray);
    line-height: 1.7;
    flex: 1;
}

.pet-services {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(67, 160, 71, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
    border: 1px solid rgba(30, 136, 229, 0.2);
    transition: all 0.3s ease;
}

.service-tag:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.15), rgba(67, 160, 71, 0.15));
}

.pet-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.pet-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.3);
}

.pets-cta-section {
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pets-cta-content {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pets-cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.pets-cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.pets-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.pets-cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.05rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pets-cta-buttons .btn-primary {
    background: white;
    color: var(--primary-blue);
}

.pets-cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.pets-cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.pets-cta-buttons .btn-outline:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* ========================================
   7. FIRST VISIT SECTION
   ======================================== */
.first-visit-section {
    padding: 80px 20px;
    background-color: var(--background-white);
}

.expectations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.expectation-item {
    text-align: center;
}

.expectation-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
}

.expectation-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.expectation-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   8. ETHICAL SECTION
   ======================================== */
.ethical-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
    color: white;
}

.ethical-section .section-title {
    color: white;
}

.ethical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.ethical-item {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ethical-item i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.ethical-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.ethical-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* ========================================
   9. VACCINATION SECTION
   ======================================== */
.vaccination-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--background-white) 0%, var(--background-light) 100%);
    position: relative;
    overflow: hidden;
}

.vaccination-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.vaccination-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(67, 160, 71, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.vaccination-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.vaccination-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vaccination-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.vaccination-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.vaccination-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.vaccination-intro {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.vaccination-intro:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 25px;
}

.vaccination-intro h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.vaccination-intro p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

.vaccination-benefits h4 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vaccination-benefits h4 i {
    color: var(--accent-orange);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(67, 160, 71, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-content h5 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.benefit-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.vaccination-services {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-types h4 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-types h4 i {
    color: var(--primary-blue);
}

.service-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.vaccine-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.vaccine-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.vaccine-card.puppy:hover {
    border-color: var(--primary-blue);
}

.vaccine-card.kitten:hover {
    border-color: var(--secondary-green);
}

.vaccine-card.adult:hover {
    border-color: var(--accent-orange);
}

.vaccine-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.05), rgba(67, 160, 71, 0.05));
    border-bottom: 1px solid var(--border-light);
}

.vaccine-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.vaccine-card.puppy .vaccine-icon {
    background: linear-gradient(135deg, var(--primary-blue), #1976D2);
}

.vaccine-card.kitten .vaccine-icon {
    background: linear-gradient(135deg, var(--secondary-green), #388E3C);
}

.vaccine-card.adult .vaccine-icon {
    background: linear-gradient(135deg, var(--accent-orange), #F57C00);
}

.vaccine-age {
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.vaccine-card h5 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 20px 30px 15px;
    font-weight: 600;
}

.vaccine-list {
    list-style: none;
    margin: 0 30px 20px;
}

.vaccine-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-light);
}

.vaccine-list li:last-child {
    border-bottom: none;
}

.vaccine-list i {
    color: var(--secondary-green);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.vaccine-schedule {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 30px 25px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.05), rgba(67, 160, 71, 0.05));
    border-radius: 12px;
}

.schedule-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.schedule-time {
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 0.95rem;
}

.vaccination-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cta-buttons .btn-large {
    background: white;
    color: var(--primary-blue);
    border: none;
}

.cta-buttons .btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.vaccination-tips {
    position: relative;
    z-index: 1;
}

.tips-header {
    text-align: center;
    margin-bottom: 40px;
}

.tips-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tips-header h3 i {
    color: var(--accent-orange);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.tip-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-orange);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-orange), #F57C00);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.tip-card h5 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.tip-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ========================================
   10. REVIEWS SECTION
   ======================================== */
.reviews-section {
    padding: 80px 20px;
    background-color: var(--background-white);
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.rating-display {
    display: inline-block;
}

.stars {
    color: var(--accent-orange);
    font-size: 2rem;
    margin-bottom: 10px;
}

.rating-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.review-card {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.review-stars {
    color: var(--accent-orange);
}

.review-text {
    color: var(--text-gray);
    line-height: 1.7;
    font-style: italic;
}

.reviews-actions {
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   11. AREAS SECTION
   ======================================== */
.areas-section {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.area-item {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.area-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.area-item h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
}

/* ========================================
   12. GALLERY SECTION
   ======================================== */
.gallery-section {
    padding: 80px 20px;
    background-color: var(--background-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

/* ========================================
   13. FAQ SECTION
   ======================================== */
.faq-section {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--background-light);
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--text-dark);
}

.faq-question i {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   14. EMERGENCY SECTION
   ======================================== */
.emergency-section {
    padding: 80px 20px;
    background-color: var(--background-white);
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.emergency-item {
    background-color: #FFF3E0;
    border-left: 4px solid var(--accent-orange);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.emergency-item:hover {
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.2);
    transform: translateX(5px);
}

.emergency-item i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 15px;
}

.emergency-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.emergency-item p {
    color: var(--text-gray);
}

.emergency-note {
    background-color: var(--background-light);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.emergency-note p {
    color: var(--text-dark);
    margin: 0;
}

/* ========================================
   15. CONTACT SECTION
   ======================================== */
.contact-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--background-white) 0%, var(--background-light) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.contact-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-intro {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-intro:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-intro h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-intro p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-card.address:hover {
    border-color: var(--primary-blue);
}

.contact-card.phone:hover {
    border-color: var(--secondary-green);
}

.contact-card.timing:hover {
    border-color: var(--accent-orange);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.contact-card.address .card-icon {
    background: linear-gradient(135deg, var(--primary-blue), #1976D2);
}

.contact-card.phone .card-icon {
    background: linear-gradient(135deg, var(--secondary-green), #388E3C);
}

.contact-card.timing .card-icon {
    background: linear-gradient(135deg, var(--accent-orange), #F57C00);
}

.card-content {
    flex: 1;
}

.card-content h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.card-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 8px;
}

.card-content a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.card-content a:hover {
    text-decoration: underline;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(67, 160, 71, 0.1));
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
    border: 1px solid rgba(30, 136, 229, 0.2);
}

.feature-tag i {
    color: var(--primary-blue);
    font-size: 0.8rem;
}

.timing-grid {
    display: grid;
    gap: 10px;
    margin-bottom: 15px;
}

.timing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

.timing-item:last-child {
    border-bottom: none;
}

.timing-item .day {
    color: var(--text-dark);
    font-weight: 500;
}

.timing-item .time {
    color: var(--primary-blue);
    font-weight: 600;
}

.contact-quick-actions {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-quick-actions h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.action-btn.primary:hover {
    border-color: var(--primary-blue);
}

.action-btn.whatsapp:hover {
    border-color: #25D366;
}

.action-btn.secondary:hover {
    border-color: var(--secondary-green);
}

.action-btn .btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.action-btn.primary .btn-icon {
    background: linear-gradient(135deg, var(--primary-blue), #1976D2);
}

.action-btn.whatsapp .btn-icon {
    background: linear-gradient(135deg, #25D366, #20BA5A);
}

.action-btn.secondary .btn-icon {
    background: linear-gradient(135deg, var(--secondary-green), #388E3C);
}

.action-btn .btn-content {
    flex: 1;
}

.action-btn span {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.action-btn small {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.contact-map-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-header {
    text-align: center;
}

.map-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.map-header p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.6;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    height: 400px;
}

.map-wrapper {
    width: 100%;
    height: 100%;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.map-container:hover .map-overlay {
    opacity: 1;
}

.map-info {
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-info i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.map-info h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.map-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.location-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.feature-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h5 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-text p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-faq {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.faq-header h3 i {
    color: var(--accent-orange);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--background-light);
}

.faq-question h5 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-dark);
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px 25px;
    color: var(--text-gray);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 120px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ========================================
   STICKY BOTTOM BAR (MOBILE)
   ======================================== */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
    padding: 10px;
}

.sticky-bottom-bar.active {
    display: flex;
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.sticky-btn:hover {
    background-color: var(--background-light);
    color: var(--primary-blue);
}

.sticky-btn i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.sticky-btn span {
    font-weight: 600;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Large Tablets (1024px and below) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .hero-features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-cta {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .hero-stat .stat-number {
        font-size: 2.2rem;
    }
    
    .hero-stat .stat-label {
        font-size: 0.95rem;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--background-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 15px 0;
    }

    .nav-link {
        display: block;
        padding: 10px 20px;
    }

    .nav-link::after {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        margin-top: 70px;
        padding: 80px 20px 60px;
        min-height: 90vh;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin: 25px 0;
    }
    
    .hero-feature {
        font-size: 0.95rem;
    }
    
    .hero-cta {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 350px;
        margin: 30px auto;
    }
    
    .btn-large {
        min-height: 80px;
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    
    .btn-large span {
        font-size: 1rem;
    }
    
    .btn-large small {
        font-size: 0.8rem;
    }
    
    .hero-stats {
        gap: 25px;
        margin-top: 40px;
    }
    
    .hero-stat .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-stat .stat-label {
        font-size: 0.9rem;
    }
    
    .hero-scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-arrow {
        width: 25px;
        height: 25px;
    }
    
    .hero-scroll-indicator span {
        font-size: 0.85rem;
    }
}

/* Small Tablets and Large Phones (600px and below) */
@media (max-width: 600px) {
    .hero {
        padding: 60px 15px 50px;
        min-height: 85vh;
    }

    .hero-title {
        font-size: 1.9rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .hero-tagline {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 6px 15px;
        margin-bottom: 15px;
    }
    
    .hero-features {
        gap: 12px;
        margin: 20px 0;
    }
    
    .hero-feature {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    
    .hero-feature i {
        font-size: 0.9rem;
    }
    
    .hero-cta {
        max-width: 300px;
        gap: 12px;
        margin: 25px auto;
    }
    
    .btn-large {
        min-height: 70px;
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    .btn-large i {
        font-size: 1rem;
    }
    
    .btn-large span {
        font-size: 0.95rem;
    }
    
    .btn-large small {
        font-size: 0.75rem;
    }
    
    .hero-stats {
        gap: 20px;
        margin-top: 30px;
        flex-wrap: wrap;
    }
    
    .hero-stat {
        flex: 1;
        min-width: 100px;
    }
    
    .hero-stat .stat-number {
        font-size: 1.6rem;
    }
    
    .hero-stat .stat-label {
        font-size: 0.85rem;
    }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
    .hero {
        padding: 50px 15px 40px;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 1.7rem;
        line-height: 1.1;
        margin-bottom: 12px;
    }
    
    .hero-tagline {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 18px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 5px 12px;
        margin-bottom: 12px;
    }
    
    .hero-badge i {
        font-size: 0.8rem;
    }
    
    .hero-features {
        gap: 10px;
        margin: 18px 0;
    }
    
    .hero-feature {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .hero-feature i {
        font-size: 0.85rem;
    }
    
    .hero-cta {
        max-width: 280px;
        gap: 10px;
        margin: 20px auto;
    }
    
    .btn-large {
        min-height: 65px;
        padding: 10px 15px;
        font-size: 0.85rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .btn-large i {
        font-size: 1.1rem;
    }
    
    .btn-large span {
        font-size: 0.9rem;
    }
    
    .btn-large small {
        font-size: 0.7rem;
    }
    
    .hero-stats {
        gap: 15px;
        margin-top: 25px;
    }
    
    .hero-stat {
        min-width: 80px;
    }
    
    .hero-stat .stat-number {
        font-size: 1.4rem;
    }
    
    .hero-stat .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-scroll-indicator {
        bottom: 15px;
        gap: 8px;
    }
    
    .scroll-arrow {
        width: 20px;
        height: 20px;
        border-right: 2px solid white;
        border-bottom: 2px solid white;
    }
    
    .hero-scroll-indicator span {
        font-size: 0.75rem;
    }
}

/* Extra Small Phones (360px and below) */
@media (max-width: 360px) {
    .hero {
        padding: 40px 12px 35px;
        min-height: 75vh;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.1;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    .hero-features {
        gap: 8px;
    }
    
    .hero-feature {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .hero-cta {
        max-width: 250px;
        gap: 8px;
    }
    
    .btn-large {
        min-height: 60px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .hero-stat .stat-number {
        font-size: 1.2rem;
    }
    
    .hero-stat .stat-label {
        font-size: 0.75rem;
    }
}

/* Landscape orientations for mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 60px 20px 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin: 15px 0;
    }
    
    .hero-cta {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        gap: 10px;
    }
    
    .btn-large {
        min-height: 70px;
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .btn-large i {
        font-size: 1rem;
    }
    
    .btn-large span {
        font-size: 0.9rem;
    }
    
    .btn-large small {
        font-size: 0.7rem;
    }
    
    .hero-stats {
        margin-top: 20px;
        gap: 20px;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
}

/* Additional responsive styles for other sections */
@media (max-width: 768px) {
    .services-header .section-title {
        font-size: 2rem;
    }

    .services-header .section-subtitle {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card.featured {
        transform: scale(1);
    }

    .service-card.featured:hover {
        transform: scale(1.02) translateY(-5px);
    }

    .pets-header .section-title {
        font-size: 2rem;
    }

    .pets-header .section-subtitle {
        font-size: 1.1rem;
    }

    .pets-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pets-cta-content {
        padding: 30px 20px;
    }

    .pets-cta-content h3 {
        font-size: 1.5rem;
    }

    .pets-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .pets-cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .vaccination-header .section-title {
        font-size: 2rem;
    }

    .vaccination-header .section-subtitle {
        font-size: 1.1rem;
    }

    .vaccination-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vaccination-intro {
        padding: 30px;
    }

    .vaccination-intro h3 {
        font-size: 1.5rem;
    }

    .intro-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .vaccine-header {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .vaccine-card h5 {
        margin: 15px 20px 10px;
        font-size: 1.2rem;
    }

    .vaccine-list {
        margin: 0 20px 15px;
    }

    .vaccine-schedule {
        margin: 10px 20px 20px;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .vaccination-cta {
        padding: 30px;
    }

    .cta-content h4 {
        font-size: 1.3rem;
    }

    .cta-buttons {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tip-card {
        padding: 25px;
    }

    .tip-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-header .section-title {
        font-size: 2rem;
    }

    .about-header .section-subtitle {
        font-size: 1.1rem;
    }

    .doctor-quick-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-cta {
        flex-direction: column;
        gap: 15px;
    }

    .about-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 350px;
    }
    
    .quick-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .quick-info-title {
        font-size: 1.8rem;
    }

    .quick-info-subtitle {
        font-size: 1rem;
    }

    .quick-info-item {
        padding: 25px;
    }

    .quick-info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .legacy-section {
        padding: 80px 20px;
    }

    .legacy-header .section-title {
        font-size: 2rem;
    }

    .legacy-header .section-subtitle {
        font-size: 1.1rem;
    }

    .legacy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .legacy-timeline {
        padding: 30px;
    }

    .timeline-header h3 {
        font-size: 1.3rem;
    }

    .timeline-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .timeline-marker {
        align-self: flex-start;
        flex-direction: row;
        gap: 15px;
    }

    .timeline-year {
        min-width: 70px;
        font-size: 0.8rem;
    }

    .timeline-dot {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .timeline-content h4 {
        font-size: 1.1rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    .legacy-stats {
        padding: 30px;
    }

    .stats-header h3 {
        font-size: 1.3rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .stat-description {
        font-size: 0.8rem;
    }

    .legacy-story {
        padding: 30px;
    }

    .story-header h3 {
        font-size: 1.3rem;
    }

    .story-content p {
        font-size: 1rem;
    }

    .legacy-values {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .value-item {
        padding: 15px;
    }

    .value-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .value-content h5 {
        font-size: 1rem;
    }

    .value-content p {
        font-size: 0.9rem;
    }

    .legacy-cta {
        padding: 25px;
    }

    .legacy-cta h4 {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .legacy-header .section-title {
        font-size: 2rem;
    }

    .legacy-header .section-subtitle {
        font-size: 1.1rem;
    }

    .legacy-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .legacy-timeline {
        max-width: 300px;
        margin: 0 auto;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .timeline-year {
        order: 2;
    }

    .timeline-dot {
        order: 1;
        position: relative;
        transform: translateX(-50%);
        left: 50%;
    }

    .timeline-text {
        order: 3;
        text-align: center;
    }

    .legacy-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .legacy-stat {
        padding: 25px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .legacy-text {
        padding: 30px;
    }
    
    .legacy-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pets-grid {
        grid-template-columns: 1fr;
    }
    
    .expectations-grid {
        grid-template-columns: 1fr;
    }
    
    .ethical-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .whatsapp-float {
        bottom: 90px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .sticky-bottom-bar {
        display: flex;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
        padding: 40px 20px;
    }

    .doctor-image {
        height: 400px;
    }

    .gallery-image {
        height: 250px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .contact-actions .btn {
        width: 100%;
    }
    
    .contact-header .section-title {
        font-size: 2rem;
    }

    .contact-header .section-subtitle {
        font-size: 1.1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-intro {
        padding: 30px;
    }

    .contact-intro h3 {
        font-size: 1.5rem;
    }

    .contact-card {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .card-content h4 {
        font-size: 1.2rem;
    }

    .card-features {
        justify-content: center;
    }

    .contact-quick-actions {
        padding: 30px;
    }

    .contact-quick-actions h4 {
        font-size: 1.3rem;
    }

    .action-btn {
        padding: 15px;
    }

    .action-btn .btn-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .action-btn span {
        font-size: 1rem;
    }

    .action-btn small {
        font-size: 0.85rem;
    }

    .map-header h3 {
        font-size: 1.5rem;
    }

    .map-container {
        height: 300px;
    }

    .location-features {
        grid-template-columns: 1fr;
    }

    .feature-item {
        padding: 15px;
    }

    .feature-item i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .feature-text h5 {
        font-size: 1rem;
    }

    .feature-text p {
        font-size: 0.9rem;
    }

    .faq-header h3 {
        font-size: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h5 {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 20px 20px;
    }
    
    .reviews-actions {
        flex-direction: column;
    }
    
    .reviews-actions .btn {
        width: 100%;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 3px solid var(--accent-orange);
    outline-offset: 2px;
}
