/* Variables de colores principales */
:root {
    --primary-magenta: #E020A0;
    --primary-purple: #8B2B9A;
    --secondary-purple: #6A1B7A;
    --light-magenta: #F8E8F5;
    --dark-gray: #2C2C2C;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

/* --- Top Bar --- */
.top-bar {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    padding: 12px 0;
    font-size: 0.85rem;
}

/* --- Main Navbar --- */
#mainNavbar {
    transition: padding 0.3s ease;
    border-top: 3px solid var(--primary-magenta);
    padding: 20px 0;
    min-height: 80px;
}

.navbar-brand {
    padding: 15px 0;
}


/* Brand Text */
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-main {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-purple);
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.brand-sub {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-magenta);
    letter-spacing: 3px;
    margin-top: -2px;
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: var(--dark-gray) !important;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-magenta) !important;
}

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

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

/* Buttons */
.btn-outline-primary {
    border-color: var(--primary-magenta);
    color: var(--primary-magenta);
    border-width: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-magenta);
    border-color: var(--primary-magenta);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 32, 160, 0.3);
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary-magenta), var(--primary-purple));
    border: none;
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(224, 32, 160, 0.3);
}

.btn-gradient:hover {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 32, 160, 0.4);
    color: white;
}

/* Cart Badge */
#cart-count {
    font-size: 0.7rem;
    min-width: 18px;
    height: 18px;
    line-height: 1;
    padding: 2px 5px;
}

/* --- Hero Section --- */
.hero-section {
    height: 70vh;
    min-height: 500px;
}
.hero-background {
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* --- Product Card --- */
.product-card {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.product-card img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px 12px 0 0;
    border: 1px solid rgba(224, 32, 160, 0.1);
}

/* Fallback para imágenes que no cargan */
.product-card img[src=""],
.product-card img:not([src]),
.product-card img[src*="placeholder"] {
    background: linear-gradient(135deg, var(--light-magenta), #f8f9fa);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px dashed rgba(224, 32, 160, 0.3);
}

.product-card img[src=""]::after,
.product-card img:not([src])::after,
.product-card img[src*="placeholder"]::after {
    content: "📦";
    font-size: 3rem;
    color: var(--primary-magenta);
    opacity: 0.6;
    position: absolute;
}

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

.product-card .card-body {
    padding: 1.5rem;
    background: white;
}

.product-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    height: 2.8rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-card .card-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-magenta);
    margin-bottom: 1rem;
}

.product-card .btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.product-card .btn-outline-secondary {
    border-color: #6c757d;
    color: #6c757d;
}

.product-card .btn-outline-secondary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    transform: translateY(-2px);
}

/* Botón "Detalles" - Azul distintivo */
.product-card .btn-outline-primary {
    background-color: transparent;
    border-color: #007bff;
    color: #007bff;
    border-width: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-card .btn-outline-primary:hover {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Botón "Añadir" - Rosa de la marca */
.product-card .btn-primary {
    background: linear-gradient(135deg, var(--primary-magenta), var(--primary-purple));
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(224, 32, 160, 0.2);
}

.product-card .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 32, 160, 0.4);
    color: white;
}

/* Responsive adjustments for product cards */
@media (max-width: 768px) {
.product-card img {
    height: 220px;
    }
    
    .product-card .card-body {
        padding: 1rem;
    }
    
    .product-card .card-title {
        font-size: 1rem;
        height: 2.4rem;
    }
    
    .product-card .card-text {
        font-size: 1.1rem;
    }
    
    .add-to-cart-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .product-card img {
        height: 200px;
    }
    
    .product-card .card-title {
        font-size: 0.95rem;
        height: 2.2rem;
    }
    
    .add-to-cart-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .product-price {
        font-size: 2rem;
    }
}

/* Grid spacing for product cards */
.products-grid {
    gap: 2rem;
}

.products-grid .col-lg-4,
.products-grid .col-md-6 {
    margin-bottom: 2rem;
}

/* --- Footer Styles --- */
.footer-main {
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 4px solid var(--primary-magenta);
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-magenta);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.footer-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-magenta);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-magenta);
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(224, 32, 160, 0.1);
    color: var(--primary-magenta);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(224, 32, 160, 0.2);
}

.social-link:hover {
    background: var(--primary-magenta);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(224, 32, 160, 0.4);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link:hover {
    color: var(--primary-magenta);
    padding-left: 10px;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-magenta);
}

.footer-link:hover::before {
    opacity: 1;
    left: -10px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #ccc;
}

.contact-item i {
    color: var(--primary-magenta);
    margin-right: 0.75rem;
    width: 20px;
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(224, 32, 160, 0.2);
    padding-top: 2rem;
    margin-top: 2rem;
}

.copyright-text {
    color: #999;
    margin: 0;
    font-size: 0.9rem;
}

.powered-by {
    color: #999;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-main {
        padding: 2rem 0 1rem;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .col-md-6 {
        margin-bottom: 0.5rem;
    }
}

/* --- Page Header for Catalog, About, etc. --- */
.page-header-short {
    padding-top: 120px;
    padding-bottom: 60px;
    background-color: #e9ecef;
}

/* --- ✅ NEW: Product Detail Page Styles --- */
.product-detail-container {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* --- ✅ NEW: Swiper Slider Styles --- */
.main-swiper {
    width: 100%;
    height: 450px;
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
}

.main-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.main-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Use 'contain' to see the whole image */
}

.thumb-swiper {
    height: 100px;
    box-sizing: border-box;
    padding: 10px 0;
}

.thumb-swiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
    border-radius: 0.3rem;
    overflow: hidden;
    border: 1px solid #ddd;
}

.thumb-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--bs-primary);
}

.thumb-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Estilos para la descripción del producto renderizada */
.product-description ul,
.product-description ol {
    padding-left: 20px;
    margin-top: 1rem;
}
.product-description h3,
.product-description h4,
.product-description h5 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}


/* --- Product Detail Page --- */
.product-detail-container {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* --- Swiper Slider Styles --- */
.main-swiper {
    width: 100%;
    height: 450px;
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
}

.main-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.main-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumb-swiper {
    height: 100px;
    box-sizing: border-box;
    padding: 10px 0;
}

.thumb-swiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
    border-radius: 0.3rem;
    overflow: hidden;
    border: 1px solid #ddd;
}

.thumb-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--bs-primary);
}

.thumb-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Contact Page Styles */
.contact-info-box {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.08);
}
/* --- Hero Swiper Slider --- */
.hero-swiper {
    width: 100%;
    height: 70vh; /* O la altura que prefieras */
    min-height: 500px;
}
.hero-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-swiper .hero-background {
    width: 100%;
}
.hero-swiper .swiper-pagination-bullet-active {
    background-color: white !important;
}
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: white !important;
}

/* --- ESTILOS DE LA PÁGINA DE DETALLE DEL PRODUCTO --- */
.product-detail-container { 
    padding-top: 3rem; 
    padding-bottom: 3rem; 
}

.breadcrumb-item a { 
    text-decoration: none; 
    color: var(--primary-magenta); 
}

.product-title { 
    font-weight: 700; 
    font-size: 2.25rem; 
    color: var(--dark-gray);
}

.product-price { 
    font-size: 2.5rem; 
    font-weight: 600; 
    color: var(--primary-magenta); 
}

.quantity-selector .btn { 
    width: 45px; 
    font-weight: bold; 
    border-color: var(--primary-magenta);
    color: var(--primary-magenta);
}

.quantity-selector .btn:hover {
    background-color: var(--primary-magenta);
    border-color: var(--primary-magenta);
    color: white;
}

.quantity-selector .form-control { 
    width: 70px; 
    text-align: center; 
    border-left: 0; 
    border-right: 0; 
    border-radius: 0; 
    border-color: var(--primary-magenta);
}

/* Botón principal de añadir a cotización */
.add-to-cart-btn {
    background: linear-gradient(135deg, var(--primary-magenta), var(--primary-purple)) !important;
    border: none !important;
    color: white !important;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(224, 32, 160, 0.3);
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple)) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 32, 160, 0.4);
    color: white !important;
}

/* Botones de productos relacionados - "Ver Detalles" */
.product-card .btn-secondary {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: white !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-card .btn-secondary:hover {
    background-color: #5a6268 !important;
    border-color: #5a6268 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
    color: white !important;
}

.info-list { 
    list-style: none; 
    padding-left: 0; 
}

.info-list-item { 
    display: flex; 
    align-items: center; 
    padding: 1rem 0; 
    border-bottom: 1px solid #e9ecef; 
}

.info-list-item:last-child { 
    border-bottom: none; 
}

.info-list-item .icon { 
    font-size: 1.75rem; 
    color: var(--primary-magenta); 
    min-width: 50px; 
}

.product-description-tabs .nav-link { 
    color: var(--dark-gray); 
    font-weight: 500; 
    border-color: transparent;
}

.product-description-tabs .nav-link.active {
    color: var(--primary-magenta) !important;
    border-color: var(--primary-magenta) !important;
    background-color: transparent !important;
}

.product-description-tabs .nav-link:hover {
    color: var(--primary-magenta) !important;
    border-color: rgba(224, 32, 160, 0.3);
}
.product-description-tabs .nav-link.active { color: var(--bs-primary); border-color: #dee2e6 #dee2e6 var(--bs-primary); border-bottom-width: 3px; }
/* --- ESTILOS DEL CARRUSEL (SLIDER) --- */
.main-swiper { width: 100%; height: 450px; border-radius: 0.5rem; border: 1px solid #dee2e6; margin-bottom: 1rem; }
.main-swiper .swiper-slide img { display: block; width: 100%; height: 100%; object-fit: contain; }
.thumb-swiper { height: 100px; }
.thumb-swiper .swiper-slide { opacity: 0.5; cursor: pointer; border-radius: 0.3rem; overflow: hidden; border: 2px solid transparent; transition: all 0.3s ease; }
.thumb-swiper .swiper-slide:hover { opacity: 1; }
.thumb-swiper .swiper-slide-thumb-active { opacity: 1; border-color: var(--bs-primary); }
.thumb-swiper .swiper-slide img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* --- Enhanced Contact Page Styles --- */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    min-height: 80vh;
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
    border: none;
    margin-bottom: 2rem;
}

.contact-form-card .card-header {
    background: linear-gradient(135deg, var(--primary-magenta), var(--primary-purple));
    color: white;
    border: none;
    padding: 2.5rem;
    text-align: center;
    position: relative;
}

.contact-form-card .card-header::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-form-card .card-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
}

.contact-form-card .card-subtitle {
    margin: 1rem 0 0 0;
    opacity: 0.95;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.contact-form-card .card-body {
    padding: 3rem;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    background: #fafbfc;
}

.contact-form .form-control:focus {
    border-color: var(--primary-magenta);
    box-shadow: 0 0 0 0.25rem rgba(224, 32, 160, 0.15);
    background: white;
}

.contact-form .form-control::placeholder {
    color: #adb5bd;
    font-style: italic;
}

.contact-form .form-text {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.btn-contact-submit {
    background: linear-gradient(135deg, var(--primary-magenta), var(--primary-purple));
    border: none;
    color: white;
    font-weight: 600;
    padding: 1.25rem 3rem;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(224, 32, 160, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-contact-submit::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;
}

.btn-contact-submit:hover::before {
    left: 100%;
}

.btn-contact-submit:hover {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(224, 32, 160, 0.4);
    color: white;
}

.contact-info-wrapper {
    position: sticky;
    top: 2rem;
}

.contact-info-card {
    background: white;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(224, 32, 160, 0.1);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-magenta);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-magenta), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(224, 32, 160, 0.3);
}

.contact-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-details h5 {
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.contact-details p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-magenta);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-purple);
}

.contact-social {
    background: white;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid rgba(224, 32, 160, 0.1);
}

.contact-social h5 {
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-magenta), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(224, 32, 160, 0.3);
}

.social-link:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(224, 32, 160, 0.4);
    color: white;
}

.social-link i {
    font-size: 1.3rem;
}

.map-container {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(224, 32, 160, 0.1);
}

.map-title {
    color: var(--dark-gray);
    font-weight: 700;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.map-title i {
    color: var(--primary-magenta);
    margin-right: 0.75rem;
}

.map-wrapper {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Contact Method Cards */
.contact-method-card {
    background: white;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(224, 32, 160, 0.1);
    height: 100%;
}

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-magenta);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-magenta), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(224, 32, 160, 0.3);
}

.method-icon i {
    font-size: 2rem;
    color: white;
}

.contact-method-card h5 {
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-method-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.contact-method-card strong {
    color: var(--primary-magenta);
}

/* Alert Styles */
.alert {
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form-card .card-body {
        padding: 2rem;
    }
    
    .contact-form-card .card-header {
        padding: 2rem;
    }
    
    .contact-info-wrapper {
        position: static;
        margin-top: 2rem;
    }
    
    .map-container {
        padding: 1.5rem;
    }
    
    .contact-method-card {
        margin-bottom: 2rem;
    }
}

/* --- WhatsApp Floating Button Styles --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.whatsapp-btn:hover::before {
    transform: translateX(100%);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-btn i {
    font-size: 28px;
    z-index: 1;
    position: relative;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #333;
}

.whatsapp-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    animation: whatsapp-pulse 2s infinite;
    opacity: 0.3;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* WhatsApp Widget Styles (Optional) */
.whatsapp-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 320px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 9998;
    overflow: hidden;
}

.widget-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.widget-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget-avatar i {
    font-size: 20px;
}

.widget-info h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.widget-info small {
    opacity: 0.8;
    font-size: 12px;
}

.widget-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    margin-left: auto;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.widget-close:hover {
    background: rgba(255,255,255,0.2);
}

.widget-body {
    padding: 20px;
    background: #f8f9fa;
}

.widget-message p {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 14px;
}

.widget-footer {
    padding: 15px;
    background: white;
}

.btn-whatsapp-chat {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp-chat:hover {
    background: linear-gradient(135deg, #128C7E, #0f7a6b);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-btn i {
        font-size: 24px;
    }
    
    .whatsapp-tooltip {
        right: 65px;
        font-size: 13px;
        padding: 10px 14px;
    }
    
    .whatsapp-widget {
        width: 280px;
        right: 20px;
        bottom: 85px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-btn i {
        font-size: 22px;
    }
    
    .whatsapp-tooltip {
        right: 60px;
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .whatsapp-widget {
        width: calc(100vw - 30px);
        right: 15px;
        left: 15px;
    }
}