/* ===== VARIABLES DE COLORES FLORES ===== */
:root {
    --flores-green: #13592a;
    --flores-yellow: #FCD34D;
    --flores-white: #FFFFFF;
    --flores-green-light: #1e7a3a;
    --flores-green-dark: #0d3f1c;
    --flores-yellow-light: #FDE68A;
    --flores-yellow-dark: #F59E0B;
}

/* ===== ESTILOS GLOBALES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* ===== TIPOGRAFÍA PERSONALIZADA ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--flores-green-dark);
}

.display-4 {
    font-weight: 700;
}

.lead {
    font-weight: 400;
    color: #666;
}

/* ===== CLASES UTILITARIAS TÍTULOS ===== */
.title-flores {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--flores-green);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== CLASES UTILITARIAS ESPACIADO ===== */
.py-flores {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.my-flores {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

/* ===== NAVEGACIÓN PERSONALIZADA ===== */
.navbar {
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, var(--flores-green) 0%, var(--flores-green-dark) 100%) !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(19, 89, 42, 0.3);
    border-bottom: 2px solid var(--flores-yellow);
}

/* ===== LOGO EN NAVBAR ===== */
.logo-navbar {
    height: 50px;
    width: auto;
    max-width: 250px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.navbar-brand:hover .logo-navbar {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Responsive del logo */
@media (max-width: 576px) {
    .logo-navbar {
        height: 40px;
        max-width: 200px;
    }
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--flores-white) !important;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.navbar-brand:hover {
    transform: scale(1.05);
    color: var(--flores-yellow) !important;
}

.navbar-brand small {
    font-style: italic;
    letter-spacing: 0.5px;
    color: var(--flores-yellow-light) !important;
    font-weight: 300;
}

.navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 0.5rem;
    color: var(--flores-white) !important;
}

.navbar-nav .nav-link:hover {
    color: var(--flores-yellow) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--flores-yellow);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.navbar-nav .nav-link.active {
    color: var(--flores-yellow) !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    width: 100%;
    background-color: var(--flores-yellow);
    box-shadow: 0 0 8px var(--flores-yellow);
}

/* ===== REDES SOCIALES EN NAVBAR ===== */
.social-links a {
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem;
    border-radius: 50%;
    color: var(--flores-white) !important;
}

.social-links a:hover {
    background-color: rgba(252, 211, 77, 0.2);
    transform: translateY(-2px) scale(1.1);
    color: var(--flores-yellow) !important;
}

.social-links .fab.fa-facebook-f:hover {
    background-color: #4267B2 !important;
    color: var(--flores-white) !important;
}

.social-links .fab.fa-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: var(--flores-white) !important;
}

/* ===== NAVBAR RESPONSIVO ===== */
@media (max-width: 991px) {
    .navbar-brand small {
        font-size: 0.7rem !important;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
        background-color: rgba(92, 138, 69, 0.95);
        border-radius: 10px;
        padding: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        margin: 0.25rem 0;
        border-radius: 5px;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: rgba(252, 211, 77, 0.2);
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .navbar-brand small {
        display: none !important;
    }
}

/* ===== HERO CAROUSEL PERSONALIZADO ===== */
.hero-carousel {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-carousel .carousel-item {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-carousel .carousel-item.active {
    opacity: 1;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.carousel-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem 0;
    /* Sin fondo ni bordes que causen el recuadro negro */
}

.carousel-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 
        3px 3px 0px rgba(0,0,0,1),
        2px 2px 10px rgba(0,0,0,0.9),
        0 0 20px rgba(0,0,0,0.8);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.carousel-content p {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    text-shadow: 
        2px 2px 0px rgba(0,0,0,1),
        1px 1px 8px rgba(0,0,0,0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-weight: 300;
}

.carousel-content .lead {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--flores-yellow);
    text-shadow: 
        2px 2px 0px rgba(0,0,0,1),
        1px 1px 8px rgba(0,0,0,0.9);
}

.carousel-content .text-white-50 {
    color: rgba(255,255,255,0.95);
    text-shadow: 
        1px 1px 0px rgba(0,0,0,1),
        1px 1px 6px rgba(0,0,0,0.8);
}

.carousel-content .fs-5 {
    color: rgba(255,255,255,0.95);
    text-shadow: 
        1px 1px 0px rgba(0,0,0,1),
        1px 1px 6px rgba(0,0,0,0.8);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(92, 138, 69, 0.9);
    border-radius: 50%;
    border: 3px solid var(--flores-yellow);
    background-size: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(252, 211, 77, 0.5);
    border: 2px solid var(--flores-yellow);
    flex-shrink: 0;
    padding: 0;
}

.carousel-indicators button.active {
    background-color: var(--flores-yellow);
    border-color: var(--flores-white);
    transform: scale(1.3);
    box-shadow: 0 0 0 3px rgba(252, 211, 77, 0.3);
}

/* ===== RESPONSIVE CAROUSEL ===== */
@media (max-width: 768px) {
    .hero-carousel {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-carousel .carousel-item {
        height: 70vh;
        min-height: 500px;
    }
    
    /* carousel-bg eliminado */
    
    .carousel-content h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .carousel-content .lead {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .carousel-content h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .carousel-content p {
        font-size: 1rem;
    }
    
    .carousel-content .lead {
        font-size: 1.1rem;
    }
}

/* ===== BOTONES PERSONALIZADOS ===== */
.btn {
    font-family: 'Poppins', sans-serif;
    border-radius: 50px;
    font-weight: 600;
    padding: 15px 35px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.btn-primary {
    background: linear-gradient(45deg, var(--flores-green), var(--flores-green-light));
    color: var(--flores-white);
    box-shadow: 0 8px 25px rgba(92, 138, 69, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--flores-green-light), var(--flores-green));
    color: var(--flores-white);
    box-shadow: 0 12px 35px rgba(92, 138, 69, 0.5);
}

.btn-success {
    background: linear-gradient(45deg, var(--flores-green), var(--flores-green-dark));
    color: var(--flores-white);
    box-shadow: 0 8px 25px rgba(92, 138, 69, 0.3);
}

.btn-success:hover {
    background: linear-gradient(45deg, var(--flores-green-dark), var(--flores-green));
    color: var(--flores-white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(92, 138, 69, 0.5);
}

.btn-warning {
    background: linear-gradient(45deg, var(--flores-yellow), var(--flores-yellow-dark));
    color: var(--flores-green-dark);
    box-shadow: 0 8px 25px rgba(252, 211, 77, 0.3);
}

.btn-warning:hover {
    background: linear-gradient(45deg, var(--flores-yellow-dark), var(--flores-yellow));
    color: var(--flores-green-dark);
    box-shadow: 0 12px 35px rgba(252, 211, 77, 0.5);
}

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

.btn-outline-light:hover {
    background-color: var(--flores-white);
    color: var(--flores-green);
    border-color: var(--flores-white);
    box-shadow: 0 10px 25px rgba(255,255,255,0.3);
}

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

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

/* ===== SECCIÓN SOBRE FLORES ===== */
.about-flores {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
}

.flores-destacadas .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

/* ===== SECCIÓN TIPOS DE FLORES ===== */
.tipos-flores {
    position: relative;
}

.flor-card {
    background: var(--flores-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(92, 138, 69, 0.15);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.flor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(92, 138, 69, 0.25);
    border-color: var(--flores-yellow);
}

.flor-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.flor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.flor-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
}

.badge-popular {
    background: linear-gradient(45deg, var(--flores-yellow), var(--flores-yellow-dark));
    color: var(--flores-green-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-premium {
    background: linear-gradient(45deg, var(--flores-green), var(--flores-green-dark));
    color: var(--flores-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== SECCIÓN ARREGLOS ESPECIALES ===== */
.arreglos-especiales {
    background: linear-gradient(135deg, #f8fffe 0%, #f1f8f1 100%);
}

.special-card {
    background: var(--flores-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(19, 89, 42, 0.1);
    border: 1px solid rgba(252, 211, 77, 0.2);
}

.special-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(19, 89, 42, 0.2);
}

.special-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.special-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.special-card:hover .special-image img {
    transform: scale(1.05);
}

.special-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.badge-especial {
    background: linear-gradient(45deg, #ff6b9d, #ff8cc8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.badge-delicado {
    background: linear-gradient(45deg, #a8e6cf, #88d8a3);
    color: var(--flores-green-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(168, 230, 207, 0.3);
}

.badge-variedad {
    background: linear-gradient(45deg, #ffd93d, #ffb74d);
    color: var(--flores-green-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 217, 61, 0.3);
}

.special-content h5 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.special-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.flor-content h5 {
    margin-bottom: 1rem;
}



/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--flores-green) 0%, var(--flores-green-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(252, 211, 77, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(252, 211, 77, 0.2) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h3 {
    color: var(--flores-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-section p {
    color: var(--flores-yellow-light);
}

/* ===== CLASES UTILITARIAS DE COLOR ===== */
.text-flores-green {
    color: var(--flores-green) !important;
}

.text-flores-yellow {
    color: var(--flores-yellow-dark) !important;
}

.text-flores-white {
    color: var(--flores-white) !important;
}

.bg-flores-green {
    background-color: var(--flores-green) !important;
}

.bg-flores-yellow {
    background-color: var(--flores-yellow) !important;
}

.bg-flores-white {
    background-color: var(--flores-white) !important;
}

.border-flores-green {
    border-color: var(--flores-green) !important;
}

.border-flores-yellow {
    border-color: var(--flores-yellow) !important;
}

/* ===== FOOTER MEJORADO ===== */
.footer-flores {
    background: linear-gradient(135deg, 
        var(--flores-green) 0%, 
        var(--flores-green-dark) 50%, 
        #2E4F2E 100%);
    border-top: 4px solid var(--flores-yellow);
    color: var(--flores-white);
    position: relative;
    overflow: hidden;
}

.footer-flores::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(252,211,77,0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(252,211,77,0.02) 0%, transparent 50%);
    z-index: 0;
}

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

/* Logo del footer */
.footer-logo-container {
    text-align: left;
}

.footer-logo {
    height: 80px;
    width: auto;
    max-width: 320px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
}

.footer-logo:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.5));
}

/* Responsive del logo en footer */
@media (max-width: 768px) {
    .footer-logo-container {
        text-align: center;
    }
    
    .footer-logo {
        height: 60px;
        max-width: 250px;
    }
}

/* Títulos del footer */
.footer-title {
    color: var(--flores-white);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.footer-title i {
    color: var(--flores-yellow);
    filter: drop-shadow(0 0 5px rgba(252,211,77,0.3));
}

.footer-subtitle {
    color: var(--flores-yellow);
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.footer-section-title {
    color: var(--flores-yellow);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--flores-yellow);
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 1rem;
    position: relative;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--flores-white);
    transition: width 0.3s ease;
}

.footer-section-title:hover::after {
    width: 100%;
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: justify;
}

/* Enlaces del footer */
.footer-flores a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-flores a:hover {
    color: var(--flores-yellow);
    transform: translateX(3px);
}

/* Redes sociales mejoradas */
.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(252, 211, 77, 0.3);
    color: var(--flores-white);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    text-align: center;
    line-height: 1;
    padding: 0;
    margin: 0;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border-color: var(--flores-yellow);
}

.social-link.facebook:hover {
    background: #4267B2;
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link.whatsapp:hover {
    background: #25D366;
    color: white;
}

/* Centrado perfecto de iconos específicos */
.social-link i {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link .fab.fa-facebook-f {
    position: relative;
    left: 1px; /* Ajuste fino para Facebook */
}

.social-link .fab.fa-instagram {
    position: relative;
    /* Instagram suele estar bien centrado por defecto */
}

.social-link .fab.fa-whatsapp {
    position: relative;
    /* WhatsApp suele estar bien centrado por defecto */
}

/* Información de contacto */
.contact-info p {
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    padding: 8px 0;
    border-radius: 5px;
}

.contact-info p span {
    color: rgba(255, 255, 255, 0.9);
}

.contact-info p:hover {
    background: rgba(252, 211, 77, 0.1);
    padding-left: 10px;
    color: var(--flores-yellow);
}

.contact-info p:hover span {
    color: var(--flores-white);
}

.contact-info i {
    color: var(--flores-yellow);
    width: 20px;
    text-align: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.contact-info p:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 3px rgba(252,211,77,0.5));
}

/* Lista de flores */
.footer-flores ul li {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    padding: 5px 0;
    border-radius: 3px;
}

.footer-flores ul li:hover {
    color: var(--flores-yellow);
    background: rgba(252, 211, 77, 0.1);
    padding-left: 8px;
}

.footer-flores ul li i {
    transition: all 0.3s ease;
}

.footer-flores ul li:hover i {
    transform: scale(1.1);
}

/* Separador y copyright */
.footer-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--flores-yellow), transparent);
    opacity: 0.7;
}

.footer-copyright,
.footer-credits {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-link-credit {
    color: var(--flores-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-link-credit:hover {
    color: var(--flores-white);
    text-shadow: 0 0 5px rgba(252,211,77,0.5);
}

/* ===== WHATSAPP FLOTANTE ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 28px;
    border-radius: 50%;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    padding: 0;
    border: none;
    opacity: 0;
    transform: translateY(100px);
}

.whatsapp-float.show {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
    color: white;
    text-decoration: none;
}

.whatsapp-float.pulse {
    animation: whatsapp-pulse 1s ease-in-out;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 8px 15px rgba(0,0,0,0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    }
}

/* Responsive para WhatsApp flotante */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
        padding: 10px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .py-flores {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .title-flores {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.8rem;
    }
    
    .flor-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .my-flores {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }
    
    .title-flores {
        font-size: 1.3rem;
    }
    
    .flor-image {
        height: 180px;
    }
}

/* ===== SCROLL SUAVE ===== */
html {
    scroll-behavior: smooth;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--flores-green), var(--flores-yellow));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--flores-yellow), var(--flores-green));
}

/* ===== ANIMACIONES LOADING FLORES ===== */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.7;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(252, 211, 77, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(252, 211, 77, 0.8), 0 0 30px rgba(252, 211, 77, 0.3);
    }
}

/* ===== LOADING SCREEN FLORES ===== */
.flores-loading {
    background: linear-gradient(135deg, #13592a 0%, #1e7a3a 50%, #0d3f1c 100%);
    background-size: 400% 400%;
    animation: gradientShift 4s ease infinite;
}

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

.flores-loading .loading-content {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

/* Fade out sincronizado - Versión mejorada */
.flores-loading.fade-out,
.flores-loading.fade-out *,
.flores-loading[style*="opacity: 0"],
.flores-loading[style*="opacity: 0"] * {
    animation: none !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    animation-fill-mode: none !important;
    transition: opacity 0.8s ease-out !important;
    opacity: 0 !important;
}

/* Responsive para loading */
@media (max-width: 768px) {
    .flores-loading .logo-container img {
        height: 80px !important;
    }
    
    .flores-loading .loading-text {
        font-size: 1.1rem !important;
    }
    
    .flores-loading .loading-subtitle {
        font-size: 0.9rem !important;
    }
    
    /* petal eliminado */
}

/* ===== SECCIÓN CONFIANZA ===== */
.confianza-section {
    background: linear-gradient(135deg, #f8fffe 0%, #f1f8f1 100%);
}

.confianza-item {
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.confianza-item:hover {
    transform: translateY(-5px);
}

.confianza-icon i {
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(19, 89, 42, 0.2));
}

.confianza-item:hover .confianza-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(19, 89, 42, 0.3));
}

.confianza-item h5 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.confianza-item p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== PÁGINA GALERÍA ===== */
.hero-galeria {
    position: relative;
    overflow: hidden;
}

.hero-galeria::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="camera-pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="rgba(252,211,77,0.1)"/><rect x="10" y="10" width="5" height="5" fill="none" stroke="rgba(252,211,77,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23camera-pattern)"/></svg>');
    opacity: 0.3;
}

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

/* Asegurar texto blanco en hero galería */
.hero-galeria h1,
.hero-galeria .display-4 {
    color: #ffffff !important;
    text-shadow: 0 3px 6px rgba(0,0,0,0.5);
}

.hero-galeria p,
.hero-galeria .lead {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.hero-galeria .text-white-75 {
    color: rgba(255,255,255,0.9) !important;
}

/* Filtros de galería */
.filtros-galeria .filter-btn {
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

.filtros-galeria .filter-btn.active {
    background: var(--flores-green) !important;
    border-color: var(--flores-green) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(19, 89, 42, 0.3);
}

.filtros-galeria .filter-btn:hover:not(.active) {
    background: var(--flores-green) !important;
    border-color: var(--flores-green) !important;
    color: white !important;
    transform: translateY(-2px);
}

/* Grid de galería */
.gallery-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(19, 89, 42, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(19, 89, 42, 0.2);
    border-color: var(--flores-yellow);
}

.gallery-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.1) 0%,
        rgba(0,0,0,0.3) 50%,
        rgba(19, 89, 42, 0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 2rem;
}

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

.gallery-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-content {
    transform: translateY(0);
}

.gallery-info {
    background: white;
    border-radius: 0 0 18px 18px;
}

.gallery-info .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
}

.gallery-info h6 {
    color: var(--flores-green-dark);
    margin-bottom: 0.5rem;
}

/* Animaciones de filtro */
.gallery-item {
    transition: all 0.5s ease;
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* CTA Galería */
.cta-galeria {
    background: linear-gradient(135deg, var(--flores-green) 0%, var(--flores-green-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-galeria::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(252, 211, 77, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(252, 211, 77, 0.2) 0%, transparent 50%);
}

.cta-galeria .container {
    position: relative;
    z-index: 2;
}

.cta-galeria h3 {
    color: var(--flores-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-galeria p {
    color: var(--flores-yellow-light);
}

/* Modal Lightbox */
.modal-content {
    border: none;
    border-radius: 15px;
}

#lightboxImage {
    border-radius: 15px 15px 0 0;
    max-height: 80vh;
    object-fit: contain;
}

.modal-footer .btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
}

/* Responsive para galería */
@media (max-width: 768px) {
    .gallery-image {
        height: 250px;
    }
    
    .filtros-galeria .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .gallery-overlay {
        padding: 1rem;
        opacity: 1;
        background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.3) 0%,
            rgba(19, 89, 42, 0.9) 100%
        );
    }
    
    .gallery-content {
        transform: translateY(0);
    }
    
    .hero-galeria .display-4 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .gallery-image {
        height: 220px;
    }
    
    .gallery-card {
        margin-bottom: 1rem;
    }
}

/* ===== PÁGINA CATÁLOGO ===== */
.hero-catalogo {
    position: relative;
    overflow: hidden;
}

.hero-catalogo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="catalog-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(252,211,77,0.1)"/><circle cx="5" cy="15" r="0.5" fill="rgba(252,211,77,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23catalog-pattern)"/></svg>');
    opacity: 0.3;
}

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

/* Asegurar texto blanco en hero catálogo */
.hero-catalogo h1,
.hero-catalogo .display-4 {
    color: #ffffff !important;
    text-shadow: 0 3px 6px rgba(0,0,0,0.5);
}

.hero-catalogo p,
.hero-catalogo .lead {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.hero-catalogo .text-white-75 {
    color: rgba(255,255,255,0.9) !important;
}

/* Información de precios */
.info-precios {
    border-top: 3px solid var(--flores-green);
    border-bottom: 3px solid var(--flores-green);
}

/* Filtros de catálogo */
.filtros-catalogo .filter-btn {
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

.filtros-catalogo .filter-btn.active {
    background: var(--flores-green) !important;
    border-color: var(--flores-green) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(19, 89, 42, 0.3);
}

.filtros-catalogo .filter-btn:hover:not(.active) {
    background: var(--flores-green) !important;
    border-color: var(--flores-green) !important;
    color: white !important;
    transform: translateY(-2px);
}

/* Tarjetas de productos */
.producto-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(19, 89, 42, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.producto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(19, 89, 42, 0.2);
    border-color: var(--flores-yellow);
}

.producto-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.producto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.producto-card:hover .producto-image img {
    transform: scale(1.05);
}

.producto-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.producto-badge .badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.producto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.1) 0%,
        rgba(0,0,0,0.3) 50%,
        rgba(19, 89, 42, 0.8) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.producto-card:hover .producto-overlay {
    opacity: 1;
}

.producto-actions {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.producto-card:hover .producto-actions {
    transform: translateY(0);
}

.producto-info {
    background: white;
    border-radius: 0 0 18px 18px;
}

.producto-info h5 {
    color: var(--flores-green-dark);
    margin-bottom: 0.5rem;
}

.precio-badge {
    background: linear-gradient(45deg, var(--flores-yellow), var(--flores-yellow-dark));
    color: var(--flores-green-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.caracteristicas {
    background: rgba(19, 89, 42, 0.05);
    border-radius: 10px;
    padding: 1rem;
    border-left: 4px solid var(--flores-green);
}

.caracteristicas h6 {
    color: var(--flores-green-dark);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.caracteristicas ul li {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    color: #666;
}

.tags .badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    margin-bottom: 0.2rem;
}

.producto-actions-bottom .btn {
    font-weight: 600;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.producto-actions-bottom .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(19, 89, 42, 0.3);
}

/* Información adicional */
.info-adicional {
    border: 2px solid rgba(19, 89, 42, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.info-adicional h4 {
    color: var(--flores-green-dark);
}

.info-adicional ul li {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Catálogo */
.cta-catalogo {
    background: linear-gradient(135deg, var(--flores-green) 0%, var(--flores-green-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-catalogo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(252, 211, 77, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(252, 211, 77, 0.2) 0%, transparent 50%);
}

.cta-catalogo .container {
    position: relative;
    z-index: 2;
}

.cta-catalogo h3 {
    color: var(--flores-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-catalogo p {
    color: var(--flores-yellow-light);
}

/* Animaciones de filtro para catálogo */
.producto-item {
    transition: all 0.5s ease;
}

.producto-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* Responsive para catálogo */
@media (max-width: 768px) {
    .producto-image {
        height: 250px;
    }
    
    .filtros-catalogo .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .producto-overlay {
        padding: 1rem;
        opacity: 1;
        background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.3) 0%,
            rgba(19, 89, 42, 0.9) 100%
        );
    }
    
    .producto-actions {
        transform: translateY(0);
    }
    
    .hero-catalogo .display-4 {
        font-size: 2.5rem;
    }
    
    .info-precios .d-flex {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .caracteristicas {
        padding: 0.75rem;
    }
}

@media (max-width: 576px) {
    .producto-image {
        height: 220px;
    }
    
    .producto-card {
        margin-bottom: 1rem;
    }
    
    .producto-info {
        padding: 1rem;
    }
    
    .caracteristicas h6 {
        font-size: 0.85rem;
    }
}

/* ===== PÁGINA CONTACTO ===== */
.hero-contacto {
    position: relative;
    overflow: hidden;
}

.hero-contacto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="flores-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(252,211,77,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23flores-pattern)"/></svg>');
    opacity: 0.3;
}

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

/* Asegurar texto blanco en hero contacto */
.hero-contacto h1,
.hero-contacto .display-4 {
    color: #ffffff !important;
    text-shadow: 0 3px 6px rgba(0,0,0,0.5);
}

.hero-contacto p,
.hero-contacto .lead {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.hero-contacto .text-white-75 {
    color: rgba(255,255,255,0.9) !important;
}

/* Info de contacto */
.info-contacto {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.info-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(19, 89, 42, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(19, 89, 42, 0.15);
}

.info-icon {
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.info-content h5 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.horarios {
    background: rgba(19, 89, 42, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--flores-green);
}

/* Galería del local */
.local-gallery .main-image img {
    transition: transform 0.3s ease;
}

.local-gallery:hover .main-image img {
    transform: scale(1.02);
}

.gallery-info {
    border: 2px solid rgba(19, 89, 42, 0.1);
}

/* Mapa */
.mapa-container {
    border: 3px solid var(--flores-yellow);
    transition: all 0.3s ease;
}

.mapa-container:hover {
    border-color: var(--flores-green);
    box-shadow: 0 10px 30px rgba(19, 89, 42, 0.2);
}

.transport-info {
    border: 2px solid rgba(19, 89, 42, 0.1);
}

.transport-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(19, 89, 42, 0.1);
}

.transport-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Contacto rápido */
.contacto-rapido {
    background: linear-gradient(135deg, var(--flores-green) 0%, var(--flores-green-dark) 100%);
}

.contacto-card {
    background: linear-gradient(135deg, rgba(19, 89, 42, 0.8) 0%, rgba(13, 63, 28, 0.9) 100%) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    /* Asegurar texto blanco */
    color: #ffffff !important;
}

.contacto-card h3,
.contacto-card .display-6 {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.contacto-card p,
.contacto-card .lead {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.contacto-card .btn {
    transition: all 0.3s ease;
}

.contacto-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Responsive para contacto */
@media (max-width: 768px) {
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .hero-contacto .display-4 {
        font-size: 2.5rem;
    }
    
    .transport-info {
        margin-top: 2rem;
    }
}

/* ===== CAROUSEL CONTROLS FIXES ===== */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: none;
    border: none;
    opacity: 0.8;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--flores-green);
    border-color: var(--flores-white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.carousel-control-prev:focus,
.carousel-control-next:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(252, 211, 77, 0.3);
}

/* Ensure perfect circles for all round buttons */
.whatsapp-float,
.carousel-control-prev-icon,
.carousel-control-next-icon,
.carousel-indicators button {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: all 0.3s ease;
}

/* ===== CAROUSEL ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-item.active .carousel-content h1 {
    animation: slideInFromLeft 1.2s ease-out 0.3s both;
}

.carousel-item.active .carousel-content .lead {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.carousel-item.active .carousel-content p:not(.lead) {
    animation: fadeInUp 1s ease-out 0.9s both;
}

.carousel-item.active .carousel-content div:last-child {
    animation: fadeInUp 1s ease-out 1.2s both;
}

/* Reset animations for non-active slides */
.carousel-item:not(.active) .carousel-content * {
    opacity: 0;
    animation: none;
}

 