/* ── Reset & Tokens ───────────────────────────────────── */

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

:root {
    --navy: #0C1E3A;
    --navy-mid: #14305E;
    --blue: #2468A8;
    --sky: #4A9AD8;
    --gold: #C49A0A;
    --gold-light: #E8B620;
    --gold-glow: rgba(196, 154, 10, 0.15);
    --white: #FFFFFF;
    --gray-50: #F5F5F5;
    --gray-100: #E8E8E8;
    --gray-400: #A0A0A0;
    --gray-600: #666666;
    --gray-800: #333333;
    --shadow: 0 4px 24px rgba(12, 30, 51, 0.08);
    --shadow-lg: 0 8px 40px rgba(12, 30, 51, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --nav-h: 80px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.2;
    color: var(--navy);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Fade-in animation ────────────────────────────────── */

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Nav ──────────────────────────────────────────────── */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    background: linear-gradient(to right, var(--navy) 0%, var(--navy-mid) 50%, var(--gold) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: transform 0.35s ease, box-shadow 0.3s;
}

.nav.hidden {
    transform: translateY(-100%);
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--gold-light);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 8px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: color 0.3s, background 0.3s;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Mobile overlay ───────────────────────────────────── */

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(12, 30, 58, 0.98);
    z-index: 999;
    align-items: center;
    justify-content: center;
}

.mobile-overlay.active {
    display: flex;
}

.mobile-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-links a {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    transition: color 0.3s, background 0.3s;
}

.mobile-links a:hover {
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.05);
}

/* ── Buttons ──────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    line-height: 1;
}

.btn-full {
    width: 100%;
}

.btn-accent {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-accent:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(196, 154, 10, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--gray-100);
}

.btn-outline:hover {
    border-color: var(--navy);
    background: rgba(12, 30, 58, 0.03);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* ── Hero ─────────────────────────────────────────────── */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 40%, var(--sky) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(74, 154, 216, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(196, 154, 10, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 30, 58, 0.25);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 120px 24px;
    max-width: 800px;
}

.hero-eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Sections ─────────────────────────────────────────── */

.section {
    padding: 100px 0;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* White sections get subtle gradient halos */
.section:not(.section-gray)::before {
    background:
        radial-gradient(ellipse at 10% 0%, rgba(74, 154, 216, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 100%, rgba(196, 154, 10, 0.05) 0%, transparent 50%);
}

/* Gray sections get a different subtle gradient */
.section-gray {
    background: var(--gray-50);
}

.section-gray::before {
    background:
        radial-gradient(ellipse at 80% 0%, rgba(196, 154, 10, 0.04) 0%, transparent 45%),
        radial-gradient(ellipse at 20% 100%, rgba(74, 154, 216, 0.05) 0%, transparent 45%);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--gray-600);
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--sky));
    border-radius: 2px;
    margin-bottom: 48px;
}

/* ── About ────────────────────────────────────────────── */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 28px 32px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.stat-num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── Work ─────────────────────────────────────────────── */

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
    gap: 24px;
}

.project-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 32px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.project-tag {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-glow);
    padding: 4px 10px;
    border-radius: 6px;
    width: fit-content;
}

.project-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.project-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    flex: 1;
}

.project-link {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--blue);
    transition: color 0.2s;
}

.project-card:hover .project-link {
    color: var(--gold);
}

/* ── Packages ─────────────────────────────────────────── */

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.package-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 36px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 28px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, var(--white) 0%, rgba(196, 154, 10, 0.04) 50%, var(--white) 100%);
}

.package-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 20px;
    white-space: nowrap;
}

.package-header h3 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin-bottom: 10px;
}

.package-price {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.04em;
    line-height: 1;
}

.package-price small {
    font-size: 0.55em;
    font-weight: 600;
}

.package-desc {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-top: 8px;
    line-height: 1.4;
}

.package-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.package-features li {
    font-size: 0.9rem;
    color: var(--gray-600);
    padding-left: 24px;
    position: relative;
    line-height: 1.4;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--gold);
}

.packages-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 640px;
    margin: 32px auto 0;
}

/* Care Plan */

.care-plan {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.care-plan:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.care-plan-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.care-plan h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.care-plan p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.care-plan-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.care-plan-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.care-plan-amount small {
    font-size: 0.45em;
    font-weight: 500;
    color: var(--gray-400);
}

/* ── Contact ──────────────────────────────────────────── */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
}

.contact-card h4 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 6px;
}

.contact-card span {
    font-size: 1rem;
    color: var(--gray-800);
    font-weight: 500;
}

.contact-form {
    background: linear-gradient(135deg, var(--white) 0%, #F8F6F0 50%, var(--white) 100%);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-800);
    letter-spacing: 0.02em;
}

input,
select,
textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--gray-50);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

input::placeholder,
textarea::placeholder {
    color: var(--gray-400);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(36, 104, 168, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23A0A0A0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

/* ── Footer ───────────────────────────────────────────── */

/* ── Blog ─────────────────────────────────────────────── */

.blog-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 40%, var(--sky) 100%);
    padding: calc(var(--nav-h) + 60px) 0 60px;
    text-align: center;
}

.blog-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 12px;
}

.blog-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
    gap: 24px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 32px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.blog-card .blog-tag {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-glow);
    padding: 4px 10px;
    border-radius: 6px;
    width: fit-content;
}

.blog-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
}

.blog-card p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.6;
    flex: 1;
}

.blog-card .read-more {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--blue);
}

.blog-card:hover .read-more {
    color: var(--gold);
}

/* Blog post page */
.blog-post {
    padding: calc(var(--nav-h) + 48px) 0 80px;
}

.blog-post .container {
    max-width: 760px;
}

.blog-post-header {
    margin-bottom: 40px;
}

.blog-post-header .blog-tag {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-glow);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.blog-post-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.blog-post-header .blog-meta {
    font-size: 0.88rem;
    color: var(--gray-400);
}

.blog-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 40px 0 16px;
}

.blog-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 32px 0 12px;
}

.blog-content p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-content ul, .blog-content ol {
    margin: 0 0 20px 24px;
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.8;
}

.blog-content li {
    margin-bottom: 8px;
}

.blog-content a {
    color: var(--blue);
    text-decoration: underline;
}

.blog-content a:hover {
    color: var(--gold);
}

.blog-content blockquote {
    border-left: 4px solid var(--gold);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--gray-50);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.blog-content blockquote p {
    margin-bottom: 0;
    font-style: italic;
}

.blog-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--sky) 100%);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
    margin-top: 48px;
}

.blog-cta h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.blog-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.blog-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    margin-bottom: 32px;
}

.blog-back:hover {
    color: var(--gold);
}

/* ── Footer ───────────────────────────────────────────── */

.footer {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--blue) 100%);
    padding: 32px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 768px) {
    :root {
        --nav-h: 64px;
    }

    .section {
        padding: 56px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat {
        flex: 1;
        min-width: 120px;
        padding: 20px;
    }

    .stat-num {
        font-size: 2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .package-card.featured {
        order: -1;
    }

    .care-plan-inner {
        flex-direction: column;
        gap: 20px;
    }

    .care-plan-right {
        width: 100%;
        justify-content: space-between;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-info {
        flex-direction: row;
        gap: 16px;
    }

    .contact-info .contact-card {
        flex: 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 100px 20px 80px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .about-stats {
        flex-direction: column;
    }

    .contact-info {
        flex-direction: column;
    }

    .care-plan-right {
        flex-direction: column;
        gap: 12px;
    }

    .care-plan-right .btn {
        width: 100%;
    }
}
