/* ================================================================
   ads.dranandosengupta.com — Landing page redesign
   Conversion-optimised for Google Ads / paid traffic
   ================================================================ */

:root {
    --c-navy: #003a70;
    --c-navy-dark: #002851;
    --c-teal: #65D0CD;
    --c-teal-dark: #2B918F;
    --c-accent: #0066b2;
    --c-text: #1a2b3c;
    --c-muted: #5a6b7a;
    --c-bg: #f8fbfd;
    --c-bg-card: #ffffff;
    --c-border: #e3ecf3;
    --c-success: #25D366;
    --c-star: #FFB400;
    --shadow-sm: 0 1px 3px rgba(0,58,112,.06);
    --shadow-md: 0 4px 14px rgba(0,58,112,.10);
    --shadow-lg: 0 12px 32px rgba(0,58,112,.16);
    --radius: 12px;
    --radius-lg: 16px;
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: var(--c-text);
    background: var(--c-bg-card);
    line-height: 1.55;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-accent); text-decoration: none; }
a:hover { color: var(--c-navy); }
h1, h2, h3, h4, h5, h6 { font-family: inherit; color: var(--c-navy); margin: 0; line-height: 1.2; }

/* === Container === */
.lp-wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* === Buttons === */
.lp-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 26px; border: none; border-radius: 30px; cursor: pointer;
    font-family: inherit; font-size: 15px; font-weight: 600; letter-spacing: .3px;
    text-decoration: none; transition: all .2s; white-space: nowrap;
}
.lp-btn-primary {
    background: linear-gradient(135deg, var(--c-teal) 0%, var(--c-teal-dark) 100%);
    color: #fff !important; box-shadow: 0 6px 18px rgba(101,208,205,.35);
}
.lp-btn-primary:hover {
    transform: translateY(-2px); box-shadow: 0 10px 24px rgba(101,208,205,.5);
    color: #fff !important;
}
.lp-btn-outline {
    background: transparent; color: #fff !important; border: 2px solid rgba(255,255,255,.4);
}
.lp-btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff !important; }
.lp-btn-wa {
    background: linear-gradient(135deg, var(--c-success) 0%, #128C7E 100%);
    color: #fff !important; box-shadow: 0 6px 18px rgba(37,211,102,.32);
}
.lp-btn-wa:hover { transform: translateY(-2px); color: #fff !important; }

/* === Section foundation === */
.lp-section { padding: 56px 0; }
.lp-section-head { text-align: center; max-width: 700px; margin: 0 auto 36px; }
.lp-eyebrow {
    display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--c-teal-dark);
    background: rgba(101,208,205,.14); padding: 6px 14px; border-radius: 30px;
    margin-bottom: 14px;
}
.lp-section h2 {
    font-size: clamp(26px, 3.2vw, 36px); font-weight: 700;
    color: var(--c-navy); margin: 0 0 12px;
}
.lp-section-sub { color: var(--c-muted); font-size: 16px; line-height: 1.6; margin: 0; }

/* ============ HERO ============ */
.lp-hero {
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-dark) 100%);
    color: #fff; padding: 28px 0 56px; position: relative; overflow: hidden;
}
.lp-hero::before {
    content: ""; position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(101,208,205,.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(101,208,205,.10) 0%, transparent 50%);
    pointer-events: none;
}
.lp-hero > .lp-wrap { position: relative; z-index: 2; }
.lp-hero-logo { margin-bottom: 24px; }
.lp-hero-logo img { max-height: 56px; width: auto; filter: brightness(0) invert(1); }
.lp-hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: start; }
.lp-hero-left h1 {
    color: #fff !important; font-size: clamp(28px, 3.6vw, 44px); font-weight: 700;
    line-height: 1.18; margin: 0 0 16px; letter-spacing: -.4px;
}
.lp-hero-left h1 .lp-accent { color: var(--c-teal); }
.lp-hero-tagline {
    color: rgba(255,255,255,.85); font-size: 17px; font-weight: 500;
    margin: 0 0 22px; line-height: 1.5;
}
.lp-hero-bullets {
    list-style: none; padding: 0; margin: 0 0 26px;
    display: grid; gap: 10px;
}
.lp-hero-bullets li {
    display: flex; align-items: flex-start; gap: 10px;
    color: rgba(255,255,255,.92); font-size: 15px; line-height: 1.5;
}
.lp-hero-bullets li i {
    color: var(--c-teal); font-size: 16px; flex-shrink: 0; margin-top: 4px;
}
.lp-hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero form card */
.lp-form-card {
    background: #fff; border-radius: var(--radius-lg); padding: 28px;
    box-shadow: 0 24px 60px rgba(0,0,0,.25); position: relative;
}
.lp-form-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--c-teal), var(--c-accent), var(--c-teal));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.lp-form-card h3 {
    font-size: 22px; color: var(--c-navy); margin: 0 0 4px; font-weight: 700;
}
.lp-form-card p.lp-form-sub {
    font-size: 14px; color: var(--c-muted); margin: 0 0 20px;
}
.lp-form-card form { margin: 0; }
.lp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.lp-form-card input,
.lp-form-card select,
.lp-form-card textarea {
    width: 100%; padding: 12px 14px; font-family: inherit; font-size: 15px;
    border: 1px solid var(--c-border); border-radius: 8px; background: #fff;
    color: var(--c-text); transition: border-color .15s, box-shadow .15s;
}
.lp-form-card input:focus,
.lp-form-card select:focus,
.lp-form-card textarea:focus {
    outline: none; border-color: var(--c-accent); box-shadow: 0 0 0 3px rgba(0,102,178,.15);
}
.lp-form-card textarea { resize: vertical; min-height: 80px; }
.lp-form-card select { appearance: auto; -webkit-appearance: menulist; }
.lp-form-card input::placeholder, .lp-form-card textarea::placeholder { color: #9ba8b5; }
.lp-form-card .lp-form-submit {
    width: 100%; padding: 14px; font-size: 16px; font-weight: 600;
    background: linear-gradient(135deg, var(--c-teal) 0%, var(--c-teal-dark) 100%);
    color: #fff; border: none; border-radius: 8px; cursor: pointer; margin-top: 4px;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    transition: all .2s;
}
.lp-form-card .lp-form-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(101,208,205,.4); }
.lp-form-card .lp-form-submit:disabled { opacity: .7; cursor: not-allowed; }
.lp-form-loader {
    display: none; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.3);
    border-top-color: #fff; border-radius: 50%; animation: lp-spin 1s linear infinite;
}
@keyframes lp-spin { to { transform: rotate(360deg); } }
.lp-form-disclaimer {
    font-size: 11.5px; color: var(--c-muted); line-height: 1.5;
    margin: 12px 0 0; text-align: center;
}
.lp-form-error {
    background: #fff5f5; border-left: 4px solid #d9534f; color: #3a1a1a;
    padding: 10px 14px; border-radius: 4px; margin-bottom: 14px; font-size: 14px;
}
.lp-form-card .lp-field-invalid {
    border-color: #d9534f !important;
    box-shadow: 0 0 0 3px rgba(217,83,79,.12) !important;
}
.lp-field-error {
    color: #d9534f; font-size: 12px; font-weight: 500;
    margin: 4px 2px 0; line-height: 1.3;
}
.lp-form-honeypot { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }

/* ============ TRUST BAR ============ */
.lp-trust {
    background: var(--c-bg); border-bottom: 1px solid var(--c-border);
    padding: 20px 0;
}
.lp-trust-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
    text-align: center;
}
.lp-trust-item .lp-trust-num {
    font-size: 26px; font-weight: 700; color: var(--c-navy); line-height: 1;
}
.lp-trust-item .lp-trust-num i {
    color: var(--c-star); font-size: 20px; margin-right: 4px;
}
.lp-trust-item .lp-trust-label {
    font-size: 12.5px; color: var(--c-muted); margin-top: 6px; line-height: 1.35;
}

/* ============ TRUST LOGOS STRIP ============ */
.lp-trust-logos {
    background: #fff; padding: 28px 0; border-bottom: 1px solid var(--c-border);
}
.lp-trust-logos-label {
    text-align: center; font-size: 12.5px; letter-spacing: 1px;
    text-transform: uppercase; color: var(--c-muted); margin: 0 0 18px; font-weight: 600;
}
.lp-trust-logos-row {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 20px 32px; align-items: center;
}
.lp-logo-item {
    display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--c-muted); opacity: .75; transition: opacity .2s, color .2s;
    line-height: 1.1; min-width: 80px;
}
.lp-logo-item:hover { opacity: 1; color: var(--c-navy); }
.lp-logo-item span {
    font-size: 18px; font-weight: 800; letter-spacing: -.3px;
    color: inherit; font-family: inherit;
}
.lp-logo-item small { font-size: 11px; font-weight: 500; opacity: .8; }
.lp-logo-fortis span { color: #ED1B24; opacity: .7; }
.lp-logo-fortis:hover span { opacity: 1; }
.lp-logo-google { color: #4285F4 !important; opacity: 1; }
.lp-logo-google i { font-size: 22px; margin-bottom: 4px; }
.lp-logo-google span { font-size: 13px; color: var(--c-text); font-weight: 600; }

/* ============ COST TRANSPARENCY ============ */
.lp-cost { background: #fff; }
.lp-cost-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.lp-cost-card {
    background: var(--c-bg); border: 1px solid var(--c-border);
    border-radius: var(--radius); padding: 24px 20px; text-align: center;
    transition: all .25s;
}
.lp-cost-card:hover {
    transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-teal);
}
.lp-cost-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: linear-gradient(135deg, var(--c-navy), var(--c-accent));
    color: #fff; font-size: 20px;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.lp-cost-card h3 {
    font-size: 15px; font-weight: 600; color: var(--c-navy); margin: 0 0 10px;
}
.lp-cost-amount {
    font-size: 22px; font-weight: 700; color: var(--c-teal-dark);
    margin-bottom: 10px; line-height: 1.2;
}
.lp-cost-card p {
    font-size: 13px; color: var(--c-muted); margin: 0; line-height: 1.5;
}
.lp-cost-card-highlight {
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-dark) 100%);
    border-color: var(--c-navy);
}
.lp-cost-card-highlight h3,
.lp-cost-card-highlight .lp-cost-amount,
.lp-cost-card-highlight p { color: #fff !important; }
.lp-cost-card-highlight .lp-cost-amount { color: var(--c-teal) !important; }
.lp-cost-card-highlight .lp-cost-icon {
    background: linear-gradient(135deg, var(--c-teal), var(--c-teal-dark));
}
.lp-cost-card-highlight:hover { transform: translateY(-3px); border-color: var(--c-teal); }

@media (max-width: 991px) {
    .lp-trust-logos-row { gap: 14px 22px; }
    .lp-logo-item { min-width: 70px; }
    .lp-logo-item span { font-size: 16px; }
    .lp-cost-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
    .lp-cost-grid { grid-template-columns: 1fr; }
    .lp-cost-card { padding: 20px 16px; }
}

/* ============ WHY CHOOSE ============ */
.lp-why { background: var(--c-bg); }
.lp-why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.lp-why-card {
    background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius);
    padding: 24px 22px; transition: all .25s; box-shadow: var(--shadow-sm);
}
.lp-why-card:hover {
    transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-teal);
}
.lp-why-card .lp-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: linear-gradient(135deg, var(--c-navy), var(--c-accent));
    color: #fff; display: inline-flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 14px;
}
.lp-why-card h3 {
    font-size: 17px; font-weight: 700; color: var(--c-navy); margin: 0 0 8px;
    line-height: 1.3;
}
.lp-why-card p { font-size: 14.5px; color: var(--c-muted); margin: 0; line-height: 1.55; }

/* ============ CONDITIONS ============ */
.lp-conditions { background: #fff; }
.lp-cond-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.lp-cond-card {
    background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--radius);
    padding: 20px 16px; text-align: center; cursor: pointer;
    transition: all .25s; text-decoration: none !important;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.lp-cond-card:hover {
    transform: translateY(-3px); border-color: var(--c-teal);
    box-shadow: var(--shadow-md); background: #fff;
}
.lp-cond-card .lp-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: linear-gradient(135deg, var(--c-teal) 0%, var(--c-teal-dark) 100%);
    color: #fff; display: inline-flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.lp-cond-card h4 {
    font-size: 14.5px; font-weight: 600; color: var(--c-navy); margin: 0; line-height: 1.3;
}

/* ============ PROCEDURES ============ */
.lp-procedures { background: var(--c-bg); }
.lp-proc-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.lp-proc-card {
    background: #fff; border-radius: var(--radius); padding: 24px;
    border: 1px solid var(--c-border); transition: all .25s;
    display: flex; gap: 16px; align-items: flex-start;
}
.lp-proc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.lp-proc-icon {
    flex-shrink: 0; width: 54px; height: 54px; border-radius: 12px;
    background: linear-gradient(135deg, var(--c-navy), var(--c-accent));
    color: #fff; display: inline-flex; align-items: center; justify-content: center;
    font-size: 22px;
}
.lp-proc-card h3 { font-size: 16px; font-weight: 700; color: var(--c-navy); margin: 0 0 6px; }
.lp-proc-card p { font-size: 13.5px; color: var(--c-muted); margin: 0; line-height: 1.55; }

/* ============ ABOUT ============ */
.lp-about { background: #fff; }
.lp-about-grid {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: center;
}
.lp-about-photo {
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
    aspect-ratio: 1 / 1.05; background: var(--c-bg);
    display: flex; align-items: center; justify-content: center;
}
.lp-about-photo img { width: 100%; height: 100%; object-fit: cover; }
.lp-about-content h2 { margin-bottom: 14px; font-size: clamp(24px, 2.8vw, 32px); }
.lp-about-content p { color: var(--c-muted); font-size: 15px; line-height: 1.7; margin: 0 0 14px; }
.lp-about-creds {
    list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 10px;
}
.lp-about-creds li {
    display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--c-text);
}
.lp-about-creds li i { color: var(--c-teal-dark); margin-top: 4px; flex-shrink: 0; }
.lp-about-creds li strong { color: var(--c-navy); font-weight: 600; }

/* ============ REVIEWS ============ */
.lp-reviews { background: var(--c-bg); }
.lp-reviews-rating {
    text-align: center; margin-bottom: 32px;
}
.lp-reviews-stars { font-size: 24px; color: var(--c-star); letter-spacing: 4px; margin-bottom: 6px; }
.lp-reviews-rating-text { font-size: 18px; color: var(--c-navy); font-weight: 600; }
.lp-reviews-rating-text .lp-google { color: #4285F4; }
.lp-review-card {
    background: #fff; border-radius: var(--radius); padding: 22px;
    border: 1px solid var(--c-border); height: 100%; min-height: 220px;
    display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.lp-review-stars { color: var(--c-star); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.lp-review-text {
    font-size: 14px; color: var(--c-text); line-height: 1.65;
    margin: 0 0 14px; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical;
    overflow: hidden;
}
.lp-review-author {
    font-size: 14px; font-weight: 600; color: var(--c-navy);
    border-top: 1px solid var(--c-border); padding-top: 12px;
    display: flex; align-items: center; gap: 8px;
}
.lp-review-author i { color: #4285F4; font-size: 14px; }

/* Owl carousel overrides for reviews */
.tesitimonials_slider .owl-dots { text-align: center; margin-top: 20px; }
.tesitimonials_slider .owl-dots .owl-dot {
    background: rgba(0,58,112,.2) !important; width: 8px; height: 8px;
    border-radius: 50%; margin: 0 4px; transition: all .2s;
}
.tesitimonials_slider .owl-dots .owl-dot.active {
    background: var(--c-teal-dark) !important; width: 24px; border-radius: 4px;
}
.tesitimonials_slider .owl-dots .owl-dot span { display: none; }

/* ============ HOW IT WORKS ============ */
.lp-how { background: #fff; }
.lp-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lp-how-step { text-align: center; padding: 24px 18px; position: relative; }
.lp-how-step .lp-step-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--c-teal), var(--c-teal-dark));
    color: #fff; font-size: 22px; font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.lp-how-step h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; color: var(--c-navy); }
.lp-how-step p { font-size: 14.5px; color: var(--c-muted); margin: 0; line-height: 1.55; }

/* ============ FAQ ============ */
.lp-faq { background: var(--c-bg); }
.lp-faq-list { max-width: 780px; margin: 0 auto; }
.lp-faq-item {
    background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius);
    margin-bottom: 10px; overflow: hidden;
}
.lp-faq-q {
    width: 100%; background: none; border: none; padding: 16px 20px; text-align: left;
    cursor: pointer; font-family: inherit; font-size: 15.5px; font-weight: 600;
    color: var(--c-navy); display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
}
.lp-faq-q::after {
    content: "\002B"; font-size: 20px; color: var(--c-teal-dark); flex-shrink: 0;
    transition: transform .2s;
}
.lp-faq-item.lp-open .lp-faq-q::after { content: "\2212"; }
.lp-faq-a {
    padding: 0 20px 16px; font-size: 14.5px; color: var(--c-muted); line-height: 1.65;
    display: none;
}
.lp-faq-a a { color: var(--c-accent); font-weight: 600; }
.lp-faq-item.lp-open .lp-faq-a { display: block; }

/* ============ FINAL CTA ============ */
.lp-final-cta {
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-dark) 100%);
    color: #fff; text-align: center; padding: 56px 0;
}
.lp-final-cta h2 {
    color: #fff !important; font-size: clamp(24px, 3vw, 34px); margin: 0 0 12px;
}
.lp-final-cta p {
    font-size: 17px; color: rgba(255,255,255,.85); max-width: 600px;
    margin: 0 auto 24px; line-height: 1.55;
}
.lp-final-cta-btns { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.lp-final-cta-locations {
    display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px;
    max-width: 900px; margin-left: auto; margin-right: auto;
}
.lp-final-loc {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius); padding: 18px; text-align: left;
}
.lp-final-loc h4 { color: #fff !important; font-size: 16px; font-weight: 700; margin: 0 0 6px; }
.lp-final-loc p { color: rgba(255,255,255,.78); font-size: 13.5px; margin: 0 0 4px; line-height: 1.45; }
.lp-loc-directions {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.12); color: #fff !important;
    padding: 7px 14px; border-radius: 30px; font-size: 13px; font-weight: 600;
    text-decoration: none; transition: all .2s; border: 1px solid rgba(255,255,255,.2);
}
.lp-loc-directions:hover { background: var(--c-teal); color: var(--c-navy) !important; border-color: var(--c-teal); }

/* ============ FOOTER (override) ============ */
.lp-footer {
    background: var(--c-navy-dark); color: rgba(255,255,255,.85);
    padding: 36px 0 20px;
}
.lp-footer-grid {
    display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 30px; margin-bottom: 28px;
}
.lp-footer h4 { color: #fff; font-size: 15px; font-weight: 700; margin: 0 0 12px; letter-spacing: .3px; }
.lp-footer p, .lp-footer a { color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.6; margin: 0 0 6px; }
.lp-footer a:hover { color: var(--c-teal); }
.lp-footer-disclaimer {
    background: rgba(0,0,0,.18); padding: 14px 18px; border-radius: 8px;
    margin: 14px 0; border-left: 3px solid rgba(101,208,205,.4);
}
.lp-footer-disclaimer p {
    font-size: 12px; line-height: 1.6; color: rgba(255,255,255,.65); margin: 0;
}
.lp-footer-disclaimer strong { color: #fff; }
.lp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.lp-footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.6); margin: 0; }
.lp-footer-bottom a { color: rgba(255,255,255,.85) !important; }
.lp-footer-bottom a:hover { color: var(--c-teal) !important; }

/* ============ STICKY MOBILE CTA (bottom bar) ============ */
.lp-sticky-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
    background: #fff;
    box-shadow: 0 -6px 24px rgba(0, 40, 81, .15);
    border-top: 1px solid var(--c-border);
    padding: 10px 14px env(safe-area-inset-bottom, 10px);
    display: none;
}
.lp-sticky-cta-inner {
    display: grid; grid-template-columns: 52px 1fr 52px;
    gap: 12px; align-items: center;
    max-width: 540px; margin: 0 auto;
}
.lp-sticky-icon {
    width: 52px; height: 52px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff !important; font-size: 22px; text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    position: relative;
}
.lp-sticky-icon.lp-call {
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-dark) 100%);
    box-shadow: 0 6px 16px rgba(0, 58, 112, .35);
}
.lp-sticky-icon.lp-wa {
    background: linear-gradient(135deg, var(--c-success) 0%, #128C7E 100%);
    box-shadow: 0 6px 16px rgba(37, 211, 102, .4);
}
.lp-sticky-icon:active { transform: scale(.94); }
.lp-sticky-icon::before {
    /* subtle pulse so the buttons attract attention */
    content: ""; position: absolute; inset: -2px; border-radius: 50%;
    border: 2px solid currentColor; opacity: 0;
    animation: lp-pulse 2.4s ease-out infinite;
}
.lp-sticky-icon.lp-call::before { color: var(--c-navy); }
.lp-sticky-icon.lp-wa::before { color: var(--c-success); }
@keyframes lp-pulse {
    0% { transform: scale(1); opacity: .5; }
    70% { transform: scale(1.35); opacity: 0; }
    100% { opacity: 0; }
}
.lp-sticky-cta .lp-btn {
    width: 100%; height: 52px; padding: 0 16px;
    font-size: 15px; font-weight: 600; border-radius: 30px;
    box-shadow: 0 8px 20px rgba(101, 208, 205, .42);
}

/* ============ DESKTOP RIGHT-SIDE STICKY RAIL ============ */
.lp-side-rail {
    position: fixed;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 80;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lp-rail-btn {
    width: 52px; height: 52px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff !important; font-size: 20px; text-decoration: none;
    position: relative;
    transition: transform .2s, box-shadow .2s, width .25s ease;
    overflow: hidden; white-space: nowrap;
}
.lp-rail-btn .lp-rail-label {
    position: absolute; right: 60px; top: 50%; transform: translateY(-50%);
    background: var(--c-navy); color: #fff;
    font-size: 13px; font-weight: 600; letter-spacing: .3px;
    padding: 8px 14px; border-radius: 6px; white-space: nowrap;
    opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
    box-shadow: 0 6px 16px rgba(0, 40, 81, .2);
}
.lp-rail-btn .lp-rail-label::after {
    /* arrow pointing toward the icon */
    content: ""; position: absolute; right: -5px; top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px; height: 10px; background: var(--c-navy);
}
.lp-rail-btn:hover .lp-rail-label {
    opacity: 1; transform: translateY(-50%) translateX(-4px);
    pointer-events: auto;
}
.lp-rail-btn.lp-rail-call {
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-dark) 100%);
    box-shadow: 0 8px 20px rgba(0, 58, 112, .35);
}
.lp-rail-btn.lp-rail-wa {
    background: linear-gradient(135deg, var(--c-success) 0%, #128C7E 100%);
    box-shadow: 0 8px 20px rgba(37, 211, 102, .4);
}
.lp-rail-btn.lp-rail-book {
    background: linear-gradient(135deg, var(--c-teal) 0%, var(--c-teal-dark) 100%);
    box-shadow: 0 8px 20px rgba(101, 208, 205, .4);
}
.lp-rail-btn:hover {
    transform: translateY(-2px) scale(1.05);
}
/* Pulse on the WhatsApp + Call buttons */
.lp-rail-btn.lp-rail-wa::before,
.lp-rail-btn.lp-rail-call::before {
    content: ""; position: absolute; inset: -3px; border-radius: 50%;
    border: 2px solid currentColor; opacity: 0;
    animation: lp-pulse 2.6s ease-out infinite;
}
.lp-rail-btn.lp-rail-call::before { color: var(--c-navy); }
.lp-rail-btn.lp-rail-wa::before { color: var(--c-success); }
.lp-rail-btn.lp-rail-wa::before { animation-delay: .8s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
    .lp-section { padding: 40px 0; }
    .lp-hero { padding: 22px 0 40px; }
    .lp-hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .lp-hero-left h1 { font-size: clamp(24px, 6vw, 32px); }
    .lp-hero-tagline { font-size: 15px; }
    .lp-hero-cta-row .lp-btn { flex: 1; justify-content: center; }
    .lp-form-card { padding: 22px 18px; }
    .lp-form-card h3 { font-size: 19px; }

    .lp-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 10px; }

    .lp-why-grid { grid-template-columns: 1fr; gap: 14px; }
    .lp-cond-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .lp-cond-card { padding: 16px 10px; }
    .lp-cond-card h4 { font-size: 13px; }
    .lp-cond-card .lp-icon { width: 40px; height: 40px; font-size: 17px; }

    .lp-proc-grid { grid-template-columns: 1fr; gap: 12px; }
    .lp-proc-card { padding: 18px; }

    .lp-about-grid { grid-template-columns: 1fr; gap: 22px; }
    .lp-about-photo { max-width: 280px; margin: 0 auto; aspect-ratio: 1/1; }

    .lp-how-grid { grid-template-columns: 1fr; gap: 14px; }
    .lp-how-step { padding: 16px; }

    .lp-final-cta-locations { grid-template-columns: 1fr; }
    .lp-final-cta-btns { flex-direction: column; width: 100%; }
    .lp-final-cta-btns .lp-btn { width: 100%; justify-content: center; }

    .lp-footer-grid { grid-template-columns: 1fr; gap: 22px; }
    .lp-footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

    body { padding-bottom: 80px; }
    .lp-sticky-cta { display: block; }
    .lp-side-rail { display: none; } /* desktop rail hidden on mobile */
}
@media (max-width: 600px) {
    .lp-section-head { margin-bottom: 24px; }
    .lp-hero-bullets li { font-size: 14px; }
    .lp-form-row { grid-template-columns: 1fr; }
    .lp-cond-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-trust-item .lp-trust-num { font-size: 22px; }
    .lp-trust-item .lp-trust-label { font-size: 11.5px; }
}
@media (max-width: 360px) {
    .lp-wrap { padding: 0 14px; }
    .lp-cond-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}
