/* ============================
   Contact Landing Page Styles
   ============================ */

/* ── Navbar Scroll Behavior ── */
#primaryNav {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#primaryNav .whiteLogin {
    display: none !important;
}

#primaryNav .grayLogin {
    display: inline-block !important;
}

#primaryNav.navbar-scrolled {
    background-color: #fff !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

#primaryNav.navbar-scrolled .nav-link {
    color: #333 !important;
}

#primaryNav.navbar-scrolled .whiteLogin {
    display: none !important;
}

#primaryNav.navbar-scrolled .grayLogin {
    display: inline-block !important;
}

/* Navbar Phone Button Sync (Ensures Visibility & Alignment) */
.nav-btn-fix {
    background-color: #044278 !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    padding: 10px 24px !important;
    border-radius: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    white-space: nowrap !important;
}

/* Aggressive color enforcement for all states */
#primaryNav .nav-btn-fix,
#primaryNav .nav-btn-fix i,
#primaryNav .nav-btn-fix *,
#primaryNav.navbar-scrolled .nav-btn-fix,
#primaryNav.navbar-scrolled .nav-btn-fix i,
#primaryNav.navbar-scrolled .nav-btn-fix * {
    color: #ffffff !important;
    opacity: 1 !important;
}

.nav-btn-fix:hover {
    background-color: #055496 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(4, 66, 120, 0.25) !important;
}

.nav-btn i {
    font-size: 14px;
}

/* Default Nav Phone Color (White fallback) */
.nav-phone {
    color: #fff !important;
    font-weight: 600;
}

/* ── Hero ── */
.lp-hero {
    background: #fff;
    color: #1a1a1a;
    padding: 100px 0 70px; /* Restored standard padding for professional spacing */
    position: relative;
    overflow: hidden;
}

/* Align left text with the bottom of the blue form header */
.hero-text-col {
    padding-top: 80px;
}

@media (max-width: 991px) {
    .hero-text-col {
        padding-top: 0; /* Reset for mobile stack */
    }
}

.lp-hero h1 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.3;
    color: #044278;
    margin-bottom: 14px;
}

.lp-hero .hero-subtext {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #2f60b1;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

.lp-hero .hero-body {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 30px;
    max-width: 480px;
}

.lp-hero .hero-cta-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.hero-ctas .btn-hero-primary {
    display: inline-block;
    background-color: #044278;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    padding: 14px 36px;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.25s ease;
    margin-bottom: 10px;
}

.hero-ctas .btn-hero-primary:hover {
    box-shadow: 0 4px 15px rgba(4, 66, 120, 0.25);
    color: #fff;
}

/* ── Hero Background ── */
.hero-bg-static {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-size: cover;
    background-position: center top;
}

.hero-bg-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    opacity: 0;
    animation: heroFade 15s infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85); /* Strong white overlay to keep text readable */
    z-index: 1;
}

@keyframes heroFade {
    0% { opacity: 0; }
    5% { opacity: 1; }
    33% { opacity: 1; }
    38% { opacity: 0; }
    100% { opacity: 0; }
}

/* Ensure content sits above background */
.lp-hero .container {
    position: relative;
    z-index: 2;
}

.hero-ctas .btn-hero-primary i {
    margin-right: 8px;
}

/* ── Hero Form Card ── */
.hero-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    box-shadow:
        0 4px 6px rgba(4, 66, 120, 0.04),
        0 12px 24px rgba(4, 66, 120, 0.08),
        0 24px 60px rgba(4, 66, 120, 0.12);
    border: 1px solid rgba(4, 66, 120, 0.06);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-form-card .form-header {
    background: linear-gradient(135deg, #044278 0%, #1a3a6e 50%, #16296d 100%);
    padding: 28px 30px 24px;
    color: #fff;
    position: relative;
}

.hero-form-card .form-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4fc3f7, #29b6f6, #03a9f4, #29b6f6, #4fc3f7);
}

.hero-form-card .form-header h3 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.35;
}

.hero-form-card .form-header .form-subtitle {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
}

.hero-form-card .form-body {
    padding: 20px 24px 24px;
}

.form-field {
    margin-bottom: 10px;
}

.form-field label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: #1e3a5f;
    /* text-transform: uppercase; Removed for sentence case */
    letter-spacing: 0px; /* Reduced letter spacing for sentence case */
    margin-bottom: 4px;
}

.form-field .input-wrap {
    position: relative;
}

.form-field .input-wrap .field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 14px;
    pointer-events: none;
    transition: color 0.25s ease;
}

.form-field .input-wrap .form-control {
    padding-left: 40px;
}

.form-field textarea.form-control {
    padding-left: 14px !important;
}

.form-field .input-wrap:focus-within .field-icon {
    color: #044278;
}

.hero-form-card .form-control,
.hero-form-card .form-select {
    border: 1.5px solid #dde2e8;
    border-radius: 10px;
    padding: 12px 14px;
    height: 46px;
    font-size: 13px; /* Unified font size */
    font-family: 'Lato', sans-serif;
    color: #1a1a1a;
    background: #f3f4f6;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

.hero-form-card .form-control:focus,
.hero-form-card .form-select:focus {
    border-color: #3b82f6;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
    outline: none;
}

/* White bg + dark text when field has a value */
.hero-form-card .form-control.field-filled,
.hero-form-card .form-select.field-filled {
    background-color: #fff;
}

.hero-form-card select.form-control {
    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    padding-left: 40px;
    color: #b0b8c4; /* Grey placeholder text until filled */
}

.hero-form-card select.form-control.field-filled {
    color: #1a1a1a;
}

.hero-form-card input[type="date"].form-control {
    color: #b0b8c4; /* Grey placeholder text until filled */
}

.hero-form-card input[type="date"].form-control.field-filled {
    color: #1a1a1a;
}

/* Add padding for ANY field preceded by an icon (Inputs & Selects) */
.hero-form-card .field-icon + .form-control {
    padding-left: 40px;
}

/* Make placeholder/empty state look like text placeholder */
.hero-form-card select.form-control:invalid {
    color: #b0b8c4;
}

/* Ensure dropdown options are readable */
.hero-form-card select.form-control option {
    color: #1a1a1a;
}

.hero-form-card .form-control::placeholder {
    color: #b0b8c4;
    font-weight: 400;
    font-size: 13px; /* Force size match */
    opacity: 1; /* Firefox defaults to lower opacity */
}

.hero-form-card textarea.form-control {
    resize: vertical;
    min-height: 72px;
    height: auto;
}

.form-row-half {
    display: flex;
    gap: 10px;
}

.form-row-half .form-field {
    flex: 1;
}

.form-row-half input[type="date"].form-control {
    padding: 10px 8px;
}

.form-row-half select.form-control {
    padding: 10px 8px 10px 36px;
}

.consent-wrap {
    background: #f5f7fa;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid #e8ecf0;
}

.consent-wrap input[type="checkbox"] {
    margin-top: 2px;
    accent-color: #044278;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
}

.consent-wrap span {
    font-size: 12.5px;
    color: #6b7280;
    line-height: 1.55;
}

.hero-form-card .btn-form-submit {
    width: 100%;
    background: linear-gradient(135deg, #044278, #1a3a6e);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 15px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.hero-form-card .btn-form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.hero-form-card .btn-form-submit:hover {
    background: linear-gradient(135deg, #16296d, #0d1b3e);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(4, 66, 120, 0.35);
}

.hero-form-card .btn-form-submit:hover::before {
    left: 100%;
}

.hero-form-card .btn-form-submit:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(4, 66, 120, 0.25);
}

.hero-form-card .invalid-feedback {
    font-size: 11.5px;
    font-weight: 600;
    display: none;
    color: #dc3545;
    margin-top: 4px;
    padding-left: 2px;
}

/* ── Section common ── */
.lp-section {
    padding: 70px 0;
}

.lp-section-grey {
    background-color: #f9fafb;
}

.lp-section-title {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 28px;
    color: #044278;
    margin-bottom: 12px;
}

.lp-section-subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 620px;
    margin: 0 auto 40px;
}

/* ── Services Cards ── */
.service-card {
    text-align: center;
    padding: 28px 16px 20px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 16px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 160px;
}

.service-card:hover {
    border-color: #044278;
    box-shadow: 0 8px 28px rgba(4, 66, 120, 0.15);
    transform: translateY(-5px);
    text-decoration: none;
}

.service-card .svc-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover .svc-icon {
    transform: scale(1.1);
}

.service-card .svc-icon i {
    font-size: 22px;
}

.service-card h5 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    transition: color 0.3s ease;
}

.service-card:hover h5 {
    color: #044278;
}

.svc-desc {
    font-size: 13px;
    color: #6b7280;
    margin: 8px 0 0;
    line-height: 1.5;
}

/* Unique colors per service */
.svc-physio .svc-icon { background: linear-gradient(135deg, #e8f0fe, #c5d9f7); }
.svc-physio .svc-icon i { color: #044278; }
.svc-chiro .svc-icon { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.svc-chiro .svc-icon i { color: #2e7d32; }
.svc-massage .svc-icon { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.svc-massage .svc-icon i { color: #c62828; }
.svc-ot .svc-icon { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
.svc-ot .svc-icon i { color: #e65100; }
.svc-psycho .svc-icon { background: linear-gradient(135deg, #ede7f6, #d1c4e9); }
.svc-psycho .svc-icon i { color: #5e35b1; }
.svc-acu .svc-icon { background: linear-gradient(135deg, #e0f7fa, #b2ebf2); }
.svc-acu .svc-icon i { color: #00838f; }
.svc-nutri .svc-icon { background: linear-gradient(135deg, #f1f8e9, #dcedc8); }
.svc-nutri .svc-icon i { color: #558b2f; }
.svc-specialty .svc-icon { background: linear-gradient(135deg, #fff8e1, #ffecb3); }
.svc-specialty .svc-icon i { color: #f57f17; }

/* ── Conditions list ── */
.condition-item {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e5e7eb;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.condition-item:hover {
    border-color: #044278;
    box-shadow: 0 4px 16px rgba(4, 66, 120, 0.08);
    transform: translateX(4px);
}

.condition-item .cond-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(4, 66, 120, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    transition: all 0.3s ease;
}

.condition-item:hover .cond-icon {
    background: #044278;
}

.condition-item .cond-icon i {
    font-size: 14px;
    color: #044278;
    transition: color 0.3s ease;
}

.condition-item:hover .cond-icon i {
    color: #fff;
}

.condition-item p {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    margin: 0;
}

/* ── Why Choose ── */
/* ── Why Choose Static Cards (Enhanced Design) ── */
.why-card-static {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); /* Soft initial shadow */
    transition: all 0.3s ease;
    height: 100%;
    padding: 32px 24px; /* More generous padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    border-top: 4px solid #044278; /* Brand accent line */
}

.why-card-static:hover {
    transform: translateY(-5px); /* Lift effect */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1); /* Deeper shadow on hover */
    border-color: #d1d5db;
}

.why-card-static .why-icon {
    margin-bottom: 20px;
    background: #f3f4f6; /* Subtle background for icon */
    width: 64px;
    height: 64px;
    border-radius: 50%; /* Circle icon background */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px; /* Icon size adjustment */
}

/* Ensure specific colors for icons override generic if needed but keep inline styles for now */

.why-card-static h4 {
    color: #111827;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 19px;
}

.why-card-static p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
}

.why-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.why-card-flip:hover .why-card-inner {
    transform: rotateY(180deg);
}

.why-card-front, .why-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.why-card-front {
    background-color: #fff;
}

.why-card-back {
    background-color: #044278; /* Brand color frame */
    color: white;
    transform: rotateY(180deg);
    border-color: #044278;
}

.why-card-front .why-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.why-card-front .why-icon i {
    font-size: 24px;
}

.why-card-front h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.why-card-back p {
    font-size: 14px;
    color: #fff;
    margin: 0;
    line-height: 1.6;
}

/* Why card color variants - apply to icon on front face */
.why-card-flip:nth-child(1) .why-icon { background: linear-gradient(135deg, #e8f0fe, #c5d9f7); }
.why-card-flip:nth-child(1) .why-icon i { color: #044278; }

.why-card-flip:nth-child(2) .why-icon { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.why-card-flip:nth-child(2) .why-icon i { color: #2e7d32; }

.why-card-flip:nth-child(3) .why-icon { background: linear-gradient(135deg, #ede7f6, #d1c4e9); }
.why-card-flip:nth-child(3) .why-icon i { color: #5e35b1; }

.why-card-flip:nth-child(4) .why-icon { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
.why-card-flip:nth-child(4) .why-icon i { color: #e65100; }

.why-card-flip:nth-child(5) .why-icon { background: linear-gradient(135deg, #e0f7fa, #b2ebf2); }
.why-card-flip:nth-child(5) .why-icon i { color: #00838f; }


.why-card-flip:nth-child(1):hover .why-icon i { animation: iconBounce 0.5s ease; }
.why-card-flip:nth-child(2):hover .why-icon i { animation: iconPulse 0.6s ease; }
.why-card-flip:nth-child(3):hover .why-icon i { animation: iconWiggle 0.5s ease; }
.why-card-flip:nth-child(4):hover .why-icon i { animation: iconFloat 0.6s ease; }
.why-card-flip:nth-child(5):hover .why-icon i { animation: iconSpin 0.6s ease; }

/* ── How it works ── */
.step-card {
    text-align: center;
    padding: 36px 24px;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #044278;
    color: #fff;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 4px 18px rgba(4, 66, 120, 0.25);
}

.step-card h4 {
    font-weight: 700;
    font-size: 17px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
}

.step-connector i {
    font-size: 24px;
    color: #044278;
    opacity: 0.4;
}

/* ── Service area ── */
.area-content {
    text-align: center;
}

.area-map-compact {
    max-width: 320px;
    margin: 0 auto 24px;
}

.area-map-compact img {
    width: 100%;
    height: auto;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.area-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    transition: all 0.2s ease;
}

.area-tag:hover {
    border-color: #044278;
    box-shadow: 0 2px 8px rgba(4, 66, 120, 0.1);
    transform: translateY(-1px);
}

.area-tag i {
    color: #044278;
    font-size: 11px;
}

.area-tag-more {
    background: #e8f0fe;
    border-color: #c5d9f7;
    color: #044278;
}

.area-expanding-text {
    color: #6b7280;
    font-size: 13px;
    margin-top: 8px;
    line-height: 1.5;
}

/* ── Section CTA ── */
.section-cta {
    text-align: center;
    margin-top: 36px;
}

.section-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #044278;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 32px;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.section-cta a:hover {
    background-color: #16296d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4, 66, 120, 0.25);
    color: #fff;
    text-decoration: none;
}

/* ── Navbar phone ── */
.nav-phone {
    color: #044278 !important;
    font-weight: 700;
    font-size: 15px;
}

.nav-phone i {
    margin-right: 4px;
}

/* ── Loading / Thank You ── */
#loadingDiv {
    display: none;
    text-align: center;
    padding: 40px;
}

#loadingDiv .spinner-border {
    width: 3rem;
    height: 3rem;
    color: #044278;
}

#divThankYou {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

#divThankYou h3 {
    font-family: 'Merriweather', serif;
    color: #044278;
    margin-bottom: 10px;
}

#divThankYou p {
    color: #6b7280;
}

/* ── Micro-interaction keyframes ── */
@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
    50% { transform: translateY(2px); }
    70% { transform: translateY(-3px); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.25); }
}

@keyframes iconWiggle {
    0%, 100% { transform: rotate(0deg); }
    20% { transform: rotate(-12deg); }
    40% { transform: rotate(12deg); }
    60% { transform: rotate(-6deg); }
    80% { transform: rotate(6deg); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.08); }
}

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* ============================================
   MOBILE RESPONSIVE — Tablet (≤991px)
   ============================================ */
@media (max-width: 991px) {
    .lp-hero {
        padding: 95px 0 50px;
    }

    .lp-hero h1 {
        font-size: 36px;
    }

    .hero-form-card {
        margin-top: 36px;
    }

    .lp-section {
        padding: 60px 0;
    }

    .lp-section-title {
        font-size: 26px;
    }

    .service-card {
        padding: 24px 14px;
    }

    .step-card {
        padding: 24px 16px;
    }

    .area-map-placeholder {
        min-height: 280px;
        margin-bottom: 28px;
    }

    .section-cta a {
        font-size: 14px;
        padding: 12px 24px;
    }
}

/* ============================================
   MOBILE RESPONSIVE — Phone (≤767px)
   ============================================ */
@media (max-width: 767px) {
    /* ── Hero ── */
    .lp-hero {
        padding: 85px 0 30px;
        text-align: center;
    }

    .lp-hero h1 {
        font-size: 28px;
        line-height: 1.35;
    }

    .lp-hero .hero-subtext {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .lp-hero .hero-body {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 24px;
        max-width: 100%;
    }

    .lp-hero .hero-cta-label {
        font-size: 13px;
    }

    .hero-ctas .btn-hero-primary {
        font-size: 16px;
        padding: 13px 28px;
        width: 100%;
        text-align: center;
        color: #fff !important;
    }

    /* ── Form Card ── */
    .hero-form-card {
        margin-top: 32px;
    }

    .hero-form-card .form-header {
        padding: 20px 20px 18px;
    }

    .hero-form-card .form-header h3 {
        font-size: 17px;
    }

    .hero-form-card .form-body {
        padding: 20px 18px 22px;
    }

    .hero-form-card .form-control,
    .hero-form-card .form-select {
        height: 46px;
        font-size: 16px; /* Prevents iOS zoom on focus */
        background-color: #f3f4f6;
        border-color: #e5e7eb;
        transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
    }

    /* Selects and date inputs: grey placeholder text until filled */
    .hero-form-card select.form-control,
    .hero-form-card input[type="date"].form-control {
        color: #b0b8c4;
    }

    .hero-form-card select.form-control.field-filled,
    .hero-form-card input[type="date"].form-control.field-filled {
        color: #1a1a1a;
    }

    .hero-form-card .form-control:focus,
    .hero-form-card .form-select:focus {
        background-color: #fff;
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
    }

    /* Turn white when field has a value (class toggled by JS) */
    .hero-form-card .form-control.field-filled,
    .hero-form-card .form-select.field-filled {
        background-color: #fff;
    }

    .hero-form-card textarea.form-control {
        font-size: 16px;
        background-color: #f3f4f6;
    }

    .hero-form-card textarea.form-control:focus,
    .hero-form-card textarea.form-control.field-filled {
        background-color: #fff;
    }

    .form-row-half {
        flex-direction: column;
        gap: 0;
    }

    .consent-wrap {
        padding: 10px 12px;
    }

    .hero-form-card .btn-form-submit {
        padding: 15px;
        font-size: 16px;
        border-radius: 10px;
    }

    /* ── Sections ── */
    .lp-section {
        padding: 44px 0;
    }

    .lp-section-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .lp-section-subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }

    /* ── Service cards ── */
    .service-card {
        padding: 22px 12px;
        margin-bottom: 14px;
        border-radius: 12px;
    }

    .service-card .svc-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        margin-bottom: 12px;
    }

    .service-card .svc-icon i {
        font-size: 20px;
    }

    .service-card h5 {
        font-size: 13px;
    }

    /* ── Conditions ── */
    .condition-item {
        padding: 12px 14px;
        margin-bottom: 8px;
    }

    .condition-item .cond-icon {
        width: 32px;
        height: 32px;
        margin-right: 12px;
    }

    .condition-item .cond-icon i {
        font-size: 12px;
    }

    .condition-item p {
        font-size: 14px;
    }

    /* ── Why Choose ── */
    .why-card {
        padding: 20px;
        margin-bottom: 14px;
    }

    .why-card .why-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        margin-right: 14px;
    }

    .why-card .why-icon i {
        font-size: 17px;
    }

    .why-card .why-text h4 {
        font-size: 15px;
    }

    .why-card .why-text p {
        font-size: 13px;
    }

    /* ── How It Works ── */
    .step-card {
        padding: 20px 12px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 18px;
        margin-bottom: 14px;
    }

    .step-card h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .step-card p {
        font-size: 13px;
    }

    .step-connector {
        display: none;
    }

    /* ── Service Area ── */
    .area-map-placeholder {
        min-height: auto;
        margin-bottom: 24px;
    }

    .area-list li {
        padding: 12px 14px;
        margin-bottom: 8px;
    }

    .area-list li span {
        font-size: 14px;
    }

    /* ── Section CTA ── */
    .section-cta {
        margin-top: 28px;
    }

    .section-cta a {
        font-size: 14px;
        padding: 12px 22px;
        width: 100%;
        justify-content: center;
    }

    /* ── Navbar phone on mobile ── */
    .nav-phone {
        font-size: 14px;
    }
}

/* ============================================
   MOBILE RESPONSIVE — Small Phone (≤480px)
   ============================================ */
@media (max-width: 480px) {
    .lp-hero {
        padding: 80px 0 24px;
    }

    .lp-hero h1 {
        font-size: 24px;
        line-height: 1.35;
    }

    .lp-hero .hero-subtext {
        font-size: 13px;
    }

    .lp-hero .hero-body {
        font-size: 14px;
    }

    .hero-form-card .form-header h3 {
        font-size: 16px;
    }

    .hero-form-card .form-header .form-subtitle {
        font-size: 12px;
    }

    .hero-form-card .form-body {
        padding: 16px 14px 18px;
    }

    .form-field label {
        font-size: 11px;
    }

    .lp-section-title {
        font-size: 20px;
    }

    .lp-section-subtitle {
        font-size: 13px;
        margin-bottom: 22px;
    }

    .why-card {
        padding: 16px;
    }

    .why-card .why-icon {
        width: 38px;
        height: 38px;
        margin-right: 12px;
    }

    .why-card .why-icon i {
        font-size: 15px;
    }

    .step-number {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

/* ── Testimonial Section ── */
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px 32px;
    box-shadow: 0 4px 24px rgba(4, 66, 120, 0.08);
    border: 1px solid rgba(4, 66, 120, 0.06);
    text-align: center;
    position: relative;
}

.testimonial-quote-icon {
    font-size: 32px;
    color: #044278;
    opacity: 0.2;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    font-style: italic;
    margin: 0 0 20px;
    border: none;
    padding: 0;
}

.testimonial-stars {
    margin-bottom: 12px;
}

.testimonial-stars i {
    color: #f59e0b;
    font-size: 16px;
    margin: 0 2px;
}

.testimonial-author {
    margin-top: 8px;
}

.testimonial-name {
    font-family: 'Merriweather', serif;
    font-size: 15px;
    font-weight: 700;
    color: #044278;
}

@media (max-width: 767px) {
    .testimonial-card {
        padding: 28px 20px 24px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.7;
    }
}
