/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #ff6b9d;
    --primary-purple: #c44569;
    --secondary-orange: #ff7b54;
    --secondary-yellow: #ffb142;
    --accent-blue: #4834d4;
    --accent-light: #a29bfe;
    --accent-cyan: #00d2d3;
    --accent-magenta: #ff00ff;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;

    /* Modern Gradients */
    --gradient-primary: linear-gradient(135deg, #ff6b9d 0%, #c44569 50%, #ff7b54 100%);
    --gradient-secondary: linear-gradient(135deg, #ff7b54, #ffb142, #ff6b9d);
    --gradient-accent: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --gradient-warm: linear-gradient(135deg, #ffecd2 0%, #fcb69f 50%, #ffecd2 100%);
    --gradient-aurora: linear-gradient(135deg, #ff6b9d 0%, #c44569 25%, #667eea 50%, #764ba2 75%, #f093fb 100%);
    --gradient-sunset: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gradient-ocean: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-candy: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #ffb142 100%);
    --gradient-mesh:
        radial-gradient(at 40% 20%, hsla(328, 100%, 74%, 0.8) 0px, transparent 50%),
        radial-gradient(at 80% 0%, hsla(28, 100%, 74%, 0.6) 0px, transparent 50%),
        radial-gradient(at 0% 50%, hsla(343, 100%, 76%, 0.7) 0px, transparent 50%),
        radial-gradient(at 80% 50%, hsla(260, 100%, 84%, 0.5) 0px, transparent 50%),
        radial-gradient(at 0% 100%, hsla(22, 100%, 77%, 0.6) 0px, transparent 50%);

    /* Shadows */
    --shadow-soft: 0 10px 40px rgba(255, 107, 157, 0.2);
    --shadow-medium: 0 20px 60px rgba(255, 107, 157, 0.3);
    --shadow-strong: 0 30px 80px rgba(255, 107, 157, 0.4);
    --shadow-glow: 0 0 40px rgba(255, 107, 157, 0.5);
    --shadow-neon: 0 0 20px rgba(255, 107, 157, 0.8), 0 0 40px rgba(255, 107, 157, 0.4), 0 0 60px rgba(255, 107, 157, 0.2);

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.25);
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--gradient-warm);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #ffecd2, #fcb69f);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-aurora);
    background-clip: padding-box;
}

/* Contenedor */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navegación */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(255, 107, 157, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.nav-logo i {
    font-size: 2rem;
    -webkit-text-fill-color: initial;
    color: var(--primary-pink);
    animation: pawBounce 2s ease-in-out infinite;
}

@keyframes pawBounce {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-10deg) scale(1.1); }
    75% { transform: rotate(10deg) scale(1.1); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 3px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-aurora);
    filter: blur(4px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-menu a:hover::before,
.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-pink);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

.nav-toggle:hover span {
    box-shadow: var(--shadow-glow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-aurora);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.6;
    z-index: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatRotate 8s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 107, 157, 0.1));
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    background: linear-gradient(135deg, rgba(255, 183, 66, 0.2), rgba(255, 255, 255, 0.1));
}

.shape-3 {
    width: 120px;
    height: 120px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(255, 255, 255, 0.1));
}

.shape-4 {
    width: 60px;
    height: 60px;
    top: 30%;
    left: 70%;
    animation-delay: 1s;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(255, 255, 255, 0.1));
}

@keyframes floatRotate {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    color: var(--white);
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: 4.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.title-line {
    display: block;
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.title-line.special {
    background: linear-gradient(135deg, #ffb142, #fee140, #ff7b54);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1), textGlow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 177, 66, 0.5));
}

@keyframes textGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 177, 66, 0.5)); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 177, 66, 0.8)); }
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    line-height: 1.8;
}

.hero-address {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1.2s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-address i {
    color: var(--accent);
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1.5s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-sunset);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(250, 112, 154, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(250, 112, 154, 0.5), 0 0 30px rgba(250, 112, 154, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-pink);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 107, 157, 0.2);
    background: var(--white);
}

.btn-sebastian {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-sebastian:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 107, 157, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-dog-container {
    position: relative;
    width: 350px;
    height: 350px;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}

.hero-dog {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9rem;
    color: var(--white);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        inset 0 0 60px rgba(255, 255, 255, 0.1);
    animation: pulse 3s ease-in-out infinite, glow 4s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), inset 0 0 60px rgba(255, 255, 255, 0.1), 0 0 30px rgba(255, 107, 157, 0.3); }
    50% { box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), inset 0 0 60px rgba(255, 255, 255, 0.1), 0 0 60px rgba(255, 107, 157, 0.5); }
}

/* Hero Background Image - Full coverage with elegant transparency */
.hero-bg-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 0.45;
    animation: slowPan 25s ease-in-out infinite alternate;
}

@keyframes slowPan {
    0% {
        transform: scale(1.15) translateX(-3%);
    }
    100% {
        transform: scale(1.15) translateX(3%);
    }
}

/* Gradient overlay for elegant blend */
.hero-bg-slideshow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 107, 157, 0.35) 0%,
        rgba(240, 147, 251, 0.25) 30%,
        rgba(118, 75, 162, 0.2) 70%,
        rgba(102, 126, 234, 0.25) 100%);
    z-index: 1;
    pointer-events: none;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 55px;
    height: 55px;
    background: var(--gradient-sunset);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    box-shadow: 0 10px 30px rgba(250, 112, 154, 0.5);
}

.floating-element.heart {
    top: -10px;
    right: 20px;
    background: var(--gradient-sunset);
    animation: floatHeart 4s ease-in-out infinite;
}

.floating-element.star {
    bottom: 30px;
    right: -15px;
    background: var(--gradient-ocean);
    animation: floatStar 5s ease-in-out infinite;
    animation-delay: 1s;
}

.floating-element.paw {
    bottom: -5px;
    left: 20px;
    background: var(--gradient-candy);
    animation: floatPaw 4.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes floatHeart {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

@keyframes floatStar {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-12px) rotate(-15deg) scale(1.1); }
}

@keyframes floatPaw {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(15deg); }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Secciones */
section {
    padding: 7rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 4px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 1rem auto 0;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, var(--white) 0%, #fef8f8 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(255, 236, 210, 0.5), transparent);
}

.services-carousel {
    position: relative;
    overflow: visible;
    padding: 2rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 2rem;
    flex-wrap: nowrap;
}

.services-grid .service-card {
    flex: 0 0 280px;
    min-width: 260px;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-aurora);
    background-size: 200% 100%;
    animation: gradientSlide 3s linear infinite;
}

@keyframes gradientSlide {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-warm);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover::after {
    opacity: 0.3;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 107, 157, 0.25);
    border-color: rgba(255, 107, 157, 0.3);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-aurora);
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-card ul {
    list-style: none;
    text-align: left;
    position: relative;
    z-index: 1;
}

.service-card li {
    padding: 0.4rem 0;
    color: var(--medium-gray);
    position: relative;
    padding-left: 1.8rem;
    transition: all 0.3s ease;
}

.service-card li::before {
    content: '🐾';
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.service-card:hover li {
    color: var(--dark-gray);
}

.service-card:hover li::before {
    transform: scale(1.2);
}

/* About Section */
.about {
    background: var(--gradient-mesh), var(--gradient-warm);
    position: relative;
    padding: 5rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    color: var(--dark-gray);
}

.about-text .section-header {
    margin-bottom: 1.5rem;
}

.about-text .section-header h2 {
    font-size: 2.2rem;
}

.about-description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.stat:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.25);
    background: var(--white);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Fredoka One', cursive;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin-top: 0.5rem;
    font-weight: 600;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img-container {
    position: relative;
    width: 250px;
    height: 250px;
}

.about-img {
    width: 100%;
    height: 100%;
    background: var(--gradient-aurora);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.4);
    animation: pulse 3s ease-in-out infinite, floatSlow 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.about-img::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    animation: shine 4s ease-in-out infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.about-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.decoration-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--gradient-sunset);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    animation: bounce 2.5s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(250, 112, 154, 0.4);
}

.decoration-item:nth-child(1) {
    top: 5%;
    right: 5%;
    animation-delay: 0s;
}

.decoration-item:nth-child(2) {
    bottom: 5%;
    left: 5%;
    animation-delay: 1.25s;
    background: var(--gradient-candy);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.1);
    }
}

/* Happy Dogs Section */
.happy-dogs {
    background: linear-gradient(180deg, #fef8f8 0%, var(--white) 50%, #fef8f8 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.happy-dogs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.3;
}

.happy-dogs .section-header {
    margin-bottom: 2rem;
}

.happy-dogs-gallery {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
    perspective: 1000px;
    gap: 1.5rem;
}

.dog-card {
    position: absolute;
    width: 250px;
    height: 340px;
    border-radius: 24px;
    overflow: visible;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 4px solid transparent;
}

/* Glowing background behind each card */
.dog-card::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    border-radius: 24px;
    z-index: -1;
    opacity: 0.6;
    filter: blur(25px);
    transition: all 0.6s ease;
}

.dog-card:nth-child(1)::after { background: linear-gradient(135deg, #ff6b9d, #ff7b54); }
.dog-card:nth-child(2)::after { background: linear-gradient(135deg, #667eea, #764ba2); }
.dog-card:nth-child(3)::after { background: linear-gradient(135deg, #f093fb, #f5576c); }
.dog-card:nth-child(4)::after { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.dog-card:nth-child(5)::after { background: linear-gradient(135deg, #fa709a, #fee140); }

.dog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.dog-card .dog-number {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    color: var(--white);
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Card positions - controlled by JS via data-position attribute */
.dog-card[data-position="0"] { transform: translateX(-320px) scale(0.85) rotateY(8deg); z-index: 1; }
.dog-card[data-position="1"] { transform: translateX(-160px) scale(0.9) rotateY(4deg); z-index: 2; }
.dog-card[data-position="2"] { transform: translateX(0) scale(1); z-index: 5; }
.dog-card[data-position="3"] { transform: translateX(160px) scale(0.9) rotateY(-4deg); z-index: 2; }
.dog-card[data-position="4"] { transform: translateX(320px) scale(0.85) rotateY(-8deg); z-index: 1; }

/* Hover effect - scale up in place without moving */
.dog-card:hover {
    z-index: 20 !important;
    border-color: var(--primary-pink);
}

.dog-card[data-position="0"]:hover { transform: translateX(-320px) scale(1.05) rotateY(8deg); }
.dog-card[data-position="1"]:hover { transform: translateX(-160px) scale(1.05) rotateY(4deg); }
.dog-card[data-position="2"]:hover { transform: translateX(0) scale(1.12); }
.dog-card[data-position="3"]:hover { transform: translateX(160px) scale(1.05) rotateY(-4deg); }
.dog-card[data-position="4"]:hover { transform: translateX(320px) scale(1.05) rotateY(-8deg); }

.dog-card:hover::after {
    opacity: 1;
    filter: blur(40px);
}

.dog-card:hover img {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.dog-card:hover .dog-number {
    opacity: 1;
    transform: translateY(0);
}

/* Center card (position 2) is always more prominent */
.dog-card[data-position="2"]::after {
    opacity: 0.8;
}

.dog-card[data-position="2"] .dog-number {
    opacity: 0.7;
    transform: translateY(0);
}

/* Happy Dogs Stats */
.happy-dogs-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.happy-stat {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.15);
    transition: all 0.3s ease;
}

.happy-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.25);
}

.happy-stat i {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.happy-stat span {
    font-weight: 700;
    color: var(--dark-gray);
}

/* Pet Care Info Section */
/* Pet Care Grid Section */
.pet-care {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, #fef5f7 100%);
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.care-item {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.care-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.2);
    border-color: rgba(255, 107, 157, 0.3);
}

.care-item-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-aurora);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease;
}

.care-item:hover .care-item-icon {
    transform: scale(1.1) rotate(5deg);
}

.care-item h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 0.8rem;
}

.care-item p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.care-item-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 107, 157, 0.1);
    color: var(--primary-pink);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 968px) {
    .care-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .care-grid {
        grid-template-columns: 1fr;
    }

    .care-item {
        padding: 1.5rem;
    }
}

/* Dog Breeds Carousel Section */
.breeds-section {
    background: var(--gradient-mesh), var(--gradient-warm);
    overflow: hidden;
    position: relative;
    padding: 5rem 0;
}

.breeds-carousel {
    position: relative;
    height: 160px;
    overflow: hidden;
    margin-top: 2rem;
}

.breeds-track {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    align-items: center;
    gap: 2rem;
    padding: 0 1rem;
}

.breeds-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}

.breeds-fade-left {
    left: 0;
    background: linear-gradient(to right, rgba(255, 236, 210, 1) 0%, rgba(255, 236, 210, 0.8) 30%, transparent 100%);
}

.breeds-fade-right {
    right: 0;
    background: linear-gradient(to left, rgba(255, 236, 210, 1) 0%, rgba(255, 236, 210, 0.8) 30%, transparent 100%);
}

.breed-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    min-width: 140px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.1);
    cursor: default;
}

.breed-item:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--primary-pink);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.25);
    background: var(--white);
}

.breed-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-aurora);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
}

.breed-emoji {
    background: linear-gradient(135deg, #fff5f7 0%, #fff0f3 100%);
    border: 2px solid rgba(255, 107, 157, 0.3);
}

.breed-emoji span {
    font-size: 2rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.breed-item:hover .breed-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 30px rgba(255, 107, 157, 0.4);
}

.breed-name {
    font-weight: 700;
    color: var(--dark-gray);
    font-size: 0.9rem;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .breeds-carousel {
        height: 140px;
    }

    .breed-item {
        min-width: 120px;
        padding: 1rem 1.2rem;
    }

    .breed-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .breed-emoji span {
        font-size: 1.7rem;
    }

    .breeds-fade {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .breeds-carousel {
        height: 130px;
    }

    .breed-item {
        min-width: 100px;
        padding: 0.8rem 1rem;
    }

    .breed-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .breed-emoji span {
        font-size: 1.5rem;
    }

    .breed-name {
        font-size: 0.8rem;
    }

    .breeds-fade {
        width: 50px;
    }
}

/* Trust CTA Section */
.trust-cta {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #1e272e 0%, #2d3436 50%, #1e272e 100%);
}

.trust-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 107, 157, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.trust-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
}

/* Circle background behind the image */
.trust-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-aurora);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-image {
    position: relative;
    width: 380px;
    height: 420px;
    border-radius: 24px;
    overflow: visible;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    cursor: pointer;
}

.trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 24px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Hover only on image - image grows, shadow intensifies */
.trust-image:hover {
    transform: scale(1.1);
}

.trust-image:hover img {
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.45);
}

.trust-image:hover ~ .trust-circle {
    transform: translate(-50%, -50%) scale(1.05);
}

.trust-image:hover ~ .trust-glow {
    opacity: 0.9;
    filter: blur(65px);
}

/* Text fades slightly when image is hovered */
.trust-image-wrapper:has(.trust-image:hover) + .trust-text {
    opacity: 0.7;
}

.trust-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: var(--gradient-aurora);
    filter: blur(50px);
    opacity: 0.5;
    z-index: 0;
    transition: all 0.6s ease;
    animation: glowPulse 4s ease-in-out infinite;
}

.trust-text {
    color: var(--white);
    transition: opacity 0.4s ease;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.trust-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--gradient-sunset);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(250, 112, 154, 0.3);
}

.trust-text h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.trust-text h2 .highlight {
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.trust-text h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-sunset);
    border-radius: 4px;
}

.trust-description {
    font-size: 1.15rem;
    line-height: 1.9;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.trust-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.trust-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.trust-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.trust-feature i {
    font-size: 1.3rem;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-feature span {
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Responsive Trust CTA */
@media (max-width: 768px) {
    .trust-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .trust-image-wrapper {
        min-height: 380px;
    }

    .trust-image {
        width: 280px;
        height: 320px;
    }

    .trust-circle {
        width: 220px;
        height: 220px;
    }

    .trust-glow {
        width: 260px;
        height: 260px;
    }

    .trust-text h2 {
        font-size: 2.2rem;
    }

    .trust-features {
        justify-content: center;
    }

    .trust-feature {
        padding: 0.6rem 1rem;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .trust-text h2 {
        font-size: 1.8rem;
    }

    .trust-image-wrapper {
        min-height: 320px;
    }

    .trust-image {
        width: 220px;
        height: 260px;
    }

    .trust-circle {
        width: 180px;
        height: 180px;
    }

    .trust-glow {
        width: 200px;
        height: 200px;
    }

    .trust-features {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Contact Section */
.contact {
    background: var(--gradient-aurora);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    padding: 6rem 0;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.4;
}

.contact-hero {
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact-header {
    margin-bottom: 3rem;
    color: var(--white);
}

.contact-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-header h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 500px;
    margin: 0 auto;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    text-decoration: none;
    color: var(--dark-gray);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.contact-card.whatsapp:hover {
    border-color: #25D366;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(255, 255, 255, 1));
}

.contact-card.instagram:hover {
    border-color: #E4405F;
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.1), rgba(255, 255, 255, 1));
}

.contact-card.location:hover {
    border-color: var(--primary-pink);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-card.whatsapp .contact-card-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-card.instagram .contact-card-icon {
    background: linear-gradient(135deg, #E4405F, #833AB4, #F77737);
}

.contact-card.location .contact-card-icon {
    background: var(--gradient-primary);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card-content {
    text-align: left;
}

.contact-card-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--dark-gray);
}

.contact-card-content p {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-bottom: 0.3rem;
}

.contact-card-action {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-pink);
    transition: color 0.3s ease;
}

.contact-card.whatsapp:hover .contact-card-action {
    color: #25D366;
}

.contact-card.instagram:hover .contact-card-action {
    color: #E4405F;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d3436 0%, #1e272e 100%);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-aurora);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h4 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Fredoka One', cursive;
    font-size: 1.6rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2.2rem;
    -webkit-text-fill-color: initial;
    color: var(--primary-pink);
}

.footer-section p {
    color: #b2bec3;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: #b2bec3;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary-pink);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--gradient-aurora);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.footer-social a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.5);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.footer-contact i {
    color: var(--primary-pink);
    width: 22px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: #b2bec3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-medium);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-dog-container {
        width: 280px;
        height: 280px;
    }

    .hero-bg-slide.active {
        opacity: 0.35;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .services-grid .service-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: 280px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    /* Happy dogs mobile */
    .happy-dogs-gallery {
        min-height: 400px;
    }

    .dog-card {
        width: 220px;
        height: 300px;
    }

    .dog-card[data-position="0"] { transform: translateX(-180px) scale(0.7) rotateY(15deg); }
    .dog-card[data-position="1"] { transform: translateX(-90px) scale(0.8) rotateY(10deg); }
    .dog-card[data-position="2"] { transform: translateX(0) scale(0.9); }
    .dog-card[data-position="3"] { transform: translateX(90px) scale(0.8) rotateY(-10deg); }
    .dog-card[data-position="4"] { transform: translateX(180px) scale(0.7) rotateY(-15deg); }

    .dog-card[data-position="0"]:hover { transform: translateX(-180px) scale(0.85) rotateY(15deg); }
    .dog-card[data-position="1"]:hover { transform: translateX(-90px) scale(0.95) rotateY(10deg); }
    .dog-card[data-position="2"]:hover { transform: translateX(0) scale(1.02); }
    .dog-card[data-position="3"]:hover { transform: translateX(90px) scale(0.95) rotateY(-10deg); }
    .dog-card[data-position="4"]:hover { transform: translateX(180px) scale(0.85) rotateY(-15deg); }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-dog-container {
        width: 220px;
        height: 220px;
    }

    .hero-bg-slide.active {
        opacity: 0.3;
    }

    .hero-dog {
        font-size: 6rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* Happy dogs small screens */
    .dog-card {
        width: 180px;
        height: 250px;
    }

    .dog-card .dog-number {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: rgba(255, 107, 157, 0.3);
    color: var(--dark-gray);
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 3px solid var(--primary-pink);
    outline-offset: 2px;
}

/* Chatbot */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chatbot-trigger {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-aurora);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
}

.chatbot-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.5);
}

.chatbot-mascot {
    font-size: 2rem;
    color: var(--white);
    animation: mascotBounce 2s ease-in-out infinite;
}

@keyframes mascotBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(-5deg); }
    75% { transform: translateY(-3px) rotate(5deg); }
}

.chatbot-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-primary);
    animation: chatPulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes chatPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

.chatbot-window {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 380px;
    height: 500px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chatbot-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    background: var(--gradient-aurora);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chatbot-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.chatbot-info {
    flex: 1;
}

.chatbot-info h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.chatbot-status {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.chatbot-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chatbot-close {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.chatbot-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    max-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chatbot-message {
    display: flex;
    gap: 0.8rem;
    animation: messageIn 0.4s ease-out;
}

@keyframes messageIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
    flex-shrink: 0;
}

.chatbot-message.user .message-avatar {
    background: var(--gradient-ocean);
}

.message-content {
    background: #f3f4f6;
    padding: 1rem 1.2rem;
    border-radius: 18px;
    border-top-left-radius: 4px;
    max-width: 80%;
}

.chatbot-message.user .message-content {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 18px;
    border-top-right-radius: 4px;
}

.message-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--dark-gray);
}

.chatbot-message.user .message-content p {
    color: var(--white);
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 0.5rem 0;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--medium-gray);
    border-radius: 50%;
    animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
}

.chatbot-options {
    padding: 0.8rem 1rem 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    border-top: 1px solid #f3f4f6;
    max-height: 180px;
    overflow-y: auto;
}

.chatbot-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 0.5rem;
    background: #f8f9fa;
    border: 1px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.chatbot-option:hover {
    background: var(--white);
    border-color: var(--primary-pink);
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.15);
}

.chatbot-option i {
    font-size: 1rem;
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.chatbot-option[data-option="contact"] i {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.chatbot-option[data-option="gallery"] i {
    background: var(--gradient-candy);
}

.chatbot-option[data-option="safety"] i {
    background: var(--gradient-ocean);
}

.chatbot-option span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--dark-gray);
    line-height: 1.2;
}

/* Chatbot scroll to top button */
.chatbot-scroll-top {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    transition: all 0.3s ease;
    z-index: 10;
}

.chatbot-scroll-top.visible {
    display: flex;
}

.chatbot-scroll-top:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.5);
}

/* Yes/No options for follow-up */
.chatbot-followup {
    display: flex;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    justify-content: center;
}

.chatbot-followup-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    border: 2px solid transparent;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.chatbot-followup-btn.yes {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
}

.chatbot-followup-btn.yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.chatbot-followup-btn.no {
    background: var(--white);
    color: var(--medium-gray);
    border-color: #e0e0e0;
}

.chatbot-followup-btn.no:hover {
    border-color: var(--primary-pink);
    color: var(--primary-pink);
    transform: translateY(-3px);
}

/* Intro animation - Notification bubble */
.chatbot-intro {
    position: fixed;
    bottom: 95px;
    right: 30px;
    padding: 0.9rem 1.2rem;
    background: var(--white);
    border-radius: 16px 16px 4px 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(255, 107, 157, 0.15);
    z-index: 9998;
    animation: introSlide 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid rgba(255, 107, 157, 0.2);
}

.chatbot-intro::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: var(--white);
    border-right: 1px solid rgba(255, 107, 157, 0.2);
    border-bottom: 1px solid rgba(255, 107, 157, 0.2);
    transform: rotate(45deg);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.05);
}

.chatbot-intro.fade-out {
    animation: introFadeOut 0.4s ease-out forwards;
}

@keyframes introSlide {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes introFadeOut {
    to {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }
}

.intro-mascot {
    width: 40px;
    height: 40px;
    background: var(--gradient-aurora);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    animation: introMascot 0.6s ease-out;
    flex-shrink: 0;
}

@keyframes introMascot {
    0% { transform: scale(0) rotate(-90deg); }
    60% { transform: scale(1.1) rotate(5deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.intro-text {
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .chatbot-container {
        bottom: 20px;
        right: 20px;
    }

    .chatbot-trigger {
        width: 60px;
        height: 60px;
    }

    .chatbot-window {
        width: calc(100vw - 40px);
        right: -10px;
        bottom: 80px;
        height: 450px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   DENTAL HIGHLIGHT SECTION - FEATURED
======================================== */
.dental-highlight {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.dental-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(240, 147, 251, 0.05) 0%, transparent 70%);
    animation: bgPulse 10s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.dental-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.dental-hero-text {
    color: var(--white);
}

.dental-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--gradient-sunset);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 157, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 107, 157, 0.8); }
}

.dental-hero-text h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.dental-hero-text h2 .highlight {
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dental-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.dental-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.dental-feature {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.dental-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: rgba(255, 107, 157, 0.3);
}

.dental-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-aurora);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
}

.dental-feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.dental-feature-text p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.btn-dental {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: var(--gradient-sunset);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
}

.btn-dental:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(255, 107, 157, 0.6);
}

.dental-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dental-showcase {
    position: relative;
    text-align: center;
}

.dental-tooth-icon {
    position: relative;
    width: 200px;
    height: 200px;
    background: var(--gradient-aurora);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: toothFloat 4s ease-in-out infinite;
    box-shadow: 0 30px 80px rgba(255, 107, 157, 0.4);
}

.dental-tooth-icon > i {
    font-size: 5rem;
    color: var(--white);
}

@keyframes toothFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.tooth-sparkle {
    position: absolute;
    color: #FFD700;
    animation: sparkle 2s ease-in-out infinite;
}

.sparkle-1 { top: 10px; right: 20px; animation-delay: 0s; }
.sparkle-2 { top: 50%; left: 0; animation-delay: 0.5s; }
.sparkle-3 { bottom: 20px; right: 30px; animation-delay: 1s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.2); }
}

.dental-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.dental-stat {
    text-align: center;
    color: var(--white);
}

.dental-stat .stat-number {
    display: block;
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dental-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Dental Section */
@media (max-width: 968px) {
    .dental-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .dental-hero-text h2 {
        font-size: 2.5rem;
    }

    .dental-feature {
        justify-content: center;
    }

    .dental-feature:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .dental-highlight {
        padding: 4rem 0;
    }

    .dental-hero-text h2 {
        font-size: 2rem;
    }

    .dental-tooth-icon {
        width: 150px;
        height: 150px;
    }

    .dental-tooth-icon > i {
        font-size: 3.5rem;
    }

    .dental-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ========================================
   ABOUT SEBASTIÁN SECTION - POWERFUL GRADIENT
======================================== */
/* Sebastián Preview Section */
.about-sebastian {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.about-sebastian::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 107, 157, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(118, 75, 162, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.sebastian-preview {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sebastian-photo-wrapper {
    position: relative;
    flex-shrink: 0;
}

.sebastian-photo-wrapper img {
    width: 280px;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.sebastian-photo-wrapper::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-aurora);
    border-radius: 23px;
    z-index: -1;
    opacity: 0.7;
}

.sebastian-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background: var(--gradient-aurora);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.sebastian-info {
    flex: 1;
}

.sebastian-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 107, 157, 0.2);
    color: var(--primary-pink);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.sebastian-info h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #fff 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.sebastian-role {
    font-size: 1rem;
    color: rgba(255, 107, 157, 0.9);
    font-weight: 600;
    margin-bottom: 1rem;
}

.sebastian-tagline {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
}

/* Responsive Sebastián Preview */
@media (max-width: 768px) {
    .sebastian-preview {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .sebastian-photo-wrapper img {
        width: 220px;
        height: 260px;
    }

    .sebastian-info h2 {
        font-size: 2rem;
    }
}

/* ========================================
   BEFORE/AFTER SECTION - CAROUSEL
======================================== */
.before-after {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.before-after .section-header h2,
.before-after .section-header p {
    color: var(--white);
}

.before-after .section-header p {
    opacity: 0.8;
}

.ba-carousel-wrapper {
    position: relative;
    margin-bottom: 3rem;
}

.ba-gallery {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 2rem 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ba-gallery::-webkit-scrollbar {
    display: none;
}

.ba-card {
    flex: 0 0 320px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
    transform: scale(0.9);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.ba-card:hover {
    opacity: 1;
    transform: scale(1);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.4),
        0 15px 40px rgba(255, 107, 157, 0.3);
}

.ba-card.active {
    opacity: 1;
    transform: scale(1.05);
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.5),
        0 20px 50px rgba(255, 107, 157, 0.4);
}

.ba-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ba-card:hover img {
    transform: scale(1.08);
}

.ba-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ba-card:hover .ba-overlay {
    opacity: 1;
}

.ba-label {
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.6rem 1.8rem;
    background: var(--gradient-sunset);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
    transition: transform 0.3s ease;
}

.ba-card:hover .ba-label {
    transform: translateY(-5px);
}

/* Navigation Buttons */
.ba-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.ba-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ba-nav-btn:hover {
    background: var(--gradient-sunset);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
}

.ba-counter {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    min-width: 60px;
    text-align: center;
}

.ba-cta {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(240, 147, 251, 0.2));
    border-radius: 24px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ba-cta p {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.ba-cta .btn-primary {
    background: var(--gradient-sunset);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
}

.ba-cta .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(255, 107, 157, 0.5);
}

/* Responsive Before/After */
@media (max-width: 768px) {
    .ba-card {
        flex: 0 0 280px;
    }

    .ba-card img {
        height: 350px;
    }

    .ba-cta p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .ba-card {
        flex: 0 0 260px;
    }

    .ba-card img {
        height: 320px;
    }

    .ba-cta {
        padding: 1.5rem;
    }

    .ba-cta p {
        font-size: 1.1rem;
    }
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    overflow: hidden;
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: var(--white);
}

.testimonials .section-header p {
    opacity: 0.8;
}

.testimonials-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 2rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 350px;
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    scroll-snap-align: start;
    transition: all 0.4s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(255, 107, 157, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-aurora);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.2rem;
}

.testimonial-info span {
    font-size: 0.9rem;
    color: var(--primary-pink);
    font-weight: 600;
}

.testimonial-rating {
    margin-left: auto;
    color: #FFD700;
    font-size: 0.9rem;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    font-style: italic;
}

.testimonial-service {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(240, 147, 251, 0.1));
    border-radius: 50px;
    color: var(--primary-pink);
    font-weight: 600;
    font-size: 0.85rem;
}

.testimonial-service i {
    font-size: 1rem;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav-btn:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--gradient-primary);
    width: 30px;
    border-radius: 6px;
}

/* Responsive Testimonials */
@media (max-width: 968px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: 320px;
    }
}

@media (max-width: 680px) {
    .testimonial-card {
        flex: 0 0 calc(100% - 2rem);
        min-width: 280px;
    }

    .testimonial-rating {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
    }
}
