/* ===== Variables ===== */
:root {
    --primary: #0c4a6e;
    --primary-mid: #0369a1;
    --primary-light: #e0f2fe;
    --accent: #4caf50;
    --accent-dark: #388e3c;
    --accent-glow: rgba(76,175,80,0.15);
    --dark: #0f172a;
    --text: #374151;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --white: #ffffff;
    --off-white: #f8fafc;
    --warm: #f0fdf4;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
    --shadow-accent: 0 8px 30px rgba(76,175,80,0.2);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --ease: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background: var(--white);
}

a { text-decoration: none; color: inherit; transition: color var(--ease); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Navigation ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 18px 0;
    transition: all var(--ease);
}

#navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 0;
    box-shadow: 0 1px 0 var(--border);
}

.nav-container { display: flex; align-items: center; justify-content: space-between; }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--white);
    font-size: 1.1rem;
}

.logo-text {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.95rem;
}
.logo-text span { color: var(--accent); }
#navbar.scrolled .nav-logo { color: var(--dark); }

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}

#navbar.scrolled .logo-img { height: 36px; }

.nav-menu { display: flex; align-items: center; gap: 2px; }

.nav-link {
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    border-radius: var(--radius-xs);
    transition: all var(--ease);
    letter-spacing: 0.3px;
}

.nav-link:hover { color: var(--white); }

.nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

#navbar.scrolled .nav-link { color: var(--text-light); }
#navbar.scrolled .nav-link:hover { color: var(--primary); }
#navbar.scrolled .nav-link.active { color: var(--primary); background: var(--primary-light); }

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--ease);
}

#navbar.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero — Centered Cinematic ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15,23,42,0.7) 0%, rgba(12,74,110,0.6) 40%, rgba(15,23,42,0.85) 100%),
        url('images/homecare.png') center/cover no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--dark), transparent);
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 160px 0 120px;
    max-width: 780px;
    margin: 0 auto;
}

.hero-tag-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(76,175,80,0.15);
    border: 1px solid rgba(76,175,80,0.3);
    color: #86efac;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.6rem, 5vw, 4rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero h1 em {
    font-style: italic;
    color: #86efac;
}

.hero-content > p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-domain {
    margin-top: 32px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--ease);
    font-family: inherit;
}

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

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

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

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
}

/* Hero Feature Cards — Horizontal strip at bottom */
.hero-features {
    position: relative;
    z-index: 3;
    padding-bottom: 0;
    margin-top: -40px;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.hero-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 28px;
    background: rgba(15,23,42,0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: background var(--ease);
}

.hero-card:hover { background: rgba(15,23,42,0.8); }

.hero-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(76,175,80,0.15);
    color: #86efac;
}

.hero-card strong { display: block; font-size: 0.9rem; color: var(--white); margin-bottom: 2px; }
.hero-card span { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* ===== Stats Bar — Glass overlap ===== */
.stats-bar {
    position: relative;
    z-index: 4;
    margin-top: -1px;
    background: var(--primary);
    padding: 0;
}

.stats-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stats-bar-item {
    padding: 28px 16px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.stats-bar-item:last-child { border-right: none; }

.stats-bar-num {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 4px;
}

.stats-bar-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); font-weight: 500; letter-spacing: 0.5px; }

.stats-bar-divider { display: none; }

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section-alt { background: var(--off-white); }

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

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    color: var(--accent-dark);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1.5px solid var(--accent);
    background: var(--accent-glow);
}

.section-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto;
}

/* ===== About ===== */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-left .section-tag { text-align: left; }
.about-left h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--dark);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.about-lead { font-size: 1.05rem; color: var(--text); margin-bottom: 16px; font-weight: 500; line-height: 1.8; }
.about-left p { color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }

.about-domain {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 10px 20px;
    background: var(--accent-glow);
    border: 1.5px solid var(--accent);
    color: var(--accent-dark);
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.5px;
    transition: all var(--ease);
}

.about-domain:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.about-domain svg { flex-shrink: 0; }

/* About Images */
.about-images {
    position: relative;
    max-width: 460px;
    margin: 0 auto;
}

.about-img-main {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.about-img-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    border-radius: var(--radius);
    object-fit: cover;
    border: 6px solid var(--white);
    box-shadow: var(--shadow);
}

.about-img-badge {
    position: absolute;
    top: -16px;
    left: -16px;
    background: var(--accent);
    color: var(--white);
    padding: 18px 22px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--shadow-accent);
}

.about-img-badge strong {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.about-img-badge span {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
}

/* ===== Welcome Grid ===== */
.welcome-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.welcome-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--ease);
    border: 1px solid var(--border);
    position: relative;
}

.welcome-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px 3px 0 0;
    opacity: 0;
    transition: opacity var(--ease);
}

.welcome-card:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
    border-color: transparent;
}

.welcome-card:hover::after { opacity: 1; }

.welcome-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--warm);
    color: var(--accent-dark);
    border-radius: 50%;
    margin: 0 auto 18px;
    transition: all var(--ease);
}

.welcome-card:hover .welcome-icon {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.1);
}

.welcome-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.welcome-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }
.welcome-card-wide { grid-column: 2 / 4; }

/* ===== Parallax Banners ===== */
.parallax-banner {
    position: relative;
    height: 360px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.8) 0%, rgba(12,74,110,0.7) 100%);
}

.parallax-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 24px;
}

.parallax-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.parallax-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    max-width: 500px;
}

/* ===== Why Choose Us — Left accent cards ===== */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.why-card {
    padding: 36px 32px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--ease);
    position: relative;
    overflow: hidden;
    padding-left: 40px;
}

.why-accent {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--border);
    transition: all var(--ease);
}

.why-card:hover .why-accent {
    background: linear-gradient(180deg, var(--accent), var(--primary-mid));
    width: 5px;
}

.why-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateX(4px);
}

.why-num {
    display: inline-block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent);
    background: var(--accent-glow);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.why-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* ===== Services — Clean minimal cards ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    border: 1px solid var(--border);
    transition: all var(--ease);
    position: relative;
}

.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.service-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--warm);
    color: var(--accent-dark);
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all var(--ease);
}

.service-card:hover .service-icon-wrap {
    background: var(--accent);
    color: var(--white);
    transform: rotate(-8deg) scale(1.1);
}

.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* Service highlight — green filled */
.service-card-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    border-color: transparent;
}

.service-card-highlight h3 { color: var(--white); }
.service-card-highlight p { color: rgba(255,255,255,0.75); }
.service-card-highlight .service-icon-wrap {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}
.service-card-highlight:hover .service-icon-wrap {
    background: var(--white);
    color: var(--primary);
}
.service-card-highlight:hover { box-shadow: 0 20px 60px rgba(12,74,110,0.3); }

/* ===== We Accept ===== */
.we-accept {
    margin-top: 48px;
    text-align: center;
    padding: 40px 32px;
    background: var(--off-white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.we-accept h3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.we-accept h3 svg { color: var(--accent); }

.accept-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.accept-tag {
    display: inline-block;
    padding: 10px 22px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    transition: all var(--ease);
}

.accept-tag:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

/* ===== Reviews ===== */
.reviews-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.review-featured {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px 44px;
    border: 1px solid var(--border);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow);
}

.review-quote-icon {
    position: absolute;
    top: 32px;
    right: 36px;
    color: var(--accent);
}

.review-stars { display: flex; gap: 3px; margin-bottom: 20px; }

.review-featured blockquote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 28px;
    font-style: italic;
}

.review-author { display: flex; align-items: center; gap: 14px; }

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.review-author strong { display: block; font-size: 0.95rem; color: var(--dark); }
.review-author span { font-size: 0.82rem; color: var(--text-light); }

.review-stats { display: flex; flex-direction: column; gap: 20px; }

.review-stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px;
    border: 1px solid var(--border);
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all var(--ease);
}

.review-stat-card:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }

.review-stat-num {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-dark);
    line-height: 1;
    margin-bottom: 12px;
}

.review-stat-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ===== CTA ===== */
.book-cta {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.book-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 50%, rgba(76,175,80,0.15) 0%, transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(3,105,161,0.2) 0%, transparent 40%);
}

.book-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.book-cta-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.book-cta-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    max-width: 520px;
    line-height: 1.7;
}

.book-cta-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ===== Contact ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-subtitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 28px;
}

.contact-details { display: flex; flex-direction: column; gap: 8px; }

.contact-detail-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: var(--accent-dark);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    transition: background var(--ease);
    border: 1px solid transparent;
}

.contact-detail-item:hover {
    background: var(--off-white);
    border-color: var(--border);
}

.contact-detail-item svg { flex-shrink: 0; margin-top: 2px; }
.contact-detail-item strong { display: block; font-size: 0.92rem; color: var(--dark); margin-bottom: 2px; }
.contact-detail-item span { font-size: 0.88rem; color: var(--text-light); }
.contact-detail-item a { color: var(--primary-mid); font-weight: 500; }
.contact-detail-item a:hover { color: var(--accent-dark); }

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

.contact-map iframe { display: block; width: 100%; height: 100%; min-height: 420px; }

/* ===== Floating Call ===== */
.floating-call {
    position: fixed;
    bottom: 28px;
    left: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--white);
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: var(--shadow-accent);
    z-index: 900;
    transition: all var(--ease);
}

.floating-call:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(76,175,80,0.35);
    color: var(--white);
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 72px 0 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
}

.footer-brand { max-width: 320px; }

.footer-brand .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--white);
    font-weight: 700;
}

.footer-brand .logo-text span { color: var(--accent); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }

.footer-links { display: flex; gap: 60px; }

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.footer-col a, .footer-col span {
    display: block;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 10px;
    transition: color var(--ease);
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.82rem;
}

.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.35); transition: color var(--ease); }
.footer-legal a:hover { color: var(--white); }

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--ease);
    box-shadow: var(--shadow);
    z-index: 900;
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}

/* ===== Modals ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--ease);
    padding: 20px;
}

.modal-overlay.open { opacity: 1; visibility: visible; }

.modal-content {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 680px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 48px;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform var(--ease);
}

.modal-overlay.open .modal-content { transform: translateY(0) scale(1); }

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--off-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--ease);
}

.modal-close:hover { background: var(--accent-glow); color: var(--accent-dark); }

.modal-content h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.8rem; color: var(--dark); margin-bottom: 8px; }
.modal-content h3 { font-size: 1.05rem; color: var(--dark); margin-top: 28px; margin-bottom: 10px; font-weight: 700; }
.modal-content p { color: var(--text-light); margin-bottom: 12px; line-height: 1.8; font-size: 0.92rem; }
.modal-content ul { padding-left: 20px; margin-bottom: 12px; list-style: disc; }
.modal-content li { color: var(--text-light); margin-bottom: 8px; font-size: 0.92rem; line-height: 1.7; }
.modal-content a { color: var(--accent-dark); font-weight: 500; }
.modal-content a:hover { text-decoration: underline; }

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Staggered delays */
.service-card:nth-child(2), .why-card:nth-child(2), .welcome-card:nth-child(2) { transition-delay: 0.08s; }
.service-card:nth-child(3), .why-card:nth-child(3), .welcome-card:nth-child(3) { transition-delay: 0.16s; }
.service-card:nth-child(4), .why-card:nth-child(4), .welcome-card:nth-child(4) { transition-delay: 0.24s; }
.service-card:nth-child(5), .welcome-card:nth-child(5) { transition-delay: 0.32s; }
.service-card:nth-child(6) { transition-delay: 0.4s; }
.service-card:nth-child(7) { transition-delay: 0.48s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .about-layout { grid-template-columns: 1fr; gap: 48px; }
    .reviews-layout { grid-template-columns: 1fr; }
    .review-stats { flex-direction: row; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-map { min-height: 360px; }
    .contact-map iframe { min-height: 360px; }
    .footer-links { gap: 40px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 28px 40px;
        gap: 2px;
        transition: right var(--ease);
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-menu.open { right: 0; }
    .nav-menu .nav-link {
        color: var(--text);
        width: 100%;
        padding: 14px 18px;
        font-size: 1rem;
        border-radius: var(--radius-xs);
    }
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active { color: var(--accent-dark); background: var(--warm); }

    .hero-inner { padding: 130px 0 80px; }
    .hero-features-grid { grid-template-columns: 1fr; }
    .hero-card { justify-content: center; }

    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .stats-bar-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .stats-bar-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }

    .section { padding: 72px 0; }
    .why-grid { grid-template-columns: 1fr; }
    .welcome-grid { grid-template-columns: 1fr 1fr; }
    .welcome-card-wide { grid-column: 1 / -1; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .review-stats { flex-direction: column; }

    .parallax-banner { height: 280px; background-attachment: scroll; }

    .book-cta-inner { flex-direction: column; text-align: center; }
    .book-cta-content p { max-width: 100%; }
    .book-cta-actions { justify-content: center; }

    .floating-call .call-label { display: none; }
    .floating-call { padding: 16px; border-radius: 50%; bottom: 20px; left: 20px; }

    .footer-top { flex-direction: column; gap: 40px; }
    .footer-brand { max-width: 100%; text-align: center; }
    .footer-brand .footer-logo { justify-content: center; }
    .footer-links { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .modal-content { padding: 32px 24px; }
    .back-to-top { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .welcome-grid { grid-template-columns: 1fr; }
    .welcome-card-wide { grid-column: auto; }
    .hero h1 { font-size: 2.2rem; }
    .hero-tag-row { gap: 6px; }
    .footer-links { flex-direction: column; gap: 32px; text-align: center; }
}

/* ===== Print ===== */
@media print {
    #navbar, .back-to-top, .floating-call, .modal-overlay, .hero-bg, .stats-bar, .parallax-banner { display: none; }
    .hero { min-height: auto; background: #fff; color: #000; }
    .hero h1, .hero-content > p { color: #000; }
    .section { padding: 30px 0; }
    .service-card, .why-card, .review-featured, .review-stat-card, .welcome-card { border: 1px solid #ddd; }
    .contact-map { display: none; }
}