:root {
    --primary: #2b3a8c;
    --primary-light: #4a5db5;
    --primary-dark: #1a245c;
    --secondary: #47b9e6;
    --secondary-light: #72cbf0;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-white: #ffffff;
    --bg-gray: #f8fafc;
    --bg-kids: #f0f9ff;
    
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-pill: 100px;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(43, 58, 140, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(43, 58, 140, 0.15);
    --shadow-glow: 0 0 25px rgba(71, 185, 230, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-dark);
    line-height: 1.2;
}

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-white { color: white !important; }
.bg-gray { background-color: var(--bg-gray); }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--bg-white);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.loading-logo {
    width: 120px;
    margin-bottom: 30px;
}

.pulse-anim {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.loading-bar-container {
    width: 250px;
    height: 6px;
    background: var(--bg-gray);
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.loading-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transition: width 0.4s ease;
}

.loading-text {
    margin-top: 15px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 1px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    height: 45px;
    width: auto;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a:not(.btn) {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.hover-underline:hover::after {
    width: 100%;
}

.close-menu {
    display: none;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--primary);
    cursor: pointer;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
    z-index: 1001;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(43, 58, 140, 0.3);
    background: var(--primary-light);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(71, 185, 230, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-glow {
    animation: btnGlow 2s infinite alternate;
}

@keyframes btnGlow {
    from { box-shadow: 0 0 10px rgba(71, 185, 230, 0.5); }
    to { box-shadow: 0 0 25px rgba(71, 185, 230, 0.8), 0 0 10px rgba(43, 58, 140, 0.5); }
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.15rem;
}

/* Sound Toggle */
.sound-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-white);
    color: var(--primary);
    border: none;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 990;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sound-toggle:hover {
    transform: scale(1.1);
    background: var(--primary);
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(244,247,251,0.85) 100%);
    z-index: -1;
    backdrop-filter: blur(5px);
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.float-item {
    position: absolute;
    color: var(--secondary-light);
    font-size: 2rem;
    opacity: 0.6;
    animation: floatItem 6s ease-in-out infinite;
}

@keyframes floatItem {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(71, 185, 230, 0.15);
    color: var(--primary);
    border-radius: var(--radius-pill);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.title-main {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight-text {
    background: linear-gradient(120deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-text .subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    display: inline-block;
}

.stat-item span {
    font-size: 2.5rem;
    color: var(--secondary);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.stat-item p {
    color: var(--text-muted);
    font-weight: 500;
}

.hero-mascot-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mascot-large {
    width: 80%;
    max-width: 500px;
    z-index: 2;
    filter: drop-shadow(0 30px 40px rgba(43, 58, 140, 0.2));
}

.float-mascot {
    animation: floatMascot 5s ease-in-out infinite;
}

@keyframes floatMascot {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

.mascot-shadow {
    position: absolute;
    bottom: -20px;
    width: 250px;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(43, 58, 140, 0.2) 0%, transparent 70%);
    animation: shadowScale 5s ease-in-out infinite;
}

@keyframes shadowScale {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(0.8); opacity: 0.4; }
}

.wave-divider-bottom {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.wave-divider-bottom svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.wave-divider-bottom .shape-fill {
    fill: var(--bg-gray); /* Color de la siguiente seccion */
}

/* Promociones */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    perspective: 1000px;
}

.promo-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s;
}

.promo-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: var(--shadow-lg);
}

.promo-featured {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    transform: scale(1.05);
}

.promo-featured:hover {
    transform: scale(1.05) translateY(-15px) rotateX(5deg) rotateY(5deg);
}

.promo-featured h3, .promo-featured p {
    color: white;
}

.promo-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--secondary);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 10px rgba(71, 185, 230, 0.3);
}

.price {
    font-size: 4rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--secondary);
    margin: 20px 0;
    line-height: 1;
}

.discount {
    font-size: 3.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--primary);
    margin: 20px 0;
    line-height: 1;
}

.promo-list {
    list-style: none;
    margin-bottom: 20px;
}

.promo-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.promo-list i {
    color: var(--secondary);
}

/* Servicios */
.services-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-card-modern {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}

.service-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card-modern:hover .service-img {
    transform: scale(1.1);
}

.service-icon-floating {
    position: absolute;
    bottom: -25px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(43, 58, 140, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-floating {
    background: var(--secondary);
    transform: scale(1.1) rotate(10deg);
}

.service-info {
    padding: 40px 30px 30px;
    position: relative;
    background: var(--bg-white);
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.service-card-modern:hover .service-info h3 {
    color: var(--secondary);
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Niños */
.kids-section {
    background-color: var(--bg-kids);
    position: relative;
    overflow: hidden;
}

.kids-bg-shapes {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--secondary-light) 2px, transparent 2px);
    background-size: 40px 40px;
    opacity: 0.1;
}

.kids-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge-kids {
    background: rgba(71, 185, 230, 0.2);
}

.kids-text h2 {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.kids-features {
    list-style: none;
    margin-top: 30px;
}

.kids-features li {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.kids-image-wrapper {
    position: relative;
}

.kids-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 10px solid white;
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.kids-image-wrapper:hover .kids-img {
    transform: rotate(0deg) scale(1.02);
}

.floating-tooth {
    position: absolute;
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    top: -30px;
    left: -30px;
    animation: floatItem 4s ease-in-out infinite alternate;
}

.floating-tooth img {
    width: 60%;
}

/* Galería */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(43, 58, 140, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay i {
    color: white;
    font-size: 3rem;
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 4rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--secondary);
}

/* Testimonios */
.testimonials {
    background: var(--bg-white);
    overflow: hidden;
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    text-align: center;
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 30px;
}

.testimonial-card h4 {
    font-size: 1.2rem;
    color: var(--primary);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--bg-gray);
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.carousel-controls button:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* Footer Premium */
.footer-premium {
    background: var(--primary-dark);
    color: white;
    position: relative;
    padding-top: 50px;
}

.wave-divider-top {
    position: absolute;
    top: -119px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider-top svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.wave-divider-top .shape-fill {
    fill: var(--primary-dark);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding: 60px 24px;
}

.filter-white {
    filter: brightness(0) invert(1);
}

.brand-col p {
    color: rgba(255,255,255,0.7);
    margin: 20px 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

.footer-col h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
}

.contact-info a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--secondary);
}

.contact-info i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.footer-col ul:not(.contact-info) {
    list-style: none;
}

.footer-col ul:not(.contact-info) li {
    margin-bottom: 15px;
}

.footer-col ul:not(.contact-info) a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul:not(.contact-info) a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

/* Animations Classes */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-text .subtitle {
        margin: 0 auto 40px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .kids-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1002;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a:not(.btn) {
        font-size: 1.5rem;
    }
    
    .close-menu {
        display: block;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Typography & Spacing */
    .title-main {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .stat-item h3, .stat-item span {
        font-size: 2rem;
    }
    
    /* Layouts */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .hero-mascot-large {
        width: 100%;
        max-width: 300px;
    }
    
    .promo-card {
        padding: 30px 20px;
    }
    
    .service-info {
        padding: 30px 20px 20px;
    }
}
