/********** Avanzar Gas – CSS Moderno v5 **********/

:root {
    --primary: #1E60AA;
    --primary-light: #2a7fd4;
    --primary-glow: rgba(30, 96, 170, 0.4);
    --secondary: #FF4917;
    --secondary-glow: rgba(255, 73, 23, 0.4);
    --light: #EDF1FC;
    --dark: #0d1a3a;
    --dark-2: #17224D;
    --glass: rgba(255,255,255,0.07);
    --glass-border: rgba(255,255,255,0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif !important;
    color: #2d3748;
    overflow-x: hidden;
    background: #fff;
}

h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-light); }
::selection { background: var(--primary); color: #fff; }

/* Spinner */
#spinner {
    opacity: 0; visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
    background: var(--dark) !important;
}
#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible; opacity: 1;
}
#spinner .spinner-border {
    border-color: var(--primary);
    border-right-color: transparent;
    width: 4rem !important; height: 4rem !important;
}

/* ===== BUTTONS — Enhanced Professional v2 ===== */

/* --- Base shared --- */
.btn {
    font-weight: 700;
    letter-spacing: 0.6px;
    border-radius: 6px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    font-family: 'Nunito', sans-serif;
    isolation: isolate;
}

/* Shine sweep on all .btn */
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255,255,255,0.18) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.55s ease;
    pointer-events: none;
    z-index: 1;
}
.btn:hover::before { transform: translateX(100%); }

/* Ripple */
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.28);
    transform: scale(0);
    animation: ripple-anim 0.65s ease-out;
    pointer-events: none;
    z-index: 2;
}
@keyframes ripple-anim {
    to { transform: scale(5); opacity: 0; }
}

/* --- Primary (blue) --- */
.btn.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border: none;
    color: #fff;
    box-shadow: 0 4px 18px rgba(30, 96, 170, 0.32), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn.btn-primary:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow: 0 10px 30px rgba(30, 96, 170, 0.45), inset 0 1px 0 rgba(255,255,255,0.2);
    color: #fff;
}
.btn.btn-primary:active { transform: translateY(-1px) scale(1); }

/* --- Secondary (orange/WhatsApp CTA) --- */
.btn.btn-secondary {
    background: linear-gradient(135deg, #ff5722 0%, var(--secondary) 50%, #e04000 100%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    border: none;
    color: #fff;
    box-shadow: 0 4px 18px rgba(255, 73, 23, 0.35), inset 0 1px 0 rgba(255,255,255,0.18);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn.btn-secondary:hover {
    transform: translateY(-3px) scale(1.015);
    background-position: 100% 0%;
    box-shadow: 0 12px 32px rgba(255, 73, 23, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
    color: #fff;
}
.btn.btn-secondary:active { transform: translateY(-1px) scale(1); }

/* Pulse glow for whatsapp/CTA secondary buttons */
.btn.btn-secondary.btn-lg {
    animation: pulse-secondary 3s ease-in-out infinite;
}
@keyframes pulse-secondary {
    0%, 100% { box-shadow: 0 4px 18px rgba(255, 73, 23, 0.35); }
    50%       { box-shadow: 0 6px 28px rgba(255, 73, 23, 0.55), 0 0 0 6px rgba(255, 73, 23, 0.08); }
}

/* --- Outline Primary --- */
.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px) scale(1.015);
    box-shadow: 0 8px 24px rgba(30, 96, 170, 0.35);
    border-color: var(--primary);
}

/* --- Outline Light (dark bg sections) --- */
.btn-outline-light {
    border: 1.5px solid rgba(255,255,255,0.45);
    color: #fff;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(8px);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.14);
    color: #fff;
    border-color: rgba(255,255,255,0.85);
    transform: translateY(-3px) scale(1.015);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.btn-outline-light:active { transform: translateY(-1px) scale(1); }

.btn-square { width: 38px; height: 38px; }
.btn-sm-square { width: 32px; height: 32px; }
.btn-lg-square { width: 48px; height: 48px; }
.btn-square, .btn-sm-square, .btn-lg-square {
    padding: 0; display: flex; align-items: center; justify-content: center; font-weight: normal;
}

/* Icon micro-animation inside any .btn */
.btn i, .btn-hero-primary i, .btn-hero-secondary i {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    display: inline-block;
}
.btn.btn-secondary:hover .fa-whatsapp,
.btn-hero-secondary:hover .fa-whatsapp {
    transform: rotate(-8deg) scale(1.18);
}
.btn.btn-primary:hover i {
    transform: translateX(3px);
}

/* Focus visible — accessibility */
.btn:focus-visible, .btn-hero-primary:focus-visible, .btn-hero-secondary:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 3px;
}

/* ===== TOPBAR ===== */
.top-bar {
    height: 75px; padding: 0 4rem;
    background: var(--dark) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar p, .top-bar a { color: rgba(255,255,255,0.8) !important; font-size: 14px; }
.top-bar .btn-sm-square {
    background: rgba(255,255,255,0.1) !important;
    color: rgba(255,255,255,0.9) !important;
    border-radius: 8px; transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.top-bar .btn-sm-square:hover {
    background: var(--primary) !important; color: #fff !important;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 16px rgba(30,96,170,0.35);
}
.top-bar .text-primary { color: var(--primary-light) !important; }
.top-bar .fa-map-marker-alt,
.top-bar .fa-envelope-open { color: var(--primary-light) !important; }

/* ===== NAVBAR ===== */
.nav-bar {
    position: relative;
    padding: 0 4.75rem;
    transition: all 0.4s ease;
    z-index: 9999;
}
.nav-bar.sticky-top { padding: 0; }
.nav-bar.scrolled {
    background: rgba(255,255,255,0.97) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.navbar { background: transparent !important; }

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark-2);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    outline: none;
    position: relative;
}

.navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 18px; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
    border-radius: 2px;
}
.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after { width: 100%; }
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active { color: var(--primary); }

.navbar .dropdown-toggle::after {
    border: none; content: "\f107";
    font-family: "Font Awesome 5 Free"; font-weight: 900;
    vertical-align: middle; margin-left: 8px;
}

@media (max-width: 991.98px) {
    .nav-bar { padding: 0; }
    .navbar-light .navbar-nav .nav-link { margin-right: 0; padding: 12px 0; }
    .navbar-light .navbar-nav .nav-link::after { bottom: 4px; }
    .navbar-light .navbar-nav { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid #EEEEEE; }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block; border: none; margin-top: 0;
        top: 150%; opacity: 0; visibility: hidden; transition: .5s;
    }
    .navbar .nav-item:hover .dropdown-menu { top: 100%; visibility: visible; opacity: 1; }
}

/* Nav CTA Block */
.nav-cta-block {
    background: linear-gradient(135deg, var(--primary), var(--dark-2));
    padding: 0 1.5rem;
    display: flex; align-items: center;
    height: 70px;
    margin-right: -4.75rem;
    position: relative; overflow: hidden;
    transition: var(--transition);
}
.nav-cta-block::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    opacity: 0; transition: opacity 0.4s;
}
.nav-cta-block:hover::before { opacity: 1; }

.nav-cta-block .wa-icon-wrap {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; position: relative; z-index: 1;
}
.nav-cta-block .cta-text { position: relative; z-index: 1; margin-left: 12px; }
.nav-cta-block .cta-text p {
    margin-bottom: 2px; color: rgba(255,255,255,0.8);
    font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
}
.nav-cta-block .cta-text h5 { margin: 0; }
.nav-cta-block .cta-text h5 a {
    color: #fff !important; font-size: 1.05rem;
    font-weight: 700; font-family: 'Oswald', sans-serif;
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .nav-cta-block { margin-right: 0; height: auto; padding: 1rem 1.5rem; margin-top: 1rem; border-radius: 8px; }
}

/* ===== HERO ===== */
.header-carousel .owl-carousel-item {
    position: relative; overflow: hidden;
}
.header-carousel .owl-carousel-item img {
    width: 100%; object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease;
    filter: brightness(0.8);
}
.header-carousel .owl-item.active .owl-carousel-item img { transform: scale(1); }

.hero-overlay {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(105deg, rgba(13,26,58,0.9) 0%, rgba(13,26,58,0.6) 55%, transparent 100%);
    display: flex; align-items: center;
}

/* Floating particles */
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-particle {
    position: absolute; border-radius: 50%;
    background: rgba(30,96,170,0.4);
    animation: float-particle linear infinite;
}
.hero-particle:nth-child(1) { width:6px;height:6px; left:10%; animation-duration:12s; animation-delay:0s; }
.hero-particle:nth-child(2) { width:4px;height:4px; left:22%; animation-duration:15s; animation-delay:-3s; background:rgba(255,255,255,0.2); }
.hero-particle:nth-child(3) { width:8px;height:8px; left:38%; animation-duration:10s; animation-delay:-6s; background:rgba(255,73,23,0.3); }
.hero-particle:nth-child(4) { width:3px;height:3px; left:58%; animation-duration:18s; animation-delay:-2s; }
.hero-particle:nth-child(5) { width:5px;height:5px; left:72%; animation-duration:13s; animation-delay:-8s; background:rgba(255,255,255,0.15); }
.hero-particle:nth-child(6) { width:7px;height:7px; left:88%; animation-duration:11s; animation-delay:-4s; }

@keyframes float-particle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.header-carousel .container {
    position: relative;
    padding: 45px 0 45px 35px;
    border-left: 4px solid transparent;
    border-image: linear-gradient(to bottom, var(--primary), var(--secondary)) 1;
}
.header-carousel .container::before,
.header-carousel .container::after {
    position: absolute; content: "";
    top: 0; left: 0;
    width: 80px; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.header-carousel .container::after { top: 100%; margin-top: -4px; }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(30,96,170,0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30,96,170,0.4);
    padding: 7px 18px; border-radius: 100px;
    color: rgba(255,255,255,0.9);
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero-eyebrow .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #4ade80;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700; color: #fff;
    line-height: 1.1; margin-bottom: 1.5rem;
}
.hero-title .highlight {
    background: linear-gradient(135deg, #7ec8f7, var(--secondary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-subtitle {
    font-size: 1.05rem; color: rgba(255,255,255,0.8);
    line-height: 1.7; margin-bottom: 0; max-width: 540px;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2rem; }

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff; padding: 15px 36px;
    font-weight: 700; font-size: 0.92rem;
    letter-spacing: 1.2px; text-transform: uppercase;
    border: none; border-radius: 7px;
    position: relative; overflow: hidden; isolation: isolate;
    cursor: pointer; display: inline-flex;
    align-items: center; gap: 9px;
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(30,96,170,0.38), inset 0 1px 0 rgba(255,255,255,0.18);
    transition: all 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-hero-primary::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.55s ease;
}
.btn-hero-primary:hover::before { transform: translateX(120%); }
.btn-hero-primary:hover {
    color: #fff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 14px 36px rgba(30,96,170,0.48), inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn-hero-primary:active { transform: translateY(-1px) scale(1); }
.btn-hero-primary i {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-hero-primary:hover i { transform: rotate(-8deg) scale(1.15); }

.btn-hero-secondary {
    background: rgba(255,255,255,0.06);
    color: #fff;
    padding: 13px 34px;
    font-weight: 700; font-size: 0.92rem;
    letter-spacing: 1.2px; text-transform: uppercase;
    border: 1.5px solid rgba(255,255,255,0.45);
    border-radius: 7px;
    position: relative; overflow: hidden; isolation: isolate;
    cursor: pointer; display: inline-flex;
    align-items: center; gap: 9px;
    text-decoration: none;
    backdrop-filter: blur(12px);
    transition: all 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-hero-secondary::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(255,255,255,0.0);
    transition: background 0.3s ease;
}
.btn-hero-secondary:hover {
    color: #fff;
    background: rgba(255,255,255,0.13);
    border-color: rgba(255,255,255,0.9);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 28px rgba(0,0,0,0.2);
}
.btn-hero-secondary:active { transform: translateY(-1px) scale(1); }
.btn-hero-secondary i {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-hero-secondary:hover i { transform: scale(1.2); }

/* Hero floating badge */
.hero-badge {
    position: absolute; right: 8%; bottom: 12%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px; padding: 1.2rem 1.5rem;
    text-align: center;
    animation: float-badge 4s ease-in-out infinite;
}
.hero-badge .badge-num {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem; font-weight: 700;
    color: #fff; line-height: 1;
}
.hero-badge .badge-lbl {
    font-size: 0.65rem; color: rgba(255,255,255,0.7);
    text-transform: uppercase; letter-spacing: 2px;
}
@keyframes float-badge {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Carousel nav */
.header-carousel .owl-nav {
    position: absolute; top: 50%; right: 8%;
    transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 10px;
}
.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3) !important;
    border-radius: 50%; font-size: 18px;
    transition: var(--transition);
}
.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary); border-color: var(--primary) !important;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item { position: relative; min-height: 520px; }
    .header-carousel .owl-carousel-item img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
    .hero-badge { display: none; }
    .hero-title { font-size: 2rem; }
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(rgba(13,26,58,.78), rgba(13,26,58,.78)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover; position: relative; overflow: hidden;
}
.page-header .container {
    position: relative; padding: 60px 0 60px 35px;
    border-left: 4px solid transparent;
    border-image: linear-gradient(to bottom, var(--primary), var(--secondary)) 1;
}
.page-header .container::before,
.page-header .container::after {
    position: absolute; content: ""; top: 0; left: 0;
    width: 80px; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.page-header .container::after { top: 100%; margin-top: -4px; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ===== FEATURE TOP CARDS ===== */
.service-item-top {
    border-radius: 10px; overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: var(--transition); background: #fff;
}
.service-item-top:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}
.service-item-top img { transition: transform 0.6s ease; }
.service-item-top:hover img { transform: scale(1.08); }

.service-card-icon {
    height: 220px; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.service-card-icon::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.25), transparent);
}
.service-card-icon i {
    position: relative; z-index: 1;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}
.service-item-top:hover .service-card-icon i { transform: scale(1.2) translateY(-4px); }

.service-item-foot {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 1.5rem;
    background: #f8faff;
    border-top: 3px solid transparent;
    transition: border-color 0.3s;
}
.service-item-top:hover .service-item-foot { border-top-color: var(--primary); }

.btn-arrow-circle {
    width: 40px; height: 40px; border-radius: 50%;
    background: transparent; border: 1.5px solid rgba(30,96,170,0.4);
    color: var(--primary); display: flex; align-items: center; justify-content: center;
    transition: all 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0; text-decoration: none;
    position: relative; overflow: hidden;
}
.btn-arrow-circle::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--primary);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
}
.btn-arrow-circle i { position: relative; z-index: 1; }
.service-item-top:hover .btn-arrow-circle {
    color: #fff;
    border-color: var(--primary);
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 6px 18px rgba(30,96,170,0.4);
}
.service-item-top:hover .btn-arrow-circle::before { transform: scale(1); }

/* ===== ABOUT ===== */
.check-item {
    display: flex; align-items: center; gap: 10px;
    padding: 5px 0; font-weight: 600; color: var(--dark-2);
    transition: color 0.3s; font-size: 0.95rem;
}
.check-item:hover { color: var(--primary); }
.check-icon {
    width: 22px; height: 22px; border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 10px; color: #fff;
}

.phone-cta {
    background: linear-gradient(135deg, var(--primary), var(--dark-2));
    border-radius: 10px; padding: 1.25rem 1.5rem;
    display: flex; align-items: center; gap: 1rem;
    margin-top: 2rem; position: relative; overflow: hidden;
    transition: var(--transition); text-decoration: none;
}
.phone-cta::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.phone-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px var(--primary-glow);
}
.phone-cta .pwa-icon {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; position: relative; z-index: 1;
}
.phone-cta .pwa-content { position: relative; z-index: 1; }
.phone-cta .pwa-label {
    color: rgba(255,255,255,0.75); font-size: 0.75rem;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 2px;
    display: block;
}
.phone-cta .pwa-number {
    color: #fff; font-family: 'Oswald', sans-serif;
    font-size: 1.4rem; font-weight: 700;
    display: block;
}

/* About image badge */
.about-cert-badge {
    position: absolute;
    bottom: 60px;
    left: -10px;
    background: linear-gradient(135deg, #FF4917 0%, #c93600 100%);
    color: #fff;
    text-align: center;
    padding: 0.85rem 1.15rem;
    width: auto;
    max-width: 130px;
    z-index: 2;
    border-radius: 12px;
    box-shadow: 0 6px 22px rgba(255,73,23,0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.about-cert-badge i { font-size: 1.3rem; opacity: 0.92; }
.about-cert-badge p { font-size: 0.58rem; letter-spacing: 1.8px; text-transform: uppercase; margin: 2px 0 0; opacity: 0.88; line-height: 1; }
.about-cert-badge h5 { font-size: 1.35rem; font-weight: 800; margin: 0; line-height: 1; font-family: 'Oswald', sans-serif; }

/* ===== STATS ===== */
.fact {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    position: relative; overflow: hidden;
}
.fact::before {
    content: ''; position: absolute; top: -50%; left: -20%;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(30,96,170,0.15) 0%, transparent 70%);
}
.fact::after {
    content: ''; position: absolute; bottom: -30%; right: -10%;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,73,23,0.1) 0%, transparent 70%);
}

.stat-card {
    position: relative; z-index: 1;
    padding: 2rem 1rem; border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition); text-align: center;
}
.stat-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(30,96,170,0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.stat-card .stat-icon {
    width: 60px; height: 60px;
    background: rgba(30,96,170,0.2);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    border: 1px solid rgba(30,96,170,0.3);
    transition: var(--transition);
}
.stat-card:hover .stat-icon {
    background: rgba(30,96,170,0.4);
    transform: rotate(-5deg) scale(1.05);
}

.stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem; font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #fff 30%, var(--primary-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 0.5rem; display: block;
}

.stat-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin: 0; }

/* ===== SERVICE CAROUSEL ===== */
.service-section-left {
    background: linear-gradient(160deg, var(--primary), var(--dark-2));
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.service-section-left::before {
    content: ''; position: absolute; top: 15%; left: -40%;
    width: 300px; height: 300px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.service-card {
    background: #fff; border-radius: 12px; padding: 2rem;
    border: 1px solid #e8edf5; transition: var(--transition);
    position: relative; overflow: hidden;
    display: flex; flex-direction: column;
    min-height: 360px;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.svc-icon {
    width: 68px; height: 68px;
    background: linear-gradient(135deg, #EDF1FC, #dae3f7);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    border: 1px solid rgba(30,96,170,0.12);
}
.service-card:hover .svc-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: transparent;
    transform: rotate(-6deg) scale(1.05);
}
.service-card:hover .svc-icon i { color: #fff !important; }

.svc-check {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.88rem; color: #556; margin-bottom: 5px;
}
.svc-check:last-of-type { margin-bottom: 1rem; }

.btn-ver-mas {
    width: 100%; padding: 11px 16px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
    color: var(--primary);
    border: 1.5px solid rgba(30,96,170,0.18);
    border-radius: 7px; font-weight: 700;
    text-align: center; text-decoration: none;
    display: flex; align-items: center; justify-content: center; gap: 6px;
    margin-top: auto;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 0.88rem; letter-spacing: 0.5px;
    position: relative; overflow: hidden; isolation: isolate;
}
.btn-ver-mas::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: -1;
}
.btn-ver-mas:hover {
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(30,96,170,0.3);
}
.btn-ver-mas:hover::before { transform: scaleX(1); }
.btn-ver-mas i {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-ver-mas:hover i { transform: translateX(4px); }

.service-carousel .owl-dots {
    margin-top: 24px; display: flex; align-items: center; justify-content: center; gap: 6px;
}
.service-carousel .owl-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(30,96,170,0.25); transition: var(--transition); border: none;
}
.service-carousel .owl-dot.active {
    background: var(--primary); width: 28px; border-radius: 5px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark-2) 100%);
}
.cta-banner .grid-lines {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}
.cta-banner::before {
    content: ''; position: absolute; top: -50%; left: -10%;
    width: 500px; height: 500px; border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.cta-banner .content { position: relative; z-index: 1; }

/* ===== WHY US ===== */
.why-card {
    background: #fff; border-radius: 16px;
    padding: 2rem 1.5rem; text-align: center;
    border: 1px solid #e8edf5; transition: var(--transition);
    position: relative; overflow: hidden; height: 100%;
}
.why-card::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0); transition: transform 0.4s ease;
}
.why-card:hover::after { transform: scaleX(1); }
.why-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transform: translateY(-8px); border-color: transparent;
}

.why-icon {
    width: 80px; height: 80px; border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px var(--primary-glow);
    transition: var(--transition);
}
.why-card:hover .why-icon {
    transform: rotate(-10deg) scale(1.1);
    box-shadow: 0 12px 35px var(--primary-glow);
}
.why-card h5 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--dark-2); }

/* back-to-top: managed via JS .show class */
/* see .back-to-top definition further below */

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed !important;
    bottom: 22px;
    right: 22px !important;
    left: auto !important;
    z-index: 99999 !important;
    background: linear-gradient(135deg, #25D366 0%, #20b858 100%);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    text-decoration: none;
    animation: pulse-wa 3s ease-in-out infinite;
    transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.38s;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    /* tooltip support */
    overflow: visible;
}
.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.14) rotate(-6deg);
    box-shadow: 0 10px 34px rgba(37,211,102,0.7);
}
@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.35); }
    50%       { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(160deg, var(--dark) 0%, #0a1128 100%) !important;
    position: relative; overflow: hidden;
}
.footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.footer h4 {
    font-size: 1rem; letter-spacing: 2px; text-transform: uppercase;
    padding-bottom: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 1.5rem !important;
}
.footer p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

.footer .btn.btn-social {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.65);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 10px; margin-right: 8px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: rgba(255,255,255,0.05);
    position: relative; overflow: hidden;
}
.footer .btn.btn-social::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
    z-index: -1;
}
.footer .btn.btn-social:hover {
    color: #fff; border-color: var(--primary);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 20px rgba(30,96,170,0.4);
}
.footer .btn.btn-social:hover::before { transform: scaleY(1); }

.footer .btn.btn-link {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 8px; padding: 4px 0; text-align: left;
    color: rgba(255,255,255,0.65); font-size: 14px; font-weight: 600;
    text-transform: capitalize; text-decoration: none; transition: var(--transition);
}
.footer .btn.btn-link::before {
    content: "\f105"; font-family: "Font Awesome 5 Free"; font-weight: 900;
    color: var(--secondary); font-size: 12px; transition: transform 0.3s;
}
.footer .btn.btn-link:hover { color: #fff; letter-spacing: 0.5px; box-shadow: none; }
.footer .btn.btn-link:hover::before { transform: translateX(4px); }

.footer .copyright {
    padding: 25px 0; font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.45);
}
.footer .copyright a { color: rgba(255,255,255,0.65); }
.footer .copyright a:hover { color: #fff; }

/* ===== TEAM ===== */
.team-item img { transition: .5s; }
.team-item:hover img { transform: scale(1.1); }
.team-item .team-text { height: 90px; overflow: hidden; }
.team-item .team-text .bg-light,
.team-item .team-text .bg-primary { position: relative; height: 90px; display: flex; align-items: center; justify-content: center; flex-direction: column; transition: .5s; }
.team-item .team-text .bg-primary { flex-direction: row; }
.team-item:hover .team-text .bg-light { margin-top: -90px; }
.team-item .team-text .bg-primary .btn { color: var(--primary); background: #FFFFFF; }
.team-item .team-text .bg-primary .btn:hover { color: #FFFFFF; background: var(--secondary); }

/* ===== TESTIMONIALS ===== */
.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * { position: relative; transition: .5s; }
.testimonial-carousel .owl-item.center .testimonial-text { background: var(--primary) !important; border-radius: 12px; }
.testimonial-carousel .owl-item.center .testimonial-text * { color: #FFFFFF !important; }
.testimonial-carousel .owl-item .testimonial-text::after {
    position: absolute; content: ""; width: 0; height: 0; left: 50%; bottom: -30px;
    transform: translateX(-50%); border: 15px solid;
    border-color: var(--light) transparent transparent transparent; transition: .5s;
}
.testimonial-carousel .owl-item.center .testimonial-text::after { border-color: var(--primary) transparent transparent transparent; }
.testimonial-carousel .owl-nav { position: absolute; width: 350px; bottom: 100px; left: 50%; transform: translateX(-50%); display: flex; justify-content: space-between; opacity: 0; transition: .5s; z-index: 1; }
.testimonial-carousel:hover .owl-nav { width: 300px; opacity: 1; }
.testimonial-carousel .owl-nav .owl-prev, .testimonial-carousel .owl-nav .owl-next { font-size: 30px; color: var(--primary); }
.testimonial-carousel .owl-nav .owl-prev:hover, .testimonial-carousel .owl-nav .owl-next:hover { color: var(--dark); }

/* ===== BOOKING ===== */
.video {
    position: relative; padding: 8rem 0 12rem 0;
    background: linear-gradient(rgba(13,26,58,.78), rgba(13,26,58,.78)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.video .btn-play { position: relative; box-sizing: content-box; display: block; width: 32px; height: 44px; border-radius: 50%; border: none; outline: none; padding: 18px 20px 18px 28px; margin-bottom: 4rem; }
.video .btn-play:before { content: ""; position: absolute; z-index: 0; left: 50%; top: 50%; transform: translateX(-50%) translateY(-50%); display: block; width: 100px; height: 100px; background: #FFFFFF; border-radius: 50%; animation: pulse-border 1500ms ease-out infinite; }
.video .btn-play:after { content: ""; position: absolute; z-index: 1; left: 50%; top: 50%; transform: translateX(-50%) translateY(-50%); display: block; width: 100px; height: 100px; background: #FFFFFF; border-radius: 50%; transition: all 200ms; }
.video .btn-play span { display: block; position: relative; z-index: 3; width: 0; height: 0; border-left: 32px solid var(--primary); border-top: 22px solid transparent; border-bottom: 22px solid transparent; }
@keyframes pulse-border { 0% { transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1); opacity: 1; } 100% { transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5); opacity: 0; } }
#videoModal { z-index: 99999; }
#videoModal .modal-dialog { position: relative; max-width: 800px; margin: 60px auto 0 auto; }
#videoModal .modal-body { position: relative; padding: 0px; }
#videoModal .close { position: absolute; width: 30px; height: 30px; right: 0px; top: -30px; z-index: 999; font-size: 30px; font-weight: normal; color: #FFFFFF; background: #000000; opacity: 1; }

/* ===== UTILS ===== */
.fw-medium { font-weight: 600 !important; }

.section-eyebrow {
    font-size: 0.78rem; font-weight: 800;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--secondary); margin-bottom: 0.75rem;
}

/* Fade up on scroll */
.fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== BRAND SUBTITLE (Martín J. Orellana) ===== */
.brand-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.brand-tagline {
    font-family: 'Nunito', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-top: 2px;
    padding-left: 2px;
}
.brand-tagline.dark {
    color: rgba(23,34,77,0.55);
}
.footer .brand-tagline {
    color: rgba(255,255,255,0.45);
    letter-spacing: 1.8px;
    font-size: 0.6rem;
}

/* Booking nav link highlight */
.nav-link.nav-link-cta {
    color: var(--secondary) !important;
    font-weight: 700 !important;
}
.nav-link.nav-link-cta:hover {
    color: var(--secondary) !important;
    opacity: 0.8;
}


/* ===== INNER PAGES (shared: service, contact, about) ===== */

        .inner-page-header {
            background: linear-gradient(110deg, #0d1a3a 0%, #1E60AA 60%, #17224D 100%);
            position: relative; overflow: hidden; padding: 80px 0;
        }
        .inner-page-header::before {
            content: ''; position: absolute; inset: 0;
            background-image: linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px),
                              linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px);
            background-size: 60px 60px;
        }
        .inner-page-header .glow-orb { position:absolute;border-radius:50%;filter:blur(60px); }
        .inner-page-header .glow-orb-1 { width:300px;height:300px;top:-100px;right:10%;background:rgba(30,96,170,0.3); }
        .inner-page-header .glow-orb-2 { width:200px;height:200px;bottom:-80px;left:5%;background:rgba(255,73,23,0.15); }
        .inner-page-header .content { position:relative;z-index:1; }
        .page-badge {
            display:inline-flex;align-items:center;gap:8px;
            background:rgba(255,255,255,0.1);backdrop-filter:blur(10px);
            border:1px solid rgba(255,255,255,0.2);
            padding:6px 16px;border-radius:100px;
            color:rgba(255,255,255,0.85);font-size:0.75rem;font-weight:700;
            letter-spacing:3px;text-transform:uppercase;margin-bottom:1rem;
        }
        .page-badge .dot { width:8px;height:8px;border-radius:50%;background:#FF4917; }
        .page-title { font-family:'Oswald',sans-serif;font-size:clamp(2.5rem,6vw,4rem);font-weight:700;color:#fff;margin-bottom:0.5rem;line-height:1.1; }

        /* Service Grid Cards */
        .svc-grid-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #e8edf5;
            transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
            height: 100%;
            position: relative;
        }
        .svc-grid-card::before {
            content: ''; position: absolute; top:0;left:0;
            width:100%;height:4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: scaleX(0); transform-origin:left; transition: transform 0.4s;
        }
        .svc-grid-card:hover::before { transform: scaleX(1); }
        .svc-grid-card:hover {
            transform: translateY(-10px);
            border-color: transparent;
            box-shadow: 0 25px 60px rgba(0,0,0,0.12);
        }
        .svc-grid-card-header {
            padding: 2rem 2rem 1.5rem;
            position: relative;
        }
        .svc-grid-icon {
            width: 64px; height: 64px; border-radius: 16px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 1.2rem;
            transition: all 0.4s;
        }
        .svc-grid-card:hover .svc-grid-icon { transform: rotate(-8deg) scale(1.1); }
        .svc-grid-card h4 { font-family:'Oswald',sans-serif; color:#17224D; margin-bottom:0.75rem; font-size:1.2rem; }
        .svc-grid-card p { color:#666; font-size:0.9rem; line-height:1.75; }
        .svc-grid-card-footer {
            padding: 0 2rem 2rem;
            border-top: 1px solid #f0f4ff;
            padding-top: 1.25rem;
        }
        .svc-wa-btn {
            display: flex; align-items: center; justify-content: center; gap: 8px;
            width: 100%; padding: 11px;
            background: linear-gradient(135deg, #25D366, #1da851);
            color: #fff; border-radius: 8px;
            font-weight: 700; font-size: 0.88rem;
            text-decoration: none; transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(37,211,102,0.3);
        }
        .svc-wa-btn:hover { color:#fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.5); }

        /* Number accent */
        .svc-number {
            position: absolute; top: 1.5rem; right: 1.75rem;
            font-family: 'Oswald', sans-serif; font-size: 3.5rem; font-weight: 700;
            color: rgba(30,96,170,0.07); line-height: 1; user-select: none;
        }

        /* Intro banner */
        .svc-intro-banner {
            background: linear-gradient(135deg, #f0f4ff, #e8edf5);
            border-radius: 16px; padding: 2rem 2.5rem;
            border: 1px solid rgba(30,96,170,0.12);
            display: flex; align-items: center; gap: 2rem;
        }
        .svc-intro-icon {
            width: 70px; height: 70px; border-radius: 16px; flex-shrink: 0;
            background: linear-gradient(135deg, #1E60AA, #2a7fd4);
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 8px 25px rgba(30,96,170,0.35);
        }
        @media(max-width:576px){.svc-intro-banner{flex-direction:column;gap:1rem;text-align:center;}}
    
/* ===== CONTACT PAGE SPECIFIC ===== */
.contact-method {
    background: #fff; border-radius: 20px; padding: 2.5rem 2rem;
    border: 1px solid #e8edf5; text-align: center;
    transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    position: relative; overflow: hidden; height: 100%;
}
.contact-method::before {
    content: ''; position: absolute; inset:0;
    background: linear-gradient(135deg, transparent, rgba(30,96,170,0.04));
    opacity: 0; transition: opacity 0.4s;
}
.contact-method:hover::before { opacity: 1; }
.contact-method:hover {
    transform: translateY(-12px);
    border-color: transparent;
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}
.contact-method .cm-icon {
    width: 90px; height: 90px; border-radius: 24px;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem; position: relative; transition: transform 0.4s;
}
.contact-method:hover .cm-icon { transform: rotate(-8deg) scale(1.1); }
.contact-method h4 { font-family:'Oswald',sans-serif; color:#17224D; margin-bottom:0.75rem; font-size:1.3rem; }
.contact-method p { color:#666; font-size:0.92rem; line-height:1.75; margin-bottom:1.75rem; }
.cm-wa .cm-icon { background:linear-gradient(135deg,#25D366,#1da851); box-shadow:0 10px 30px rgba(37,211,102,0.4); }
.cm-wa .cm-btn { background:linear-gradient(135deg,#25D366,#1da851); color:#fff; border:none; box-shadow:0 5px 20px rgba(37,211,102,0.35); }
.cm-wa .cm-btn:hover { color:#fff; transform:translateY(-2px); box-shadow:0 10px 30px rgba(37,211,102,0.55); }
.cm-wa:hover { border-color: rgba(37,211,102,0.25) !important; }
.cm-phone .cm-icon { background:linear-gradient(135deg,#1E60AA,#2a7fd4); box-shadow:0 10px 30px rgba(30,96,170,0.4); }
.cm-phone .cm-btn { background:linear-gradient(135deg,#1E60AA,#2a7fd4); color:#fff; border:none; box-shadow:0 5px 20px rgba(30,96,170,0.35); }
.cm-phone .cm-btn:hover { color:#fff; transform:translateY(-2px); box-shadow:0 10px 30px rgba(30,96,170,0.55); }
.cm-phone:hover { border-color: rgba(30,96,170,0.25) !important; }
.cm-email .cm-icon { background:linear-gradient(135deg,#FF4917,#e03d00); box-shadow:0 10px 30px rgba(255,73,23,0.4); }
.cm-email .cm-btn { background:linear-gradient(135deg,#FF4917,#e03d00); color:#fff; border:none; box-shadow:0 5px 20px rgba(255,73,23,0.35); }
.cm-email .cm-btn:hover { color:#fff; transform:translateY(-2px); box-shadow:0 10px 30px rgba(255,73,23,0.55); }
.cm-email:hover { border-color: rgba(255,73,23,0.25) !important; }
.cm-btn {
    display:inline-flex; align-items:center; gap:8px;
    padding: 12px 28px; border-radius: 10px;
    font-weight: 700; font-size: 0.95rem;
    text-decoration: none; transition: all 0.3s;
}
.info-card {
    border-radius: 16px; padding: 1.75rem;
    display: flex; align-items: flex-start; gap: 1.25rem;
    border: 1px solid #e8edf5; background: #fff; transition: all 0.3s;
}
.info-card:hover {
    border-color: rgba(30,96,170,0.3);
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transform: translateX(4px);
}
.info-card .ic-icon {
    width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.info-card .ic-label { font-size:0.75rem; color:#aaa; text-transform:uppercase; letter-spacing:2px; margin-bottom:4px; }
.info-card .ic-value { font-weight: 700; color: #17224D; font-size: 1rem; font-family: 'Oswald', sans-serif; }
.info-card a { color:#1E60AA; text-decoration:none; }
.info-card a:hover { text-decoration:underline; }
.schedule-table tr { border-bottom: 1px solid rgba(255,255,255,0.08); }
.schedule-table td { padding: 10px 0; font-size:0.92rem; color: rgba(255,255,255,0.85); }
.schedule-table td:last-child { font-weight:700; text-align:right; }
.schedule-badge { display:inline-block;padding:3px 10px;border-radius:100px;font-size:0.72rem;font-weight:700; }
.badge-open { background:rgba(16,185,129,0.18);color:#10b981; }
.badge-turno { background:rgba(30,96,170,0.25);color:#6eb3f5; }
.badge-closed { background:rgba(107,114,128,0.18);color:rgba(255,255,255,0.4); }
.contact-side {
    background: linear-gradient(160deg, #0d1a3a, #17224D);
    border-radius: 20px; padding: 2.5rem 2rem;
    position: relative; overflow: hidden;
}
.contact-side::before {
    content: ''; position: absolute; top:-30%;right:-20%;
    width:300px;height:300px;border-radius:50%;
    background:rgba(30,96,170,0.15);
}
.contact-side > * { position: relative; z-index: 1; }
.contact-side h4 { font-family:'Oswald',sans-serif; color:#fff; margin-bottom:1.5rem; font-size:1.2rem; letter-spacing:1px; }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed; right: 22px; bottom: 92px;
    z-index: 998;
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff; text-decoration: none;
    font-size: 0.9rem;
    box-shadow: 0 4px 16px rgba(30,96,170,0.38);
    opacity: 0; pointer-events: none;
    transform: translateY(12px);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.back-to-top.show {
    opacity: 1; pointer-events: auto; transform: translateY(0);
}
.back-to-top:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 22px rgba(30,96,170,0.5);
}
.back-to-top i { transition: transform 0.3s ease; }
.back-to-top:hover i { transform: translateY(-2px); }

/* ===== SPINNER — brand themed ===== */
#spinner {
    background: var(--dark) !important;
}
#spinner .spinner-border {
    width: 3rem !important; height: 3rem !important;
    border-width: 3px;
    border-color: transparent;
    border-top-color: var(--primary);
    border-right-color: rgba(30,96,170,0.25);
    animation: spin-brand 0.7s linear infinite;
}
@keyframes spin-brand {
    to { transform: rotate(360deg); }
}

/* ===== NAV-BAR SCROLLED — smooth elevation ===== */
.nav-bar.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.1) !important;
    border-bottom: 1px solid rgba(30,96,170,0.1);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

/* ===== H2 in sections — typography fix ===== */
.section-h2 {
    font-family: 'Oswald', sans-serif;
    color: #17224D;
}

/* ===== SERVICE PAGE — card svc-check in footer area ===== */
.svc-grid-card-footer .svc-check {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; color: #556; margin-bottom: 4px;
}

/* ===== ABOUT PAGE extra ===== */
.about-values-card {
    background: #fff; border-radius: 16px; padding: 2rem 1.5rem;
    border: 1px solid #e8edf5; text-align: left; height: 100%;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative; overflow: hidden;
}
.about-values-card::after {
    content: ''; position: absolute; bottom:0;left:0;
    width:100%;height:3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0); transition: transform 0.35s ease; transform-origin:left;
}
.about-values-card:hover::after { transform: scaleX(1); }
.about-values-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* ===== TYPOGRAPHY - section headings ===== */
h2.section-h2,
.container h2[style*="Oswald"] {
    line-height: 1.15;
}

/* ===== TOPBAR icons — consistent color via CSS not inline ===== */
.topbar-icon { color: var(--secondary) !important; }

/* ===== BRAND LIGHTNING BOLT ===== */
.brand-bolt { color: var(--secondary); }

/* ===== SECTION EYEBROW ACCENT ===== */
.section-eyebrow-accent { color: var(--secondary); }

/* ===================================================
   ABOUT PAGE — ESTILOS COMPLETOS (antes faltaban)
   =================================================== */

/* ---- Profile Card ---- */
.profile-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e8edf5;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(23,34,77,0.10);
    position: sticky;
    top: 100px;
}
.profile-card-header {
    background: linear-gradient(135deg, #0d1a3a 0%, #1E60AA 100%);
    padding: 2.2rem 2rem 2rem;
    text-align: center;
    position: relative;
}
.profile-cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 4px 14px;
    border-radius: 100px;
    color: rgba(255,255,255,0.9);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.profile-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.4rem;
}
.profile-role {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.5px;
}
.profile-card-body {
    padding: 1.75rem 1.75rem 1.5rem;
}

/* ---- Profile Stats ---- */
.profile-stat {
    background: #f4f7ff;
    border-radius: 12px;
    padding: 1rem 0.75rem;
    text-align: center;
    border: 1px solid #e8edf5;
    transition: all 0.3s ease;
}
.profile-stat:hover {
    background: linear-gradient(135deg, #1E60AA, #17224D);
    border-color: transparent;
}
.profile-stat:hover .ps-num,
.profile-stat:hover .ps-label {
    color: #fff;
}
.ps-num {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1E60AA;
    line-height: 1;
    margin-bottom: 0.25rem;
    transition: color 0.3s;
}
.ps-label {
    font-size: 0.72rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: color 0.3s;
}

/* ---- Timeline ---- */
.timeline {
    position: relative;
    padding-left: 2.5rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #1E60AA, #e8edf5);
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}
.timeline-item:last-child {
    padding-bottom: 0;
}
.timeline-dot {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1E60AA, #17224D);
    box-shadow: 0 4px 12px rgba(30,96,170,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.72rem;
    border: 3px solid #fff;
}
.timeline-content {
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
}
.timeline-content:hover {
    box-shadow: 0 10px 35px rgba(30,96,170,0.12);
    transform: translateX(4px);
}
.timeline-content h6 {
    font-family: 'Oswald', sans-serif;
    color: #17224D;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.timeline-content p {
    color: #666;
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ---- Value Cards ---- */
.value-card {
    border-radius: 18px;
    padding: 2rem 1.75rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    position: relative;
    overflow: hidden;
}
.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent);
}
.value-card:hover::before { opacity: 1; }
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.vc-blue  { background: linear-gradient(135deg, #1E60AA 0%, #17224D 100%); color: #fff; }
.vc-orange{ background: linear-gradient(135deg, #FF4917 0%, #c93600 100%); color: #fff; }
.vc-dark  { background: linear-gradient(135deg, #17224D 0%, #0a1230 100%); color: #fff; }
.vc-green { background: linear-gradient(135deg, #10b981 0%, #059669 100%); color: #fff; }
.vc-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.value-card:hover .vc-icon { transform: scale(1.12) rotate(-8deg); }
.vc-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}
.vc-text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.72;
    margin-bottom: 0;
}

/* ---- Inner page header (fix indentation issues) ---- */
.inner-page-header {
    background: linear-gradient(110deg, #0d1a3a 0%, #1E60AA 60%, #17224D 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
.inner-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}
.inner-page-header .glow-orb    { position:absolute; border-radius:50%; filter:blur(60px); }
.inner-page-header .glow-orb-1  { width:300px; height:300px; top:-100px; right:10%; background:rgba(30,96,170,0.3); }
.inner-page-header .glow-orb-2  { width:200px; height:200px; bottom:-80px; left:5%; background:rgba(255,73,23,0.15); }
.inner-page-header .content     { position:relative; z-index:1; }

/* ===== END ABOUT PAGE STYLES ===== */

/* ===== SERVICE CARD PHOTO ===== */
.svc-photo {
    width: 100%;
    height: 190px;
    overflow: hidden;
    position: relative;
}
.svc-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.svc-grid-card:hover .svc-photo img {
    transform: scale(1.06);
}
.svc-photo::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.95));
    pointer-events: none;
}

/* ====================================================
   AVANZAR GAS – NUEVAS SECCIONES v6
   ==================================================== */

/* ===== SKIP NAV (accesibilidad) ===== */
.skip-nav {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: #fff;
    padding: 12px 24px;
    z-index: 100000;
    font-weight: 700;
    text-decoration: none;
    transition: top 0.2s;
    border-radius: 0 0 8px 0;
}
.skip-nav:focus {
    top: 0;
    color: #fff;
}

/* ===== HERO BUTTONS – v2 ===== */
.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}
.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    box-shadow: 0 6px 24px rgba(30,96,170,0.5);
    border: 2px solid transparent;
}
.btn-hero-primary:hover {
    color: #fff;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 35px rgba(30,96,170,0.65);
}
.btn-hero-secondary {
    background: linear-gradient(135deg, #25D366, #1da851);
    color: #fff;
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    border: 2px solid transparent;
    margin-left: 12px;
}
.btn-hero-secondary:hover {
    color: #fff;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 35px rgba(37,211,102,0.65);
}
@media (max-width: 480px) {
    .btn-hero-secondary { margin-left: 0; margin-top: 10px; }
    .hero-buttons { flex-direction: column; }
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 8px; }

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: linear-gradient(135deg, #f8faff 0%, #edf1fc 100%);
}
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.25rem 2rem;
    border: 1px solid #e8edf5;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    right: 1.75rem;
    font-size: 5rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.08;
    font-weight: 700;
}
.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: 0 25px 60px rgba(30,96,170,0.12);
}
.testimonial-card.testimonial-featured {
    background: linear-gradient(135deg, #17224D, #1E60AA);
    border-color: transparent;
    box-shadow: 0 20px 55px rgba(30,96,170,0.3);
}
.testimonial-featured .testimonial-text,
.testimonial-featured .testimonial-stars i,
.testimonial-featured .testimonial-author strong,
.testimonial-featured .testimonial-author span {
    color: rgba(255,255,255,0.9) !important;
}
.testimonial-featured::before {
    color: rgba(255,255,255,0.15);
    opacity: 1;
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1.25rem;
}
.testimonial-stars i {
    color: #fbbf24;
    font-size: 0.95rem;
}
.testimonial-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.75rem;
    quotes: none;
    border: none;
    padding: 0;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.testimonial-author strong {
    display: block;
    color: #17224D;
    font-size: 0.95rem;
}
.testimonial-author span {
    font-size: 0.8rem;
    color: #888;
}

/* ===== ZONES DE COBERTURA ===== */
.zones-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.5rem;
}
.zone-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: #f0f4ff;
    border: 1px solid rgba(30,96,170,0.2);
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #17224D;
    transition: all 0.3s ease;
}
.zone-chip i {
    color: var(--secondary);
    font-size: 0.75rem;
}
.zone-chip:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}
.zone-chip:hover i { color: rgba(255,255,255,0.85); }
.zone-chip-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(30,96,170,0.3);
}
.zone-chip-primary i { color: rgba(255,255,255,0.8); }
.zone-chip-primary:hover {
    background: linear-gradient(135deg, var(--secondary), #e03d00);
    box-shadow: 0 6px 20px rgba(255,73,23,0.4);
}
.coverage-map-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e8edf5;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: box-shadow 0.4s;
}
.coverage-map-card:hover {
    box-shadow: 0 25px 70px rgba(30,96,170,0.15);
}
.coverage-map-header {
    background: linear-gradient(135deg, var(--primary), var(--dark-2));
    color: #fff;
    padding: 1rem 1.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 1rem;
}
.coverage-map-body {
    background: #f8faff;
    padding: 0;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: linear-gradient(135deg, #f8faff, #edf1fc);
}
.faq-accordion .faq-item {
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 14px !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-accordion .faq-item:hover {
    border-color: rgba(30,96,170,0.25);
    box-shadow: 0 8px 30px rgba(30,96,170,0.08);
}
.faq-accordion .faq-btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: #17224D;
    font-size: 0.97rem;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    box-shadow: none !important;
    transition: color 0.3s;
    position: relative;
}
.faq-accordion .faq-btn:not(.collapsed) {
    color: var(--primary);
    background: transparent;
}
.faq-accordion .faq-btn::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%231E60AA' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
    transition: transform 0.4s ease;
}
.faq-accordion .faq-btn.collapsed::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23555' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
}
.faq-accordion .faq-body {
    padding: 0 1.5rem 1.5rem;
    color: #555;
    font-size: 0.93rem;
    line-height: 1.8;
    border-top: 1px solid #f0f4ff;
}

/* ===== WHATSAPP FLOAT TOOLTIP ===== */
/* NOTE: .whatsapp-float position:fixed defined above — do NOT redefine here */
.wa-tooltip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    background: #17224D;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-50%) translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.wa-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #17224D;
}
.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ===== BOOKING PAGE FULL FORM ===== */
.booking-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid #e8edf5;
    box-shadow: 0 20px 60px rgba(0,0,0,0.07);
}
.booking-info-card {
    background: linear-gradient(160deg, #0d1a3a, #17224D);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.booking-info-card::before {
    content: '';
    position: absolute;
    top: -30%; right: -20%;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(30,96,170,0.2);
}
.booking-info-card > * { position: relative; z-index: 1; }
.form-floating .form-control,
.form-floating .form-select {
    border-radius: 10px;
    border: 1.5px solid #e8edf5;
    transition: all 0.3s;
    font-family: 'Nunito', sans-serif;
}
.form-floating .form-control:focus,
.form-floating .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30,96,170,0.12);
}
.form-floating label {
    color: #888;
    font-family: 'Nunito', sans-serif;
}

/* ===== FOOTER .btn-link arrow fix for FA6 ===== */
.footer .btn.btn-link::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--secondary);
    font-size: 12px;
    transition: transform 0.3s;
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 767px) {
    .stat-card { text-align: center; }
    .zones-grid { justify-content: center; }
    .testimonial-card { margin-bottom: 0; }
    .coverage-map-body iframe { height: 260px; }
    .booking-form-card { padding: 1.75rem 1.25rem; }
}

/* ===== PRINT OPTIMIZATIONS ===== */
@media print {
    .whatsapp-float, .back-to-top, .skip-nav, nav { display: none !important; }
    body { font-size: 12px; }
    a::after { content: " (" attr(href) ")"; font-size: 10px; }
}

/* =============================================================
   AVANZAR GAS – RESPONSIVE COMPLETO v3
   Cubre: 320px (iPhone SE) hasta 4K
   ============================================================= */

/* ---- GLOBAL overflow safety ---- */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}
* { box-sizing: border-box; }

/* ---- NAV CTA BLOCK mobile fix (evita desborde en < 992px) ---- */
@media (max-width: 991.98px) {
    .nav-cta-block {
        margin-right: 0 !important;
        width: 100%;
        padding: 14px 1rem;
        border-radius: 10px;
        height: auto;
    }
    .nav-bar {
        padding: 0 !important;
    }
    .navbar {
        padding: 0.75rem 1rem !important;
    }
}

/* ---- TOP-BAR responsive: oculto en mobile, ya OK ---- */
@media (max-width: 991.98px) {
    .top-bar { padding: 0 1rem; }
}

/* ---- HERO CAROUSEL ---- */
@media (max-width: 767px) {
    .owl-carousel-item img,
    .header-carousel .owl-carousel-item > img {
        height: 480px !important;
    }
    .hero-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
    }
    .hero-subtitle {
        font-size: 0.9rem !important;
    }
    .hero-overlay .container {
        padding: 0 1.25rem;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    .hero-badge { display: none !important; }
}
@media (max-width: 480px) {
    .owl-carousel-item img,
    .header-carousel .owl-carousel-item > img {
        height: 400px !important;
    }
    .hero-title {
        font-size: clamp(1.4rem, 7vw, 1.9rem) !important;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    .btn-hero-secondary {
        margin-left: 0 !important;
        margin-top: 8px;
    }
}

/* ---- FEATURE CARDS (top-residencial etc.) ---- */
@media (max-width: 575px) {
    .service-item-top { min-height: unset; }
    .service-card-icon { height: 200px !important; }
}

/* ---- ABOUT SECTION ---- */
@media (max-width: 991px) {
    .about-cert-badge {
        bottom: 70px;
        left: 10px;
    }
}
/* Mobile: convert absolute stacked images to a simple relative layout */
@media (max-width: 767px) {
    .about-img-col {
        min-height: 280px !important;
    }
    .about-img-col .position-relative {
        min-height: 280px;
    }
    .about-img-main {
        padding: 0 !important;
        border-radius: 10px !important;
    }
    .about-img-secondary {
        display: none !important;
    }
    .about-cert-badge {
        bottom: 12px !important;
        left: 12px !important;
        right: auto !important;
    }
    .phone-cta {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* ---- STATS SECTION ---- */
@media (max-width: 575px) {
    .stat-card {
        padding: 1.5rem 1rem;
    }
    .stat-num {
        font-size: 2.2rem !important;
    }
}

/* ---- SERVICE CAROUSEL (left panel) ---- */
@media (max-width: 991px) {
    .service-section-left {
        display: none !important;
    }
    .service-carousel .col-md-12.col-lg-9 {
        width: 100% !important;
    }
}

/* ---- WHY US CARDS ---- */
@media (max-width: 767px) {
    .why-card {
        padding: 1.5rem 1rem;
    }
}

/* ---- TESTIMONIALS ---- */
@media (max-width: 575px) {
    .testimonial-card {
        padding: 1.5rem 1.25rem;
    }
}

/* ---- COVERAGE / ZONES ---- */
@media (max-width: 991px) {
    .coverage-map-card {
        margin-top: 1.5rem;
    }
}
@media (max-width: 575px) {
    .zones-grid { justify-content: center; gap: 8px; }
    .zone-chip { font-size: 0.82rem; padding: 6px 12px; }
}

/* ---- SERVICE CAROUSEL — equal heights on mobile ---- */
.service-carousel .owl-item { display: flex; }
.service-carousel .owl-item .service-card { width: 100%; }

/* ---- FAQ ---- */
@media (max-width: 991px) {
    .faq-accordion { margin-top: 1.5rem; }
}
@media (max-width: 575px) {
    .faq-accordion .faq-btn { font-size: 0.9rem; padding: 1rem 1.1rem; }
    .faq-accordion .faq-body { padding: 0 1.1rem 1.1rem; font-size: 0.88rem; }
}

/* ---- INNER PAGE HEADER ---- */
@media (max-width: 575px) {
    .inner-page-header { padding: 56px 0; }
    .page-title { font-size: 2rem !important; }
}

/* ---- SERVICE GRID CARDS ---- */
@media (max-width: 575px) {
    .svc-grid-card-header { padding: 1.5rem 1.25rem 1rem; }
    .svc-grid-card-footer { padding: 0 1.25rem 1.5rem; }
    .svc-grid-card h4 { font-size: 1.05rem; }
}

/* ---- CTA BANNER ---- */
@media (max-width: 575px) {
    .cta-banner .btn { width: 100%; justify-content: center; }
    .cta-banner .d-flex { flex-direction: column; }
}

/* ---- CONTACT PAGE ---- */
@media (max-width: 767px) {
    .contact-method { padding: 1.75rem 1.25rem; }
    .contact-side { padding: 1.75rem 1.25rem; }
    .info-card { padding: 1.25rem; gap: 0.9rem; }
}

/* ---- BOOKING PAGE FORM ---- */
@media (max-width: 767px) {
    .booking-form-card { padding: 1.5rem 1.25rem; }
    .booking-info-card { padding: 1.75rem 1.25rem; margin-top: 1.5rem; }
    .form-floating label { font-size: 0.9rem; }
}
@media (max-width: 480px) {
    .booking-form-card .d-flex.gap-3 { flex-direction: column; }
    .booking-form-card .btn { width: 100%; justify-content: center; }
}

/* ---- FOOTER ---- */
@media (max-width: 767px) {
    .footer .col-lg-3 { margin-bottom: 0.5rem; }
    .footer h4 { font-size: 0.9rem; letter-spacing: 1.5px; }
    .copyright { text-align: center !important; }
    .copyright .col-md-6 { text-align: center !important; }
}

/* ---- ABOUT PAGE: profile sticky ---- */
@media (max-width: 991px) {
    .profile-card { position: static !important; }
    .timeline { padding-left: 2rem; }
}
@media (max-width: 575px) {
    .profile-card-body { padding: 1.25rem 1rem; }
    .profile-name { font-size: 1.3rem; }
    .timeline-content { padding: 1rem 1.1rem; }
}

/* ---- BACK TO TOP position (above WA button) ---- */
.back-to-top {
    bottom: 96px !important;
    right: 22px !important;
    left: auto !important;
}

/* ---- WHATSAPP FLOAT — responsive ---- */
@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 16px !important;
        right: 16px !important;
        width: 54px !important;
        height: 54px !important;
        font-size: 1.6rem !important;
    }
    .back-to-top {
        bottom: 84px !important;
        right: 16px !important;
    }
    .wa-tooltip { display: none !important; }
}

/* ---- Ensure all images are responsive ---- */
img {
    max-width: 100%;
    height: auto;
}

/* ---- Owl Carousel fix: prevent horizontal scroll ---- */
.owl-carousel {
    overflow: hidden;
}

/* ---- NAV: active link underline fix on mobile ---- */
@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link::after {
        bottom: 2px;
    }
}

/* ---- svc-intro-banner responsive ---- */
@media (max-width: 767px) {
    .svc-intro-banner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 1.25rem;
    }
    .svc-intro-icon { margin: 0 auto; }
}

/* ---- coverage map responsive ---- */
@media (max-width: 575px) {
    .coverage-map-body iframe { height: 220px !important; }
}

/* ---- Tablet adjustments ---- */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-title { font-size: clamp(2rem, 5vw, 3rem) !important; }
    .booking-form-card { padding: 2rem 1.75rem; }
}

