@layer base {
  :root {
    --accent: #4facfe;
    --accent-2: #00d4ff;
    --hero-wave: #f8f9fa;
    --bg-color: #ffffff;
    --text-color: #333;
    --card-bg: rgba(255, 255, 255, 0.9);
  }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.lang-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(79, 172, 254, 0.3);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    z-index: 1001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.lang-toggle:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(79, 172, 254, 0.4);
}

.lang-toggle .flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .lang-toggle {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .lang-toggle .flag-icon {
        width: 20px;
        height: 20px;
    }
}

.logo-img {
    max-width: 150px;
    height: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(79, 172, 254, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 8px 8px;
    animation: slideDown 0.3s ease-out;
}

.nav-menu.active .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(79, 172, 254, 0.2);
    transition: all 0.3s ease;
}

.nav-menu.active .nav-link:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    background: linear-gradient(135deg, #e6f3ff 0%, #ffffff 100%);
}

.about {
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
}

.services {
    background: linear-gradient(135deg, #e6f3ff 0%, #ffffff 100%);
}

.pet-gallery {
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
}

.coverage {
    background: linear-gradient(135deg, #e6f3ff 0%, #ffffff 100%);
}

.testimonials {
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
}

.contact {
    background: linear-gradient(135deg, #e6f3ff 0%, #ffffff 100%);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 120px;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 80vh;
}

.hero-cta-section {
    position: absolute;
    left: 40px;
    top: 23%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 380px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 100%);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15), 0 10px 25px rgba(79,172,254,0.2);
    transition: all 0.3s ease;
}

.hero-cta-section:hover {
    transform: translateY(-50%) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2), 0 15px 35px rgba(79,172,254,0.3);
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cta-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.schedule-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--accent);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(79,172,254,0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.schedule-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
}

.hero-features {
    position: absolute;
    top: 23%;
    right: 40px;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
}

.hero-features.right { display: flex; }

.feature-bubble {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 250px;
    padding: 12px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1), 0 3px 10px rgba(0,0,0,0.05);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.feature-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79,172,254,0.08), transparent);
    transition: left 0.6s ease;
}

.feature-bubble:hover::before {
    left: 100%;
}

.feature-bubble:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15), 0 5px 15px rgba(0,0,0,0.08);
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.9) 100%);
}

.feature-bubble .icon {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-bubble:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-bubble h4 {
    margin: 0;
    font-size: 0.95rem;
    color: #2c3e50;
    line-height: 1.3;
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-bubble:hover h4 {
    color: var(--accent);
}

.feature-bubble p {
    margin: 2px 0 0;
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.4;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-bubble:hover p {
    color: #4a5568;
}

.hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 2;
    line-height: 0;
    pointer-events: none;
}

.hero-wave svg {
    width: 100%;
    height: 140px;
    display: block;
    color: var(--hero-wave);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-cta-section {
        position: static;
        transform: none;
        margin: 0 auto;
        max-width: 90%;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .hero-features {
        position: static;
        transform: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        margin-top: 20px;
        width: 100%;
    }
    
    .feature-bubble {
        width: 90%;
        max-width: 300px;
    }
    
    .hero-content {
        gap: 20px;
        min-height: 90vh;
        padding: 0 10px;
        padding-top: 100px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .coverage-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .hero-background img {
        object-fit: contain;
        object-position: center top;
    }
    
    .hero-content {
        min-height: 70vh;
    }
}

@media (max-width: 480px) {
    .hero-cta-section {
        padding: 15px;
        max-width: 95%;
    }
    
    .schedule-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .cta-title {
        font-size: 1.4rem;
    }
    
    .cta-description {
        font-size: 0.9rem;
    }
    
    .feature-bubble {
        width: 95%;
        padding: 10px 12px;
    }
    
    
    .feature-bubble h4 {
        font-size: 0.9rem;
    }
    
    .feature-bubble p {
        font-size: 0.75rem;
    }
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-icon {
    width: 40px;
    height: 40px;
}

.about {
    padding: 100px 0;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.carousel-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 640px;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.about-text {
    color: #333;
    padding-top: 40px;
}

.about-header {
    margin-bottom: 30px;
}

.about-description {
    margin-bottom: 40px;
}

.about-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.about-highlights {
    background: rgba(79, 172, 254, 0.05);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--accent);
    margin-bottom: 40px;
}

.highlight-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
}

.highlight-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.highlight-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #333;
}

.highlight-features .feature-item i.fas.fa-check {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: bold;
    width: 16px;
}

.about-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
}

.about-cta-button:hover {
    background: #2196f3;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(79, 172, 254, 0.4);
}

.about-cta-button i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        padding-top: 20px;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .carousel-slide {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .about-content {
        gap: 30px;
    }
    
    .about-title {
        font-size: 1.6rem;
    }
    
    .carousel-slide {
        height: 400px;
    }
    
    .about-highlights {
        padding: 20px;
    }
}

.services {
    padding: 100px 0;
    position: relative;
}

.services .section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 25px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-card.simple {
    border-color: #e3f2fd;
}

.service-card.simple:hover {
    border-color: #2196f3;
}

.service-card.hygienic {
    border-color: #f3e5f5;
}

.service-card.hygienic:hover {
    border-color: #9c27b0;
}

.service-card.complete {
    position: relative;
    border: 2px solid #ffd700;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4), 0 8px 30px rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
}

.service-card.complete:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.6), 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-icon-large {
    width: 70px;
    height: 70px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: #f8f9fa;
}

.service-icon-large img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.service-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.service-includes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.service-card.simple .include-item {
    background: #e3f2fd;
    color: #1976d2;
}

.service-card.hygienic .include-item {
    background: #f3e5f5;
    color: #7b1fa2;
}

.service-card.complete .include-item {
    background: #fff3e0;
    color: #f57c00;
}

.include-item:hover {
    transform: translateX(5px);
}

.include-item i.fas.fa-check {
    font-size: 0.8rem;
    font-weight: bold;
}

.service-card.simple .include-item i.fas.fa-check {
    color: #1976d2;
}

.service-card.hygienic .include-item i.fas.fa-check {
    color: #7b1fa2;
}

.service-card.complete .include-item i.fas.fa-check {
    color: #f57c00;
}

.premium-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    z-index: 10;
}

.pet-gallery {
    padding: 100px 0;
    position: relative;
}

.pet-gallery .section-title {
    color: var(--accent);
    margin-bottom: 20px;
}

.gallery-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 4px solid transparent;
    background: linear-gradient(45deg, var(--accent), var(--accent-2)) border-box;
    background-clip: padding-box;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, var(--accent), var(--accent-2));
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.05) rotate(1deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 16px;
}

.gallery-item:hover img {
    transform: scale(1.10) rotate(-1deg);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-radius: 0 0 16px 16px;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin: 0 0 5px;
    font-size: 1.2rem;
    font-weight: 700;
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-item img {
        height: 270px;
    }
    
    .gallery-overlay {
        padding: 15px;
    }
    
    .gallery-overlay h4 {
        font-size: 1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 250px;
    }
}

.coverage {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.coverage .container {
    position: relative;
    z-index: 3;
}

.coverage-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.coverage-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.coverage-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent);
}

.coverage-card::before {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 2rem;
    opacity: 0.5;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-header i {
    font-size: 1.5rem;
    color: var(--accent);
}

.card-header h3 {
    font-size: 1.3rem;
    color: #333;
    margin: 0;
}

.area-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pet-map {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(79, 172, 254, 0.1);
    padding: 15px;
    border-radius: 15px;
    border: 2px solid rgba(79, 172, 254, 0.2);
}

.pet-map i {
    font-size: 1.5rem;
    color: var(--accent);
}

.pet-map span {
    font-weight: 600;
    color: #333;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(79, 172, 254, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(79, 172, 254, 0.2);
    transform: translateX(5px);
}

.detail-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

.detail-item span {
    color: #333;
    font-weight: 500;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-overlay i {
    color: var(--accent);
    font-size: 1.2rem;
}

.map-overlay span {
    font-weight: 600;
    color: #333;
}

.testimonials {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.testimonials .container {
    position: relative;
    z-index: 3;
}

.testimonials-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(79, 172, 254, 0.2);
    border-radius: 25px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent);
}

.testimonial-pet {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-pet img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent);
    transition: all 0.3s ease;
}

.testimonial-pet:hover img {
    transform: scale(1.1) rotate(5deg);
}

.pet-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(79, 172, 254, 0.3);
}

.speech-bubble {
    background: rgba(79, 172, 254, 0.1);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    margin-bottom: 20px;
    border: 2px solid rgba(79, 172, 254, 0.2);
}

.speech-bubble::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(79, 172, 254, 0.2);
}

.speech-bubble p {
    color: #333;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    font-size: 1rem;
}

.speech-bubble i.fa-quote-left {
    color: var(--accent);
    margin-right: 5px;
}

.speech-bubble i.fa-quote-right {
    color: var(--accent);
    margin-left: 5px;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--accent);
    font-size: 1.1rem;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 5px;
    color: #ffd700;
    font-size: 1.2rem;
}

.rating i {
    transition: all 0.3s ease;
}

.rating i:hover {
    transform: scale(1.2);
    color: var(--accent);
}

.contact {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 8% -10%, rgba(79, 172, 254, 0.28) 0%, transparent 55%), radial-gradient(circle at 92% 5%, rgba(0, 212, 255, 0.24) 0%, transparent 52%), linear-gradient(135deg, #ecf5ff 0%, #ffffff 100%);
    z-index: 0;
    opacity: 0.9;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: stretch;
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.contact-card,
.contact-form {
    position: relative;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 38px rgba(79, 172, 254, 0.14);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.contact-card::after,
.contact-form::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.18), rgba(0, 212, 255, 0.15));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.contact-card:hover,
.contact-form:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 26px 55px rgba(79, 172, 254, 0.2);
    border-color: var(--accent);
}

.contact-card::before {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.14;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.contact-card:hover::before {
    opacity: 0.22;
}

.contact-form {
    padding: 44px 36px;
}

.contact-form::before {
    content: '🐾';
    position: absolute;
    right: 26px;
    top: 26px;
    font-size: 2.6rem;
    opacity: 0.18;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.contact-form:hover::before {
    transform: translateY(-6px) rotate(10deg);
    opacity: 0.26;
}

.phone-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.phone-card {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.12), rgba(0, 212, 255, 0.08));
    border: 1px solid rgba(79, 172, 254, 0.2);
    border-radius: 18px;
    padding: 20px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 16px;
}

.phone-card::after {
    content: '🐾';
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 1.4rem;
    opacity: 0.18;
}

.phone-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(79, 172, 254, 0.18);
}

.actions {
    display: flex;
    gap: 12px;
}

.actions i.fas.fa-phone {
    color: forestgreen;
}
.actions i.fab.fa-whatsapp {
    color: #25D366;
}
.actions i.fas.fa-sms {
    color: #0077B5;
}

.actions a {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 10px;
}
.actions i.fas, i.fab {
    font-size: 1.5rem;
}

.actions a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
}

.contact-form .form-group {
    margin-bottom: 22px;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #334b68;
}

.contact-form .input-wrapper {
    position: relative;
}

.contact-form .input-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: rgba(79, 172, 254, 0.6);
    pointer-events: none;
    z-index: 1;
}

.contact-form .form-group input {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(79, 172, 254, 0.2);
    background: rgba(255, 255, 255, 0.94);
    padding: 14px 18px 14px 50px;
    font-size: 0.95rem;
    color: #324b63;
    box-shadow: inset 0 0 0 rgba(79, 172, 254, 0);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.contact-form .form-group textarea {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(79, 172, 254, 0.2);
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1), rgba(0, 212, 255, 0.06));
    padding: 16px 18px;
    font-size: 0.95rem;
    color: #324b63;
    min-height: 150px;
    resize: vertical;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: #7893b3;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: rgba(79, 172, 254, 0.6);
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(79, 172, 254, 0.18);
    outline: none;
}

.contact-form .input-wrapper:focus-within i {
    transform: translateY(-50%) scale(1.15);
    color: var(--accent);
    opacity: 1;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent) 0%, #2196f3 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(79, 172, 254, 0.4);
}

.submit-btn i {
    font-size: 0.9rem;
}

.phone-details {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.phone-details .flag {
    width: 20px;
    height: auto;
}

.phone-details .name {
    font-weight: 600;
    color: #333;
}

.phone-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(79, 172, 254, 0.08);
    border-radius: 10px;
}

.hour-item .day {
    font-weight: 600;
    color: #333;
}

.hour-item .time {
    color: #666;
}

.hour-item.closed {
    background: rgba(255, 68, 68, 0.1);
}

.hour-item.closed .time {
    color: #ff4444;
}

.happy-dog-icon {
    width: 40px;
    height: 40px;
}

img {
    max-width: 100%;
    height: auto;
}

.footer {
    padding: 20px 0;
    background: #333;
    color: white;
    text-align: center;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    text-decoration: none;
    color: #2c3e50;
    background: rgba(79, 172, 254, 0.08);
    border: 1px solid rgba(79, 172, 254, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.social-link i {
    color: var(--accent);
    font-size: 1rem;
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(79, 172, 254, 0.35);
    box-shadow: 0 10px 20px rgba(79, 172, 254, 0.15);
}

@media (max-width: 768px) {
    .coverage {
        padding: 60px 0;
    }
    
    .coverage .section-title {
        font-size: 1.8rem;
        flex-direction: column;
    }
    
    .coverage-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .coverage-intro {
        font-size: 1rem;
        margin: 0 auto 40px;
        padding: 0 10px;
    }
    
    .coverage-card {
        padding: 24px;
    }
    
    .coverage-card::before {
        display: none;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .card-header img {
        width: 35px;
        height: 35px;
    }
    
    .card-header h3 {
        font-size: 1.2rem;
    }
    
    .area-details p {
        font-size: 0.95rem;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    
    .area-details p i {
        display: none;
    }
    
    .pet-map {
        padding: 12px;
        flex-direction: row;
        text-align: left;
        gap: 8px;
    }
    
    .pet-map i {
        font-size: 1.2rem;
    }
    
    .pet-map span {
        font-size: 0.9rem;
    }
    
    .detail-item {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .detail-item i {
        font-size: 1rem;
    }
    
    .map-container {
        order: -1;
    }
    
    .map-container iframe {
        height: 280px;
        border-radius: 12px;
    }
    
    .map-overlay {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .coverage {
        padding: 50px 0;
    }
    
    .coverage .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .coverage-intro {
        font-size: 0.95rem;
        margin: 0 auto 30px;
    }
    
    .coverage-card {
        padding: 20px 16px;
    }
    
    .card-header {
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .card-header img {
        width: 32px;
        height: 32px;
    }
    
    .card-header h3 {
        font-size: 1.1rem;
    }
    
    .area-details p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .pet-map {
        padding: 10px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .pet-map i {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .pet-map span {
        font-size: 0.85rem;
    }
    
    .detail-item {
        padding: 8px 10px;
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .detail-item i {
        font-size: 0.9rem;
        flex-shrink: 0;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .map-overlay {
        top: 10px;
        left: 10px;
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .map-overlay i {
        font-size: 1rem;
    }
}

.form-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    animation: slideIn 0.3s ease;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #2e7d32;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #c62828;
}

.form-message i {
    font-size: 1.2rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.sticky-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .sticky-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}