@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&display=swap');

/* ── Design Tokens ─────────────────────────────────────────────────── */
:root {
    /* Brand */
    --navy:        #1A2744;
    --navy-90:     rgba(26, 39, 68, 0.90);
    --navy-50:     rgba(26, 39, 68, 0.50);
    --navy-10:     rgba(26, 39, 68, 0.10);
    --navy-05:     rgba(26, 39, 68, 0.05);

    --blush:       #FCE8EC;
    --coral:       #F08A3E;
    --coral-dark:  #D4751F;
    --teal:        #3AA6A0;
    --teal-light:  rgba(58, 166, 160, 0.10);
    --cream:       #FAF7F2;

    --white:       #FFFFFF;
    --text:        #0F172A;
    --text-muted:  #475569;
    --text-light:  #94A3B8;
    --border:      rgba(26, 39, 68, 0.08);

    /* Typography */
    --font-display: 'Outfit', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, sans-serif;

    /* Sizing */
    --container:   1240px;
    --radius-sm:   0.5rem;
    --radius-md:   1rem;
    --radius-lg:   1.5rem;
    --radius-xl:   2rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-xs:   0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md:   0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
    --shadow-lg:   0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
    --shadow-xl:   0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --shadow-card: 0 0 0 1px var(--border), 0 1px 3px rgba(0,0,0,0.05);
    --shadow-card-hover: 0 0 0 1px rgba(26,39,68,0.12), 0 12px 24px -4px rgba(0,0,0,0.10);

    /* Motion */
    --ease:        cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration:    0.3s;
}

/* ── Reset ─────────────────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    font-size: 1rem;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-display);
    color: var(--navy);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; }

a { text-decoration:none; color:inherit; transition: color var(--duration) var(--ease); }
ul,ol { list-style:none; }
img { max-width:100%; height:auto; display:block; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
input,select,textarea { font-family:inherit; font-size:inherit; }

/* ── Layout ────────────────────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-sm {
    padding: 4rem 0;
}

@media (max-width: 768px) {
    .section   { padding: 4rem 0; }
    .section-sm { padding: 2.5rem 0; }
    .container { padding: 0 1.25rem; }
}

/* Section Headers */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 640px;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-subtitle {
    margin: 0 auto;
}

/* Grids */
.grid {
    display: grid;
    gap: 2rem;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ── Buttons ───────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    transition: all var(--duration) var(--ease);
    white-space: nowrap;
}

.btn-coral {
    background: var(--coral);
    color: #fff;
    box-shadow: 0 2px 8px rgba(240,138,62,0.35);
}
.btn-coral:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240,138,62,0.40);
}

.btn-navy {
    background: var(--navy);
    color: #fff;
}
.btn-navy:hover {
    background: #0F172A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    border: 2px solid var(--navy);
    color: var(--navy);
    background: transparent;
}
.btn-outline:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-white {
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    background: transparent;
}
.btn-outline-white:hover {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
}

.btn-ghost {
    color: var(--teal);
    font-weight: 700;
    padding: 0.5rem 0;
}
.btn-ghost:hover {
    color: var(--navy);
}
.btn-ghost i { transition: transform var(--duration) var(--ease); }
.btn-ghost:hover i { transform: translateX(4px); }

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ── Blessing Strip ────────────────────────────────────────────────── */
.blessing-strip {
    background: var(--navy);
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ── Announcement Banner ───────────────────────────────────────────── */
.announcement {
    background: linear-gradient(135deg, var(--teal), #2D8E89);
    color: #fff;
    padding: 0.65rem 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 1002;
}

.announcement .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.announcement-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.7);
    padding: 0.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.announcement-close:hover { color: #fff; background: rgba(255,255,255,0.15); }

/* ── Header ────────────────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.75rem 0;
    transition: all var(--duration) var(--ease);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 var(--border);
}

.site-header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo img {
    height: 64px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: all var(--duration) var(--ease);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--navy);
    background: var(--navy-05);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--coral);
    border-radius: 2px;
}

.header-cta {
    padding: 0.625rem 1.5rem;
    font-size: 0.85rem;
}

/* Mobile Nav */
.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    border-radius: var(--radius-sm);
}
.mobile-toggle:hover { background: var(--navy-05); }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.visible {
    opacity: 1;
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 5rem 2rem 2rem;
        gap: 0.25rem;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        z-index: 999;
        box-shadow: var(--shadow-xl);
    }
    
    .main-nav.open {
        transform: translateX(0);
    }
    
    .nav-overlay.open { display: block; }
    
    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .header-cta {
        margin-top: 1rem;
        text-align: center;
    }
    
    .mobile-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--navy);
        border-radius: var(--radius-sm);
    }
}

@media (min-width: 769px) {
    .mobile-close { display: none; }
}

/* ── Full-Width Hero ───────────────────────────────────────────────── */
.hero-fullwidth {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.70) 35%,
        rgba(0, 0, 0, 0.30) 65%,
        rgba(0, 0, 0, 0.05) 100%
    );
    z-index: 1;
}

.hero-fullwidth > .container {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: clamp(2rem, 6vw, 8rem);
    padding-right: 2rem;
}

.hero-fw-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 95vh;
    padding-top: 5rem;
    padding-bottom: 2.5rem;
}

.hero-fw-content {
    max-width: 620px;
}

.hero-fw-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.hero-fw-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.hero-fw-title .accent {
    font-style: italic;
    font-weight: 500;
    color: var(--coral);
    letter-spacing: -0.01em;
}

.hero-fw-lead {
    font-size: 1.25rem;
    color: var(--coral);
    font-weight: 600;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero-fw-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 2rem;
}

.hero-fw-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.hero-fw-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    color: #fff;
    font-size: 0.82rem;
    line-height: 1.4;
}

.hero-fw-pill strong {
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero-fullwidth { min-height: 85vh; background-position: center center; }
    .hero-fw-inner { min-height: 85vh; padding-top: 7rem; }
    .hero-overlay {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.25) 100%
        );
    }
    .hero-fw-badges { flex-direction: column; }
    .hero-fw-title { font-size: 2rem; }
}

/* ── Hero (legacy) ────────────────────────────────────────────────── */
.hero {
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--blush) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.75rem, 5.5vw, 4.25rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title .accent {
    color: var(--coral);
    font-style: italic;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.8;
}

.hero-image {
    position: relative;
}

.hero-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/5;
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-badge-icon {
    width: 48px;
    height: 48px;
    background: var(--teal-light);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.hero-badge-text strong {
    display: block;
    font-size: 1.25rem;
    color: var(--navy);
}

.hero-badge-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .hero { padding: 8rem 0 4rem; }
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-image-main { aspect-ratio: 16/10; }
    .hero-badge { bottom: -1rem; left: 1rem; }
}

/* ── Page Hero (inner pages) ───────────────────────────────────────── */
.page-hero {
    padding: 10rem 0 4rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--blush) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--teal-light) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero .section-eyebrow { color: var(--coral); }

.page-hero-title {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    max-width: 1000px;
    margin-bottom: 1rem;
}

.page-hero-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 850px;
    line-height: 1.8;
}

/* ── Cards ─────────────────────────────────────────────────────────── */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    transition: all var(--duration) var(--ease);
    position: relative;
}

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

.card-flat {
    box-shadow: none;
    border: 1px solid var(--border);
}

.card-flat:hover {
    border-color: transparent;
    box-shadow: var(--shadow-card-hover);
}

/* Icon Box */
.icon-box {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.icon-box.teal    { background: var(--teal-light); color: var(--teal); }
.icon-box.coral   { background: rgba(240,138,62,0.10); color: var(--coral); }
.icon-box.navy    { background: var(--navy-05); color: var(--navy); }
.icon-box.blush   { background: var(--blush); color: var(--coral); }

.icon-box i { width: 24px; height: 24px; }

/* ── Service Cards ─────────────────────────────────────────────────── */
.service-card {
    display: flex;
    flex-direction: column;
}

.service-card h3 { margin-bottom: 0.75rem; }

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: auto;
}

.tag {
    background: var(--cream);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--navy);
}

/* ── Testimonials ──────────────────────────────────────────────────── */
.testimonials-section {
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s var(--ease);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .testimonial-slide { min-width: 50%; }
}

@media (min-width: 1024px) {
    .testimonial-slide { min-width: 33.333%; }
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: var(--coral);
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    flex: 1;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

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

.testimonial-name {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.95rem;
}

.testimonial-location {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all var(--duration) var(--ease);
}

.carousel-btn:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

/* ── Stats ─────────────────────────────────────────────────────────── */
.stats-strip {
    background: var(--navy);
    color: #fff;
    padding: 1.5rem 0 !important;
}

.stat-item {
    text-align: center;
    padding: 0.5rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--coral);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* ── CTA Band ──────────────────────────────────────────────────────── */
.cta-band {
    background: var(--navy);
    color: #fff;
    text-align: center;
}

.cta-band h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-band p {
    opacity: 0.8;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Contact Form ──────────────────────────────────────────────────── */
.contact-section {
    position: relative;
}

.contact-layout {
    align-items: stretch;
    gap: clamp(2rem, 4vw, 3rem);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .form-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--cream);
    color: var(--text);
    transition: all var(--duration) var(--ease);
    outline: none;
}

.form-input:focus {
    border-color: var(--teal);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--teal-light);
}

.form-input::placeholder { color: var(--text-light); }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
}

/* Contact Cards */
.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
    border: 1px solid rgba(26,39,68,0.06);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.contact-copy {
    max-width: 34rem;
}

.contact-heading {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.contact-intro {
    color: var(--text-muted);
    font-size: 0.98rem;
}

.contact-list {
    display: grid;
    gap: 0.75rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    padding: 1.25rem 1.35rem;
    background: var(--white);
    border: 1px solid rgba(26,39,68,0.06);
    border-left: 3px solid transparent;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13,148,136,0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.contact-card-link {
    cursor: pointer;
}

.contact-card-link:hover {
    background: var(--white);
    border-color: rgba(58,166,160,0.24);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.contact-card .icon-box {
    margin-bottom: 0;
    width: 44px;
    height: 44px;
}

.contact-card-body {
    flex: 1;
    min-width: 0;
}

.contact-card-title {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-card-value {
    color: var(--navy);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    word-break: break-word;
}

.contact-card-link .contact-card-value {
    color: var(--teal);
}

.contact-card-note {
    margin-top: 0.35rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.contact-card-arrow {
    width: 18px;
    height: 18px;
    color: var(--navy-50);
    flex-shrink: 0;
}

.contact-card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.contact-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.25s ease;
    background: var(--teal);
    color: #fff;
}

.contact-action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13,148,136,0.3);
}

.contact-action-btn.wa {
    background: #25D366;
}

.contact-action-btn.wa:hover {
    box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}

.contact-form-card {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    box-shadow: var(--shadow-lg);
}

.contact-form-card:hover {
    transform: none;
    box-shadow: var(--shadow-lg);
}

.contact-form-heading {
    margin-bottom: 0.5rem;
}

.contact-form-intro {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.contact-submit {
    width: 100%;
    padding: 1rem;
    margin-top: 0.25rem;
}

.form-input,
textarea.form-input,
select.form-input {
    min-height: 56px;
}

textarea.form-input {
    min-height: 160px;
    resize: vertical;
}

/* ── Map ───────────────────────────────────────────────────────────── */
.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 420px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-directions-card {
    max-width: 600px;
    margin: 2rem auto 0;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.map-directions-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.map-directions-text i {
    width: 14px;
    height: 14px;
    color: var(--teal);
    vertical-align: -2px;
    margin-right: 4px;
}

/* ── Toast ─────────────────────────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--navy);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    z-index: 9999;
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.4s var(--ease-spring);
}

.toast.visible {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    width: 32px;
    height: 32px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── Footer ────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}

.footer-brand-desc {
    margin: 1rem 0 1.5rem;
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-logo {
    max-width: 280px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-title {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
    font-size: 0.9rem;
    transition: all var(--duration) var(--ease);
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.social-row {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration) var(--ease);
}

.social-icon:hover {
    background: var(--coral);
    border-color: var(--coral);
    color: #fff;
    transform: translateY(-3px);
}

.social-icon i { width: 18px; height: 18px; }

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 2rem;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.5;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-contact-item i {
    width: 16px;
    height: 16px;
    margin-top: 4px;
    flex-shrink: 0;
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Team Cards ────────────────────────────────────────────────────── */
.team-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.team-card-featured {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--duration) var(--ease);
}

.team-card-featured:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.team-card-photo {
    height: 380px;
    overflow: hidden;
}

.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.team-card-featured:hover .team-card-photo img {
    transform: scale(1.05);
}

.team-card-body {
    padding: 2.5rem;
}

.team-card-body h3 { font-size: 1.4rem; margin-bottom: 0.25rem; }

.team-card-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.team-card-bio {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .team-featured { grid-template-columns: 1fr; }
    .team-card-photo { height: 300px; }
}

/* ── Equipment Cards ───────────────────────────────────────────────── */
.equip-card {
    overflow: hidden;
    padding: 0;
}

.equip-card-img {
    height: 200px;
    overflow: hidden;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.equip-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.equip-card:hover .equip-card-img img {
    transform: scale(1.05);
}

.equip-card-body {
    padding: 2rem;
}

.equip-card-body h3 {
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.equip-card-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ── Floating WhatsApp Button ──────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
    z-index: 900;
    transition: all var(--duration) var(--ease);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}

.whatsapp-float i { width: 28px; height: 28px; }

/* ── Scroll Reveal Animation ───────────────────────────────────────── */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay helpers */
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* ── Utility ───────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.bg-cream   { background: var(--cream); }
.bg-blush   { background: var(--blush); }
.bg-navy    { background: var(--navy); }
.bg-white   { background: var(--white); }

.accent     { color: var(--coral); }
.text-teal  { color: var(--teal); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Mission/Vision cards */
.mv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-card);
}
.mv-card h3 { margin-bottom: 1rem; }
.mv-card p  { color: var(--text-muted); font-size: 0.95rem; }

/* Value cards */
.value-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}
.value-card .icon-box { margin: 0 auto 1rem; }
.value-card h4 { margin-bottom: 0.5rem; }
.value-card p  { color: var(--text-muted); font-size: 0.9rem; }

/* Founders quote */
.founders-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
}

.founders-quote blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    color: var(--navy);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
}

/* Hours block */
.hours-block {
    background: var(--blush);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.hours-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hours-title i {
    width: 16px;
    height: 16px;
    color: var(--coral);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.hours-row:last-child { border-bottom: none; }
.hours-row strong { color: var(--navy); }

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-info-panel,
    .contact-form-card,
    .hours-block {
        padding: 1.25rem;
    }

    .contact-card {
        align-items: flex-start;
    }

    .hours-row {
        flex-direction: column;
        gap: 0.2rem;
    }
}

/* Checklist styling for service pages */
.check-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.check-list li i { color: var(--teal); width: 16px; height: 16px; flex-shrink: 0; }

/* Two-col about layout */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

@media (max-width: 768px) {
    .about-split { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Form Validation ──────────────────────────────────────────────── */
.form-error {
    display: block;
    color: #dc2626;
    font-size: 0.78rem;
    font-weight: 500;
    margin-top: 0.35rem;
    padding-left: 2px;
}

.input-error {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08) !important;
}

.input-valid {
    border-color: #16a34a !important;
}

/* ── Spinner Animation ────────────────────────────────────────────── */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.toast.error {
    background: #dc2626;
}

/* ── Gallery ──────────────────────────────────────────────────────── */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.gallery-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.25rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--navy);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.gallery-filter-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.gallery-filter-btn.active {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.gallery-item {
    animation: fadeScaleIn 0.4s ease forwards;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.gallery-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12,35,64,0.92) 0%, rgba(12,35,64,0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    display: inline-block;
    width: fit-content;
    padding: 0.2rem 0.65rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--coral);
    margin-bottom: 0.5rem;
}

.gallery-caption {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.gallery-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    line-height: 1.5;
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 85vw;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
    transition: opacity 0.2s ease;
}

.lightbox-caption {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
    opacity: 0.8;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    z-index: 10;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.25);
}

.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { top: 50%; left: 1.5rem; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: 1.5rem; transform: translateY(-50%); }

@keyframes fadeScaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-card img { height: 220px; }
    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }
}

/* ── Print ─────────────────────────────────────────────────────────── */
@media print {
    .site-header, .site-footer, .announcement, .blessing-strip, .whatsapp-float { display: none; }
    .section { padding: 2rem 0; }
}
