/* ===== MODERN STYLES - Inspired by YoTeProteggo ===== */

/* ===== BRANDS SECTION MODERN (Estilo YoTeProteggo) ===== */
.brands-section-modern {
    background: white;
    padding: 60px 0;
    position: relative;
}

.brands-section-modern .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
}

.brands-scroll-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.brands-scroll-container {
    overflow: hidden;
    position: relative;
}

.brands-scroll-track {
    display: flex;
    gap: 20px;
    animation: scrollBrands 30s linear infinite;
    width: fit-content;
}

.brands-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px 40px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.brand-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.2);
}

.brand-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.brand-card:hover i {
    transform: scale(1.15);
    color: var(--secondary-color);
}

.brand-card span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
}

.brand-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--primary-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary-color);
}

.brand-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.brand-prev {
    left: -20px;
}

.brand-next {
    right: -20px;
}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    /* ===== HERO CAROUSEL/BANNER - TRANSICIONES SECUENCIALES ===== */
.hero-carousel {
    position: relative;
    overflow: hidden;
    background: var(--banner-gradient);
    min-height: 500px;
}

.hero-carousel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.95));
    pointer-events: none;
    z-index: 1;
}

.carousel-container {
    position: relative;
    width: 100%;
    padding: 100px 0 80px;
}

/* Los contenedores permanecen siempre visibles */
.hero-badge,
.hero-buttons .btn,
.hero-feature-item,
.hero-floating-badge {
    transition: none;
}

/* Solo el contenido interno (texto/iconos) tiene transición suave */
.hero-badge i,
.hero-badge span,
.hero-title,
.hero-subtitle,
.hero-feature-item i,
.hero-feature-item span,
.hero-buttons .btn i,
.hero-buttons .btn span,
.hero-floating-badge i,
.hero-floating-badge strong,
.hero-floating-badge span {
    transition: opacity 0.5s ease-in-out;
}

/* La imagen tiene su propia transición controlada por JS */
.hero-main-image {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Estilos del badge */
.hero-badge {
    display: none !important;
}

.hero-badge i {
    display: none !important;
}

/* Estilos de textos */
.hero-title {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    max-width: 500px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    line-height: 1.5;
    max-width: 450px;
}

/* Botones */
.hero-buttons {
    display: none !important;
}

/* Features */
.hero-features {
    display: none !important;
}

.hero-feature-item {
    display: none !important;
}

.hero-feature-item i {
    display: none !important;
}

/* Imagen */
.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    text-align: center;
    padding: 20px;
}

.hero-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-floating-badge {
    display: none !important;
}

.hero-floating-badge i {
    font-size: 2.5rem;
    color: var(--warning);
}

.hero-floating-badge div {
    text-align: left;
}

.hero-floating-badge strong {
    display: block;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.hero-floating-badge span {
    color: var(--gray);
    font-size: 0.9rem;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Controles del Carousel */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-control:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: 30px;
}

.carousel-control.next {
    right: 30px;
}

/* Indicadores (dots) */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 107, 53, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary-color);
    width: 40px;
    border-radius: 10px;
}

/* ===== HERO MODERN SECTION ===== */
.hero-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ff6b3520" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,138.7C672,128,768,128,864,138.7C960,149,1056,171,1152,165.3C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center;
    background-size: cover;
    opacity: 0.4;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: slideInLeft 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), #ff8757);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.hero-badge i {
    animation: pulse 2s ease-in-out infinite;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    /* color: var(--dark-color); */
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-features {
    margin-bottom: 30px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    /* color: var(--white); */
    font-size: 1.05rem;
}

.hero-feature-item i {
    color: var(--success);
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    animation: slideInRight 0.8s ease-out;
}

.hero-image-wrapper {
    position: relative;
    text-align: center;
    padding: 20px;
}

.hero-floating-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: white;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: floatBadge 3s ease-in-out infinite;
}

.hero-floating-badge i {
    font-size: 2.5rem;
    color: var(--warning);
}

.hero-floating-badge div {
    text-align: left;
}

.hero-floating-badge strong {
    display: block;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.hero-floating-badge span {
    color: var(--gray);
    font-size: 0.9rem;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ===== PRODUCT SHOWCASE SECTION ===== */
.product-showcase {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.showcase-image {
    position: relative;
    text-align: center;
    padding: 40px;
}

.showcase-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--success), #20c997);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    z-index: 2;
}

.showcase-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.icon-item {
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.icon-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.icon-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.showcase-content h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.showcase-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.showcase-description strong {
    color: var(--primary-color);
}

.showcase-highlight {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--warning);
    margin: 30px 0;
}

.showcase-highlight h4 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.showcase-highlight p {
    color: var(--gray);
    margin: 0;
}

/* ===== FEATURES SECTION - MODERNIZED ===== */
.features {
    background: #f8f9fa;
    padding: 80px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), #ff8757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* ===== PARTS SELECTOR SECTION ===== */
.parts-selector {
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    padding: 80px 0;
}

.selector-box {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-top: 40px;
}

.selector-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto auto;
    gap: 20px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.form-control {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.selector-results {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 30px;
    border: 3px dashed var(--success);
}

.selector-results h3 {
    color: var(--dark-color);
    font-size: 2rem;
    margin-bottom: 15px;
}

.selector-results p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    background: white;
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-item {
    text-align: center;
    padding: 40px 25px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.benefit-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--secondary-color), #0066b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-icon i {
    font-size: 3rem;
    color: white;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-item h3 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-item p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 2.8rem;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .showcase-content h2 {
        font-size: 2.2rem;
    }

    .selector-form {
        grid-template-columns: 1fr;
    }

    .hero-floating-badge {
        bottom: 20px;
        right: 20px;
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .benefit-icon,
    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .benefit-icon i,
    .feature-icon i {
        font-size: 2rem;
    }

    .selector-box {
        padding: 30px 20px;
    }

    .faq-question {
        font-size: 1rem;
        padding: 20px;
    }

    /* Carousel responsive */
    .carousel-control {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .carousel-control.prev {
        left: 10px;
    }

    .carousel-control.next {
        right: 10px;
    }

    .carousel-dots {
        bottom: 15px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 30px;
    }

    .carousel-slide {
        padding: 60px 0 50px;
    }
    
    /* Deshabilitar animaciones complejas en móvil para mejor rendimiento */
    .carousel-slide.slide-in-right,
    .carousel-slide.slide-in-left,
    .carousel-slide.slide-out-left,
    .carousel-slide.slide-out-right {
        animation-duration: 0.5s;
    }
    
    .hero-image-wrapper img {
        max-width: 100%;
        height: auto;
    }
    
    .hero-floating-badge {
        bottom: 10px;
        right: 10px;
        padding: 12px 15px;
        gap: 10px;
    }
    
    .hero-floating-badge i {
        font-size: 1.8rem;
    }
    
    .hero-floating-badge strong {
        font-size: 1.2rem;
    }
    
    .hero-floating-badge span {
        font-size: 0.8rem;
    }

    /* Brands responsive */
    .brands-section-modern .section-title {
        font-size: 1.5rem;
        padding: 0 15px;
    }

    .brand-card {
        min-width: 140px;
        padding: 20px 25px;
    }

    .brand-card i {
        font-size: 2.5rem;
    }

    .brand-card span {
        font-size: 0.9rem;
    }

    .brand-nav {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .brand-prev {
        left: -5px;
    }

    .brand-next {
        right: -5px;
    }

    @keyframes scrollBrands {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
}

/* ===== FOOTER IMPROVEMENTS ===== */
.footer {
    /* background: linear-gradient(135deg, var(--dark-color) 0%, #0f0f1e 100%); */
    color: white;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
}

.footer-col h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.footer-col h5 {
    font-size: 1rem;
    margin: 20px 0 10px;
    color: white;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-contact-info {
    margin: 25px 0;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.8);
}

.footer-contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.footer-contact-info a {
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}

.footer-contact-info a:hover {
    color: var(--primary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a i {
    font-size: 0.7rem;
    color: var(--primary-color);
}

.footer-col ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255,255,255,0.15);
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #ff8757);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.payment-methods {
    margin-top: 25px;
}

.payment-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.payment-icons i {
    font-size: 2rem;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: white;
    transform: scale(1.2);
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin: 0 0 15px 0;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.footer-bottom-links span {
    color: rgba(255,255,255,0.3);
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col ul li a {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .payment-icons {
        justify-content: center;
    }

    .footer-contact-info p {
        justify-content: center;
    }
}

