/* ==========================================================================
   TrusGroup Senior Benefits — Main Stylesheet
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
    --navy: #004F6E;
    --blue: #0087C2;
    --black: #000000;
    --gray: #D1D1D1;
    --light-gray: #F5F7FA;
    --white: #FFFFFF;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --font-heading: 'Titillium Web', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
    --container: 1140px;
    --header-height: 80px;
    --transition: all 0.3s ease;
}

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

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

[data-reveal="fade-left"] {
    transform: translateX(-40px);
}

[data-reveal="fade-left"].revealed {
    opacity: 1;
    transform: translateX(0);
}

[data-reveal="fade-right"] {
    transform: translateX(40px);
}

[data-reveal="fade-right"].revealed {
    opacity: 1;
    transform: translateX(0);
}

[data-reveal="zoom-in"] {
    transform: scale(0.92);
}

[data-reveal="zoom-in"].revealed {
    opacity: 1;
    transform: scale(1);
}

[data-reveal="fade-up"].revealed,
[data-reveal="fade-left"].revealed,
[data-reveal="fade-right"].revealed,
[data-reveal="zoom-in"].revealed {
    opacity: 1;
}

/* Stagger delays for grid children */
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.25s; }
[data-reveal-delay="3"] { transition-delay: 0.4s; }
[data-reveal-delay="4"] { transition-delay: 0.55s; }

/* Hero entrance animation */
.hero-content {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.9s ease 0.3s, transform 0.9s ease 0.3s;
}

.hero-content.hero-entered {
    opacity: 1;
    transform: translateY(0);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    [data-reveal],
    .hero-content {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    padding-bottom: 0;
}

@media (max-width: 767px) {
    body {
        padding-bottom: 72px;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--navy);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

/* ---------- Utility ---------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 5rem 0;
    }
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-header p {
    margin-top: 0.75rem;
    color: var(--text-muted);
    font-size: 1.125rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--navy);
    color: var(--white);
}

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

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

.btn-white {
    background: var(--white);
    color: var(--navy);
}

.btn-white:hover {
    background: var(--light-gray);
    color: var(--navy);
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    height: var(--header-height);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.header-logo img {
    height: 50px;
    width: auto;
}

.header-nav {
    display: none;
}

@media (min-width: 1024px) {
    .header-nav {
        display: flex;
        align-items: center;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    border-radius: 6px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--blue);
    background: var(--light-gray);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-phone {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
}

.header-phone svg {
    width: 18px;
    height: 18px;
    fill: var(--blue);
}

@media (min-width: 1024px) {
    .header-phone {
        display: flex;
    }
}

.header-cta {
    display: none;
}

@media (min-width: 768px) {
    .header-cta {
        display: inline-flex;
    }
}

/* Hamburger */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

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

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 99;
    padding: 1.5rem;
    overflow-y: auto;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav .nav-menu {
    flex-direction: column;
    gap: 0;
}

.mobile-nav .nav-link {
    font-size: 1.1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--light-gray);
    border-radius: 0;
    width: 100%;
}

.mobile-nav .mobile-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--navy);
}

.mobile-nav .mobile-cta {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
}

/* ---------- Hero — Video/image background, centered ---------- */
.hero {
    position: relative;
    color: var(--white);
    padding: 6rem 0;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
}

@media (min-width: 768px) {
    .hero {
        padding: 7rem 0;
        min-height: 650px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 8rem 0;
        min-height: 75vh;
    }
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 39, 55, 0.65);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ---------- Services ---------- */
.services {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: var(--blue);
    transform: translateY(-2px);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(0,135,194,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--blue);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--blue);
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    fill: var(--white);
}

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

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--blue);
}

.service-link svg {
    width: 16px;
    height: 16px;
    fill: var(--blue);
    transition: transform 0.2s ease;
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* ---------- Why Choose / Difference ---------- */
.why-choose-inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .why-choose-inner {
        flex-direction: row;
        gap: 4rem;
    }
}

.why-choose-image {
    flex-shrink: 0;
    width: 100%;
    max-width: 460px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

@media (min-width: 1024px) {
    .why-choose-image {
        min-height: 100%;
    }
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-choose-content {
    flex: 1;
}

.why-choose-content .pill {
    display: inline-block;
    background: rgba(0,135,194,0.1);
    color: var(--blue);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.why-choose-content h2 {
    margin-bottom: 1rem;
}

.why-choose-content > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.value-props {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-prop {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-prop-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,135,194,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.value-prop-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--blue);
}

.value-prop h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.value-prop p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---------- Meet Thomas — Background image section ---------- */
.meet-thomas-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .meet-thomas-bg {
        padding: 5rem 0;
    }
}

.meet-thomas-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 57, 79, 0.88);
    z-index: 1;
}

.meet-thomas-bg .container {
    position: relative;
    z-index: 2;
}

.meet-thomas-bg .meet-inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .meet-thomas-bg .meet-inner {
        flex-direction: row;
        gap: 3.5rem;
    }
}

.meet-photo {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255,255,255,0.3);
}

.meet-photo svg {
    width: 100px;
    height: 100px;
    fill: rgba(255,255,255,0.5);
}

.meet-content {
    flex: 1;
}

.pill-light {
    display: inline-block;
    background: rgba(0,135,194,0.3);
    color: rgba(255,255,255,0.9);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.meet-thomas-bg .meet-content h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.meet-thomas-bg .meet-content .title {
    color: var(--blue);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.meet-thomas-bg .meet-content p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.meet-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--navy);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.credential-light {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    box-shadow: none;
    border: 1px solid rgba(255,255,255,0.2);
}

.credential svg {
    width: 16px;
    height: 16px;
    fill: var(--blue);
}

.credential-light svg {
    fill: rgba(255,255,255,0.8);
}

/* Legacy .meet-thomas for about page */
.meet-thomas {
    background: var(--light-gray);
    padding: 4rem 0;
}

.meet-thomas .meet-inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .meet-thomas .meet-inner {
        flex-direction: row;
        gap: 3.5rem;
    }
}

.meet-thomas .meet-content .pill {
    display: inline-block;
    background: rgba(0,135,194,0.1);
    color: var(--blue);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.meet-thomas .meet-content h2 {
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.meet-thomas .meet-content .title {
    color: var(--blue);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.meet-thomas .meet-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.meet-thomas .meet-photo {
    background: var(--gray);
    border: none;
}

.meet-thomas .meet-photo svg {
    fill: #94A3B8;
}

/* ---------- Carriers — Infinite scroll marquee ---------- */
.carriers {
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    padding: 2.5rem 0;
    overflow: hidden;
}

.carriers-label {
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.carriers-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carriers-marquee::before,
.carriers-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.carriers-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.carriers-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.carriers-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.carriers-track img {
    height: 44px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ---------- CTA Banner — Background image ---------- */
.cta-banner {
    position: relative;
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 57, 79, 0.85);
    z-index: 1;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cta-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 1.125rem;
    max-width: 520px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #00394F;
    color: var(--white);
    padding: 3.5rem 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer-inner {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand img {
    height: 45px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 1.25rem;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: rgba(255,255,255,0.2);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--blue);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.7);
}

.footer-contact-item a:hover {
    color: var(--white);
}

.footer-bottom {
    margin-top: 2.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

/* ---------- Mobile Bottom Bar ---------- */
.mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 0.75rem 1rem;
    gap: 0.75rem;
}

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

.mobile-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
}

.mobile-bar .bar-schedule {
    background: var(--blue);
    color: var(--white);
}

.mobile-bar .bar-call {
    background: var(--navy);
    color: var(--white);
}

.mobile-bar a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ---------- Interior Page Hero — Background image support ---------- */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

@media (min-width: 768px) {
    .page-hero {
        padding: 5rem 0;
    }
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 57, 79, 0.8);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.125rem;
    max-width: 540px;
    margin: 0 auto;
}

/* ---------- Interior Content ---------- */
.page-content {
    padding: 4rem 0;
}

.page-content h2 {
    margin-bottom: 1rem;
}

.page-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.page-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 720px;
}

.page-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.page-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.page-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
}

/* ---------- Contact Page ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.contact-info-card svg {
    width: 24px;
    height: 24px;
    fill: var(--blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ---------- Services Interior ---------- */
.service-detail {
    padding: 3rem 0;
    border-bottom: 1px solid #E2E8F0;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-inner {
    max-width: 720px;
}

.service-detail h2 {
    margin-bottom: 1rem;
}

.service-detail p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* ---------- About Page ---------- */
.about-mission {
    background: var(--light-gray);
    padding: 3rem 0;
}

.mission-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.mission-inner blockquote {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--navy);
    font-style: italic;
    line-height: 1.6;
    border-left: 4px solid var(--blue);
    padding-left: 1.5rem;
    text-align: left;
}

.about-journey {
    padding: 4rem 0;
}

.journey-inner {
    max-width: 720px;
}

.journey-inner h2 {
    margin-bottom: 1rem;
}

.journey-inner p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}
