/* ========================================
   VARIABLES CSS - PERSONALIZACIÓN FÁCIL
   ======================================== */

/* Reset básico para todos los elementos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* PERSONALIZABLE: Variables CSS principales - Cambia estos valores para personalizar todo el sitio */
:root {
    /* PERSONALIZABLE: COLORES PRINCIPALES - Cambia estos para cambiar toda la paleta */
    --primary-color: #e91e63;        /* Color principal (rosa) - botones, títulos, acentos */
    --secondary-color: #3f51b5;      /* Color secundario (azul) - usado en gradientes */
    --accent-color: #ff4081;         /* Color de acento (rosa claro) - elementos destacados */
    --dark-color: #1a1a1a;          /* Color oscuro para textos principales */
    --light-color: #ffffff;          /* Color blanco para fondos y textos claros */
    --gray-color: #666666;           /* Color gris para textos secundarios */
    --light-gray: #f5f5f5;          /* Gris claro para fondos suaves */
    
    /* PERSONALIZABLE: GRADIENTES - Cambia los colores para diferentes efectos visuales */
    --gradient-primary: linear-gradient(135deg, #e91e63, #3f51b5);     /* Gradiente principal */
    --gradient-secondary: linear-gradient(135deg, #ff4081, #e91e63);   /* Gradiente secundario */
    
    /* PERSONALIZABLE: SOMBRAS - Ajusta la intensidad y tamaño de las sombras */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);          /* Sombra normal para elementos */
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);   /* Sombra más intensa para hover */
    
    /* PERSONALIZABLE: BORDES Y TRANSICIONES */
    --border-radius: 12px;                                      /* Radio de bordes redondeados */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);     /* Velocidad y tipo de transiciones */
}

/* PERSONALIZABLE: Configuración general del body */
body {
    font-family: 'Poppins', sans-serif;    /* PERSONALIZABLE: Cambiar fuente principal */
    line-height: 1.6;                      /* PERSONALIZABLE: Altura de línea para legibilidad */
    color: var(--dark-color);
    overflow-x: hidden;
    word-wrap: break-word;
    word-break: break-word;
}

/* PERSONALIZABLE: Contenedor principal - controla el ancho máximo del sitio */
.container {
    max-width: 1200px;    /* PERSONALIZABLE: Ancho máximo del contenido (1200px es estándar) */
    margin: 0 auto;       /* Centrar el contenido */
    padding: 0 20px;      /* PERSONALIZABLE: Espaciado lateral interno */
    width: 100%;
    box-sizing: border-box;
}

/* ========================================
   HEADER / NAVEGACIÓN PRINCIPAL
   ======================================== */

/* PERSONALIZABLE: Header fijo con efecto de transparencia */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);    /* PERSONALIZABLE: Transparencia del header */
    backdrop-filter: blur(10px);              /* PERSONALIZABLE: Efecto de desenfoque */
    z-index: 1000;
    transition: var(--transition);
}

/* PERSONALIZABLE: Espaciado del navbar */
.navbar {
    padding: 1rem 0;    /* PERSONALIZABLE: Altura del navbar */
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* PERSONALIZABLE: Contenedor del logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;    /* PERSONALIZABLE: Espacio entre logo e imagen */
}

/* PERSONALIZABLE: Estilo del logo en el header */
.logo-image {
    width: 55px;     /* PERSONALIZABLE: Ancho del logo */
    height: 55px;    /* PERSONALIZABLE: Alto del logo */
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);    /* PERSONALIZABLE: Grosor del borde */
    transition: var(--transition);
    background: white;
    padding: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.logo-image:hover {
    transform: scale(1.1);    /* PERSONALIZABLE: Escala al hacer hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

/* PERSONALIZABLE: Texto del logo principal */
.nav-logo h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.8rem;    /* PERSONALIZABLE: Tamaño del nombre de la empresa */
    margin: 0;
}

/* PERSONALIZABLE: Subtítulo del logo */
.nav-logo span {
    color: var(--gray-color);
    font-size: 0.9rem;    /* PERSONALIZABLE: Tamaño del subtítulo */
    font-weight: 400;
}

/* PERSONALIZABLE: Menú de navegación */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;    /* PERSONALIZABLE: Espacio entre elementos del menú */
}

/* PERSONALIZABLE: Enlaces de navegación */
.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

/* Efecto de subrayado animado */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;    /* PERSONALIZABLE: Grosor del subrayado */
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* PERSONALIZABLE: Menú hamburguesa para móviles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

/* PERSONALIZABLE: Barras del menú hamburguesa */
.bar {
    width: 25px;    /* PERSONALIZABLE: Ancho de las barras */
    height: 3px;    /* PERSONALIZABLE: Grosor de las barras */
    background: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* ========================================
   SECCIÓN HERO (PRINCIPAL)
   ======================================== */

/* PERSONALIZABLE: Sección hero con altura completa de pantalla */
.hero {
    min-height: 100vh;    /* PERSONALIZABLE: Altura mínima del hero */
    display: flex;
    align-items: center;
    /* PERSONALIZABLE: FONDO DEL HERO - Cambia los colores del gradiente */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    position: relative;
    overflow: hidden;
}

/* PERSONALIZABLE: Patrón decorativo de fondo - puedes cambiar o eliminar */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* PERSONALIZABLE: Patrón SVG decorativo - puedes cambiar colores o eliminar completamente */
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23e91e63" stop-opacity="0.1"/><stop offset="100%" stop-color="%233f51b5" stop-opacity="0.05"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23a)"/><circle cx="800" cy="300" r="100" fill="url(%23a)"/><circle cx="600" cy="700" r="120" fill="url(%23a)"/></svg>');
    z-index: 0;
}

/* PERSONALIZABLE: Contenedor principal del hero */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 0 20px;    /* PERSONALIZABLE: Espaciado del contenido */
    display: grid;
    grid-template-columns: 1fr 1fr;    /* PERSONALIZABLE: Proporción entre texto e imagen */
    gap: 4rem;    /* PERSONALIZABLE: Espacio entre columnas */
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Animación de entrada del contenido */
.hero-content {
    animation: slideInLeft 1s ease-out;    /* PERSONALIZABLE: Velocidad de animación */
}

/* PERSONALIZABLE: Contenedor del logo en el hero */
.hero-logo {
    text-align: center;
    margin-bottom: 2rem;    /* PERSONALIZABLE: Espacio debajo del logo */
    position: relative;
    z-index: 2;
}

/* PERSONALIZABLE: Logo principal del hero */
.hero-logo-image {
    width: 150px;     /* PERSONALIZABLE: Ancho del logo */
    height: 150px;    /* PERSONALIZABLE: Alto del logo */
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-color);    /* PERSONALIZABLE: Grosor del borde */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    animation: pulse 2s infinite;    /* PERSONALIZABLE: Velocidad de la animación de pulso */
    background: white;
    padding: 5px;
}

.hero-logo-image:hover {
    transform: scale(1.1);    /* PERSONALIZABLE: Escala al hacer hover */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* PERSONALIZABLE: Título principal del hero */
.hero-title {
    font-size: 3.5rem;    /* PERSONALIZABLE: Tamaño del título */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

/* Texto con efecto gradiente */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

/* PERSONALIZABLE: Subtítulo del hero */
.hero-subtitle {
    color: white;
    font-size: 1.5rem;    /* PERSONALIZABLE: Tamaño del subtítulo */
    font-weight: 400;
    display: block;
}

/* PERSONALIZABLE: Descripción del hero */
.hero-description {
    font-size: 1.1rem;    /* PERSONALIZABLE: Tamaño del texto descriptivo */
    color: white;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* PERSONALIZABLE: Banner de delivery destacado */
.delivery-banner {
    /* PERSONALIZABLE: Colores del banner de delivery */
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ff6b35);
    background-size: 200% 200%;
    color: white;
    padding: 1.2rem 2rem;    /* PERSONALIZABLE: Espaciado interno */
    border-radius: 25px;     /* PERSONALIZABLE: Redondez del banner */
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    font-size: 1.1rem;      /* PERSONALIZABLE: Tamaño del texto */
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    border: 2px solid #fff;
    animation: deliveryGlow 3s ease-in-out infinite, gradientShift 4s ease-in-out infinite;
    transform: scale(1.05);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* PERSONALIZABLE: Contenedor de botones */
.hero-buttons {
    display: flex;
    gap: 1rem;    /* PERSONALIZABLE: Espacio entre botones */
    flex-wrap: wrap;
}

/* PERSONALIZABLE: Estilo base de botones */
.btn {
    padding: 1rem 2rem;    /* PERSONALIZABLE: Tamaño de los botones */
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;    /* PERSONALIZABLE: Tamaño del texto de botones */
}

/* PERSONALIZABLE: Botón principal */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);    /* PERSONALIZABLE: Movimiento al hacer hover */
    box-shadow: var(--shadow-hover);
}

/* PERSONALIZABLE: Botón secundario */
.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* ========================================
   IMAGEN PRINCIPAL DEL HERO
   ======================================== */

/* PERSONALIZABLE: Contenedor de la imagen principal */
.hero-image {
    position: relative;
    animation: slideInRight 1s ease-out;    /* PERSONALIZABLE: Velocidad de animación de entrada */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* PERSONALIZABLE: Imagen destacada del hero */
.hero-main-image {
    position: relative;
    width: 100%;
    max-width: 500px;    /* PERSONALIZABLE: Tamaño máximo de la imagen */
    height: auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
    animation: float 4s ease-in-out infinite;    /* PERSONALIZABLE: Velocidad de flotación */
    background: white;
    padding: 20px;    /* PERSONALIZABLE: Espaciado interno alrededor de la imagen */
}

.hero-main-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

/* PERSONALIZABLE: Efecto hover de la imagen principal */
.hero-main-image:hover {
    transform: translateY(-10px) scale(1.05);    /* PERSONALIZABLE: Movimiento y escala al hacer hover */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--gray-color);
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    color: var(--primary-color);
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat h4 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--gray-color);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 2rem;
    width: 100%;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e3f2fd 100%);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e91e63, #3f51b5, #ff4081, #2196f3);
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, #fff3e0 0%, #e8f5e8 50%, #f3e5f5 100%);
    border-color: var(--primary-color);
}

.service-card.featured {
    grid-column: span 1;
    background: white;
    color: var(--dark-color);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
    padding: 15px;
    transition: var(--transition);
}

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

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.service-card.featured .service-content h3 {
    color: var(--dark-color);
}

.service-content p {
    color: var(--gray-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-card.featured .service-content p {
    color: var(--gray-color);
}

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

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-card.featured .price {
    color: var(--primary-color);
}

.unit {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.service-card.featured .unit {
    color: var(--gray-color);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.service-features span {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 25%, #48dbfb 50%, #ff9ff3 75%, #54a0ff 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-item p {
    color: var(--gray-color);
    line-height: 1.6;
}

.delivery-highlight {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700 !important;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    animation: textGlow 2s ease-in-out infinite alternate;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Contact Form */
.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 25%, #e74c3c 50%, #8e44ad 75%, #3498db 100%);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatRotate {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(2deg);
    }

    75% {
        transform: translateY(-10px) rotate(-2deg);
    }
}

@keyframes floatScale {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    33% {
        transform: translateY(-25px) scale(1.05);
    }

    66% {
        transform: translateY(-10px) scale(0.98);
    }
}

@keyframes floatWave {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    25% {
        transform: translateY(-15px) translateX(5px);
    }

    50% {
        transform: translateY(-30px) translateX(0px);
    }

    75% {
        transform: translateY(-15px) translateX(-5px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    * {
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 120px 15px 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-title {
        font-size: 2.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
    }

    .about-text {
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .about-text h3 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .about-text p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .stat {
        width: 100%;
        max-width: 300px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        gap: 1.5rem;
    }

    .service-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .service-content {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .service-content h3 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        font-size: 1.2rem;
    }

    .service-content p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .service-card.featured {
        grid-column: span 1;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-main-image {
        max-width: 350px;
        padding: 15px;
    }

    .hero-main-image img {
        border-radius: 8px;
    }

    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    * {
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .container {
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-title {
        font-size: 1.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .section-title {
        font-size: 1.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
        text-align: center;
        box-sizing: border-box;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .delivery-banner {
        font-size: 0.9rem;
        padding: 1rem 1.5rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-description {
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .about-text h3 {
        font-size: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .service-content h3 {
        font-size: 1.1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .stat h4 {
        font-size: 1.5rem !important;
    }

    .floating-cards {
        height: 250px;
    }

    .floating-card {
        width: 100px;
        height: 75px;
        max-width: 22%;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.2rem;
    }
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--border-radius);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(138, 43, 226, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(138, 43, 226, 0);
    }
}

@keyframes deliveryGlow {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4), 0 0 20px rgba(255, 107, 53, 0.3);
    }

    50% {
        box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6), 0 0 30px rgba(255, 107, 53, 0.5);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes textGlow {
    0% {
        filter: brightness(1) drop-shadow(0 0 5px rgba(255, 107, 53, 0.5));
    }

    100% {
        filter: brightness(1.2) drop-shadow(0 0 15px rgba(255, 107, 53, 0.8));
    }
}

/* Cursor pointer for clickable images */
.service-image img,
.floating-card img {
    cursor: pointer;
}

.service-image img:hover,
.floating-card img:hover {
    opacity: 0.9;
}