/* =========================================
   VARIABLES DE COLOR Y TIPOGRAFÍA
   ========================================= */
:root {
    --bg-dark: #0a0a0a;
    --text-main: #ffffff;
    --text-muted: #d1d5db;
    --brand-orange: #ee7b1c;
    --brand-orange-strong: #ff5500;
    --brand-red: #ea1a22;
    --brand-yellow: #faea0a;
    --font-heading: 'Arial Black', Impact, sans-serif;
    --font-body: 'Arial', sans-serif;
    --transition-smooth: 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body { background-color: var(--bg-dark); color: var(--text-main); font-family: var(--font-body); }

/* =========================================
   ANIMACIONES GLOBALES
   ========================================= */
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }
.float-anim { animation: float 4s ease-in-out infinite; }
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-load { opacity: 0; animation: fadeSlideUp 1s ease-out forwards; animation-delay: 0.3s; }
.animate-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.animate-scroll.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================
   BARRA DE NAVEGACIÓN Y MENÚ DESPLEGABLE
   ========================================= */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 0.9375rem 3.125rem; background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255, 255, 255, 0.05); position: fixed; top: 0; width: 100%; z-index: 1000; transition: transform 0.3s ease-in-out, background 0.3s ease; }
.navbar-hidden { transform: translateY(-100%); }
.logo img { height: 60px; margin: .5rem;/* 100px */ }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; }
.header-right { display: flex; flex-direction: row; align-items: center; gap: 0.9375rem; }
.nav-links { display: flex; align-items: center; }
.nav-links > a, .dropbtn { color: var(--text-main); text-decoration: none; margin-left: 1.5625rem; font-family: inherit; font-size: 1rem; text-transform: uppercase; transition: color var(--transition-smooth); cursor: pointer; }
.nav-links > a:hover, .dropdown:hover .dropbtn { color: var(--brand-orange-strong); }
.dropdown { position: relative; display: inline-block; padding-bottom: 0.625rem; top: 0.3125rem;}
.arrow { font-size: 0.7rem; margin-left: 0.1875rem; transition: transform var(--transition-smooth); }
.dropdown:hover .arrow { transform: rotate(180deg); display: inline-block; }
.dropdown-content { opacity: 0; visibility: hidden; transform: translateY(0.9375rem); position: absolute; top: 100%; left: 0; background-color: #111111; min-width: 20rem; box-shadow: 0 0.625rem 1.875rem rgba(0,0,0,0.8); border-top: 3px solid var(--brand-orange); transition: all var(--transition-smooth); z-index: 1; }
.dropdown:hover .dropdown-content { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-content a { color: var(--text-main); padding: 0.9375rem 1.25rem; text-decoration: none; display: block; font-size: 0.85rem; font-weight: bold; border-bottom: 1px solid rgba(255,255,255,0.05); transition: all var(--transition-smooth); margin-left: 0; }
.dropdown-content a:hover { background-color: rgba(234, 26, 34, 0.1); color: var(--brand-red); padding-left: 1.5625rem; }
.btn-phone { background-color: var(--brand-orange-strong); color: #ffffff; padding: 0.875rem 1.75rem; border-radius: 1.875rem; text-decoration: none; font-size: 1.1rem; font-weight: bold; box-shadow: 0.375rem 0 0.9375rem rgba(255, 85, 0, 0.4); transition: transform var(--transition-smooth), box-shadow var(--transition-smooth); }
.btn-phone:hover { transform: translateX(-0.1875rem); box-shadow: 0.5rem 0 1.25rem rgba(255, 85, 0, 0.6); background-color: var(--brand-orange);}

/* Botón Global */
.btn { padding: 1rem 2.5rem; font-size: 0.9rem; font-weight: bold; border-radius: 1.875rem; text-decoration: none; text-transform: uppercase; margin: 0.3125rem; display: inline-block; transition: all var(--transition-smooth); letter-spacing: 0.0625rem;}
.btn-primary { background-color: var(--brand-orange); color: #000; border: 2px solid var(--brand-orange); }
.btn-primary:hover { background-color: transparent; color: var(--brand-orange); box-shadow: 0 0 1.25rem rgba(238, 123, 28, 0.3); }
.btn-submit-form {
    width: 100%;
    background-color: var(--brand-orange-strong);
    color: #ffffff;
    padding: 1.1rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 85, 0, 0.3);
    transition: all 0.3s ease;
    margin: 1.25rem 0;
}

.btn-submit-form:hover {
    transform: translateY(-3px);
    background-color: var(--brand-orange);
    box-shadow: 0 15px 25px rgba(255, 85, 0, 0.5);
}

.scrolling-ticker {
    background-color: var(--brand-orange); 
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
/* =========================================
   SUBPAGE HERO
   ========================================= */
.subpage-hero { padding: 8.75rem 5vw 3.75rem 5vw; background-color: var(--bg-dark); border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.subpage-hero-container { max-width: 81.25rem; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3.75rem; align-items: center; }
.section-subtitle-small { font-family: var(--font-heading); font-size: 0.85rem; color: var(--text-main); letter-spacing: 0.125rem; text-transform: uppercase; display: block; margin-bottom: 1.25rem; }
.subpage-hero-content h1 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.1; margin-bottom: 1.5rem; text-transform: uppercase; }
.subpage-hero-content p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.6; margin-bottom: 2rem; }
.breadcrumbs { margin-top: 2rem; font-size: 0.85rem; font-weight: bold; letter-spacing: 0.0625rem; text-transform: uppercase; }
.breadcrumbs a { color: var(--brand-orange-strong); text-decoration: none; transition: color var(--transition-smooth); }
.breadcrumbs a:hover { color: var(--brand-red); }
.breadcrumbs .divider { margin: 0 0.625rem; color: var(--text-muted); }
.breadcrumbs .current { color: var(--text-muted); }
.subpage-hero-image img { width: 100%; height: auto; border-radius: 0.75rem; border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 0.9375rem 2.1875rem rgba(0,0,0,0.5); }

/* =========================================
   SUBPAGE WHY CHOOSE US
   ========================================= */
.subpage-why-us { padding: 3.75rem 5vw; background-color: #111111; }
.subpage-why-container { max-width: 81.25rem; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; }
.brands-title-container { position: relative; }
.brands-title { font-family: var(--font-heading); font-size: 2rem; color: var(--text-main); position: relative; z-index: 2; }
.brands-title::before { content: attr(data-text); position: absolute; top: -0.625rem; left: 0; font-size: 3.5rem; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1); z-index: -1; white-space: nowrap; }

.service-features-list { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
.feature-item { display: flex; align-items: flex-start; gap: 1.25rem; }
.feature-icon { width: 3.5rem; height: 3.5rem; background-color: var(--brand-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 0.3125rem 0.9375rem rgba(234, 26, 34, 0.3); transition: transform var(--transition-smooth); }
.feature-item:hover .feature-icon { transform: scale(1.1) rotate(5deg); background-color: var(--brand-orange-strong); }
.feature-icon svg { width: 1.6rem; height: 1.6rem; stroke: #ffffff; }
.feature-text h3 { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 0.4rem; text-transform: uppercase; color: var(--text-main); letter-spacing: 0.05rem; }
.feature-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.5; }

/* Imagen Derecha e Insignias */
.why-image-wrapper { position: relative; height: 100%; min-height: 31.25rem; }
.why-img { width: 100%; height: 100%; object-fit: cover; border-radius: 1.25rem; clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%); }
.hex-badge { position: absolute; background-color: var(--brand-orange); color: white; padding: 1.25rem; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: -0.3125rem 0.3125rem 0.9375rem rgba(234, 26, 34, 0.4); clip-path: polygon(100% 0, 100% 100%, 15% 100%, 0 50%, 15% 0); width: 8.75rem; height: 6.25rem; }
.badge-top { top: 3.125rem; left: -1.25rem; }
.badge-bottom { bottom: 3.125rem; left: -3.75rem; }
.badge-number { font-family: var(--font-heading); font-size: 2rem; line-height: 1; }
.badge-text { font-size: 0.8rem; font-weight: bold; text-transform: uppercase; }

/* =========================================
   FOOTER
   ========================================= */
.footer { background-color: #050505; border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 3.75rem; }
.footer-container { max-width: 81.25rem; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3.125rem; padding: 0 5vw 3.125rem 5vw; }
.footer-logo { height: 3.75rem; margin-bottom: 1.25rem; }
.brand-col p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.footer-col h3 { font-family: var(--font-heading); color: white; margin-bottom: 1.5625rem; font-size: 1.1rem; letter-spacing: 0.0625rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.9375rem; display: flex; align-items: center; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; font-weight: bold; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--brand-orange); }
.asterisks { color: var(--brand-orange); margin-right: 0.9375rem; letter-spacing: 0.125rem;}
.contact-list li { color: var(--text-muted); font-size: 0.95rem; }
.social-icons { display: flex; gap: 0.9375rem; margin-top: 1.25rem; }
.social-icons a { width: 2.1875rem; height: 2.1875rem; background-color: var(--brand-orange); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; font-weight: bold; transition: transform 0.3s, background 0.3s; }
.social-icons a:hover { transform: scale(1.1); background-color: var(--brand-orange); }
.footer-bottom { background-color: #000; text-align: center; padding: 1.25rem; color: #777; font-size: 0.85rem; }

/* =========================================
   MEDIA QUERIES GLOBALES
   ========================================= */
@media (max-width: 64rem) {
    .navbar { padding: 0.9375rem 2rem; }
    .mobile-menu-btn { display: block; }
    .header-right {
        position: fixed;
        top: 0;
        right: -100%; /* Escondido a la derecha */
        width: 100%;  /* Cambia a 100% para que no se vea nada de atrás */
        height: 100vh;
        background-color: #0a0a0a; /* Color sólido, sin transparencias para probar */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        z-index: 9999; /* Asegúrate que sea el número más alto */
    }
    .header-right.active {
        right: 0; /* Aparece cubriendo todo */
    }

    /* Quita cualquier margen extraño que esté moviendo el menú */
    .nav-links {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    /* Asegura que el botón hamburguesa se vea por encima del menú cuando esté abierto */
    .mobile-menu-btn {
        position: relative;
        z-index: 10000; 
    }
    .nav-links > a, .dropdown { margin-left: 0; font-size: 1.2rem; }
    .dropdown-content { position: static; box-shadow: none; border-top: none; background: transparent; padding-left: 1rem; min-width: 100%; text-align: center; display: none; opacity: 1; visibility: visible; transform: none; }
    .dropdown:hover .dropdown-content, .dropdown:focus-within .dropdown-content { display: block; }
    
    .subpage-hero-container, .subpage-why-container { grid-template-columns: 1fr; gap: 3rem; }
    .subpage-hero { padding-top: 6.5rem; }
    .why-img { clip-path: none; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 2.5rem;}
}

@media (max-width: 48rem) {
    .footer-container { grid-template-columns: 1fr; }
    .hex-badge { width: 7rem; height: 5rem; padding: 0.625rem; }
    .badge-top { left: -1rem; }
    .badge-bottom { left: -1rem; bottom: 1rem; }
}

/* =========================================
   SIGNS SECTION
   ========================================= */
.signs-section {
    padding: 3.75rem 5vw; /* Padding reducido a ~60px */
    background-color: #050505; /* Un negro un poco distinto para contraste */
}

.signs-header {
    margin-bottom: 4rem;
}

.signs-grid {
    max-width: 81.25rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 3 Columnas */
    gap: 2.5rem;
    align-items: center;
}

.signs-col {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.sign-card {
    display: flex;
    flex-direction: column;
}

.sign-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--brand-orange);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform var(--transition-smooth);
}

.sign-card:hover .sign-icon {
    transform: translateY(-0.3125rem);
    background-color: var(--brand-orange-strong);
    box-shadow: 0 0.625rem 1.25rem rgba(255, 85, 0, 0.3);
}

.sign-icon svg {
    width: 1.8rem;
    height: 1.8rem;
    stroke: #ffffff;
}

.sign-title-row {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.625rem;
}

.sign-number {
    font-family: var(--font-heading);
    color: var(--brand-orange);
    font-size: 1.2rem;
}

.sign-title-row h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.sign-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
    width: 100%;
}

.sign-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Imagen central inclinada */
.signs-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.signs-center-img {
    width: 100%;
    max-width: 25rem;
    border-radius: 0.5rem;
    border: 0.3125rem solid #1a1a1a;
    transform: rotate(5deg); /* Efecto de inclinación del video */
    box-shadow: 0 1.25rem 2.5rem rgba(0,0,0,0.6);
    transition: transform var(--transition-smooth);
}

.signs-center-img:hover {
    transform: rotate(0deg) scale(1.05); /* Se endereza al pasar el mouse */
}


/* =========================================
   HOW IT WORKS SECTION (TIMELINE)
   ========================================= */
.hiw-section {
    padding: 3.75rem 5vw; 
    /* Degradado sutil con tono rojizo oscuro de fondo */
    background: linear-gradient(135deg, #180000 0%, var(--bg-dark) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hiw-container {
    max-width: 81.25rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.hiw-timeline {
    display: flex;
    flex-direction: column;
}

.hiw-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0; /* Controlado por el flex de los hijos */
    position: relative;
    padding-bottom: 2rem;
}

/* Evitamos el padding en el último para que no quede espacio vacío */
.hiw-item:last-child {
    padding-bottom: 0;
}

.hiw-icon-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 4rem;
    flex-shrink: 0;
}

.hiw-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--brand-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 1rem rgba(234, 26, 34, 0.4);
    z-index: 2;
    transition: transform var(--transition-smooth);
}

.hiw-item:hover .hiw-icon {
    transform: scale(1.1);
    background-color: var(--brand-orange-strong);
}

.hiw-icon svg {
    width: 2rem;
    height: 2rem;
    stroke: #ffffff;
}

/* La línea conectora entre los círculos */
.hiw-line {
    width: 2px;
    flex-grow: 1;
    background-color: rgba(234, 26, 34, 0.5); /* Línea roja semitransparente */
    margin-top: 0.5rem;
}

.hiw-text-col {
    flex-grow: 1;
    padding-top: 0.625rem;
}

.hiw-text-col h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.hiw-text-col p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Números Gigantes Huecos a la derecha */
.hiw-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2); /* Borde hueco */
    margin-left: 1rem;
    transition: all var(--transition-smooth);
}

.hiw-item:hover .hiw-number {
    -webkit-text-stroke: 1.5px var(--brand-red);
}

.hiw-image {
    display: flex;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1.25rem 2.5rem rgba(0,0,0,0.5);
}

.hiw-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Hace que la imagen del coche llene su contenedor */
}

/* =========================================
   PORTFOLIO SECTION
   ========================================= */
.portfolio-section { padding: 3.75rem 5vw; background-color: #0d0d0d; }
.portfolio-header { text-align: center; max-width: 50rem; margin: 0 auto 3.125rem auto; }
.portfolio-desc { color: var(--text-muted); font-size: 1.1rem; line-height: 1.6; margin-top: 1.25rem; }
.portfolio-grid { display: grid; gap: 1.25rem; max-width: 81.25rem; margin: 0 auto; }
.portfolio-img { width: 100%; height: 15.625rem; object-fit: cover; border-radius: 0.5rem; border: 3px solid var(--brand-orange); transition: transform var(--transition-smooth), box-shadow var(--transition-smooth); }
.portfolio-img:hover { transform: scale(1.03); box-shadow: 0 0.625rem 1.5625rem rgba(234, 26, 34, 0.4); z-index: 2; position: relative; }

/* =========================================
   CALL TO ACTION & TICKER SECTION
   ========================================= */
/* Estilo para botón rojo secundario */
.btn-primary-red { background-color: var(--brand-orange); color: white; border: 2px solid var(--brand-red); padding: 1rem 2.5rem; font-size: 0.9rem; font-weight: bold; border-radius: 1.875rem; text-decoration: none; text-transform: uppercase; transition: all var(--transition-smooth); letter-spacing: 0.0625rem;}
.btn-primary-red:hover { background-color: transparent; color: var(--brand-red); box-shadow: 0 0 1.25rem rgba(234, 26, 34, 0.3); }

.cta-wrapper { position: relative; width: 100%; }
.cta-banner { min-height: 31.25rem; display: flex; align-items: center; justify-content: flex-end; padding: 3.125rem 5vw; position: relative; background-size: cover; background-position: center; }
.cta-banner::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.8) 100%); }

.cta-content-box { background: rgba(20, 20, 20, 0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-top: 3px solid var(--brand-orange); padding: 3.125rem 2.5rem; max-width: 34.375rem; border-radius: 0.5rem; position: relative; z-index: 1; box-shadow: 0 0.9375rem 2.1875rem rgba(0,0,0,0.5); }
.cta-content-box h2 { font-family: var(--font-heading); font-size: 2rem; line-height: 1.2; margin-bottom: 1.25rem; text-transform: uppercase; }
.cta-content-box p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.6; margin-bottom: 1.5625rem; }

/* Ticker Deslizante */
.scrolling-ticker { background-color: var(--brand-orange); padding: 0.9375rem 0; overflow: hidden; position: relative; display: flex; white-space: nowrap; border-top: 2px solid rgba(255, 255, 255, 0.2); border-bottom: 2px solid rgba(255, 255, 255, 0.2); }
.ticker-content { display: flex; animation: marquee 25s linear infinite; }
.ticker-content span { font-family: var(--font-heading); font-size: 1.2rem; color: #ffffff; text-transform: uppercase; letter-spacing: 0.125rem; margin-right: 3.125rem; }

@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =========================================
   REVIEWS SECTION
   ========================================= */
.reviews-section { padding: 3.75rem 5vw; background-color: #050505; text-align: center; }
.carousel-wrapper { position: relative; max-width: 81.25rem; margin: 0 auto; display: flex; align-items: center; }

.reviews-track { display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 1.25rem 0; scrollbar-width: none; }
.reviews-track::-webkit-scrollbar { display: none; }

.review-card { min-width: 18.75rem; max-width: 21.875rem; background-color: #111; border-top: 4px solid var(--brand-orange); border-radius: 0.5rem; padding: 1.5625rem; text-align: left; scroll-snap-align: start; box-shadow: 0 0.625rem 1.25rem rgba(0,0,0,0.5); flex-shrink: 0; }
.review-header { display: flex; align-items: center; gap: 0.9375rem; margin-bottom: 0.9375rem; }
.reviewer-avatar { width: 2.8125rem; height: 2.8125rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: bold; color: white; }
.reviewer-info h4 { font-size: 1rem; display: flex; align-items: center; gap: 0.3125rem; }
.verified-icon { width: 1rem; color: #e74c3c; }
.reviewer-info span { font-size: 0.8rem; color: var(--text-muted); }
.stars { color: var(--brand-yellow); font-size: 1.2rem; margin-bottom: 0.9375rem; letter-spacing: 0.125rem; }
.review-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.9375rem; }
.read-more { color: var(--brand-orange); text-decoration: none; font-size: 0.9rem; font-weight: bold; }

.carousel-btn { background-color: rgba(255,255,255,0.1); color: white; border: none; width: 2.8125rem; height: 2.8125rem; border-radius: 50%; cursor: pointer; font-size: 1.2rem; position: absolute; z-index: 10; transition: background var(--transition-smooth); }
.carousel-btn:hover { background-color: var(--brand-red); }
.left-btn { left: -1.25rem; }
.right-btn { right: -1.25rem; }

/* =========================================
   FAQ SECTION (Acordeón)
   ========================================= */
.faq-section {
    padding: 3.75rem 5vw;
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-container {
    max-width: 81.25rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Da más espacio a las preguntas */
    gap: 4rem;
    align-items: flex-start;
}

.faq-info h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.8rem);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.faq-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #111111;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.faq-item.active {
    border-color: var(--brand-orange);
    box-shadow: 0 0 1.25rem rgba(234, 26, 34, 0.15);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-smooth);
}

.faq-question:hover {
    color: var(--brand-red);
}

.faq-icon {
    stroke: var(--brand-orange);
    transition: transform 0.3s ease;
}

/* Gira la flecha cuando está abierto */
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Animación fluida de altura usando CSS Grid */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer-inner p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   MEDIA QUERIES (TABLETS & PHONES)
   ========================================= */
@media (max-width: 64rem) {
    .navbar {
        padding: 0.9375rem 1.5rem;
        position: fixed; /* Asegura que la navbar no se mueva */
    }

    /* Ocultar el menú de PC */
    .header-right {
        display: none; /* Cambiar flex por none aquí */
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: #0a0a0a;
        z-index: 9999;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    /* Mostrar solo cuando el JS añade la clase active */
    .header-right.active {
        display: flex !important;
    }

    /* Forzar que el botón hamburguesa esté SIEMPRE visible y arriba de todo */
    .mobile-menu-btn {
        display: block !important;
        position: relative;
        z-index: 10000; /* Un nivel arriba del fondo negro */
        background: transparent;
        border: none;
    }

    .nav-links {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }

    .nav-links a {
        font-size: 1.5rem;
        margin: 0;
        color: white;
    }
}

@media (max-width: 48rem) { /* 768px */
    .subpage-hero { padding-top: 7rem; text-align: center; }
    .subpage-hero-content h1 { font-size: 2.2rem; }
    
    .portfolio-grid { grid-template-columns: 1fr; }
    
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-col ul li { justify-content: center; }
    .social-icons { justify-content: center; }

    .hex-badge { width: 7rem; height: 5rem; }
    .badge-bottom { left: 0; bottom: 10px; }
}


/* =========================================
   CONTACT FORM - ESTILO IMAGEN 2 (CÁPSULA)
   ========================================= */
.contact-section {
    padding: 60px 5vw;
    background-color: var(--bg-dark);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dos columnas en PC */
    gap: 50px;
}

.contact-form-box {
    background-color: #0f0f0f;
    padding: 40px;
    border-radius: 15px;
    border-top: 4px solid var(--brand-red);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

/* Forzar que el formulario sea una columna vertical */
.contact-form-box form {
    display: flex;
    flex-direction: column;
}

/* Estilo de Inputs (Texto, Email, Tel) */
.contact-form-box input[type="text"], 
.contact-form-box input[type="email"], 
.contact-form-box input[type="tel"] {
    width: 100%;
    background: transparent !important; /* Quita el fondo blanco de tu imagen */
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 0;
    margin-bottom: 20px;
    color: white !important;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form-box input:focus {
    border-bottom: 2px solid var(--brand-orange);
}

/* Grupo de Checkboxes de servicios (2 columnas limpias) */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 15px 0 25px 0;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #eee;
    font-size: 0.85rem;
    cursor: pointer;
}

/* Consentimiento (Abajo de los servicios) */
.consent-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.consent-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
    color: #aaa;
    line-height: 1.3;
}

/* BOTÓN NARANJA TIPO CÁPSULA (EL DE LA IMAGEN 2) */
.btn-submit-form {
    width: 100%;
    background-color: #ee7b1c; /* Naranja Marlee */
    color: white;
    padding: 16px;
    border: none;
    border-radius: 50px; /* Forma de cápsula */
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
    box-shadow: 0 8px 15px rgba(238, 123, 28, 0.2);
}

.btn-submit-form:hover {
    background-color: #ff5500;
    transform: translateY(-2px);
}

/* RESPONSIVE PARA MÓVIL */
@media (max-width: 768px) {
    .contact-container { grid-template-columns: 1fr; }
    .checkbox-group { grid-template-columns: 1fr; }
}

/* Quitar el color azul automático de teléfonos y correos */
.info-block a, 
.cta-phone, 
.contact-list a,
a[href^="tel:"], 
a[href^="mailto:"] {
    text-decoration: none !important;
    font-weight: bold;
    transition: color 0.3s ease;
}

/* --- Bloques de Información (Phone, Email, Hours) --- */
.info-block {
    margin-bottom: 25px; /* Controla el espacio entre cada bloque */
    display: flex;
    flex-direction: column;
    gap: 5px; /* Espacio entre el título H4 y el dato */
}

.info-block h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #ffffff !important; /* Título siempre blanco */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Estilo para los datos (Links de teléfono y correo) */
.info-block a, 
.info-block p {
    text-decoration: none !important;
    font-size: 1rem;
    font-weight: normal;
    transition: color 0.3s ease;
}

/* Hover en Naranja */
.info-block a:hover {
    color: var(--brand-orange) !important; /* Cambia a naranja al pasar el mouse */
}

/* Quitar estilos forzados de navegadores móviles */
a[href^="tel:"], 
a[href^="mailto:"] {
    color: inherit;
    text-decoration: none;
}


/* Evitar que iOS/Safari cambie el color del texto de contacto */
[x-apple-data-detectors] {
    color: inherit !important;
    text-decoration: none !important;
    font-size: inherit !important;
    font-family: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}

:root {
    /* Tipografía dinámica: (mínimo, preferido, máximo) */
    --h1-size: clamp(2.2rem, 8vw, 4.5rem);
    --h2-size: clamp(1.8rem, 5vw, 2.8rem);
    --body-size: clamp(0.95rem, 2vw, 1.1rem);
}

.hero h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
p { font-size: var(--body-size); }

/* =========================================
   MOBILE & TABLET OPTIMIZATION
   ========================================= */

@media (max-width: 1024px) {
    /* Contenedores generales */
    .about-container, .why-container, .expertise-container, .contact-container {
        grid-template-columns: 1fr !important;
        gap: 4rem;
        text-align: center;
    }

    /* Navbar Cortina Pro */
    .header-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #0a0a0a !important;
        z-index: 9999;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    }

    .header-right.active { right: 0; }

    /* Forzar el blanco en info-blocks y quitar el azul */
    .info-block {
        align-items: center; /* Centrar info en móvil */
        margin-bottom: 2rem;
    }
    
    .info-block a, .info-block p {
        color: #ffffff !important;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    /* Ajuste de Secciones */
    section { padding: 4rem 1.5rem !important; }

    /* Hero Buttons */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 1rem;
    }

    .btn { width: 100% !important; margin: 0 !important; }

    /* Grillas */
    .services-grid, .why-grid, .portfolio-grid {
        grid-template-columns: 1fr !important;
    }

    /* Imágenes y Recortes */
    .why-img, .expertise-image img, .about-img {
        clip-path: none !important;
        border-radius: 15px;
    }

    /* Los números gigantes en "Process" ocupan mucho espacio en móvil */
    .step-number {
        font-size: 3rem;
        position: absolute;
        top: 10px;
        right: 15px;
    }

    /* Ajuste del Formulario (Imagen 2 style) */
    .contact-form-box {
        padding: 2rem 1.5rem;
    }

    .checkbox-group {
        grid-template-columns: 1fr !important; /* Una sola fila para que el texto respire */
    }

    /* Bloqueo del azul en Safari/iOS */
    a[href^="tel:"], a[href^="mailto:"] {
        color: #fff !important;
        text-decoration: none;
    }
}

@media (max-width: 480px) {
    .scrolling-ticker { padding: 10px 0; }
    .ticker-content span {
        font-size: 0.9rem;
        margin-right: 30px;
    }
}

/* =========================================
   RESPONSIVE FIX GLOBAL
   WINDOW REGULATOR PAGE
   ========================================= */

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  overflow: hidden;
}

/* Botón de formulario igual al diseño naranja */
form button[type="submit"],
.btn-submit-form,
.form-submit,
.btn-form {
  width: 100%;
  background: var(--brand-orange);
  color: #000;
  border: none;
  border-radius: 999px;
  padding: 18px 35px;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  box-shadow: none;
}

form button[type="submit"]:hover,
.btn-submit-form:hover,
.form-submit:hover,
.btn-form:hover {
  background: var(--brand-orange-strong);
  transform: translateY(-2px);
  color: #000;
}

/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1024px) {
  .navbar {
    padding: 14px 28px;
  }

  .mobile-menu-btn {
    display: block;
    position: relative;
    z-index: 10001;
  }

  .header-right {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 10000;
    padding: 90px 24px 40px;
  }

  .header-right.active {
    transform: translateX(0);
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .nav-links > a,
  .nav-links .dropbtn,
  .dropdown {
    margin-left: 0;
    font-size: 1.15rem;
    text-align: center;
  }

  .dropdown {
    width: 100%;
    padding-bottom: 0;
    top: 0;
  }

  .dropdown-content {
    position: static;
    min-width: 100%;
    width: 100%;
    margin-top: 16px;
    background: transparent;
    border-top: 1px solid rgba(238, 123, 28, 0.35);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .dropdown:hover .dropdown-content,
  .dropdown:focus-within .dropdown-content {
    display: block;
  }

  .dropdown-content a {
    text-align: center;
    padding: 12px;
    font-size: 0.85rem;
  }

  .btn-phone {
    margin-top: 10px;
  }

  .subpage-hero-container,
  .subpage-why-container,
  .hiw-container,
  .faq-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .subpage-hero {
    padding-top: 120px;
  }

  .subpage-hero-content {
    text-align: center;
  }

  .subpage-hero-content .btn {
    margin-left: auto !important;
    margin-right: auto;
  }

  .breadcrumbs {
    justify-content: center;
    text-align: center;
  }

  .subpage-hero-image img,
  .why-img,
  .hiw-image img {
    max-height: 480px;
    object-fit: cover;
  }

  .why-img {
    clip-path: none;
  }

  .why-image-wrapper {
    min-height: auto;
  }

  .signs-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .signs-image-wrapper {
    order: -1;
  }

  .signs-center-img {
    max-width: 520px;
    transform: rotate(0deg);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .cta-banner {
    justify-content: center;
    text-align: center;
  }

  .cta-banner::before {
    background: rgba(10, 10, 10, 0.72);
  }

  .cta-content-box {
    max-width: 620px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .navbar {
    padding: 12px 18px;
  }

  .logo img {
    height: 52px;
    margin: 0;
  }

  .subpage-hero,
  .subpage-why-us,
  .signs-section,
  .hiw-section,
  .portfolio-section,
  .reviews-section,
  .faq-section,
  .contact-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .subpage-hero {
    padding-top: 105px;
    padding-bottom: 50px;
  }

  .subpage-hero-content h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .subpage-hero-content p {
    font-size: 1rem;
  }

  .brands-title {
    font-size: 1.55rem;
  }

  .brands-title::before {
    font-size: 2.5rem;
    left: 0;
    top: -8px;
  }

  .service-features-list {
    gap: 22px;
  }

  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 24px 18px;
    border-radius: 16px;
    border: 1px solid rgba(238, 123, 28, 0.18);
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .hex-badge {
    position: static;
    margin: 16px auto 0;
    clip-path: none;
    border-radius: 14px;
    width: 140px;
    height: auto;
  }

  .signs-header {
    margin-bottom: 42px;
  }

  .signs-col {
    gap: 24px;
  }

  .sign-card {
    background: #111;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(238, 123, 28, 0.18);
  }

  .sign-title-row {
    align-items: flex-start;
  }

  .sign-title-row h3 {
    font-size: 0.95rem;
  }

  .hiw-item {
    gap: 16px;
  }

  .hiw-icon-col {
    width: 56px;
  }

  .hiw-icon {
    width: 56px;
    height: 56px;
  }

  .hiw-number {
    display: none;
  }

  .hiw-text-col h3 {
    font-size: 1.05rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr !important;
  }

  .portfolio-img {
    height: 230px;
  }

  .cta-banner {
    min-height: 460px;
    padding: 50px 22px;
  }

  .cta-content-box {
    padding: 34px 24px;
  }

  .cta-content-box h2 {
    font-size: 1.65rem;
  }

  .ticker-content span {
    font-size: 0.95rem;
    margin-right: 34px;
  }

  .carousel-wrapper {
    padding: 0 4px;
  }

  .reviews-track {
    gap: 16px;
    padding: 20px 0 30px;
  }

  .review-card {
    min-width: 85%;
    max-width: 85%;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: -28px;
    background: var(--brand-orange);
    color: #000;
  }

  .left-btn {
    left: calc(50% - 48px);
  }

  .right-btn {
    right: calc(50% - 48px);
  }

  .faq-container {
    gap: 32px;
  }

  .faq-info {
    text-align: center;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col ul li,
  .contact-list li {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* =========================================
   SMALL PHONES
   ========================================= */

@media (max-width: 480px) {
  .subpage-hero-content h1 {
    font-size: 2rem;
  }

  .btn,
  .btn-primary,
  .btn-primary-red,
  .btn-phone {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .section-subtitle,
  .justify-center {
    justify-content: center;
    text-align: center;
  }

  .section-subtitle hr {
    width: 35px;
  }

  .brands-title::before {
    display: none;
  }

  .subpage-hero-image img,
  .hiw-image img,
  .signs-center-img {
    border-radius: 16px;
  }

  .review-card {
    min-width: 92%;
    max-width: 92%;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  input,
  textarea,
  select {
    font-size: 16px;
  }
}

/* =========================================
   WINDOW REGULATOR FINAL FIX
   ORANGE MAIN / RED ACCENT
   ========================================= */

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* Naranja principal */
.btn-primary,
.btn-submit-form,
form button[type="submit"] {
  background: var(--brand-orange) !important;
  border-color: var(--brand-orange) !important;
  color: #000 !important;
}

.btn-primary:hover,
.btn-submit-form:hover,
form button[type="submit"]:hover {
  background: var(--brand-orange-strong) !important;
  border-color: var(--brand-orange-strong) !important;
  color: #000 !important;
}

/* Rojo solo como acento */
.btn-primary-red {
  background: var(--brand-orange) !important;
  border-color: var(--brand-orange) !important;
  color: #000 !important;
}

.btn-primary-red:hover {
  background: transparent !important;
  color: var(--brand-red) !important;
  border-color: var(--brand-red) !important;
}

.scrolling-ticker {
  background-color: var(--brand-orange) !important;
}

.contact-form-box {
  border-top-color: var(--brand-orange) !important;
}

.checkbox-title,
.read-more,
.cta-phone {
  color: var(--brand-orange) !important;
}

.faq-item.active {
  border-color: var(--brand-orange) !important;
  box-shadow: 0 0 20px rgba(238, 123, 28, 0.18) !important;
}

.faq-icon {
  stroke: var(--brand-orange) !important;
}

.hiw-icon,
.sign-icon,
.feature-icon,
.hex-badge {
  background-color: var(--brand-orange) !important;
}

.hiw-line {
  background-color: rgba(238, 123, 28, 0.45) !important;
}

.hiw-item:hover .hiw-number {
  -webkit-text-stroke: 1.5px var(--brand-red) !important;
}

/* Form button estilo imagen */
form button[type="submit"],
.btn-submit-form {
  width: 100%;
  border-radius: 999px !important;
  padding: 18px 35px !important;
  font-size: 0.9rem !important;
  font-weight: 900 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
}

/* =========================================
   CARRUSEL COMO PÁGINA PRINCIPAL
   ========================================= */

.reviews-section {
  padding: 80px 5vw;
  background-color: #050505;
  text-align: center;
}

.carousel-wrapper {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-width: 300px;
  max-width: 350px;
  flex-shrink: 0;
  background-color: #111;
  border-top: 4px solid var(--brand-orange);
  border-radius: 8px;
  padding: 25px;
  text-align: left;
  scroll-snap-align: start;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(238, 123, 28, 0.22);
}

.carousel-btn {
  background-color: rgba(255,255,255,0.1);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  position: absolute;
  z-index: 10;
  transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-btn:hover {
  background-color: var(--brand-red);
  color: #fff;
  transform: scale(1.05);
}

.left-btn {
  left: -20px;
}

.right-btn {
  right: -20px;
}

/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1024px) {
  .navbar {
    padding: 14px 28px;
  }

  .mobile-menu-btn {
    display: block !important;
    position: relative;
    z-index: 10001;
  }

  .header-right {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 10000;
    padding: 90px 24px 40px;
  }

  .header-right.active {
    transform: translateX(0);
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .nav-links > a,
  .nav-links .dropbtn,
  .dropdown {
    margin-left: 0;
    font-size: 1.15rem;
    text-align: center;
  }

  .dropdown {
    width: 100%;
    padding-bottom: 0;
    top: 0;
  }

  .dropdown-content {
    position: static;
    min-width: 100%;
    width: 100%;
    margin-top: 16px;
    background: transparent;
    border-top: 1px solid rgba(238, 123, 28, 0.35);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .dropdown:hover .dropdown-content,
  .dropdown:focus-within .dropdown-content {
    display: block;
  }

  .dropdown-content a {
    text-align: center;
    padding: 12px;
    font-size: 0.85rem;
  }

  .subpage-hero-container,
  .subpage-why-container,
  .hiw-container,
  .contact-container,
  .faq-container {
    grid-template-columns: 1fr !important;
    gap: 48px;
  }

  .subpage-hero {
    padding-top: 120px;
  }

  .subpage-hero-content,
  .contact-info,
  .faq-info {
    text-align: center;
  }

  .signs-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .signs-image-wrapper {
    order: -1;
  }

  .signs-center-img {
    max-width: 520px;
    transform: rotate(0deg) !important;
  }

  .why-img {
    clip-path: none !important;
  }

  .why-image-wrapper {
    min-height: auto !important;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .cta-banner {
    justify-content: center;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .navbar {
    padding: 12px 18px;
  }

  .logo img {
    height: 52px;
    margin: 0;
  }

  .subpage-hero,
  .subpage-why-us,
  .signs-section,
  .hiw-section,
  .portfolio-section,
  .reviews-section,
  .contact-section,
  .faq-section {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  .subpage-hero {
    padding-top: 105px;
    padding-bottom: 50px;
  }

  .subpage-hero-content h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .brands-title::before {
    display: none !important;
  }

  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(238,123,28,0.18);
    border-radius: 16px;
    padding: 24px 18px;
  }

  .hex-badge {
    position: static !important;
    margin: 16px auto 0;
    clip-path: none !important;
    border-radius: 14px;
    width: 140px;
    height: auto;
  }

  .sign-card {
    background: #111;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(238,123,28,0.18);
  }

  .hiw-image {
    min-height: 320px;
  }

  .hiw-item {
    gap: 16px;
  }

  .hiw-number {
    display: none;
  }

  .portfolio-grid {
    grid-template-columns: 1fr !important;
  }

  .portfolio-img {
    height: 230px;
  }

  .cta-banner {
    min-height: 460px;
    padding: 50px 22px;
  }

  .cta-content-box {
    padding: 34px 24px;
  }

  .review-card {
    min-width: 85%;
    max-width: 85%;
    padding: 24px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: -25px;
    background-color: var(--brand-orange);
    color: #000;
  }

  .carousel-btn:hover {
    background-color: var(--brand-red);
    color: #fff;
  }

  .left-btn {
    left: calc(50% - 48px);
  }

  .right-btn {
    right: calc(50% - 48px);
  }

  .contact-form-box {
    padding: 30px 22px;
  }

  .checkbox-group {
    grid-template-columns: 1fr !important;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col ul li,
  .contact-list li,
  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .btn,
  .btn-primary,
  .btn-primary-red,
  .btn-phone {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .review-card {
    min-width: 92%;
    max-width: 92%;
  }

  input,
  textarea,
  select {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
    .dropdown-content {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        min-width: 100%;
        box-shadow: none;
        border-top: none;
        background-color: transparent;
        transition: all 0.3s ease;
    }

    .dropdown.open .dropdown-content {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        margin-top: 15px;
    }

    .dropdown.open .arrow {
        transform: rotate(180deg);
        display: inline-block;
    }
}