/* ===== VARIABLES ===== */
:root {
    /* Colores principales */
    --primary-color: #0066cc;
    --primary-dark: #0052a3;
    --primary-blue: #001f41;
    --primary-blue-light: #003366;
    --primary-blue-dark: #00152e;
    --secondary-color: #ff6b00;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    
    /* Colores de texto */
    --text-color: #333333;
    --text-muted: #6c757d;
    --border-color: #dee2e6;
    
    /* Efectos */
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* ===== RESET Y BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    padding-top: 0 !important; /* Elimina el padding superior */
    margin: 0; 
}

/* ===== COMPONENTES GENERALES ===== */

/* Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-content .spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Top Bar */
.top-bar {
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-info i,
.top-bar-contact i {
    color: var(--secondary-color);
}

/* Botones */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
}

.btn-outline-primary {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline-primary:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

/* ===== NAVEGACIÓN ===== */

/* Navbar Base */
.navbar {
    padding: 0.5rem 0;
    transition: var(--transition);
}

.navbar.sticky-top {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand img {
     filter: none !important; /* Elimina el filtro que volvía blanco el logo */
     -webkit-filter: none !important;
}

.navbar-actions .btn {
    font-weight: 500;
    padding: 0.5rem 1rem;
}

/* Navbar Light (Por defecto) */
.navbar-light .navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: var(--dark-color);
    transition: var(--transition);
    border-radius: 0.375rem;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color);
    background: rgba(0, 102, 204, 0.1);
}

/* Navbar Dark (Tema Azul) */
.navbar-dark.bg-primary-blue {
    background-color: var(--primary-blue) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    border-radius: 0.375rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.navbar-dark .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-brand img {
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
	filter: brightness(0) invert(0) !important; /* Logo normal en navbar oscuro */
}

/* Dropdown Menu */
.navbar-dark .dropdown-menu {
    background-color: var(--primary-blue);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
}

.navbar-dark .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.navbar-dark .dropdown-item:hover,
.navbar-dark .dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.navbar-dark .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Botones de Acción Navbar */
.navbar-dark .navbar-actions .btn-success {
    background-color: #25D366;
    border-color: #25D366;
    color: white;
}

.navbar-dark .navbar-actions .btn-success:hover {
    background-color: #128C7E;
    border-color: #128C7E;
}

.navbar-dark .navbar-actions .btn-light {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
}

.navbar-dark .navbar-actions .btn-light:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: var(--primary-blue);
}

/* ===== SECCIONES PRINCIPALES ===== */

/* Hero Section */
.hero-section {
    position: relative;
    margin-top: 0;
}

.hero-section .carousel-item {
    height: 70vh;
    min-height: 600px;
}

.hero-section .carousel-item img {
    object-fit: cover;
    height: 100%;
    filter: brightness(0.7);
}

.hero-section .carousel-caption {
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: 4rem;
    padding-bottom: 4rem;
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
}

.feature-card {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

/* Products Section */
.products-section {
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.product-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-features .badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a252f 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::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 1000 1000"><polygon fill="rgba(255,255,255,0.02)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.stat-item {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Stats Section Light Variant */
.stats-section.bg-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
}

.stats-section.bg-light .stat-number {
    color: var(--primary-color);
}

.stats-section.bg-light .stat-label {
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: var(--secondary-color);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.payment-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--secondary-color);
}

.back-to-top {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.back-to-top:hover {
    color: white;
}

/* ===== PÁGINAS ESPECÍFICAS ===== */

/* Page Header (Para Nosotros, Productos, Contacto) */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.page-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 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,1000 0,1000"/></svg>');
    background-size: cover;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: white;
}

/* About Page Styles */
.about-section {
    background: white;
}

.about-content .lead {
    font-size: 1.3rem;
    line-height: 1.6;
}

/* Process Timeline */
.process-timeline {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--primary-color);
}

.process-step {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon i {
    font-size: 1.75rem;
    color: white;
}

.process-step h5 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* About Values */
.about-values {
    position: sticky;
    top: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateX(5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-content h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Value Features */
.value-feature {
    padding: 2rem 1rem;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.value-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.feature-icon {
    font-size: 2rem;
    color: white;
}

.value-feature h5 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-feature p {
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ===== ANIMACIONES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-section .carousel-item {
        height: 60vh;
        min-height: 500px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .navbar-actions {
        margin-top: 1rem;
        text-align: center;
    }
    
    .top-bar .row {
        text-align: center;
    }
    
    .top-bar-contact {
        margin-top: 0.5rem;
    }
    
    /* Navbar Responsive */
    .navbar-dark .navbar-collapse {
        background-color: var(--primary-blue);
        padding: 1rem;
        border-radius: 0.5rem;
        margin-top: 0.5rem;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
    }
    
    .navbar-dark .navbar-actions {
        margin-top: 1rem;
        text-align: center;
    }
    
    .navbar-dark .navbar-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .navbar-dark .navbar-actions .btn:last-child {
        margin-bottom: 0;
    }
    
    /* About Page Responsive */
    .page-header {
        padding: 3rem 0;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .about-content .lead {
        font-size: 1.1rem;
    }
    
    .process-step {
        padding: 1rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
    }
    
    .value-icon i {
        font-size: 1.25rem;
    }
    
    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon {
        font-size: 1.75rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-section .carousel-item {
        height: 50vh;
        min-height: 400px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .product-image {
        height: 200px;
    }
    
    /* About Page Mobile */
    .page-header h1 {
        font-size: 2rem;
    }
    
    .process-timeline {
        padding: 1.5rem;
    }
    
    .value-feature {
        padding: 1.5rem 1rem;
    }
}

/* ===== ACCESIBILIDAD ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== ESTILOS DE IMPRESIÓN ===== */
@media print {
    .navbar,
    .top-bar,
    .footer {
        display: none;
    }
    
    .hero-section .carousel-caption {
        position: static;
        color: black;
        text-shadow: none;
    }
}

/* Products Page Specific Styles */
        .products-hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            padding: 4rem 0;
            color: white;
            text-align: center;
        }
        
        .product-category-nav {
            background: var(--light-color);
            padding: 1rem 0;
            position: sticky;
            top: 76px;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .category-nav-link {
            color: var(--text-color);
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            transition: all 0.3s ease;
            font-weight: 500;
            white-space: nowrap;
        }
        
        .category-nav-link:hover,
        .category-nav-link.active {
            background: var(--primary-color);
            color: white;
        }
        
        .product-section {
            padding: 4rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        .product-section:last-of-type {
            border-bottom: none;
        }
        
        .product-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }
        
        .product-info {
            flex: 1;
        }
        
        .product-gallery {
            flex: 1;
        }
        
        .product-features {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin: 1.5rem 0;
        }
        
        .feature-badge {
            background: var(--light-color);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-color);
        }
        
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
        }
        
        .specs-table th,
        .specs-table td {
            padding: 0.75rem;
            border-bottom: 1px solid var(--border-color);
            text-align: left;
        }
        
        .specs-table th {
            background: var(--light-color);
            font-weight: 600;
        }
        
        .carousel-product {
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
        }
        
        .carousel-product img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        
        .applications-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .application-card {
            background: white;
            padding: 1.5rem;
            border-radius: 0.75rem;
            box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.1);
            text-align: center;
        }
        
        .application-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }
        
        .application-icon i {
            font-size: 1.5rem;
            color: white;
        }
        
        @media (max-width: 768px) {
            .product-content {
                flex-direction: column;
                gap: 2rem;
            }
            
            .product-gallery {
                order: -1;
            }
            
            .carousel-product img {
                height: 300px;
            }
            
            .category-nav-scroll {
                overflow-x: auto;
                padding-bottom: 0.5rem;
            }
            
            .category-nav-links {
                display: flex;
                gap: 0.5rem;
                min-width: max-content;
            }
        }
		
/* Contact Page Specific Styles */
        .contact-hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            padding: 4rem 0;
            color: white;
            text-align: center;
        }
        
        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .contact-card {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary-color);
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 1rem 2rem rgba(0,0,0,0.15);
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }
        
        .contact-icon i {
            font-size: 2rem;
            color: white;
        }
        
        .contact-form-section {
            background: var(--light-color);
            padding: 4rem 0;
        }
        
        .form-card {
            background: white;
            padding: 2.5rem;
            border-radius: 1rem;
            box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
        }
        
        .form-floating .form-control {
            border: 2px solid var(--border-color);
            border-radius: 0.5rem;
            padding: 1rem 0.75rem;
            height: calc(3.5rem + 2px);
        }
        
        .form-floating .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
        }
        
        .form-floating textarea.form-control {
            height: auto;
            min-height: 120px;
        }
        
        .bank-info {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-left: 4px solid var(--secondary-color);
            padding: 1.5rem;
            border-radius: 0.5rem;
            margin: 2rem 0;
        }
        
        .whatsapp-cta {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            margin: 2rem 0;
        }
        
        .map-container {
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
            height: 400px;
        }
        
        .business-hours {
            background: white;
            padding: 1.5rem;
            border-radius: 0.75rem;
            box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.1);
        }
        
        .hours-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .hours-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
        }
        
        .hours-list li:last-child {
            border-bottom: none;
        }
        
        @media (max-width: 768px) {
            .contact-info-grid {
                grid-template-columns: 1fr;
            }
            
            .form-card {
                padding: 1.5rem;
            }
            
            .contact-card {
                padding: 1.5rem;
            }
        }