/* ================================
   Pablo Guardería Canina - Styles
   ================================ */

/* CSS Variables - Paleta de colores cálida y amigable */
:root {
    /* Colores principales */
    --primary: #E07A5F;
    /* Terracota cálido */
    --primary-dark: #C96A52;
    --primary-light: #F4A493;

    --secondary: #81B29A;
    /* Verde salvia */
    --secondary-dark: #6A9A82;
    --secondary-light: #A8D5BA;

    --accent: #F2CC8F;
    /* Dorado suave */
    --accent-dark: #E5B76A;

    /* Neutrales */
    --dark: #3D405B;
    /* Azul oscuro suave */
    --dark-light: #545775;
    --text: #4A4A4A;
    --text-light: #6B6B6B;
    --text-muted: #9A9A9A;

    --light: #F4F1DE;
    /* Crema */
    --white: #FFFFFF;
    --bg-soft: #FDF8F3;

    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(61, 64, 91, 0.08);
    --shadow-md: 0 4px 20px rgba(61, 64, 91, 0.12);
    --shadow-lg: 0 8px 40px rgba(61, 64, 91, 0.16);
    --shadow-xl: 0 20px 60px rgba(61, 64, 91, 0.2);

    /* Bordes */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Tipografía */
    --font-display: 'Quicksand', sans-serif;
    --font-body: 'Nunito', sans-serif;
}

/* Reset y base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    color: var(--text-light);
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn svg {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(224, 122, 95, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 122, 95, 0.45);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-nav {
    padding: 10px 24px;
    background: var(--primary);
    color: var(--white);
}

.btn-nav:hover {
    background: var(--primary-dark);
}

/* Section styling */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(224, 122, 95, 0.1), rgba(129, 178, 154, 0.1));
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-header h2 {
    margin-bottom: 16px;
}

/* ==================
   HEADER / NAV
   ================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark);
}

.logo img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text);
    position: relative;
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ==================
   HERO SECTION
   ================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #FFF5EE 0%, #FFE8D6 25%, #FDF8F3 50%, #F4F1DE 75%, #E8DCC8 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/hero-bg.png') center/cover no-repeat;
    opacity: 0.1;
    animation: bgFloat 20s ease-in-out infinite;
}

@keyframes bgFloat {

    0%,
    100% {
        transform: scale(1) translateX(0);
    }

    50% {
        transform: scale(1.05) translateX(-20px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(224, 122, 95, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(129, 178, 154, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--white);
    color: var(--secondary-dark);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    box-shadow: 0 6px 20px rgba(129, 178, 154, 0.2);
    margin-bottom: 28px;
    border: 2px solid var(--secondary-light);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(129, 178, 154, 0.2);
    }

    50% {
        box-shadow: 0 8px 30px rgba(129, 178, 154, 0.35);
    }
}

.hero-badge svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
}

.hero-text h1 {
    margin-bottom: 28px;
    line-height: 1.15;
}

.hero-text h1 .highlight {
    background: linear-gradient(135deg, #E07A5F 0%, #F2CC8F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-text>p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.8;
    color: var(--text);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(224, 122, 95, 0.18), rgba(224, 122, 95, 0.08));
    border-radius: var(--radius-lg);
    margin-bottom: 8px;
    transition: all var(--transition-normal);
}

.stat:hover .stat-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(224, 122, 95, 0.25), rgba(224, 122, 95, 0.12));
}

.stat-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    stroke: var(--primary);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Botón con glow */
.btn-glow {
    animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(224, 122, 95, 0.35);
    }

    50% {
        box-shadow: 0 6px 35px rgba(224, 122, 95, 0.6), 0 0 50px rgba(224, 122, 95, 0.25);
    }
}


/* Hero Image - Height Fix */
.hero-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    /* Removed overflow: hidden to allow floating cards to pop out */
    box-shadow: 0 25px 60px rgba(61, 64, 91, 0.22);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all var(--transition-slow);
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 30px 70px rgba(61, 64, 91, 0.28);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(224, 122, 95, 0.1);
}

.floating-card .emoji {
    font-size: 1.75rem;
}

.card-1 {
    top: 30px;
    left: -40px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 50px;
    right: -30px;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave svg {
    width: 100%;
    height: 140px;
}

/* ==================
   SERVICES SECTION
   ================== */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-soft) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(224, 122, 95, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    padding: 45px 35px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 30px rgba(61, 64, 91, 0.08);
    /* Removed overflow: hidden to fix cut-off popular badge */
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(61, 64, 91, 0.15);
    border-color: rgba(224, 122, 95, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    background: linear-gradient(135deg, #E07A5F 0%, #D86B56 50%, #C85C4D 100%);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 15px 45px rgba(224, 122, 95, 0.35);
    border: none;
}

.service-card.featured::before {
    opacity: 1;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
}

.service-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 25px 60px rgba(224, 122, 95, 0.45);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured li {
    color: var(--white);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.service-card.featured .service-icon svg {
    color: var(--white);
    stroke: var(--white);
}

.service-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: linear-gradient(135deg, #F2CC8F, #E5B76A);
    color: var(--dark);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(242, 204, 143, 0.4);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(224, 122, 95, 0.12), rgba(129, 178, 154, 0.12));
    border-radius: var(--radius-xl);
    font-size: 2.5rem;
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
    stroke: var(--primary);
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.service-card>p {
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-features {
    text-align: left;
    margin-bottom: 28px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.service-features li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--secondary);
    fill: var(--secondary);
}

.service-card.featured .service-features li {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.service-card.featured .service-features li svg {
    color: var(--white);
    fill: var(--white);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-price {
    margin-bottom: 24px;
}

.price-label {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.service-card.featured .price-label {
    color: rgba(255, 255, 255, 0.9);
}

.service-card .btn {
    width: 100%;
    padding: 14px 0;
    font-size: 1rem;
}

.service-card.featured .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.service-card.featured .btn-primary:hover {
    background: var(--light);
    transform: translateY(-2px);
}

/* ==================
   COVERAGE ZONE SECTION
   ================== */
.coverage-zone {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--light) 100%);
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.zone-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.zone-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.zone-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(129, 178, 154, 0.15), rgba(129, 178, 154, 0.05));
    border-radius: 50%;
}

.zone-icon svg {
    width: 32px;
    height: 32px;
    color: var(--secondary-dark);
    stroke: var(--secondary-dark);
}

.zone-card h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.zone-card p {
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.zone-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--light);
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: var(--radius-full);
}

.zone-badge.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.coverage-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.coverage-note svg {
    width: 24px;
    height: 24px;
    color: var(--secondary);
    stroke: var(--secondary);
    flex-shrink: 0;
}

.coverage-note p {
    margin: 0;
    font-size: 0.95rem;
}

.coverage-note strong {
    color: var(--primary);
}

.zone-card-link {
    display: block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.zone-link-arrow {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-normal);
}

.zone-card-link:hover .zone-link-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ==================
   REQUIREMENTS SECTION
   ================== */
.requirements {
    padding: 100px 0;
    background: var(--bg-soft);
}

.requirements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.requirements-text h2 {
    margin-bottom: 16px;
}

.requirements-text>p {
    margin-bottom: 32px;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.requirements-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.req-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--white), var(--light));
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(224, 122, 95, 0.1);
}

.req-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    stroke: var(--primary);
}

.requirements-list li strong {
    display: block;
    font-family: var(--font-display);
    color: var(--dark);
    margin-bottom: 4px;
}

.requirements-list li p {
    font-size: 0.9rem;
    margin: 0;
}

.requirements-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.requirements-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* ==================
   GALLERY SECTION
   ================== */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 64, 91, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
}

/* ==================
   ABOUT SECTION
   ================== */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light) 0%, var(--bg-soft) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    font-family: var(--font-display);
    font-weight: 600;
}

.about-badge svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    stroke: var(--primary);
}

.about-badge .emoji {
    font-size: 1.5rem;
}

.about-text h2 {
    margin-bottom: 24px;
}

.about-text>p {
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(224, 122, 95, 0.1);
    transition: var(--transition-normal);
}

.about-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.about-feature .feature-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(224, 122, 95, 0.1), rgba(129, 178, 154, 0.08));
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.about-feature .feature-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
    stroke: var(--primary);
}

.about-feature .emoji {
    font-size: 1.5rem;
}

.about-feature strong {
    display: block;
    font-family: var(--font-display);
    color: var(--dark);
}

.about-feature span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==================
   FAQ SECTION
   ================== */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-question {
    padding: 24px;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 700;
    margin: 0;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--primary);
    border-radius: 2px;
}

.faq-toggle::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.faq-toggle::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-item.active .faq-toggle::after {
    transform: translateX(-50%) rotate(90deg);
    /* Makes it a minus */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--bg-soft);
}

.faq-answer p {
    padding: 24px;
    margin: 0;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* Arbitrary large height to allow expansion */
}

/* ==================
   TESTIMONIALS SECTION
   ================== */
.testimonials {
    padding: 100px 0;
    background: var(--bg-soft);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-display);
    color: var(--dark);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==================
   CTA SECTION
   ================== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-content {
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

/* ==================
   CONTACT SECTION
   ================== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
}

.contact-icon svg {
    width: 32px;
    height: 32px;
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
}

.contact-icon.phone {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
}

.contact-icon.location {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.contact-card h3 {
    margin-bottom: 8px;
}

.contact-card p {
    margin-bottom: 16px;
}

.contact-action {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--primary);
}

/* ==================
   FOOTER
   ================== */
.footer {
    padding: 60px 0 30px;
    background: var(--dark);
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand img {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-credit {
    font-size: 0.85rem !important;
}

.footer-credit a {
    color: var(--primary-light);
    font-weight: 600;
    transition: var(--transition-fast);
}

.footer-credit a:hover {
    color: var(--accent);
}

/* ==================
   WHATSAPP FLOAT
   ================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border-radius: 50%;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: var(--transition-normal);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    animation: whatsappRing 2s ease-in-out infinite;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 6px 40px rgba(37, 211, 102, 0.7);
    }
}

@keyframes whatsappRing {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* ==================
   RESPONSIVE
   ================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .service-card.featured {
        transform: scale(1);
    }

    .zones-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item.large {
        grid-row: span 1;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ==================
   RESPONSIVE - TABLETS
   ================== */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .service-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card.featured {
        transform: scale(1);
    }

    .service-card.featured:hover {
        transform: translateY(-8px);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero-text>p,
    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image-wrapper img {
        height: 350px;
    }

    .floating-card {
        display: none;
    }

    .requirements-content {
        grid-template-columns: 1fr;
    }

    .requirements-image {
        order: -1;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .seo-article article {
        padding: 30px 20px;
    }
}

/* ==================
   SEO ARTICLE SECTION
   ================== */
.seo-article {
    padding: 80px 0;
    background: var(--bg-soft);
}

.seo-article article {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.seo-article h2 {
    color: var(--dark);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--primary);
}

.seo-article h3 {
    color: var(--dark);
    margin: 32px 0 16px;
    font-size: 1.4rem;
}

.seo-article p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.seo-article p:last-child {
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}