/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #e0f2fe;
    --secondary: #0f172a;
    --text: #334155;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --border: #e2e8f0;
    --success: #22c55e;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
    --shadow-lg: 0 10px 25px rgba(0,0,0,.1), 0 6px 10px rgba(0,0,0,.08);
    --transition: 0.2s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ===== Top Bar ===== */
.top-bar {
    background: var(--secondary);
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar a { color: var(--primary); font-weight: 500; }
.top-bar a:hover { text-decoration: underline; }

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary);
}
.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}
.nav {
    display: flex;
    gap: 32px;
}
.nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    transition: color var(--transition);
}
.nav a:hover { color: var(--primary); }
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-sm { font-size: 14px; padding: 8px 18px; }
.btn-lg { font-size: 16px; padding: 14px 28px; }
.btn-block { width: 100%; }
.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary-light);
}

/* ===== Hero ===== */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-block;
    background: #fff;
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 20px;
}
.hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.15;
    margin-bottom: 20px;
}
.highlight { color: var(--primary); }
.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 520px;
}
.hero-cta { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
}
.trust-item { text-align: center; }
.trust-item strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary);
}
.trust-item span { font-size: 13px; color: var(--text-light); }
.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}
.hero-image { display: flex; justify-content: center; align-items: center; }

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
}
.section-header p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Services ===== */
.services { padding: 80px 0; background: var(--bg); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}
.service-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ===== How It Works ===== */
.how-it-works { padding: 80px 0; background: var(--bg-alt); }
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.step-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    flex: 1;
    max-width: 300px;
}
.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    margin: 0 auto 20px;
}
.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}
.step-card p { font-size: 14px; color: var(--text-light); }
.step-connector { flex-shrink: 0; }

/* ===== Why Us ===== */
.why-us { padding: 80px 0; background: var(--bg); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-card {
    padding: 28px;
    border-radius: var(--radius);
    background: var(--bg-alt);
    border: 1px solid var(--border);
}
.why-icon {
    font-size: 24px;
    margin-bottom: 16px;
}
.why-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}
.why-card p { font-size: 14px; color: var(--text-light); }

/* ===== Pricing ===== */
.pricing { padding: 80px 0; background: var(--bg-alt); }

/* Main 3 cards */
.price-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.price-card {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    transition: all var(--transition);
}
.price-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.price-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    position: relative;
}
.price-card.featured::before {
    content: 'Most Booked';
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.price-card-header {
    margin-bottom: 12px;
}
.price-card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}
.price-tag {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}
.price-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Extra Services */
.extras-section {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 32px;
}
.extras-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
}
.extras-title span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}
.extras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.extra-item {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
}
.extra-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
}
.extra-prices {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.extra-prices span {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
}
.extra-prices small {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
    margin-left: 4px;
}

/* Care Plans (GDA, Critical, Cancer) */
.care-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}
.care-plan-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}
.care-plan-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
}
.plan-options {
    margin-bottom: 20px;
}
.plan-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--text);
}
.plan-row:last-child { border-bottom: none; }
.plan-row strong {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-dark);
}

.pricing-note {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-light);
}

/* ===== Testimonials ===== */
.testimonials { padding: 80px 0; background: var(--bg); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}
.stars {
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.testimonial-card p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}
.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--secondary);
}
.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

/* ===== FAQ ===== */
.faq { padding: 80px 0; background: var(--bg-alt); }
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    padding: 20px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
    font-size: 22px;
    font-weight: 400;
    color: var(--primary);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer p {
    padding-bottom: 20px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== Booking ===== */
.booking { padding: 80px 0; background: var(--secondary); color: #fff; }
.booking-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.booking-info h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}
.booking-info > p {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 32px;
    line-height: 1.7;
}
.booking-features { margin-bottom: 32px; }
.booking-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    padding: 8px 0;
}
.bf-icon {
    color: var(--success);
    font-weight: 700;
    font-size: 18px;
}
.booking-contact { margin-top: 24px; }
.booking-contact p { font-size: 14px; color: #94a3b8; margin-bottom: 8px; }
.booking-phone {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}
.booking-form {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    color: var(--text);
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font-family: inherit;
    font-size: 15px;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-alt);
    color: var(--text);
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}
.form-group textarea { resize: vertical; }
.form-note {
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-light);
}

/* ===== Areas ===== */
.areas { padding: 60px 0; background: var(--bg); }
.areas-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}
.area-tag {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}

/* ===== Footer ===== */
.footer {
    background: var(--secondary);
    color: #cbd5e1;
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #1e293b;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo { color: #fff; }
.footer-brand p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    background: #1e293b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    color: #fff;
}
.footer-links h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.footer-links a,
.footer-address {
    display: block;
    font-size: 14px;
    color: #94a3b8;
    padding: 4px 0;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: #64748b;
}

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37,211,102,.4);
    z-index: 999;
    transition: all var(--transition);
    animation: pulse-whatsapp 2s infinite;
}
.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,.5);
}
@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 12px rgba(37,211,102,.4); }
    50% { box-shadow: 0 4px 20px rgba(37,211,102,.6); }
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 96px;
    width: 44px;
    height: 44px;
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 999;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--primary);
}

/* ===== Logo ===== */
.logo-img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
}
.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary);
}

/* ===== Hero Image ===== */
.hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* ===== Service Cards with Images ===== */
.service-card {
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.service-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.service-card:hover .service-card-img img {
    transform: scale(1.05);
}
.service-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card-body p {
    flex: 1;
}
.service-card-body .btn {
    align-self: flex-start;
    margin-top: 12px;
}

/* ===== Why Us — Image + Content Layout ===== */
.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}
.why-us-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.why-us-content .section-badge { display: inline-block; }
.why-us-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 24px;
}
.why-us .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
}
.why-us .why-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}
.why-us .why-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 0;
    font-size: 18px;
}
.why-us .why-card h3 {
    font-size: 15px;
    margin-bottom: 4px;
}
.why-us .why-card p {
    font-size: 13px;
    line-height: 1.5;
}

/* ===== Testimonials Background ===== */
.testimonials-bg {
    background-size: cover;
    background-position: center;
    position: relative;
}
.testimonials-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.92);
}

/* ===== Partner Page ===== */
.partner-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}
.partner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,.85), rgba(14,165,233,.6));
}
.partner-hero .container { position: relative; z-index: 1; }
.partner-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}
.partner-hero p {
    font-size: 18px;
    opacity: .9;
    max-width: 600px;
    margin: 0 auto;
}
.partner-page { padding: 80px 0; }
.partner-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}
.partner-benefit {
    text-align: center;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-alt);
}
.partner-benefit .benefit-icon {
    font-size: 36px;
    margin-bottom: 12px;
}
.partner-benefit h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}
.partner-benefit p {
    font-size: 14px;
    color: var(--text-light);
}
.partner-form-section {
    max-width: 700px;
    margin: 0 auto;
}
.partner-form-section h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 32px;
}
.partner-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ===== Legal Page (Terms, Privacy) ===== */
.legal-page {
    padding: 120px 0 80px;
    min-height: 60vh;
}
.legal-page h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
}
.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 32px;
}
.legal-page h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-light);
}
.legal-page h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--secondary);
    margin-top: 24px;
    margin-bottom: 10px;
}
.legal-page p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 16px;
}
.legal-page ul {
    margin: 0 0 16px 24px;
    color: var(--text);
    line-height: 1.8;
}
.legal-page ul li { margin-bottom: 8px; }
.legal-page a { color: var(--primary); text-decoration: underline; }
.legal-page a:hover { color: var(--primary-dark); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 38px; }
    .services-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .extras-grid { grid-template-columns: repeat(2, 1fr); }
    .care-plans { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .why-us-inner { grid-template-columns: 1fr; }
    .why-us-image { max-height: 300px; }
    .why-us .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .top-bar-inner { font-size: 12px; }
    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
    }
    .nav.active { display: flex; }
    .hamburger { display: flex; }
    .header-actions .btn { display: none; }

    .hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .hero h1 { font-size: 32px; }
    .hero-image { order: -1; }
    .hero-img { max-width: 100%; border-radius: 16px; }
    .hero-trust { gap: 16px; }
    .trust-item strong { font-size: 20px; }

    .steps-grid { flex-direction: column; }
    .step-connector { transform: rotate(90deg); }
    .step-card { max-width: 100%; }

    .services-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .price-cards { grid-template-columns: 1fr; }
    .extras-grid { grid-template-columns: 1fr; }
    .care-plans { grid-template-columns: 1fr; }
    .extras-section { padding: 20px; }
    .price-tag { font-size: 36px; }

    .why-us .why-grid { grid-template-columns: 1fr; }
    .why-us-content h2 { font-size: 26px; }

    .booking-inner { grid-template-columns: 1fr; gap: 40px; }
    .section-header h2 { font-size: 28px; }
    .booking-info h2 { font-size: 28px; }

    .footer-grid { grid-template-columns: 1fr; }

    .partner-benefits { grid-template-columns: 1fr; }
    .partner-hero h1 { font-size: 28px; }
    .partner-form { padding: 24px; }
    .form-row { grid-template-columns: 1fr; }

    .legal-page { padding: 100px 0 60px; }
    .legal-page h1 { font-size: 28px; }
    .legal-page h2 { font-size: 19px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 26px; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .hero-trust { flex-direction: column; gap: 12px; }
    .trust-divider { width: 40px; height: 1px; }
    .top-bar-inner { flex-direction: column; gap: 4px; text-align: center; }
    .logo-text { font-size: 18px; }
    .price-card { padding: 24px 20px; }
    .price-tag { font-size: 32px; }
    .care-plan-card { padding: 20px; }
}
