/* ============================================================
   EVERY SERVICES — Advanced Blue Theme (Single Palette)
   ============================================================ */
:root {
    --blue-50:  #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-300: #93c5fd;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    --blue-900: #1e3a8a;
    --blue-950: #172554;

    --primary: var(--blue-600);
    --primary-dark: var(--blue-800);
    --primary-light: var(--blue-100);
    --primary-glow: rgba(37, 99, 235, 0.15);

    --dark: var(--blue-950);
    --text: #334155;
    --muted: #64748b;
    --border: #e2e8f0;
    --light: #f8fafc;
    --white: #ffffff;
    --wa: #25d366;

    --radius: 14px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(30, 64, 175, 0.08);
    --shadow-lg: 0 20px 50px rgba(30, 64, 175, 0.12);
    --font: 'Plus Jakarta Sans', system-ui, sans-serif;
    --container: 1200px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; transition: color 0.2s, background 0.2s, border-color 0.2s; }

h1, h2, h3, h4, h5, h6 {
    color: var(--blue-950);
    font-weight: 700;
    line-height: 1.25;
}

.container {
    max-width: var(--container);
    padding-left: 20px;
    padding-right: 20px;
}

/* ── TOP STRIP ── */
.top-strip {
    background: var(--blue-950);
    color: var(--blue-200);
    font-size: 0.8125rem;
    padding: 10px 0;
}
.top-strip a { color: var(--blue-100); font-weight: 500; }
.top-strip a:hover { color: var(--white); }
.top-strip i { color: var(--blue-400); margin-right: 6px; }
.top-strip .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }

/* ── NAVBAR ── */
.main-nav {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.main-nav.scrolled { box-shadow: var(--shadow); }

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0;
}

.brand-mark {
    width: 46px;
    height: 46px;
    background: linear-gradient(145deg, var(--blue-500), var(--blue-800));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px var(--primary-glow);
}

.brand-name {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--blue-950);
    display: block;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.brand-name em { color: var(--primary); font-style: normal; }

.navbar-brand small {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--muted);
    font-weight: 600;
    display: block;
    margin-top: 2px;
}

.navbar-nav {
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.875rem;
    padding: 8px 14px !important;
    border-radius: 8px;
    color: var(--text) !important;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    background: var(--blue-50);
}

.navbar-collapse {
    align-items: center;
}

.nav-cta-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 12px;
}

/* ── BUTTONS (all blue) ── */
.btn-es,
.btn-primary-es,
.btn-blue,
.btn-red,
.btn-cyan {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 11px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 14px var(--primary-glow);
    line-height: 1.4;
}

.btn-es:hover,
.btn-primary-es:hover,
.btn-blue:hover,
.btn-red:hover,
.btn-cyan:hover {
    color: var(--white);
    background: var(--blue-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-es-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--blue-200);
    padding: 9px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-es-outline:hover {
    border-color: var(--primary);
    background: var(--blue-50);
    color: var(--blue-800);
}

.btn-wa {
    background: var(--wa);
    color: var(--white);
    border: none;
    padding: 11px 22px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-wa:hover { color: var(--white); background: #20bd5a; }

.btn-white {
    background: var(--white);
    color: var(--blue-800);
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.btn-white:hover { background: var(--blue-50); color: var(--blue-900); }

.btn-outline-w {
    border: 2px solid rgba(255, 255, 255, 0.55);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-outline-w:hover { background: rgba(255, 255, 255, 0.12); color: var(--white); }

.btn-ghost {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text);
    padding: 9px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
}

.btn-ghost:hover { border-color: var(--primary); color: var(--primary); background: var(--blue-50); }

.w-100 { width: 100%; }

/* ── HERO ── */
.hero-main {
    background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
    padding: 72px 0 88px;
    position: relative;
    overflow: hidden;
}

.hero-main::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, var(--primary-glow), transparent 70%);
    pointer-events: none;
}

.hero-main .row { align-items: center; }

.hero-main h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
    max-width: 560px;
}

.hero-main h1 .highlight { color: var(--primary); }

.hero-main .lead {
    color: var(--muted);
    font-size: 1.0625rem;
    max-width: 520px;
    margin-bottom: 28px;
    line-height: 1.75;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--blue-200);
    color: var(--blue-700);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 18px;
    box-shadow: var(--shadow);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-media .img-ph,
.hero-media img {
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--blue-100);
}

/* ── STATS ── */
.stats-bar {
    background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
    padding: 48px 0;
}

.stats-bar .row {
    align-items: center;
    justify-content: center;
}

.stat-item {
    text-align: center;
    padding: 8px 16px;
}

.stat-item .num {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}

.stat-item .lbl {
    color: var(--blue-200);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 6px;
}

/* ── SECTIONS ── */
.sec { padding: 88px 0; }
.sec-light { background: var(--light); }
.sec-blue { background: var(--blue-50); }

.sec-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px;
}

.sec-tag {
    display: inline-block;
    background: var(--blue-100);
    color: var(--blue-700);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
}

.sec-head h2 {
    font-size: clamp(1.625rem, 2.8vw, 2.375rem);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.sec-head p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* equal height rows */
.row.g-3 > [class*="col"],
.row.g-4 > [class*="col"],
.row.g-5 > [class*="col"] { display: flex; flex-direction: column; }
.row.g-3 > [class*="col"] > *,
.row.g-4 > [class*="col"] > *,
.row.g-5 > [class*="col"] > * { flex: 1; width: 100%; }

/* ── CATEGORY CARDS ── */
.cat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    height: 100%;
    border: 1px solid var(--border);
    transition: all 0.35s var(--ease);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
}

.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-200);
}

.cat-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--blue-500), var(--blue-700));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.625rem;
    color: var(--white);
    margin-bottom: 20px;
    box-shadow: 0 4px 14px var(--primary-glow);
}

.cat-card h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
    width: 100%;
}

.cat-card .sub {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
    width: 100%;
}

.cat-card p {
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 20px;
    flex: 1;
    line-height: 1.65;
    width: 100%;
}

.cat-card .btn-es,
.cat-card .btn-primary-es,
.cat-card .btn-blue,
.cat-card .btn-red,
.cat-card .btn-cyan {
    width: 100%;
    margin-top: auto;
}

.price-tag {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--blue-700);
    margin-bottom: 12px;
    width: 100%;
}

/* ── SERVICE CARDS ── */
.svc-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    height: 100%;
    overflow: hidden;
    transition: all 0.3s var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
}

.svc-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-200);
}

.svc-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 700;
    z-index: 2;
}

.svc-badge.offer { background: var(--blue-200); color: var(--blue-900); }
.svc-badge.hot { background: var(--blue-700); color: var(--white); }

.svc-icon-wrap {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.75rem;
    background: var(--blue-50);
    color: var(--primary);
    border-bottom: 1px solid var(--blue-100);
}

.svc-card .body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.svc-card h4, .svc-card h5 {
    font-size: 1.0625rem;
    margin-bottom: 8px;
}

.svc-price {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--blue-700);
    margin-bottom: 4px;
}

.svc-price del {
    font-size: 0.875rem;
    color: var(--muted);
    font-weight: 400;
}

.svc-feat {
    list-style: none;
    padding: 0;
    margin: 12px 0 18px;
    font-size: 0.8125rem;
    flex: 1;
}

.svc-feat li {
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.svc-feat li i {
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

/* ── MOBILE / WATER CARDS ── */
.mobile-card,
.water-card,
.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 26px 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    height: 100%;
    transition: all 0.3s var(--ease);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-card.text-center { align-items: center; }
.feature-card.text-center p { text-align: center; }

.mobile-card:hover,
.water-card:hover,
.feature-card:hover {
    border-color: var(--blue-200);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.mobile-card i,
.water-card i,
.feature-card i {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 14px;
    display: block;
}

.mobile-card h5,
.mobile-card h6,
.water-card h5,
.water-card h6 {
    font-size: 1rem;
    margin-bottom: 8px;
    width: 100%;
}

.mobile-card p,
.water-card p {
    font-size: 0.8125rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
    flex: 1;
}

.mobile-card .btn { margin-top: 16px; align-self: stretch; }

.brand-pill {
    display: inline-block;
    background: var(--blue-50);
    color: var(--blue-700);
    border: 1px solid var(--blue-100);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin: 5px;
}

.brand-pills-wrap {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
}

/* ── WATER PRICE BOX ── */
.water-price-box {
    background: linear-gradient(145deg, var(--blue-700), var(--blue-900));
    border-radius: var(--radius-lg);
    padding: 44px 32px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.water-price-box .price {
    font-size: clamp(2.5rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1;
    margin: 8px 0;
}

.water-price-box p { color: var(--blue-200); margin-top: 8px; }

/* ── PROCESS ── */
.process-step {
    text-align: center;
    padding: 20px 12px;
    height: 100%;
}

.process-step .num {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 14px;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.process-step h6 { margin-bottom: 6px; font-size: 0.9375rem; }

/* ── PAGE HERO ── */
.page-hero {
    background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
    padding: 88px 0 72px;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.page-hero .lead-sub {
    color: var(--blue-200);
    font-size: 1.0625rem;
    margin-top: 12px;
}

.breadcrumb {
    justify-content: center;
    margin-top: 16px;
    margin-bottom: 0;
}

.breadcrumb-item a { color: var(--blue-200); }
.breadcrumb-item.active { color: var(--blue-100); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--blue-400); }

.tiwari-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--blue-100);
    margin-bottom: 16px;
}

.no-price-note {
    background: var(--blue-50);
    border: 1px solid var(--blue-200);
    border-radius: var(--radius);
    padding: 18px 24px;
    font-size: 0.9375rem;
    color: var(--blue-800);
    font-weight: 500;
    margin-bottom: 36px;
    text-align: center;
    line-height: 1.6;
}

/* ── REVIEWS ── */
.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.rev-top {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.rev-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--blue-500), var(--blue-800));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8125rem;
    flex-shrink: 0;
}

.rev-stars { color: #fbbf24; font-size: 0.8125rem; margin-bottom: 10px; }

.rev-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    background: var(--blue-50);
    color: var(--blue-700);
    display: inline-block;
}

.review-slider {
    position: relative;
    padding: 0 52px;
    max-width: 100%;
}

.review-slider .carousel-inner { padding: 4px 0; }

.rev-nav-btn {
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    box-shadow: 0 4px 14px var(--primary-glow);
    border: none;
}

.carousel-control-prev,
.carousel-control-next {
    width: auto;
    opacity: 1;
}

.carousel-indicators { position: relative; margin: 24px 0 0; }

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue-200);
    border: none;
    opacity: 1;
}

.carousel-indicators .active { background: var(--primary); }

/* ── FAQ ── */
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: none;
    border: none;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--blue-950);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-q i { color: var(--primary); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 0 24px 20px; font-size: 0.875rem; color: var(--muted); margin: 0; line-height: 1.7; }

/* ── CTA ── */
.cta-block {
    background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.cta-block h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2.125rem);
    margin-bottom: 12px;
}

.cta-block p {
    color: var(--blue-200);
    font-size: 1.0625rem;
    margin-bottom: 28px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

/* ── CONTACT ── */
.form-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    height: 100%;
}

.form-panel .form-label {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 6px;
    color: var(--blue-950);
}

.form-panel .form-control,
.form-panel .form-select {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 0.9375rem;
}

.form-panel .form-control:focus,
.form-panel .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    height: 100%;
}

.contact-card i {
    font-size: 1.375rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.contact-card h6 { font-size: 0.9375rem; margin-bottom: 6px; }

.map-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.map-box iframe { width: 100%; height: 100%; border: 0; }

/* ── COMPARE TABLE ── */
.compare-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.compare-table th {
    background: var(--blue-900);
    color: var(--white);
    padding: 16px;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}

.compare-table td {
    padding: 14px 16px;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--border);
    text-align: center;
    vertical-align: middle;
}

.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--blue-950); }
.compare-table tr:hover td { background: var(--blue-50); }
.compare-table .check { color: var(--primary); font-weight: 700; }

/* ── TWO COL SECTIONS ── */
.split-section .row { align-items: center; }
.split-section .content-col { padding-right: 24px; }
.split-section .media-col { display: flex; align-items: center; justify-content: center; }

.text-center-btn { text-align: center; margin-top: 40px; }

/* ── IMAGE PLACEHOLDER ── */
.img-ph {
    background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
    border: 2px dashed var(--blue-300);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    width: 100%;
}

.img-ph-inner { text-align: center; padding: 24px; }
.img-ph-inner i { font-size: 2.25rem; color: var(--blue-400); display: block; margin-bottom: 10px; }
.img-ph-label { font-weight: 700; font-size: 0.8125rem; color: var(--blue-800); display: block; }
.img-ph-path { font-size: 0.6875rem; color: var(--blue-400); word-break: break-all; display: block; margin-top: 4px; }
.img-ph.hero-ph { min-height: 360px; }

/* ── FOOTER ── */
.site-foot {
    background: var(--blue-950);
    color: var(--blue-300);
}

.foot-top-line { height: 4px; background: var(--blue-600); }

.site-foot .container { padding-top: 56px; padding-bottom: 0; }

.foot-brand {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.foot-brand i { color: var(--blue-400); }
.foot-brand em { color: var(--blue-300); font-style: normal; }

.foot-desc {
    font-size: 0.875rem;
    line-height: 1.75;
    margin-bottom: 20px;
    color: var(--blue-300);
    max-width: 320px;
}

.foot-social { display: flex; gap: 8px; flex-wrap: wrap; }

.foot-social a {
    width: 38px;
    height: 38px;
    background: var(--blue-900);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-300);
}

.foot-social a:hover { background: var(--primary); color: var(--white); }

.site-foot h6 {
    color: var(--white);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    font-weight: 700;
}

.site-foot ul { list-style: none; padding: 0; margin: 0; }

.site-foot ul li { margin-bottom: 10px; }

.site-foot ul a {
    color: var(--blue-300);
    font-size: 0.875rem;
}

.site-foot ul a:hover { color: var(--white); }

.foot-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.875rem;
    line-height: 1.5;
}

.foot-contact i { color: var(--blue-400); margin-top: 3px; flex-shrink: 0; }
.foot-contact a { color: var(--blue-300); }
.foot-contact a:hover { color: var(--white); }

.foot-bar {
    border-top: 1px solid var(--blue-900);
    padding: 22px 0;
    margin-top: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8125rem;
    color: var(--blue-400);
}

.foot-designer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-400);
    font-size: 0.75rem;
    transition: opacity 0.2s;
}

.foot-designer:hover { color: var(--blue-200); }

.foot-designer img {
    height: 22px;
    width: auto;
    display: block;
    border-radius: 4px;
}

/* ── WHATSAPP + MOBILE BAR ── */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--wa);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.625rem;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.wa-float:hover { color: var(--white); transform: scale(1.08); }

.mob-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    display: flex;
    padding: 10px 12px;
    gap: 8px;
    z-index: 998;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

.mob-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.8125rem;
    background: var(--blue-50);
    color: var(--blue-800);
}

.mob-bar .mob-book {
    flex: 2;
    padding: 11px;
    border-radius: 10px;
}

/* ── UTILITIES ── */
.text-primary-es { color: var(--primary) !important; }
.bg-blue-soft { background: var(--blue-50); }

.alert { border-radius: var(--radius); }

@media (max-width: 991px) {
    .wa-float { bottom: 76px; }
    body { padding-bottom: 68px; }
    .review-slider { padding: 0 8px; }
    .rev-nav { display: none; }
    .split-section .content-col { padding-right: 0; margin-bottom: 32px; }
    .form-panel { padding: 28px 24px; }
    .nav-cta-wrap { margin: 16px 0 8px; width: 100%; }
    .nav-cta-wrap .btn-es { width: 100%; }
    .hero-main { padding: 48px 0 64px; }
    .sec { padding: 64px 0; }
    .cta-block { padding: 44px 24px; }
}

@media (max-width: 575px) {
    .top-strip .container { flex-direction: column; align-items: flex-start; }
    .foot-bar { flex-direction: column; text-align: center; justify-content: center; }
    .foot-designer { justify-content: center; }
}
