/* ================================================================
   COMPANION CARETAKER — Shared Stylesheet
   Inspired by Oldero Senior Care Template
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ── Variables ─────────────────────────────────────────────────── */
:root {
    --teal: #2ab4b4;
    --teal-dark: #1e9090;
    --teal-light: #e6f7f7;
    --navy: #0d1b2a;
    --navy-mid: #1a2e42;
    --slate: #4a5568;
    --muted: #718096;
    --light-bg: #f7f9fc;
    --white: #ffffff;
    --border: #e8ecf0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 40px rgba(0,0,0,0.12);
    --radius: 10px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --section-py: 90px;
}

/* ── Reset & Base ───────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--slate);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    line-height: 1.25;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

h3 {
    font-size: 1.35rem;
}

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1rem;
}

    p:last-child {
        margin-bottom: 0;
    }

a {
    color: var(--teal);
    text-decoration: none;
    transition: var(--transition);
}

    a:hover {
        color: var(--teal-dark);
    }

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* ── Hero ── */
.hero {
    margin-top: 76px;
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(13,27,42,0.83) 0%, rgba(13,42,58,0.79) 40%, rgba(19,56,77,0.81) 100%), url('https://images.pexels.com/photos/18968358/pexels-photo-18968358.jpeg?auto=compress&cs=tinysrgb&w=1920&q=80') center/cover no-repeat;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 75% 40%, rgba(42,180,180,0.22) 0%, transparent 55%), radial-gradient(ellipse at 20% 80%, rgba(42,180,180,0.1) 0%, transparent 40%);
    }

.hero-geo {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

    .hero-geo::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        border: 1px solid rgba(42,180,180,0.12);
        right: -150px;
        top: -100px;
    }

    .hero-geo::after {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        border: 1px solid rgba(42,180,180,0.08);
        right: 50px;
        top: 80px;
    }

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(42,180,180,0.15);
    border: 1px solid rgba(42,180,180,0.3);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
}

    .hero-eyebrow span {
        font-size: 0.82rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--teal);
    }

.hero-dot {
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    line-height: 1.15;
    margin-bottom: 24px;
}

    .hero h1 em {
        font-style: italic;
        color: var(--teal);
    }

.hero-sub {
    color: rgba(255,255,255,0.72);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 56px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}

.trust-check {
    width: 22px;
    height: 22px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .trust-check svg {
        width: 11px;
        height: 11px;
        stroke: white;
        fill: none;
        stroke-width: 3;
    }
/* ── About Tabs ── */
.about-img-wrap {
    position: relative;
}
/* ── Stats row ── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--border);
}

    .stats-row .stat-block {
        padding: 36px 20px;
        border-right: 1px solid var(--border);
    }

        .stats-row .stat-block:last-child {
            border-right: none;
        }
/* ── Mission cards on about ── */
.mission-icon {
    width: 56px;
    height: 56px;
    background: var(--teal-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

    .mission-icon svg {
        width: 26px;
        height: 26px;
        stroke: var(--teal);
        fill: none;
        stroke-width: 1.8;
        transition: var(--transition);
    }

/* ── Container ─────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

    .btn-primary:hover {
        background: var(--teal-dark);
        border-color: var(--teal-dark);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(42,180,180,0.35);
    }

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}

    .btn-outline:hover {
        background: var(--white);
        color: var(--navy);
        border-color: var(--white);
        transform: translateY(-2px);
    }

.btn-outline-teal {
    background: transparent;
    color: var(--teal);
    border-color: var(--teal);
}

    .btn-outline-teal:hover {
        background: var(--teal);
        color: var(--white);
        transform: translateY(-2px);
    }

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

    .btn-navy:hover {
        background: var(--navy-mid);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

/* ── Section Labels ─────────────────────────────────────────────── */
.section-label {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    background: var(--teal-light);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--muted);
    max-width: 580px;
    font-size: 1.05rem;
    margin-bottom: 0;
}

.section-header {
    margin-bottom: 56px;
}

    .section-header.center {
        text-align: center;
    }

        .section-header.center .section-subtitle {
            margin: 0 auto;
        }

.divider {
    width: 56px;
    height: 3px;
    background: var(--teal);
    border-radius: 2px;
    margin: 12px 0 24px;
}

/* ── Header / Navigation ────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--teal);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .logo-icon svg {
        width: 24px;
        height: 24px;
    }

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

    .logo-text span {
        color: var(--teal);
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

    .nav-links a {
        font-size: 0.92rem;
        font-weight: 500;
        color: var(--navy);
        padding: 8px 14px;
        border-radius: 6px;
        transition: var(--transition);
    }

        .nav-links a:hover, .nav-links a.active {
            color: var(--teal);
            background: var(--teal-light);
        }

.nav-cta {
    margin-left: 16px;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
}

    .nav-hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--navy);
        border-radius: 2px;
        transition: var(--transition);
    }

.mobile-menu {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    z-index: 998;
    flex-direction: column;
    gap: 4px;
}

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        display: block;
        padding: 12px 16px;
        color: var(--navy);
        font-weight: 500;
        border-radius: 8px;
    }

        .mobile-menu a:hover, .mobile-menu a.active {
            color: var(--teal);
            background: var(--teal-light);
        }

    .mobile-menu .btn {
        margin-top: 12px;
        justify-content: center;
    }

/* ── Page Hero / Banner ─────────────────────────────────────────── */
.page-hero {
    margin-top: 76px;
    background: linear-gradient(135deg, rgba(13,27,42,0.88) 0%, rgba(26,46,66,0.85) 50%, rgba(26,58,74,0.87) 100%), url('https://images.pexels.com/photos/271353/pexels-photo-271353.jpeg?auto=compress&cs=tinysrgb&w=1600&q=80') center/cover no-repeat;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    .page-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 70% 50%, rgba(42,180,180,0.15) 0%, transparent 60%);
    }

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
}

    .breadcrumb a {
        color: var(--teal);
    }

        .breadcrumb a:hover {
            color: white;
        }

    .breadcrumb .sep {
        color: rgba(255,255,255,0.4);
    }

/* ── Cards ──────────────────────────────────────────────────────── */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}

    .card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

/* ── How We Work ────────────────────────────────────────────────── */
.how-card {
    text-align: center;
    padding: 40px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

    .how-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: var(--teal);
    }

.how-icon {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    background: var(--teal-light);
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.how-card:hover .how-icon {
    background: var(--teal);
}

    .how-card:hover .how-icon svg {
        stroke: white;
    }

.how-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: var(--transition);
}

.how-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.how-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
}

/* ── Service Cards ──────────────────────────────────────────────── */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--teal);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: var(--teal);
    }

        .service-card:hover::before {
            transform: scaleX(1);
        }

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--teal-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--teal);
}

    .service-card:hover .service-icon svg {
        stroke: white;
    }

.service-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: var(--transition);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.service-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--teal);
}

    .learn-more:hover {
        gap: 10px;
    }

/* ── Team Cards ─────────────────────────────────────────────────── */
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}

    .team-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

.team-photo {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--teal-light) 0%, #c8eaea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo-placeholder {
    width: 90px;
    height: 90px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    box-shadow: 0 4px 16px rgba(42,180,180,0.3);
}

    .team-photo-placeholder svg {
        width: 44px;
        height: 44px;
        stroke: white;
        fill: none;
        stroke-width: 1.5;
    }

.team-info {
    padding: 20px 24px;
}

    .team-info h4 {
        font-size: 1.05rem;
        margin-bottom: 4px;
        color: var(--navy);
    }

.team-specialty {
    font-size: 0.85rem;
    color: var(--teal);
    font-weight: 500;
    margin-bottom: 16px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--muted);
}

    .social-btn:hover {
        background: var(--teal);
        color: white;
        transform: translateY(-2px);
    }

    .social-btn svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
    }

/* ── Blog Cards ─────────────────────────────────────────────────── */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

.blog-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-thumb-1 {
    background: linear-gradient(135deg, #1a3a4a 0%, #0d2435 100%);
}

.blog-thumb-2 {
    background: linear-gradient(135deg, #2ab4b4 0%, #1e7a7a 100%);
}

.blog-thumb-3 {
    background: linear-gradient(135deg, #1a2e42 0%, #0d1b2a 100%);
}

.blog-thumb-4 {
    background: linear-gradient(135deg, #2a5f5f 0%, #1a3a3a 100%);
}

.blog-thumb-5 {
    background: linear-gradient(135deg, #0d3050 0%, #0a1f35 100%);
}

.blog-thumb-6 {
    background: linear-gradient(135deg, #1e5f5f 0%, #0d3a3a 100%);
}

.blog-thumb-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .blog-thumb-icon svg {
        width: 26px;
        height: 26px;
        stroke: rgba(255,255,255,0.8);
        fill: none;
        stroke-width: 1.5;
    }

.blog-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--teal);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
}

.blog-body {
    padding: 24px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 12px;
}

    .blog-meta span {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .blog-meta svg {
        width: 13px;
        height: 13px;
        stroke: var(--teal);
        fill: none;
        stroke-width: 2;
    }

.blog-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

    .blog-card h3 a {
        color: var(--navy);
    }

        .blog-card h3 a:hover {
            color: var(--teal);
        }

.blog-card p {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Testimonials ───────────────────────────────────────────────── */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    position: relative;
}

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 20px;
        right: 28px;
        font-family: 'Playfair Display', serif;
        font-size: 6rem;
        line-height: 1;
        color: var(--teal-light);
        font-style: italic;
    }

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.star {
    color: #f59e0b;
    font-size: 1rem;
}

.testimonial-card p {
    color: var(--slate);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
}

.author-info h5 {
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: var(--navy);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.author-info span {
    font-size: 0.82rem;
    color: var(--muted);
}

/* ── FAQ Accordion ──────────────────────────────────────────────── */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 12px;
    transition: var(--transition);
}

    .faq-item.open {
        border-color: var(--teal);
    }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
    background: var(--white);
    transition: var(--transition);
    user-select: none;
}

.faq-item.open .faq-question {
    background: var(--teal);
    color: white;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-item.open .faq-toggle {
    background: rgba(255,255,255,0.2);
}

.faq-toggle svg {
    width: 14px;
    height: 14px;
    stroke: var(--navy);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle svg {
    stroke: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

/* ── Stats ──────────────────────────────────────────────────────── */
.stat-block {
    text-align: center;
    padding: 32px 24px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.05em;
}

/* ── Process Steps ──────────────────────────────────────────────── */
.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

    .process-step:hover {
        border-color: var(--teal);
        box-shadow: var(--shadow-md);
    }

.step-num {
    width: 52px;
    height: 52px;
    background: var(--teal);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.step-content p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ── Progress Bar ───────────────────────────────────────────────── */
.progress-item {
    margin-bottom: 20px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
}

.progress-track {
    height: 6px;
    background: var(--border);
    border-radius: 50px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--teal);
    border-radius: 50px;
}

/* ── Image Placeholder ──────────────────────────────────────────── */
.img-placeholder {
    width: 100%;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--teal-light) 0%, #c8eaea 40%, #e6f7f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    position: relative;
    overflow: hidden;
}

    .img-placeholder::before {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(42,180,180,0.12);
        top: -40px;
        right: -40px;
    }

    .img-placeholder::after {
        content: '';
        position: absolute;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background: rgba(42,180,180,0.08);
        bottom: -30px;
        left: -30px;
    }

.img-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

    .img-inner svg {
        width: 80px;
        height: 80px;
        stroke: var(--teal);
        fill: none;
        stroke-width: 1.2;
        opacity: 0.6;
        margin-bottom: 12px;
    }

    .img-inner p {
        font-size: 0.85rem;
        color: var(--teal);
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin: 0;
    }

/* ── Badge Float ────────────────────────────────────────────────── */
.badge-float {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--white);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

    .badge-float .badge-icon {
        width: 44px;
        height: 44px;
        background: var(--teal);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .badge-float .badge-icon svg {
            width: 22px;
            height: 22px;
            stroke: white;
            fill: none;
            stroke-width: 1.8;
        }

    .badge-float .badge-num {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--navy);
        line-height: 1;
    }

    .badge-float .badge-text {
        font-size: 0.78rem;
        color: var(--muted);
        font-weight: 500;
    }

/* ── CTA Banner ─────────────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at center, rgba(42,180,180,0.2) 0%, transparent 65%);
    }

    .cta-banner h2 {
        color: var(--white);
        margin-bottom: 16px;
        position: relative;
    }

    .cta-banner p {
        color: rgba(255,255,255,0.7);
        margin-bottom: 32px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
    }

    .cta-banner .btn {
        position: relative;
    }

/* ── Contact Form ───────────────────────────────────────────────── */
.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-size: 0.88rem;
        font-weight: 600;
        color: #e6f7f7;
        margin-bottom: 7px;
    }

    .form-group input, .form-group textarea, .form-group select {
        width: 100%;
        padding: 13px 18px;
        border: 1.5px solid var(--border);
        border-radius: var(--radius);
        font-family: 'DM Sans', sans-serif;
        font-size: 0.95rem;
        color: var(--navy);
        background: var(--white);
        transition: var(--transition);
        outline: none;
        resize: vertical;
    }

        .form-group input:focus, .form-group textarea:focus {
            border-color: var(--teal);
            box-shadow: 0 0 0 3px rgba(42,180,180,0.12);
        }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ── Info Cards ─────────────────────────────────────────────────── */
.info-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-bottom: 16px;
    transition: var(--transition);
}

    .info-card:hover {
        border-color: var(--teal);
        box-shadow: var(--shadow-md);
    }

.info-card-icon {
    width: 50px;
    height: 50px;
    background: var(--teal-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-card-icon svg {
        width: 22px;
        height: 22px;
        stroke: var(--teal);
        fill: none;
        stroke-width: 1.8;
    }

.info-card h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: var(--navy);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.info-card p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ── Map Placeholder ────────────────────────────────────────────── */
.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #ddeaea 0%, #c8e0e0 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 2px dashed rgba(42,180,180,0.3);
}

    .map-placeholder svg {
        width: 56px;
        height: 56px;
        stroke: var(--teal);
        fill: none;
        stroke-width: 1.5;
        opacity: 0.6;
    }

/* ── Partners Strip ─────────────────────────────────────────────── */
.partners-strip {
    background: var(--light-bg);
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.partners-label {
    text-align: center;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 32px;
}

.partners-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 28px;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.05em;
    transition: var(--transition);
}

    .partner-logo:hover {
        border-color: var(--teal);
        color: var(--teal);
        box-shadow: var(--shadow-sm);
    }

/* ── Tabs ────────────────────────────────────────────────────────── */
.tabs-header {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 24px;
}

.tab-btn {
    padding: 10px 22px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted);
    background: none;
    border: none;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}

    .tab-btn:hover {
        color: var(--teal);
    }

    .tab-btn.active {
        color: var(--teal);
        border-bottom-color: var(--teal);
    }

.tab-panel {
    display: none;
}

    .tab-panel.active {
        display: block;
    }

/* ── Sidebar ────────────────────────────────────────────────────── */
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

    .sidebar-widget h4 {
        font-size: 1.05rem;
        margin-bottom: 20px;
        padding-bottom: 14px;
        border-bottom: 2px solid var(--border);
        position: relative;
    }

        .sidebar-widget h4::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--teal);
        }

.recent-post {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

    .recent-post:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.recent-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    flex-shrink: 0;
    background: var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .recent-thumb svg {
        width: 24px;
        height: 24px;
        stroke: var(--teal);
        fill: none;
        stroke-width: 1.5;
    }

.recent-post h5 {
    font-size: 0.88rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 4px;
}

    .recent-post h5 a {
        color: var(--navy);
    }

        .recent-post h5 a:hover {
            color: var(--teal);
        }

.recent-date {
    font-size: 0.78rem;
    color: var(--muted);
}

.category-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

    .category-list li:last-child {
        border-bottom: none;
    }

.category-list a {
    color: var(--slate);
    font-weight: 500;
}

    .category-list a:hover {
        color: var(--teal);
    }

.category-count {
    background: var(--teal-light);
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 50px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: var(--light-bg);
    border: 1px solid var(--border);
    color: var(--slate);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 50px;
    transition: var(--transition);
}

    .tag:hover {
        background: var(--teal);
        color: white;
        border-color: var(--teal);
    }

/* ── Pagination ─────────────────────────────────────────────────── */
.pagination {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 48px;
}

.page-num {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    background: var(--white);
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}

    .page-num:hover, .page-num.active {
        background: var(--teal);
        color: white;
        border-color: var(--teal);
    }

/* ── Checklist ──────────────────────────────────────────────────── */
.check-list {
    list-style: none;
    margin-bottom: 24px;
}

    .check-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 7px 0;
        font-size: 0.95rem;
        color: var(--slate);
    }

        .check-list li::before {
            content: '';
            width: 20px;
            height: 20px;
            background: var(--teal);
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 2px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
            background-size: 12px;
            background-position: center;
            background-repeat: no-repeat;
        }

/* ── Footer ─────────────────────────────────────────────────────── */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
}

.footer-top {
    padding: 80px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 48px;
}

.footer-col h4 {
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

    .footer-col h4::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 32px;
        height: 2px;
        background: var(--teal);
    }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    text-decoration: none;
}

    .footer-logo .logo-text {
        color: var(--white);
        font-size: 1.3rem;
    }

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.6);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.fsocial-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

    .fsocial-btn svg {
        width: 15px;
        height: 15px;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.8;
    }

    .fsocial-btn:hover {
        background: var(--teal);
        border-color: var(--teal);
        color: white;
    }

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-links a {
        color: rgba(255,255,255,0.65);
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: var(--transition);
    }

        .footer-links a::before {
            content: '›';
            color: var(--teal);
            font-size: 1.2rem;
            line-height: 1;
        }

        .footer-links a:hover {
            color: var(--teal);
            padding-left: 4px;
        }

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

    .footer-contact-item .fi-icon {
        width: 32px;
        height: 32px;
        background: rgba(42,180,180,0.15);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .footer-contact-item svg {
        width: 15px;
        height: 15px;
        stroke: var(--teal);
        fill: none;
        stroke-width: 1.8;
    }

    .footer-contact-item a {
        color: rgba(255,255,255,0.65);
    }

        .footer-contact-item a:hover {
            color: var(--teal);
        }

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

    .newsletter-form input {
        flex: 1;
        padding: 11px 16px;
        border-radius: 8px;
        border: 1px solid rgba(255,255,255,0.15);
        background: rgba(255,255,255,0.08);
        color: white;
        font-family: 'DM Sans', sans-serif;
        font-size: 0.88rem;
        outline: none;
    }

        .newsletter-form input::placeholder {
            color: rgba(255,255,255,0.4);
        }

        .newsletter-form input:focus {
            border-color: var(--teal);
            background: rgba(255,255,255,0.12);
        }

    .newsletter-form button {
        padding: 11px 20px;
        background: var(--teal);
        color: white;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-size: 0.85rem;
        font-weight: 600;
        transition: var(--transition);
        white-space: nowrap;
        font-family: 'DM Sans', sans-serif;
    }

        .newsletter-form button:hover {
            background: var(--teal-dark);
        }

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

    .footer-bottom-links a {
        color: rgba(255,255,255,0.5);
    }

        .footer-bottom-links a:hover {
            color: var(--teal);
        }

/* ── Utilities ──────────────────────────────────────────────────── */
.section {
    padding: var(--section-py) 0;
}

.section-alt {
    padding: var(--section-py) 0;
    background: var(--light-bg);
}

.text-teal {
    color: var(--teal);
}

.text-muted {
    color: var(--muted);
}

.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.grid-2-wide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .grid-2-wide {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 60px;
    }

    .nav-links, .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .grid-2-wide {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        flex-direction: column;
    }
}
