/* ==========================================
   RESET
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,.82), rgba(0,0,0,.92)), url('fondo-detailing.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

/* ==========================================
   EFECTO BRILLO
========================================== */

.shine {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.shine::before {
    content: "";
    position: absolute;
    width: 250%;
    height: 250%;
    top: -100%;
    left: -100%;
    background: linear-gradient(115deg, transparent 45%, rgba(25,168,229,.08) 50%, transparent 55%);
    animation: shineMove 10s linear infinite;
}

@keyframes shineMove {
    from {
        transform: translateX(-40%);
    }
    to {
        transform: translateX(40%);
    }
}

/* ==========================================
   PARTICULAS
========================================== */

.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* ==========================================
   CONTENEDOR PRINCIPAL
========================================== */

.container {
    position: relative;
    z-index: 2;
    width: min(1250px, 92%);
    margin: 40px auto;
    padding: 50px 40px;
    text-align: center;
    background: linear-gradient(180deg, rgba(10,10,10,.92), rgba(0,0,0,.95));
    border-radius: 35px;
    border: 1px solid rgba(25,168,229,.18);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 40px rgba(25,168,229,.08), 0 0 80px rgba(0,0,0,.8);
}

/* ==========================================
   LOGO
========================================== */

.logo {
    width: 100%;
    max-width: 420px;
    display: block;
    margin: 0 auto 25px;
    filter: drop-shadow(0 0 20px rgba(25,168,229,.25));
}

/* ==========================================
   BADGE
========================================== */

.badge {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(25,168,229,.08);
    border: 1px solid rgba(25,168,229,.30);
    color: #19A8E5;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

/* ==========================================
   TITULOS
========================================== */

h1 {
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    font-weight: 900;
    line-height: 1.1;
    max-width: 900px;
    margin: auto auto 20px;
}

.description {
    max-width: 800px;
    margin: auto;
    color: #cfcfcf;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ==========================================
   BOTONES
========================================== */

.hero-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    padding: 16px 34px;
    border-radius: 60px;
    background: linear-gradient(135deg, #19A8E5, #2F3F9F);
    transition: .35s;
    box-shadow: 0 0 25px rgba(25,168,229,.30);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(25,168,229,.50);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: #d8d8d8;
    padding: 16px 34px;
    border-radius: 60px;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.04);
    transition: .35s;
}

.secondary-button:hover {
    transform: translateY(-5px);
    border-color: #19A8E5;
    color: #19A8E5;
}

/* ==========================================
   SECCIONES
========================================== */

section {
    margin-top: 70px;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    color: #19A8E5;
    font-weight: 700;
    font-size: 1.2rem;
}

.section-title i {
    font-size: 1.4rem;
}

/* ==========================================
   SERVICIOS
========================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.service-card {
    background: linear-gradient(145deg, rgba(25,168,229,.10), rgba(255,255,255,.02));
    border: 1px solid rgba(25,168,229,.15);
    border-radius: 25px;
    padding: 30px;
    transition: .35s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #19A8E5;
    box-shadow: 0 0 30px rgba(25,168,229,.20);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: auto auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(25,168,229,.15);
}

.service-icon i {
    font-size: 2rem;
    color: #19A8E5;
}

.service-card h3 {
    color: white;
    margin-bottom: 15px;
}

.service-card p {
    color: #bdbdbd;
    line-height: 1.7;
}

/* ==========================================
   ESTADISTICAS
========================================== */

.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-card {
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(25,168,229,.15);
}

.counter {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #19A8E5;
    margin-bottom: 10px;
}

.stat-card small {
    color: #cfcfcf;
}

/* ==========================================
   CARRUSEL SWIPER
========================================== */

.gallery-section {
    position: relative;
}

.gallerySwiper {
    width: 100%;
    padding: 20px 0 50px;
    overflow: hidden;
}

.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16 / 10;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(25,168,229,0.85), rgba(47,63,159,0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.overlay-content span {
    font-weight: 600;
    letter-spacing: 1px;
}

/* Swiper Navigation */
.gallerySwiper .swiper-button-next,
.gallerySwiper .swiper-button-prev {
    width: 45px;
    height: 45px;
    background: rgba(25,168,229,0.3);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    color: white;
    transition: 0.3s;
}

.gallerySwiper .swiper-button-next:hover,
.gallerySwiper .swiper-button-prev:hover {
    background: rgba(25,168,229,0.8);
    transform: scale(1.1);
}

.gallerySwiper .swiper-button-next:after,
.gallerySwiper .swiper-button-prev:after {
    font-size: 1.3rem;
}

.gallerySwiper .swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
    opacity: 1;
}

.gallerySwiper .swiper-pagination-bullet-active {
    background: #19A8E5;
}

/* Filtros de galería */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(25,168,229,0.1);
    border: 1px solid rgba(25,168,229,0.3);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-btn i {
    color: #19A8E5;
}

.filter-btn:hover {
    background: rgba(25,168,229,0.2);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #19A8E5, #2F3F9F);
    border-color: transparent;
}

.filter-btn.active i {
    color: white;
}

/* Videos */
.gallery-card.video-card {
    position: relative;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card.video-card:hover .gallery-video {
    transform: scale(1.08);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(25,168,229,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.video-play-button i {
    font-size: 1.8rem;
    color: white;
    margin-left: 5px;
}

/* Estadísticas de galería */
.gallery-stats {
    text-align: center;
    margin-top: 25px;
    color: #19A8E5;
    font-size: 0.9rem;
}

.gallery-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(25,168,229,0.1);
    border-radius: 50px;
}

.no-images-message {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    border: 1px dashed rgba(25,168,229,0.3);
}

.no-images-message i {
    font-size: 3rem;
    color: #19A8E5;
    margin-bottom: 15px;
}

.no-images-message p {
    color: #cfcfcf;
    margin-bottom: 10px;
}

.no-images-message small {
    color: #8f8f8f;
}

/* ==========================================
   LIGHTBOX
========================================== */

.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(15px);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(25,168,229,0.3);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-caption {
    margin-top: 20px;
    color: #19A8E5;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    transition: 0.3s;
}

.close-lightbox:hover {
    color: #19A8E5;
    transform: rotate(90deg);
}

/* ==========================================
   MODAL DE VIDEO
========================================== */

.video-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(15px);
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    border-radius: 20px;
    overflow: hidden;
}

#modalVideo {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(25,168,229,0.3);
}

.close-video {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.close-video:hover {
    color: #19A8E5;
    transform: rotate(90deg);
}

/* ==========================================
   TESTIMONIOS
========================================== */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.testimonial-card {
    padding: 30px;
    border-radius: 25px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(25,168,229,.15);
}

.testimonial-card p {
    color: #d8d8d8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    color: #19A8E5;
}

.stars {
    margin-top: 15px;
    color: #FFD700;
    font-size: 0.9rem;
}

.stars i {
    margin-right: 3px;
}

/* ==========================================
   REDES SOCIALES
========================================== */

.social-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-card {
    text-decoration: none;
    color: white;
    min-width: 180px;
    padding: 18px 25px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(25,168,229,.10), rgba(255,255,255,.02));
    border: 1px solid rgba(25,168,229,.15);
    transition: .35s;
}

.social-card:hover {
    transform: translateY(-6px);
    border-color: #19A8E5;
}

.social-card i {
    font-size: 1.8rem;
    margin-bottom: 12px;
    display: block;
}

/* ==========================================
   UBICACIÓN MAPA
========================================== */

.map-card {
    max-width: 500px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    text-decoration: none;
    color: white;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(25,168,229,.15);
    transition: .35s;
}

.map-card:hover {
    transform: translateX(6px);
    border-color: #19A8E5;
}

.map-info {
    flex: 1;
    text-align: left;
}

.map-title {
    display: block;
    color: #19A8E5;
    font-weight: 700;
}

.map-address {
    color: #cfcfcf;
    font-size: .85rem;
}

/* ==========================================
   CTA FINAL
========================================== */

.bottom-cta {
    margin-top: 80px;
    padding: 50px;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(25,168,229,.12), rgba(47,63,159,.08));
}

.bottom-cta h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 2rem;
}

.bottom-cta p {
    color: #d0d0d0;
    margin-bottom: 30px;
}

/* ==========================================
   FOOTER
========================================== */

footer {
    margin-top: 70px;
    color: #8f8f8f;
    font-size: .9rem;
}

/* ==========================================
   BOTONES FLOTANTES - CORREGIDOS CON ICONOS GRANDES
========================================== */

/* Botón WhatsApp - Fix movimiento al hacer clic */
.floating-whatsapp,
.floating-instagram {
    position: fixed;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    z-index: 9999;
    transition: box-shadow 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
    cursor: pointer;
    will-change: auto;
}

/* Iconos más grandes */
.floating-whatsapp i,
.floating-instagram i {
    font-size: 2.8rem;
    transition: transform 0.2s ease;
}

.floating-whatsapp:hover i,
.floating-instagram:hover i {
    transform: scale(1.1);
}

/* Eliminar cualquier transform al hacer clic */
.floating-whatsapp:active,
.floating-instagram:active {
    transform: none !important;
}

/* Botón WhatsApp */
.floating-whatsapp {
    right: 25px;
    bottom: 25px;
    background: #25D366;
    box-shadow: 0 0 30px rgba(37,211,102,.4);
}

.floating-whatsapp:hover {
    box-shadow: 0 0 30px rgba(37,211,102,.7);
}

/* Botón Instagram */
.floating-instagram {
    right: 25px;
    bottom: 110px;
    background: linear-gradient(135deg, #833AB4, #E4405F, #F56040);
    box-shadow: 0 0 30px rgba(228, 64, 95, 0.4);
}

.floating-instagram:hover {
    box-shadow: 0 0 30px rgba(228, 64, 95, 0.7);
}

/* Animación sutil (sin transform) */
@keyframes subtlePulse {
    0% {
        opacity: 0.95;
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 35px rgba(37,211,102,.5);
    }
    100% {
        opacity: 0.95;
    }
}

.floating-whatsapp {
    animation: subtlePulse 2s infinite;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .floating-whatsapp,
    .floating-instagram {
        width: 55px;
        height: 55px;
    }
    
    .floating-whatsapp i,
    .floating-instagram i {
        font-size: 2rem;
    }
    
    .floating-instagram {
        bottom: 95px;
    }
}

/* ==========================================
   CARRUSEL DE SERVICIOS
========================================== */

.services-section {
    position: relative;
    overflow: visible;
}

.servicesSwiper {
    width: 100%;
    padding: 20px 0 60px;
    overflow: visible;
}

.servicesSwiper .swiper-slide {
    height: auto;
    transition: transform 0.3s ease;
}

.servicesSwiper .swiper-slide:hover {
    transform: translateY(-5px);
}

/* Tarjetas de servicio en el carrusel */
.servicesSwiper .service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, rgba(25,168,229,.10), rgba(255,255,255,.02));
    border: 1px solid rgba(25,168,229,.15);
    border-radius: 25px;
    padding: 30px 25px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.servicesSwiper .service-card:hover {
    transform: translateY(-10px);
    border-color: #19A8E5;
    box-shadow: 0 0 30px rgba(25,168,229,.25);
    background: linear-gradient(145deg, rgba(25,168,229,.15), rgba(255,255,255,.04));
}

/* Precio del servicio */
.service-price {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(25,168,229,.2);
}

.price {
    display: inline-block;
    background: linear-gradient(135deg, #19A8E5, #2F3F9F);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Navegación del carrusel de servicios */
.servicesSwiper .swiper-button-next,
.servicesSwiper .swiper-button-prev {
    width: 45px;
    height: 45px;
    background: rgba(25,168,229,0.2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    color: white;
    transition: 0.3s;
    top: 40%;
}

.servicesSwiper .swiper-button-next:hover,
.servicesSwiper .swiper-button-prev:hover {
    background: rgba(25,168,229,0.7);
    transform: scale(1.1);
}

.servicesSwiper .swiper-button-next:after,
.servicesSwiper .swiper-button-prev:after {
    font-size: 1.2rem;
}

/* Paginación del carrusel de servicios */
.services-pagination {
    bottom: 0 !important;
}

.services-pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,0.4);
    width: 10px;
    height: 10px;
    transition: 0.3s;
}

.services-pagination .swiper-pagination-bullet-active {
    background: #19A8E5;
    width: 25px;
    border-radius: 10px;
}

/* Responsive carrusel servicios */
@media (max-width: 768px) {
    .servicesSwiper .swiper-button-next,
    .servicesSwiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .servicesSwiper .swiper-button-next:after,
    .servicesSwiper .swiper-button-prev:after {
        font-size: 1rem;
    }
    
    .service-price {
        margin-top: 15px;
        padding-top: 12px;
    }
    
    .price {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
}

/* Animación de entrada para las tarjetas */
.servicesSwiper .swiper-slide {
    opacity: 0;
    transform: scale(0.9);
    animation: serviceFadeIn 0.5s ease forwards;
}

@keyframes serviceFadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Efecto de brillo en hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.service-card:hover::before {
    left: 100%;
}

/* ==========================================
   VIDEOS - AUTOPLAY INTELIGENTE
========================================== */

/* Ocultar controles nativos del video */
.gallery-video::-webkit-media-controls {
    display: none !important;
}

.gallery-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.gallery-video::-webkit-media-controls-panel {
    display: none !important;
}

/* Botón de play flotante */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: rgba(25,168,229,0.95);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 20px rgba(25,168,229,0.5);
}

.video-play-button i {
    font-size: 2rem;
    color: white;
    margin-left: 5px;
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #19A8E5;
}

/* Indicador de reproducción */
.video-card.playing::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 10px;
    height: 10px;
    background: #4CAF50;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 5px #4CAF50;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Efecto hover en videos */
.video-card:hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.05);
}

/* Modal de video pantalla completa */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(15px);
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    border-radius: 20px;
    overflow: hidden;
}

#modalVideo {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(25,168,229,0.3);
}

.close-video {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.close-video:hover {
    color: #19A8E5;
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 768px) {
    .video-play-button {
        width: 50px;
        height: 50px;
    }
    
    .video-play-button i {
        font-size: 1.5rem;
    }
    
    .close-video {
        top: -35px;
        font-size: 2rem;
    }
}

/* ==========================================
   RESPONSIVE GENERAL
========================================== */

@media (max-width: 992px) {
    .stats-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 35px 20px;
    }
    
    .logo {
        max-width: 260px;
    }
    
    h1 {
        font-size: 2.3rem;
    }
    
    .description {
        font-size: .95rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .cta-button,
    .secondary-button {
        width: 100%;
    }
    
    .bottom-cta {
        padding: 30px 20px;
    }
    
    .gallerySwiper .swiper-button-next,
    .gallerySwiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .gallerySwiper .swiper-button-next:after,
    .gallerySwiper .swiper-button-prev:after {
        font-size: 1rem;
    }
    
    .overlay-content i {
        font-size: 1.8rem;
    }
    
    .overlay-content span {
        font-size: 0.85rem;
    }
    
    .close-lightbox {
        top: 20px;
        right: 20px;
        font-size: 2rem;
    }
    
    .video-play-button {
        width: 45px;
        height: 45px;
    }
    
    .video-play-button i {
        font-size: 1.3rem;
    }
    
    .filter-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    .close-video {
        top: -35px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .social-card {
        width: 100%;
    }
}