/* ============================================
   HIDROSOLUCIONES BOGOTÁ - ESTILO MODERNO 2026
   Prefijo: hs- (HidroSoluciones)
   No interfiere con el CSS anterior (mu-)
   ============================================ */

/* ============ RESET DEFENSIVO contra style.css viejo ============ */
/* Anular cualquier regla del CSS antiguo que pueda heredar */
body > #mu-slider,
body > #mu-hero { display: none !important; }

/* Asegurar que el hero nuevo no herede min-height/padding raros */
section.hs-hero,
section.hs-section,
section.hs-quick-contact,
section.hs-counters,
section.hs-video-section,
section.hs-cta-section {
    min-height: auto;
}

/* Bootstrap 5 container fix */
.hs-hero .container { max-width: 1200px; }

:root {
    --hs-primary: #0066cc;
    --hs-primary-dark: #004999;
    --hs-secondary: #00b4d8;
    --hs-accent: #ffb703;
    --hs-success: #25d366;
    --hs-dark: #0a1929;
    --hs-darker: #050d18;
    --hs-light: #f8fafc;
    --hs-gray: #64748b;
    --hs-gray-light: #e2e8f0;
    --hs-white: #ffffff;
    --hs-gradient-primary: linear-gradient(135deg, #0066cc 0%, #00b4d8 100%);
    --hs-gradient-accent: linear-gradient(135deg, #ffb703 0%, #fb8500 100%);
    --hs-gradient-dark: linear-gradient(135deg, #0a1929 0%, #1e293b 100%);
    --hs-shadow-sm: 0 2px 8px rgba(0, 102, 204, 0.08);
    --hs-shadow-md: 0 8px 24px rgba(0, 102, 204, 0.12);
    --hs-shadow-lg: 0 20px 50px rgba(0, 102, 204, 0.15);
    --hs-shadow-xl: 0 30px 80px rgba(0, 102, 204, 0.2);
    --hs-radius-sm: 8px;
    --hs-radius-md: 16px;
    --hs-radius-lg: 24px;
    --hs-radius-xl: 32px;
    --hs-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --hs-transition-fast: all 0.25s ease;
    --hs-font-primary: 'Poppins', system-ui, -apple-system, sans-serif;
    --hs-font-heading: 'Montserrat', sans-serif;
}

/* ============ RESET BÁSICO ============ */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--hs-font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--hs-dark);
    background: var(--hs-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--hs-font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--hs-dark);
}

a {
    text-decoration: none;
    transition: var(--hs-transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background: var(--hs-primary);
    color: var(--hs-white);
}

/* Scroll personalizado */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: var(--hs-gradient-primary);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--hs-primary-dark);
}

/* ============ UTILIDADES ============ */
.hs-text-gradient {
    background: var(--hs-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hs-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hs-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.hs-section-pretitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--hs-primary);
    margin-bottom: 15px;
    position: relative;
    padding: 8px 20px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 50px;
}

.hs-pretitle-light {
    color: var(--hs-secondary);
    background: rgba(0, 180, 216, 0.15);
}

.hs-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.hs-title-light {
    color: var(--hs-white);
}

.hs-section-subtitle {
    font-size: 17px;
    color: var(--hs-gray);
    line-height: 1.7;
}

/* ============ BOTONES ============ */
.hs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--hs-font-primary);
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--hs-transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hs-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: left 0.5s ease;
    z-index: -1;
}

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

.hs-btn-primary {
    background: var(--hs-gradient-primary);
    color: var(--hs-white);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.35);
}

.hs-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.5);
    color: var(--hs-white);
}

.hs-btn-outline {
    background: transparent;
    color: var(--hs-white);
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
}

.hs-btn-outline:hover {
    background: var(--hs-white);
    color: var(--hs-primary);
    transform: translateY(-3px);
}

.hs-btn-whatsapp {
    background: var(--hs-success);
    color: var(--hs-white);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.hs-btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    color: var(--hs-white);
}

/* ============ PRELOADER ============ */
.hs-preloader {
    position: fixed;
    inset: 0;
    background: var(--hs-gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

.hs-preloader.hs-hide {
    opacity: 0;
    visibility: hidden;
}

.hs-water-loader {
    display: flex;
    gap: 10px;
}

.hs-water-loader .hs-drop {
    width: 20px;
    height: 20px;
    background: var(--hs-secondary);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    animation: hs-dropAnim 1.2s ease-in-out infinite;
}

.hs-water-loader .hs-drop:nth-child(2) { animation-delay: 0.2s; }
.hs-water-loader .hs-drop:nth-child(3) { animation-delay: 0.4s; }

@keyframes hs-dropAnim {
    0%, 100% { transform: rotate(-45deg) translateY(0); opacity: 0.5; }
    50% { transform: rotate(-45deg) translateY(-20px); opacity: 1; }
}

/* ============ BOTONES FLOTANTES ============ */
.hs-float-whatsapp,
.hs-float-call {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hs-white);
    font-size: 28px;
    z-index: 999;
    transition: var(--hs-transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hs-float-whatsapp {
    bottom: 30px;
    right: 30px;
    background: var(--hs-success);
}

.hs-float-call {
    bottom: 100px;
    right: 30px;
    background: var(--hs-primary);
    font-size: 22px;
}

.hs-float-whatsapp:hover,
.hs-float-call:hover {
    transform: scale(1.1) rotate(10deg);
    color: var(--hs-white);
}

.hs-pulse-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 3px solid var(--hs-success);
    animation: hs-pulse 1.5s ease-out infinite;
}

@keyframes hs-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.hs-scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--hs-gradient-primary);
    color: var(--hs-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--hs-transition);
    box-shadow: var(--hs-shadow-md);
}

.hs-scroll-top.hs-visible {
    opacity: 1;
    visibility: visible;
}

.hs-scroll-top:hover {
    transform: translateY(-5px);
}

/* ============ HEADER ============ */
.hs-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--hs-transition);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.hs-header.hs-scrolled {
    padding: 8px 0;
    box-shadow: var(--hs-shadow-md);
}

.hs-brand {
    display: flex;
    align-items: center;
}

.hs-logo {
    height: 60px;
    width: auto;
    transition: var(--hs-transition);
}

.hs-header.hs-scrolled .hs-logo {
    height: 50px;
}

.hs-nav {
    align-items: center;
    gap: 5px;
}

.hs-nav .nav-link {
    font-weight: 600;
    color: var(--hs-dark) !important;
    padding: 10px 18px !important;
    position: relative;
    font-size: 15px;
    border-radius: 50px;
    transition: var(--hs-transition-fast);
}

.hs-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--hs-gradient-primary);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.hs-nav .nav-link:hover::after,
.hs-nav .nav-link.active::after {
    width: 25px;
}

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

.hs-nav-cta {
    background: var(--hs-gradient-primary);
    color: var(--hs-white) !important;
    margin-left: 10px;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.hs-nav-cta:hover {
    color: var(--hs-white) !important;
    transform: translateY(-2px);
}

.hs-nav-cta::after {
    display: none;
}

/* Toggler hamburguesa */
.hs-toggler {
    border: none;
    padding: 10px;
    background: transparent;
}

.hs-toggler:focus {
    box-shadow: none;
}

.hs-toggler-icon {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--hs-primary);
    margin: 5px 0;
    transition: var(--hs-transition-fast);
    border-radius: 3px;
}

/* ============ HERO / SLIDER (BLINDADO contra style.css viejo) ============ */
.hs-hero {
    position: relative !important;
    width: 100% !important;
    height: 100vh !important;
    min-height: 600px !important;
    max-height: none !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

.hs-hero .swiper.hs-hero-swiper {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    z-index: 1 !important;
}

.hs-hero .swiper-wrapper {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    position: relative !important;
}

.hs-hero .swiper-slide.hs-slide {
    width: 100% !important;
    height: 100% !important;
    flex-shrink: 0 !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
}

/* Efecto Ken Burns sutil sobre el slide activo */
.hs-hero .swiper-slide-active.hs-slide {
    animation: hs-kenburns 9s ease-out forwards;
}

@keyframes hs-kenburns {
    0% {
        background-size: 100% auto;
    }
    100% {
        background-size: 112% auto;
    }
}

/* Fallback: si la imagen es más alta que ancha, asegurar cover */
@supports (background-size: cover) {
    .hs-hero .swiper-slide.hs-slide {
        background-size: cover !important;
    }
    .hs-hero .swiper-slide-active.hs-slide {
        animation: hs-kenburnsCover 9s ease-out forwards;
    }
    @keyframes hs-kenburnsCover {
        0% { background-position: center 50%; }
        100% { background-position: center 40%; }
    }
}

.hs-hero .hs-slide-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(10, 25, 41, 0.85) 0%, rgba(0, 102, 204, 0.6) 50%, rgba(0, 180, 216, 0.4) 100%) !important;
    z-index: 1 !important;
}

/* Anular cualquier estilo viejo de img dentro del slider */
.hs-hero .swiper-slide img,
.hs-hero img {
    max-width: none;
}

.hs-slide-content {
    position: relative !important;
    z-index: 5 !important;
    width: 100% !important;
    height: 100% !important;
    color: var(--hs-white) !important;
    padding-top: 80px;
    display: flex;
    align-items: center;
}

.hs-slide-content .row {
    width: 100%;
}

.hs-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 183, 3, 0.15);
    backdrop-filter: blur(10px);
    color: var(--hs-accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 183, 3, 0.3);
}

.hs-slide-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--hs-white);
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.hs-slide-text {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    max-width: 600px;
    line-height: 1.7;
}

.hs-slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Controles Swiper */
.hs-swiper-pagination {
    bottom: 30px !important;
}

.hs-swiper-pagination .swiper-pagination-bullet {
    width: 40px;
    height: 5px;
    background: rgba(255,255,255,0.4);
    border-radius: 5px;
    opacity: 1;
    transition: var(--hs-transition);
}

.hs-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--hs-accent);
    width: 60px;
}

.hs-swiper-next,
.hs-swiper-prev {
    width: 55px !important;
    height: 55px !important;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--hs-transition);
}

.hs-swiper-next:hover,
.hs-swiper-prev:hover {
    background: var(--hs-accent);
    transform: scale(1.1);
}

.hs-swiper-next::after,
.hs-swiper-prev::after {
    font-size: 20px !important;
    color: var(--hs-white);
    font-weight: 700;
}

/* Burbujas animadas */
.hs-bubbles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.hs-bubbles span {
    position: absolute;
    bottom: -100px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: hs-bubble-rise 15s linear infinite;
    border: 2px solid rgba(255,255,255,0.15);
}

.hs-bubbles span:nth-child(1) { left: 10%; animation-duration: 12s; width: 30px; height: 30px; }
.hs-bubbles span:nth-child(2) { left: 20%; animation-duration: 18s; animation-delay: 2s; width: 60px; height: 60px; }
.hs-bubbles span:nth-child(3) { left: 35%; animation-duration: 14s; animation-delay: 4s; width: 25px; height: 25px; }
.hs-bubbles span:nth-child(4) { left: 50%; animation-duration: 20s; animation-delay: 0s; width: 50px; height: 50px; }
.hs-bubbles span:nth-child(5) { left: 60%; animation-duration: 16s; animation-delay: 3s; width: 35px; height: 35px; }
.hs-bubbles span:nth-child(6) { left: 70%; animation-duration: 13s; animation-delay: 1s; width: 45px; height: 45px; }
.hs-bubbles span:nth-child(7) { left: 80%; animation-duration: 17s; animation-delay: 5s; width: 30px; height: 30px; }
.hs-bubbles span:nth-child(8) { left: 90%; animation-duration: 19s; animation-delay: 2s; width: 55px; height: 55px; }
.hs-bubbles span:nth-child(9) { left: 5%; animation-duration: 15s; animation-delay: 6s; width: 40px; height: 40px; }
.hs-bubbles span:nth-child(10) { left: 45%; animation-duration: 22s; animation-delay: 7s; width: 28px; height: 28px; }

@keyframes hs-bubble-rise {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% {
        transform: translateY(-110vh) translateX(100px) rotate(720deg);
        opacity: 0;
    }
}

/* Indicador de scroll */
.hs-scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: var(--hs-white);
    animation: hs-bounce 2s ease-in-out infinite;
}

.hs-mouse {
    display: block;
    width: 28px;
    height: 45px;
    border: 2px solid var(--hs-white);
    border-radius: 20px;
    position: relative;
}

.hs-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--hs-white);
    border-radius: 4px;
    animation: hs-wheel 1.5s ease-in-out infinite;
}

@keyframes hs-wheel {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(15px); opacity: 0; }
}

@keyframes hs-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

/* ============ QUICK CONTACT BAR ============ */
.hs-quick-contact {
    padding: 50px 0;
    background: var(--hs-light);
    position: relative;
    margin-top: -50px;
    z-index: 10;
}

.hs-contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px 30px;
    background: var(--hs-white);
    border-radius: var(--hs-radius-md);
    box-shadow: var(--hs-shadow-md);
    transition: var(--hs-transition);
    border: 1px solid transparent;
    color: var(--hs-dark);
}

.hs-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hs-shadow-xl);
    color: var(--hs-dark);
    border-color: var(--hs-primary);
}

.hs-contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--hs-white);
    flex-shrink: 0;
}

.hs-contact-whatsapp .hs-contact-icon { background: var(--hs-success); }
.hs-contact-phone .hs-contact-icon { background: var(--hs-gradient-primary); }

.hs-contact-info small {
    display: block;
    color: var(--hs-gray);
    font-size: 13px;
    margin-bottom: 3px;
}

.hs-contact-info strong {
    font-size: 20px;
    font-weight: 700;
    color: var(--hs-dark);
}

/* ============ SERVICIOS ============ */
.hs-services {
    background: var(--hs-light);
    position: relative;
}

.hs-services::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hs-service-card {
    background: var(--hs-white);
    padding: 40px 30px;
    border-radius: var(--hs-radius-lg);
    text-align: center;
    transition: var(--hs-transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--hs-gray-light);
}

.hs-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--hs-gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.hs-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hs-shadow-xl);
    border-color: var(--hs-primary);
}

.hs-service-card:hover::before {
    transform: scaleX(1);
}

.hs-service-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--hs-gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--hs-white);
    font-size: 32px;
    transition: var(--hs-transition);
    position: relative;
}

.hs-service-icon-wrap::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px dashed var(--hs-primary);
    border-radius: 25px;
    opacity: 0;
    transition: var(--hs-transition);
    animation: hs-rotate 10s linear infinite;
}

.hs-service-card:hover .hs-service-icon-wrap::before {
    opacity: 0.5;
}

.hs-service-card:hover .hs-service-icon-wrap {
    transform: rotateY(360deg);
}

@keyframes hs-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hs-service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--hs-dark);
}

.hs-service-text {
    color: var(--hs-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.hs-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hs-primary);
    font-weight: 600;
    font-size: 14px;
}

.hs-service-link:hover {
    color: var(--hs-primary-dark);
    gap: 15px;
}

/* ============ NOSOTROS ============ */
.hs-about {
    background: var(--hs-white);
}

.hs-about-image {
    position: relative;
    border-radius: var(--hs-radius-lg);
    overflow: hidden;
    box-shadow: var(--hs-shadow-xl);
}

.hs-about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.hs-about-image:hover img {
    transform: scale(1.05);
}

.hs-about-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--hs-gradient-primary);
    color: var(--hs-white);
    padding: 20px 30px;
    border-radius: var(--hs-radius-md);
    box-shadow: var(--hs-shadow-lg);
    text-align: center;
}

.hs-about-badge strong {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.hs-about-badge span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hs-about-text {
    font-size: 16px;
    color: var(--hs-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.hs-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: var(--hs-light);
    border-radius: var(--hs-radius-sm);
    transition: var(--hs-transition-fast);
}

.hs-feature-item:hover {
    background: var(--hs-primary);
    color: var(--hs-white);
    transform: translateX(5px);
}

.hs-feature-item i {
    color: var(--hs-secondary);
    font-size: 22px;
    transition: var(--hs-transition-fast);
}

.hs-feature-item:hover i {
    color: var(--hs-white);
}

.hs-feature-item span {
    font-weight: 600;
    color: var(--hs-dark);
    transition: var(--hs-transition-fast);
}

.hs-feature-item:hover span {
    color: var(--hs-white);
}

/* ============ COUNTERS ============ */
.hs-counters {
    padding: 80px 0;
    background: var(--hs-gradient-dark);
    color: var(--hs-white);
    position: relative;
    overflow: hidden;
}

.hs-counters::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300b4d8' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hs-counter-item {
    padding: 30px 20px;
    position: relative;
    z-index: 1;
}

.hs-counter-item i {
    font-size: 50px;
    color: var(--hs-secondary);
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--hs-transition);
}

.hs-counter-item:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--hs-accent);
}

.hs-counter-num {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--hs-white);
    margin-bottom: 8px;
    background: var(--hs-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hs-counter-item p {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    margin: 0;
}

/* ============ GALERÍA ============ */
.hs-gallery {
    background: var(--hs-light);
}

.hs-gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.hs-filter-btn {
    padding: 10px 25px;
    background: var(--hs-white);
    border: 2px solid var(--hs-gray-light);
    border-radius: 50px;
    font-family: var(--hs-font-primary);
    font-weight: 600;
    font-size: 14px;
    color: var(--hs-gray);
    cursor: pointer;
    transition: var(--hs-transition-fast);
}

.hs-filter-btn:hover,
.hs-filter-btn.active {
    background: var(--hs-gradient-primary);
    color: var(--hs-white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--hs-shadow-md);
}

.hs-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.hs-gallery-item {
    position: relative;
    border-radius: var(--hs-radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--hs-dark);
    transition: var(--hs-transition);
    box-shadow: var(--hs-shadow-sm);
}

.hs-gallery-item.hs-hidden {
    display: none;
}

.hs-gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--hs-shadow-xl);
}

.hs-gallery-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.hs-gallery-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hs-gallery-item:hover img {
    transform: scale(1.15);
}

.hs-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.85) 0%, rgba(0, 180, 216, 0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--hs-white);
    opacity: 0;
    transition: var(--hs-transition);
    padding: 20px;
    text-align: center;
}

.hs-gallery-item:hover .hs-gallery-overlay {
    opacity: 1;
}

.hs-gallery-overlay i {
    font-size: 40px;
    margin-bottom: 15px;
    transform: scale(0);
    transition: transform 0.4s ease 0.1s;
}

.hs-gallery-item:hover .hs-gallery-overlay i {
    transform: scale(1);
}

.hs-gallery-overlay h4 {
    font-size: 18px;
    color: var(--hs-white);
    margin: 0;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.hs-gallery-item:hover .hs-gallery-overlay h4 {
    transform: translateY(0);
    opacity: 1;
}

/* ============ VIDEO SECTION ============ */
.hs-video-section {
    padding: 100px 0;
    position: relative;
    color: var(--hs-white);
    overflow: hidden;
}

.hs-video-bg {
    position: absolute;
    inset: 0;
    background: var(--hs-gradient-dark) url('img/Instalación-Motobombas-Hidrosoluciones-Bogotá.jpeg') center/cover;
    background-blend-mode: overlay;
    opacity: 0.95;
    z-index: 0;
}

.hs-video-section .container {
    position: relative;
    z-index: 1;
}

.hs-video-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: var(--hs-gradient-primary);
    color: var(--hs-white);
    border-radius: 50%;
    font-size: 36px;
    position: relative;
    transition: var(--hs-transition);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.5);
}

.hs-video-play:hover {
    color: var(--hs-white);
    transform: scale(1.1);
}

.hs-play-pulse {
    position: absolute;
    inset: -10px;
    border: 3px solid var(--hs-secondary);
    border-radius: 50%;
    animation: hs-pulse 1.8s ease-out infinite;
}

.hs-video-text {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    line-height: 1.8;
}

/* ============ CTA SECTION ============ */
.hs-cta-section {
    padding: 80px 0;
    background: var(--hs-light);
}

.hs-cta-box {
    background: var(--hs-gradient-primary);
    border-radius: var(--hs-radius-lg);
    padding: 60px;
    color: var(--hs-white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--hs-shadow-xl);
}

.hs-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: hs-float 6s ease-in-out infinite;
}

@keyframes hs-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hs-cta-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--hs-white);
    margin-bottom: 12px;
}

.hs-cta-text {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

/* ============ FOOTER ============ */
.hs-footer {
    background: var(--hs-darker);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 0;
    position: relative;
}

.hs-footer-logo {
    height: 70px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.hs-footer-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.hs-footer-social {
    display: flex;
    gap: 12px;
}

.hs-footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: var(--hs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--hs-transition-fast);
    border: 1px solid rgba(255,255,255,0.1);
}

.hs-footer-social a:hover {
    background: var(--hs-gradient-primary);
    transform: translateY(-3px);
    border-color: transparent;
}

.hs-footer-title {
    font-size: 20px;
    color: var(--hs-white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.hs-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--hs-gradient-primary);
    border-radius: 3px;
}

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

.hs-footer-links li {
    margin-bottom: 12px;
}

.hs-footer-links a {
    color: rgba(255,255,255,0.7);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--hs-transition-fast);
    font-size: 15px;
}

.hs-footer-links a i {
    font-size: 11px;
    color: var(--hs-secondary);
    transition: var(--hs-transition-fast);
}

.hs-footer-links a:hover {
    color: var(--hs-white);
    padding-left: 5px;
}

.hs-footer-links a:hover i {
    color: var(--hs-accent);
}

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

.hs-footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.6;
}

.hs-footer-contact li i {
    color: var(--hs-secondary);
    font-size: 18px;
    margin-top: 4px;
    flex-shrink: 0;
}

.hs-footer-bottom {
    margin-top: 50px;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.hs-footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.hs-footer-bottom strong {
    color: var(--hs-white);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991.98px) {
    .hs-section {
        padding: 70px 0;
    }

    .hs-header {
        padding: 12px 0;
    }

    .navbar-collapse {
        background: var(--hs-white);
        margin-top: 15px;
        padding: 20px;
        border-radius: var(--hs-radius-md);
        box-shadow: var(--hs-shadow-lg);
    }

    .hs-nav {
        gap: 0;
    }

    .hs-nav .nav-link {
        padding: 12px 15px !important;
        border-bottom: 1px solid var(--hs-gray-light);
    }

    .hs-nav-cta {
        margin-top: 10px;
        text-align: center;
    }

    .hs-slide-content {
        padding-top: 100px;
    }

    .hs-cta-box {
        padding: 40px 25px;
        text-align: center;
    }

    .hs-about-badge {
        bottom: 15px;
        left: 15px;
        padding: 15px 20px;
    }

    .hs-about-badge strong {
        font-size: 28px;
    }
}

@media (max-width: 767.98px) {
    .hs-section {
        padding: 60px 0;
    }

    .hs-hero {
        min-height: 550px;
    }

    .hs-slide-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hs-btn {
        justify-content: center;
        width: 100%;
    }

    .hs-quick-contact {
        margin-top: -30px;
        padding: 30px 0;
    }

    .hs-contact-card {
        padding: 18px 22px;
    }

    .hs-contact-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .hs-contact-info strong {
        font-size: 16px;
    }

    .hs-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .hs-swiper-next,
    .hs-swiper-prev {
        display: none !important;
    }

    .hs-float-whatsapp,
    .hs-float-call {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .hs-float-whatsapp { right: 20px; bottom: 20px; }
    .hs-float-call { right: 20px; bottom: 85px; font-size: 20px; }

    .hs-scroll-top {
        left: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }

    .hs-cta-box {
        padding: 35px 20px;
    }
}

@media (max-width: 575.98px) {
    .hs-section-title {
        font-size: 1.8rem;
    }

    .hs-slide-title {
        font-size: 2.2rem;
    }

    .hs-service-card {
        padding: 30px 20px;
    }

    .hs-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .hs-gallery-overlay h4 {
        font-size: 14px;
    }

    .hs-gallery-overlay i {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .hs-counter-item {
        padding: 20px 10px;
    }

    .hs-counter-item i {
        font-size: 36px;
    }
}

/* ============ ACCESIBILIDAD ============ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visible para accesibilidad */
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--hs-secondary);
    outline-offset: 3px;
}
