/*
Theme Name: LuxTint
Theme URI: https://luxtintglass.com
Author: EeTeck
Author URI: https://eeteck.com/
Description: Custom theme for LUX Auto Tint.
Version: 1.0.0
Text Domain: luxtint

=============================================================================
  PROPIEDAD INTELECTUAL Y DERECHOS DE AUTOR - EETECK
  -------------------------------------------------------------------------
  Este sitio web ha sido diseñado, desarrollado y optimizado por EeTeck.
  Todos los derechos de propiedad intelectual, diseño visual, código fuente,
  hojas de estilo y configuraciones técnicas son propiedad exclusiva de EeTeck.
  Sitio Oficial: https://eeteck.com/
  
  Cliente Autorizado: LUX Auto Tint, Richmond, VA.
  Licencia de Uso concedida al cliente para la operación de su sitio comercial.
  Queda prohibida la reproducción parcial o total, reventa o distribución
  de este código y sus recursos sin la autorización previa y por escrito de EeTeck.
  
  © 2026 EeTeck. Todos los derechos reservados.
=============================================================================
*/

/* Custom properties */
:root {
    --black-bg: #030303;
    --dark-grey: #0a0a0b;
    --light-grey: #121212;
    --text-primary: #ffffff;
    --text-secondary: #a5a9b4;
    --accent-color: #00c3e3;
    --accent-hover: #00e0ff;
    --glass-bg: rgba(20, 20, 20, 0.7);
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- ADA: Skip Navigation Link --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    background: var(--accent-color);
    color: #000;
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: top 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.skip-link:focus {
    top: 0;
    outline: 3px solid #fff;
    outline-offset: 2px;
}

/* --- ADA: Focus-Visible Styles --- */
*:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

/* Remove focus outline for mouse/touch interactions */
*:focus:not(:focus-visible) {
    outline: none;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--black-bg);
    color: var(--text-secondary);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input, select, textarea {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
}

h1, h2, h3, h4 {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    color: var(--text-primary);
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 100px 0;
}

.text-center { text-align: center; }
.dark-bg { background-color: var(--dark-grey); }

/* --- Top Banner --- */
.top-banner {
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2000;
}

.top-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.top-banner a {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.top-banner a:hover {
    color: var(--accent-color);
}

.top-banner-separator {
    color: rgba(255,255,255,0.3);
}

/* --- Header / Nav --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

header.scrolled {
    top: 0;
    background: transparent;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-integrated {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a:not(.bubble-btn) {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:not(.bubble-btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent-color);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateX(-50%);
}

.nav-links a:not(.bubble-btn):hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(0, 195, 227, 0.4);
}

.nav-links a:not(.bubble-btn):hover::after {
    width: 100%;
}

.logo img {
    height: 70px;
    mix-blend-mode: screen;
}

/* --- Slogan Styles --- */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-slogan {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
    opacity: 0;
    transform: translateY(2px);
    animation: fadeInSlogan 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.4s;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.logo-slogan:hover {
    color: var(--accent-color);
    text-shadow: 0 0 6px rgba(0, 195, 227, 0.4);
}

@keyframes fadeInSlogan {
    to {
        opacity: 0.85;
        transform: translateY(0);
    }
}

/* --- Buttons --- */
.bubble-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.bubble-btn .btn-text {
    position: relative;
    z-index: 2;
}

.accent-btn {
    background-color: var(--accent-color);
    color: #000;
    border: none;
}

.outline-btn {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-hover-circle {
    position: absolute;
    width: 0;
    height: 0;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: 0;
}

.btn-hover-circle.dark {
    background: #000;
}

.bubble-btn:hover .btn-hover-circle {
    width: 300px;
    height: 300px;
}

.accent-btn:hover {
    color: #fff;
}

.outline-btn:hover {
    color: #000;
    border-color: #fff;
}

.large-btn {
    padding: 18px 45px;
    font-size: 1rem;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

/* --- Hero Collage Styles --- */
.hero-collage-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    overflow: hidden;
}

.hero-collage-item {
    flex: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4) grayscale(0.2) contrast(1.1);
    transition: filter 0.6s ease, transform 0.6s ease;
    transform: scale(1.02); /* Slight scale to prevent outline gaps */
    pointer-events: none;
}

/* Active class (driven by JS cycle or default) */
.hero-collage-item.active {
    flex: 1.65;
}

.hero-collage-item.active img {
    filter: brightness(0.65) grayscale(0) contrast(1.05);
    transform: scale(1.06);
}

/* Hover & Focus overrides active class state on desktop */
@media (min-width: 769px) {
    /* When the collage container is hovered, contract all items to allow hover specifically to override */
    .hero-collage-bg:hover .hero-collage-item {
        flex: 0.8;
    }
    
    .hero-collage-bg:hover .hero-collage-item img {
        filter: brightness(0.4) grayscale(0.2) contrast(1.1);
        transform: scale(1.02);
    }
    
    /* Highlight only the hovered item */
    .hero-collage-bg:hover .hero-collage-item:hover {
        flex: 1.65;
    }
    
    .hero-collage-bg:hover .hero-collage-item:hover img {
        filter: brightness(0.65) grayscale(0) contrast(1.05);
        transform: scale(1.06);
    }
    
    /* Support keyboard focus navigation cycle */
    .hero-collage-bg:focus-within .hero-collage-item {
        flex: 0.8;
    }
    .hero-collage-bg:focus-within .hero-collage-item img {
        filter: brightness(0.4) grayscale(0.2) contrast(1.1);
        transform: scale(1.02);
    }
    .hero-collage-bg:focus-within .hero-collage-item:focus-within {
        flex: 1.65;
        outline: none;
    }
    .hero-collage-bg:focus-within .hero-collage-item:focus-within img {
        filter: brightness(0.65) grayscale(0) contrast(1.05);
        transform: scale(1.06);
    }
}

/* Mobile responsive layout (2x2 Grid) */
@media (max-width: 768px) {
    .hero-collage-bg {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
    
    .hero-collage-item {
        width: 100%;
        height: 100%;
    }
    
    .hero-collage-item img {
        filter: brightness(0.35) grayscale(0.1) contrast(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.65) 45%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.7);
    }
}

.hero-content-container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 50px;
}

.hero-content {
    max-width: 800px;
}

.hero-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.split-text-container {
    margin-bottom: 20px;
}

.split-text {
    font-family: 'Anton', sans-serif;
    font-size: 6rem;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.split-text.in-view {
    opacity: 1;
    transform: translateY(0);
}

.split-text-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.split-text-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}


.hero-subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    text-transform: none;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 600px;
}


/* --- Services Section --- */
.services-section {
    background-color: var(--black-bg);
}

.services-accordion {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: rgba(0, 195, 227, 0.3);
    box-shadow: 0 5px 15px rgba(0, 195, 227, 0.05);
}

.accordion-item.active {
    border-color: rgba(0, 195, 227, 0.5);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 25px rgba(0, 195, 227, 0.1);
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    outline: none;
    transition: var(--transition);
}

.accordion-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.accordion-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.accordion-item.active .accordion-title {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(0, 195, 227, 0.3);
}

.accordion-header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.accordion-accent {
    font-family: 'Anton', sans-serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.07);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.accordion-item.active .accordion-accent {
    color: rgba(0, 195, 227, 0.2);
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.accordion-icon svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.accordion-item.active .accordion-icon {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.accordion-item.active .accordion-icon svg {
    stroke: #000;
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease-out;
    opacity: 0;
}

.accordion-content-inner {
    padding: 0 30px 30px;
}

/* For smooth animations of children inside accordion */
.accordion-item .service-wrapper {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease-out 0.1s, transform 0.4s ease-out 0.1s;
    width: 100%;
}

.accordion-item.active .service-wrapper {
    opacity: 1;
    transform: translateY(0);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.service-header {
    display: none;
    flex-direction: column;
    gap: 15px;
}

.service-header .service-card-title {
    font-size: 2rem;
    color: rgba(255,255,255,0.05);
    line-height: 0.9;
    margin-bottom: 5px;
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
}

.service-header .service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #fff;
}

.service-image-container {
    position: relative;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.05);
}

.service-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
    filter: brightness(0.6);
}

.service-image-container:hover .service-bg-img {
    transform: scale(1.05);
}

.service-info-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0.9;
    transition: var(--transition);
}

.service-image-container:hover .service-info-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0,195,227,0.2) 0%, rgba(0,0,0,0.8) 40%, transparent 100%);
}

.service-desc {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    text-align: left;
}

.protects-against em {
    display: inline-block;
    font-style: normal;
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 195, 227, 0.3);
    padding-bottom: 5px;
}

.icons-grid {
    display: flex;
    flex-direction: row;
    gap: 6px;
    width: 100%;
}

.icon-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #fff;
    font-weight: 500;
    font-size: 0.65rem;
    text-align: center;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 6px 4px;
    flex: 1;
    transition: var(--transition);
}

.icon-item:hover {
    background: rgba(0, 195, 227, 0.1);
    border-color: rgba(0, 195, 227, 0.3);
    transform: translateY(-3px);
}

.icon-item span {
    font-size: 0.9rem;
}

.service-buttons {
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.service-image-container:hover .service-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* --- Technology Section --- */
.tech-section {
    padding: 100px 0;
    background-color: var(--black-bg);
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.tech-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.tech-intro {
    margin-bottom: 60px;
    text-align: center;
}

.tech-intro .section-heading {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.tech-p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.tech-quote {
    font-style: italic;
    font-size: 1.3rem;
    color: #fff;
    border-left: 4px solid var(--accent-color);
    margin: 40px auto;
    max-width: 800px;
    text-align: left;
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    padding: 25px;
    border-radius: 0 8px 8px 0;
}

.tech-details {
    margin-top: 50px;
}

.tech-subheading {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tech-feature-card {
    background: var(--dark-grey);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 12px;
    transition: var(--transition);
}

.tech-feature-card:hover {
    border-color: rgba(0,195,227,0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.tech-feature-card h4 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.tech-feature-card p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
}



.section-heading {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.combo-paragraph {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

/* --- Gallery Section --- */
.gallery-section {
    padding: 100px 0;
    background-color: var(--black-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--dark-grey);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    border-color: rgba(0, 195, 227, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-image-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    width: 100%;
    overflow: hidden;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0.9;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 195, 227, 0.15) 0%, rgba(0, 0, 0, 0.8) 50%, transparent 100%);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 8px;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay h3 {
    color: var(--accent-color);
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
}

/* Lightbox Styling */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    z-index: 4000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    object-fit: contain;
}

.lightbox-caption {
    margin-top: 20px;
    text-align: center;
    max-width: 600px;
}

.lightbox-caption h3 {
    font-size: 1.6rem;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.lightbox-caption p {
    font-size: 1rem;
    color: #ccc;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 2.5rem;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    user-select: none;
}

.lightbox-nav:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .lightbox-nav {
        padding: 10px 15px;
        font-size: 1.8rem;
    }
    .lightbox-prev {
        left: 10px;
    }
    .lightbox-next {
        right: 10px;
    }
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 2.5rem;
    }
    .gallery-overlay p {
        font-size: 0.8rem;
    }
    .gallery-overlay h3 {
        font-size: 1.1rem;
    }
}

/* --- Testimonials --- */
.testimonials-section {
    padding: 100px 0;
    overflow: hidden;
    background-color: var(--dark-grey);
}

.testimonial-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonial-slider::before,
.testimonial-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.testimonial-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--dark-grey), transparent);
}

.testimonial-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--dark-grey), transparent);
}


.testimonial-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.testimonial-card {
    background: var(--light-grey);
    padding: 40px;
    border-radius: 12px;
    width: 400px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.quote {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 20px;
    font-style: italic;
}

.author {
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.9rem;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Footer --- */
footer {
    background-color: #000;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    height: auto;
    max-height: 70px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 300px;
    color: var(--text-secondary);
}

.footer-links h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-cta {
    text-align: right;
}

.footer-cta .bubble-btn {
    margin-bottom: 20px;
}

.footer-cta .address, .footer-cta .phone {
    font-size: 0.9rem;
}

.footer-cta .phone {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-top: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
}

.socials {
    display: flex;
    gap: 20px;
}

.socials a {
    font-weight: 600;
}

.socials a:hover {
    color: var(--accent-color);
}

/* Animations & Utilities */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.5s; }
.delay-4 { transition-delay: 0.7s; }
.delay-5 { transition-delay: 0.9s; }

/* Responsive */
@media (max-width: 1024px) {
    .split-text { font-size: 4rem; }
    .service-wrapper { grid-template-columns: 1fr; }
    .service-header .service-card-title { font-size: 3rem; margin-bottom: 0; }
    .service-image-container { height: 400px; }
    .combo-container { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-cta { text-align: left; }
}

@media (max-width: 768px) {
    header {
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(3, 3, 3, 0.1) !important;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 10px 0 !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }
    .top-banner { display: none; } /* Hide on mobile for simplicity, or keep small */
    .nav-links { display: none; }
    .split-text { font-size: 3rem; }
    .hero-heading { font-size: 0.8rem; }
    .hero-subheading { font-size: 1.2rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .service-image-container { height: 350px; }
    .icons-grid { flex-direction: column; gap: 10px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-cta { text-align: center; }
    .footer-bottom { flex-direction: column; gap: 20px; }

    .accordion-header {
        padding: 15px 20px;
    }
    .accordion-title {
        font-size: 0.95rem;
    }
    .accordion-content-inner {
        padding: 0 20px 20px;
    }
}

/* --- Modal & Form Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--dark-grey);
    border: 1px solid rgba(0, 195, 227, 0.2);
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: translateY(50px);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

/* Tech Modal Wide & Gallery Modal Wide - Override */
.tech-modal-wide,
.gallery-modal-wide {
    max-width: 900px !important;
    width: 92% !important;
}

.tech-video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 195, 227, 0.2);
    box-shadow: 0 0 30px rgba(0, 195, 227, 0.1);
}

/* Elegant frame to cover edges and bottom right watermark */
.tech-video-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    /* Vignette and subtle bottom bar to frame the video */
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8), inset 0 -45px 30px -20px #000;
    border-radius: 10px;
}

.tech-video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    outline: none;
}

.tech-video-desc {
    padding-top: 0;
}

@media (max-width: 768px) {
    .tech-modal-wide,
    .gallery-modal-wide {
        width: 95% !important;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--accent-color);
}

.modal-header h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.modal-header p {
    font-size: 0.95rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.lux-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.lux-form input[type="text"],
.lux-form input[type="email"],
.lux-form input[type="tel"],
.lux-form select,
.lux-form textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--light-grey);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.lux-form textarea {
    resize: vertical;
    min-height: 80px;
}

.lux-form input:focus,
.lux-form select:focus,
.lux-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(0, 195, 227, 0.2);
}

.lux-form select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: rgba(255,255,255,0.05);
    color: #999;
}

.checkbox-group > label:first-child {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

/* Custom Checkbox */
.custom-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    user-select: none;
    color: #ccc;
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 5px;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: var(--light-grey);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    transition: var(--transition);
}

.custom-checkbox:hover input ~ .checkmark {
    border-color: var(--accent-color);
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.full-width {
    width: 100%;
}

/* Modal scrollbar */
.modal-content::-webkit-scrollbar {
    width: 8px;
}
.modal-content::-webkit-scrollbar-track {
    background: var(--dark-grey);
}
.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
}
.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Info Modal Content Styling */
.text-content {
    color: #e0e0e0;
    line-height: 1.6;
}

.text-content h3 {
    color: #fff;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.text-content ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.text-content ul li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.text-content ul li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.modal-alert {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--accent-color);
    padding: 15px;
    border-radius: 0 4px 4px 0;
    margin-top: 30px;
}

/* --- Credit Badge --- */
.credit-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.275rem;
}

.credit-badge span {
    color: var(--text-secondary);
}

.eeteck-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 9px 24px;
    border: 1px solid rgba(240, 180, 80, 0.6);
    border-radius: 20px;
    color: #f0b450;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    background: transparent;
}

.eeteck-btn:hover {
    background: rgba(240, 180, 80, 0.1);
}

/* --- Mobile Optimization --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    .top-banner-separator {
        display: none;
    }
    header nav.container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .nav-links {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        order: 3;
    }
    .nav-links a {
        font-size: 0.75rem;
    }
    .logo {
        order: 1;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: auto;
    }
    .logo img {
        height: auto;
        max-height: 60px;
        max-width: 45vw;
        display: block;
        object-fit: contain;
    }
    .logo-slogan {
        font-size: 0.45rem;
        margin-top: 2px;
        letter-spacing: 0.08em;
    }
    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
    }
    .hero-sub {
        font-size: 1rem;
    }
    .section-heading {
        font-size: 2.2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }

    .button-wrapper {
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .footer-brand {
        align-items: center;
    }
    .modal-content {
        width: 95%;
        padding: 30px 20px;
    }
    .modal-layout {
        flex-direction: column;
    }
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

/* --- Floating Action Buttons --- */
.floating-actions {
    display: none;
    position: fixed;
    bottom: 25px;
    right: 25px;
    flex-direction: column;
    gap: 15px;
    z-index: 1500;
}

.floating-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: transform 0.3s;
    color: #fff;
}

.floating-btn.call-btn {
    background-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(0,195,227,0.4);
}

.floating-btn.quote-btn {
    background-color: #28a745;
    box-shadow: 0 4px 15px rgba(40,167,69,0.4);
}

.floating-btn:active {
    transform: scale(0.9);
}
.floating-btn svg {
    width: 16px;
    height: 16px;
}

/* --- Final Mobile Fixes --- */
@media (max-width: 768px) {
    .tech-section { padding: 60px 0; }
    .tech-intro .section-heading { font-size: 2rem; }
    .tech-subheading { font-size: 1.6rem; }
    .tech-p { font-size: 0.95rem; text-align: left; }
    .tech-quote { font-size: 1.1rem; padding: 15px; margin: 30px 0; }
    .tech-feature-card { padding: 20px; }
    .container { padding: 0 15px; }
    .testimonial-card { max-width: 85vw; padding: 20px; }
    .hero-heading { font-size: 0.9rem; }
    .hero-subheading { font-size: 0.85rem; }
    .split-text { font-size: 1.8rem; }
    .section-heading { font-size: 1.5rem; }
    .service-header .service-card-title { font-size: 1.5rem; }
    .service-header .service-title { font-size: 0.9rem; }
    .service-desc { font-size: 0.85rem; margin-bottom: 15px; line-height: 1.5; }
    .service-info-overlay { padding: 10px; }
    .protects-against em { font-size: 0.7rem; margin-bottom: 10px; display: inline-block; padding-bottom: 3px; }
    .service-buttons { flex-direction: row; gap: 8px; opacity: 1; transform: translateY(0); margin-top: 5px; }
    .service-buttons .bubble-btn { width: auto; flex: 1; padding: 8px 4px; font-size: 0.65rem; text-align: center; justify-content: center; }
    .large-btn { padding: 10px 20px; font-size: 0.75rem; }
    .service-image-container { height: auto; min-height: 210px; }
    .combo-section { padding: 40px 0; }
    .combo-paragraph { font-size: 0.85rem; }
    .icon-item { flex-direction: row; align-items: center; text-align: left; font-size: 0.75rem; gap: 10px; padding: 8px 12px; }
    .icon-item span { font-size: 1.1rem; }
    .footer-grid { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; }
    .nav-links a { font-size: 0.75rem; }
    header nav.container { flex-direction: column; gap: 10px; }
    .top-banner { display: block !important; }
    .top-banner-inner { flex-direction: column; gap: 5px; }
    .top-banner a { font-size: 0.7rem; }
    .form-row { flex-direction: column; }
    .modal-content { padding: 20px 15px; }
    .modal-header h2 { font-size: 1.3rem; }
    .info-modal-content .modal-header h2 { font-size: 1.1rem; }
    .info-modal-content .modal-header p { font-size: 0.75rem; }
    .info-modal-content .modal-body h3 { font-size: 0.85rem; margin-bottom: 10px; }
    .info-modal-content .modal-body ul li,
    .info-modal-content .modal-body p { font-size: 0.75rem; line-height: 1.4; margin-bottom: 8px; }
    .protects-against .icons-grid {
        display: flex;
        flex-direction: row;
        gap: 6px;
        margin-top: 5px;
        width: 100%;
    }
    .protects-against .icon-item {
        flex: 1;
        font-size: 0.62rem;
        padding: 8px 4px;
        gap: 5px;
        justify-content: center;
        align-items: center;
        text-align: center;
        white-space: nowrap;
    }
    .protects-against .icon-item span {
        font-size: 0.9rem;
    }
    .floating-actions { display: flex; }
}

/* --- Mobile Menu Styles --- */
.hamburger-btn { display: none; }
.mobile-menu { display: none; }
.desktop-only { display: flex; }

@media (max-width: 768px) {
    .desktop-only { display: none !important; }
    header nav.container { 
        flex-direction: row !important; 
        justify-content: space-between !important; 
        align-items: center !important; 
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        position: relative;
        min-height: auto;
    }
    .logo {
        order: unset !important;
        position: static;
        margin: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: auto;
    }
    
    .hamburger-btn {
        position: absolute;
        right: 15px;
        top: 44px;
        transform: none;
        display: flex; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 6px 10px; z-index: 2001; margin: 0;
    }

    .hamburger-btn span {
        width: 25px; height: 3px; background-color: #fff; border-radius: 2px; transition: 0.3s;
    }

    .hamburger-btn:hover span {
        background-color: var(--accent-color);
    }

    .header-socials {
        position: absolute;
        right: 21px; /* Slightly offset to visually align with hamburger */
        top: 12px;
        transform: none;
        gap: 12px;
        margin-top: 0;
        z-index: 2001;
        display: flex;
        align-items: center;
    }

    .header-socials .social-icon {
        width: 22px;
        height: 22px;
        color: rgba(255, 255, 255, 0.7);
        transition: color 0.3s ease, transform 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-socials .social-icon:hover {
        color: var(--accent-color);
        transform: translateY(-2px);
    }

    .mobile-menu {
        display: flex; flex-direction: column;
        position: fixed; top: 0; right: -100%; width: 180px; height: auto;
        background: rgba(0, 0, 0, 0.95); backdrop-filter: blur(10px);
        z-index: 2000; transition: right 0.4s ease; padding: 40px 15px 20px 15px;
        box-shadow: -5px 5px 20px rgba(0,0,0,0.5);
        border-bottom-left-radius: 15px;
    }
    .mobile-menu.active { right: 0; }
    
    .close-menu-btn {
        position: absolute; top: 10px; right: 15px;
        background: none; border: none; color: var(--text-secondary); font-size: 1.8rem; cursor: pointer; line-height: 1; transition: 0.3s;
    }
    .close-menu-btn:hover { color: var(--accent-color); }
    
    .mobile-menu-links {
        display: flex; flex-direction: column; gap: 10px; margin-top: 10px;
    }
    .mobile-link {
        color: #fff; font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
        border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 8px; transition: 0.3s;
    }
    .mobile-link:hover { color: var(--accent-color); }
    .mobile-link.bubble-btn { border-bottom: none; margin-top: 10px; padding-bottom: 8px; font-size: 0.75rem; }
    
    .footer-bottom { align-items: flex-start; text-align: left; }
    .footer-bottom p { text-align: left; }
    .credit-badge { justify-content: flex-start; font-size: 0.675rem; gap: 5px; }
    .eeteck-btn { padding: 4.5px 12px; font-size: 0.675rem; gap: 3px; }
    .eeteck-btn svg { width: 12px; height: 12px; }
}

/* Hot Sale Floating Button */
.hot-sale-float-btn {
    position: fixed;
    bottom: -100px;
    left: 20px;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border: 1px solid var(--accent-color);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8), 0 0 10px rgba(var(--accent-color-rgb), 0.3);
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    visibility: hidden;
}

.hot-sale-float-btn.visible {
    bottom: 30px;
    opacity: 1;
    visibility: visible;
    animation: pulseSale 2s infinite;
}

.hot-sale-icon {
    font-size: 1.5rem;
}

@keyframes pulseSale {
    0% { transform: scale(1); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.1); }
    50% { transform: scale(1.05); box-shadow: 0 5px 25px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 255, 255, 0.3); border-color: #fff; }
    100% { transform: scale(1); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.1); }
}

@media (max-width: 768px) {
    .hot-sale-float-btn {
        bottom: -100px;
        left: 20px;
        transform: none;
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .hot-sale-float-btn.visible {
        bottom: 30px;
        opacity: 1;
        visibility: visible;
        animation: pulseSaleMobile 2s infinite;
    }
    
    @keyframes pulseSaleMobile {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
}

/* --- About Us Modal --- */
.about-modal-wide {
    max-width: 900px !important;
    padding: 0 !important;
    overflow: hidden;
    .icon-item { flex-direction: row; align-items: center; text-align: left; font-size: 0.75rem; gap: 10px; padding: 8px 12px; }
    .icon-item span { font-size: 1.1rem; }
    .footer-grid { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; }
    .nav-links a { font-size: 0.75rem; }
    header nav.container { flex-direction: column; gap: 10px; }
    .top-banner { display: block !important; }
    .top-banner-inner { flex-direction: column; gap: 5px; }
    .top-banner a { font-size: 0.7rem; }
    .form-row { flex-direction: column; }
    .modal-content { padding: 20px 15px; }
    .modal-header h2 { font-size: 1.3rem; }
    .info-modal-content .modal-header h2 { font-size: 1.1rem; }
    .info-modal-content .modal-header p { font-size: 0.75rem; }
    .info-modal-content .modal-body h3 { font-size: 0.85rem; margin-bottom: 10px; }
    .info-modal-content .modal-body ul li,
    .info-modal-content .modal-body p { font-size: 0.75rem; line-height: 1.4; margin-bottom: 8px; }
    .protects-against .icons-grid {
        display: flex;
        flex-direction: row;
        gap: 6px;
        margin-top: 5px;
        width: 100%;
    }
    .protects-against .icon-item {
        flex: 1;
        font-size: 0.62rem;
        padding: 8px 4px;
        gap: 5px;
        justify-content: center;
        align-items: center;
        text-align: center;
        white-space: nowrap;
    }
    .protects-against .icon-item span {
        font-size: 0.9rem;
    }
    .floating-actions { display: flex; }
}

/* --- Mobile Menu Styles --- */
.hamburger-btn { display: none; }
.mobile-menu { display: none; }
.desktop-only { display: flex; }

@media (max-width: 768px) {
    .desktop-only { display: none !important; }
    header nav.container { 
        flex-direction: row !important; 
        justify-content: space-between !important; 
        align-items: center !important; 
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        position: relative;
        min-height: auto;
    }
    .logo {
        order: unset !important;
        position: static;
        margin: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: auto;
    }
    
    .hamburger-btn {
        position: absolute;
        right: 15px;
        top: 44px;
        transform: none;
        display: flex; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 6px 10px; z-index: 2001; margin: 0;
    }

    .hamburger-btn span {
        width: 25px; height: 3px; background-color: #fff; border-radius: 2px; transition: 0.3s;
    }

    .hamburger-btn:hover span {
        background-color: var(--accent-color);
    }

    .header-socials {
        position: absolute;
        right: 21px; /* Slightly offset to visually align with hamburger */
        top: 12px;
        transform: none;
        gap: 12px;
        margin-top: 0;
        z-index: 2001;
        display: flex;
        align-items: center;
    }

    .header-socials .social-icon {
        width: 22px;
        height: 22px;
        color: rgba(255, 255, 255, 0.7);
        transition: color 0.3s ease, transform 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-socials .social-icon:hover {
        color: var(--accent-color);
        transform: translateY(-2px);
    }

    .mobile-menu {
        display: flex; flex-direction: column;
        position: fixed; top: 0; right: -100%; width: 180px; height: auto;
        background: rgba(0, 0, 0, 0.95); backdrop-filter: blur(10px);
        z-index: 2000; transition: right 0.4s ease; padding: 40px 15px 20px 15px;
        box-shadow: -5px 5px 20px rgba(0,0,0,0.5);
        border-bottom-left-radius: 15px;
    }
    .mobile-menu.active { right: 0; }
    
    .close-menu-btn {
        position: absolute; top: 10px; right: 15px;
        background: none; border: none; color: var(--text-secondary); font-size: 1.8rem; cursor: pointer; line-height: 1; transition: 0.3s;
    }
    .close-menu-btn:hover { color: var(--accent-color); }
    
    .mobile-menu-links {
        display: flex; flex-direction: column; gap: 10px; margin-top: 10px;
    }
    .mobile-link {
        color: #fff; font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
        border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 8px; transition: 0.3s;
    }
    .mobile-link:hover { color: var(--accent-color); }
    .mobile-link.bubble-btn { border-bottom: none; margin-top: 10px; padding-bottom: 8px; font-size: 0.75rem; }
    
    .footer-bottom { align-items: flex-start; text-align: left; }
    .footer-bottom p { text-align: left; }
    .credit-badge { justify-content: flex-start; font-size: 0.675rem; gap: 5px; }
    .eeteck-btn { padding: 4.5px 12px; font-size: 0.675rem; gap: 3px; }
    .eeteck-btn svg { width: 12px; height: 12px; }
}

/* Hot Sale Floating Button */
.hot-sale-float-btn {
    position: fixed;
    bottom: -100px;
    left: 20px;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border: 1px solid var(--accent-color);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8), 0 0 10px rgba(var(--accent-color-rgb), 0.3);
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    visibility: hidden;
}

.hot-sale-float-btn.visible {
    bottom: 30px;
    opacity: 1;
    visibility: visible;
    animation: pulseSale 2s infinite;
}

.hot-sale-icon {
    font-size: 1.5rem;
}

@keyframes pulseSale {
    0% { transform: scale(1); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.1); }
    50% { transform: scale(1.05); box-shadow: 0 5px 25px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 255, 255, 0.3); border-color: #fff; }
    100% { transform: scale(1); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.1); }
}

@media (max-width: 768px) {
    .hot-sale-float-btn {
        bottom: -100px;
        left: 20px;
        transform: none;
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .hot-sale-float-btn.visible {
        bottom: 30px;
        opacity: 1;
        visibility: visible;
        animation: pulseSaleMobile 2s infinite;
    }
    
    @keyframes pulseSaleMobile {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
}

/* --- About Us Modal --- */
.about-modal-wide {
    max-width: 900px !important;
    padding: 0 !important;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 90vh;
    background: var(--dark-grey);
}

.about-modal-inner {
    display: flex;
    flex-direction: column;
}

.about-image-side {
    position: relative;
    width: 100%;
    height: 200px; /* Optimizacion mobile */
    overflow: hidden;
}

.about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.about-image-side:hover .about-hero-img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--dark-grey) 0%, transparent 100%);
}

.about-text-side {
    padding: 25px; /* Optimizacion mobile */
    padding-top: 5px;
}

.about-slogan {
    color: var(--accent-color);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.about-footer-mobile {
    margin-top: 25px;
    display: block;
}

@media (min-width: 768px) {
    .about-modal-inner {
        flex-direction: row;
    }
    
    .about-image-side {
        width: 45%;
        height: auto;
        min-height: 500px;
    }
    
    .about-image-overlay {
        background: linear-gradient(to left, var(--dark-grey) -5%, transparent 100%);
    }
    
    .about-text-side {
        width: 55%;
        padding: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .about-footer-mobile {
        display: none; /* Se oculta en desktop ya que tienen la X arriba */
    }
}


/* --- Service Modal Gallery Styles --- */
.service-gallery-section {
    margin-top: 35px;
    border-top: 1px solid rgba(0, 195, 227, 0.2);
    padding-top: 25px;
}
.service-gallery-title {
    color: var(--accent-color) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.25rem !important;
    margin-bottom: 15px !important;
    letter-spacing: 1px;
    text-align: left;
}
.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 15px;
}
.service-gallery-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    overflow: hidden;
    background: rgba(15, 15, 15, 0.6);
    transition: all 0.3s ease;
}
.service-gallery-item:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 195, 227, 0.4);
    box-shadow: 0 5px 15px rgba(0, 195, 227, 0.15);
}
.service-gallery-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: filter 0.3s ease;
}
.service-gallery-item img:hover {
    filter: brightness(1.1);
}
.service-gallery-info {
    padding: 10px;
    font-size: 0.8rem;
    color: #ccc;
    line-height: 1.4;
    text-align: left;
}

/* --- Testimonial Pause Button Styles --- */
.testimonial-pause-btn {
    background: rgba(0, 195, 227, 0.1);
    border: 1px solid var(--accent-color);
    color: #fff;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 25px auto 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}
.testimonial-pause-btn:hover,
.testimonial-pause-btn:focus {
    background: var(--accent-color);
    color: #030303;
    box-shadow: 0 0 12px rgba(0, 195, 227, 0.5);
    outline: none;
}
.testimonial-pause-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: block;
}

.testimonial-track.paused {
    animation-play-state: paused;
}

/* --- Accessibility / Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-delay: -1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        background-attachment: scroll !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
        transition-delay: -1ms !important;
    }
    .testimonial-track {
        animation: none !important;
        transform: none !important;
        display: flex !important;
        overflow-x: auto !important;
    }
    .hero-collage-item, .hero-collage-item img {
        transition: none !important;
        transform: none !important;
    }
    .hot-sale-float {
        animation: none !important;
    }
    .animate-up, .split-text-scroll, .split-text {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }
}

/* --- Quote Section Styles --- */
.quote-section {
    padding: 100px 0;
    background-color: var(--black-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: flex-start;
}

.quote-info-side {
    padding-right: 20px;
}

.quote-info-subtitle {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.quote-info-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.quote-info-bullets {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.quote-bullet-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.quote-bullet-item .bullet-icon {
    font-size: 1.8rem;
    line-height: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    transition: var(--transition);
}

.quote-bullet-item:hover .bullet-icon {
    background: rgba(0, 195, 227, 0.1);
    border-color: rgba(0, 195, 227, 0.3);
    transform: translateY(-3px);
}

.quote-bullet-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.quote-bullet-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.quote-form-side .form-container-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.quote-form-side .form-container-card:hover {
    border-color: rgba(0, 195, 227, 0.3);
    box-shadow: 0 15px 50px rgba(0, 195, 227, 0.05);
}

@media (max-width: 991px) {
    .quote-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .quote-info-side {
        padding-right: 0;
        text-align: center;
    }
    .quote-bullet-item {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .quote-form-side .form-container-card {
        padding: 25px 20px;
    }
}
/* --- Submenu Styles --- */
.menu-item-wrapper {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;

}

.submenu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--dark-grey, #0a0a0b);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1050;
}

.menu-item-wrapper:hover .submenu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu-dropdown a {
    display: block !important;
    padding: 10px 20px !important;
    font-size: 0.8rem !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    color: #fff;
    text-decoration: none;
}

.submenu-dropdown a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--accent-color) !important;
}

.submenu-dropdown a::after {
    display: none !important;
}

/* --- Mobile Submenu Styles --- */
.mobile-menu-item-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-item-wrapper > a {
    flex: 1;
}

.mobile-submenu-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 5px 15px;
    cursor: pointer;
    line-height: 1;
}

.mobile-submenu-dropdown {
    width: 100%;
    display: none;
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,0.2);
    margin: 5px 0 15px 15px;
}

.mobile-submenu-dropdown.active {
    display: block;
}
