/* =====================================================
   YARDSTICK ACCOUNTING & TAX — Main Stylesheet
   Brand Colours: #002649 (Navy) | #FFBE5F (Gold) | #FFFFFF (White)
   ===================================================== */

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

:root {
    --navy:       #002649;
    --gold:       #FFBE5F;
    --white:      #FFFFFF;
    --navy-light: #003a6e;
    --navy-dark:  #001a33;
    --gold-light: #ffd080;
    --gold-dark:  #e6a040;
    --gray:       #f5f7fa;
    --gray-mid:   #e8ecf0;
    --text-muted: #5a6a7a;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Barlow', sans-serif;
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(0, 38, 73, 0.97);
    backdrop-filter: blur(12px);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
    border-bottom: 2px solid rgba(255,190,95,0.2);
    transition: all 0.3s;
}
.nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
}
.nav-logo svg { width: 42px; height: 42px; }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 4px;
}
.nav-links a::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: var(--gold);
    transform: scaleX(0); transition: transform 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
    background: var(--gold); color: var(--navy) !important;
    padding: 10px 24px; border-radius: 4px;
    font-weight: 700 !important; letter-spacing: 0.05em;
    transition: background 0.2s, transform 0.1s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Hamburger menu (mobile) */
.nav-hamburger {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
    display: block; width: 26px; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: all 0.3s;
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding-top: 72px;
}
.hero-bg-pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,190,95,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,190,95,0.06) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(0,100,180,0.15) 0%, transparent 40%);
}
.hero-grid {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: linear-gradient(var(--gold) 1px, transparent 1px),
                      linear-gradient(90deg, var(--gold) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto;
    padding: 80px 5%;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,190,95,0.15);
    border: 1px solid rgba(255,190,95,0.4);
    color: var(--gold);
    padding: 6px 16px; border-radius: 100px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 24px;
    animation: fadeSlideIn 0.6s ease both;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; }
h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800; line-height: 1.05;
    color: var(--white);
    margin-bottom: 8px;
    animation: fadeSlideIn 0.6s 0.1s ease both;
}
h1 span { color: var(--gold); display: block; }
.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.65);
    font-style: italic; font-weight: 300;
    margin-bottom: 28px;
    animation: fadeSlideIn 0.6s 0.2s ease both;
}
.hero-desc {
    font-size: 1.05rem; line-height: 1.75;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    animation: fadeSlideIn 0.6s 0.3s ease both;
}
.hero-btns {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: fadeSlideIn 0.6s 0.4s ease both;
}
.btn-primary {
    background: var(--gold); color: var(--navy);
    padding: 14px 32px; border-radius: 4px;
    font-weight: 700; font-size: 0.95rem;
    text-decoration: none; letter-spacing: 0.05em;
    transition: all 0.2s; border: 2px solid var(--gold);
    display: inline-block;
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,190,95,0.35);
}
.btn-outline {
    background: transparent; color: var(--white);
    padding: 14px 32px; border-radius: 4px;
    font-weight: 600; font-size: 0.95rem;
    text-decoration: none; letter-spacing: 0.05em;
    transition: all 0.2s; border: 2px solid rgba(255,255,255,0.3);
    display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* Hero Visual Card */
.hero-visual {
    position: relative;
    animation: fadeSlideIn 0.8s 0.3s ease both;
}
.hero-card-stack { position: relative; padding: 20px; }
.hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,190,95,0.2);
    border-radius: 12px; padding: 28px;
    backdrop-filter: blur(20px);
}
.hero-card-title {
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
}
.metric-row {
    display: flex; justify-content: space-between;
    margin-bottom: 16px; padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.metric-row:last-child { border: none; margin: 0; padding: 0; }
.metric-label { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.metric-val { font-size: 1rem; font-weight: 700; color: var(--white); }
.metric-val.up   { color: #4ade80; }
.metric-val.gold { color: var(--gold); }
.floating-badge {
    position: absolute;
    background: var(--gold); color: var(--navy);
    padding: 10px 18px; border-radius: 8px;
    font-size: 0.8rem; font-weight: 700;
    box-shadow: 0 8px 32px rgba(255,190,95,0.4);
}
.floating-badge.tl { top: 0; left: 0; transform: translate(-20%, -20%) rotate(-6deg); }
.floating-badge.br { bottom: 0; right: 0; transform: translate(20%, 20%) rotate(4deg); }

/* ── STATS BAR ── */
#stats { background: var(--gold); padding: 48px 5%; }
.stats-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px; text-align: center;
}
.stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.8rem; font-weight: 800;
    color: var(--navy); line-height: 1;
}
.stat-label { font-size: 0.9rem; font-weight: 600; color: var(--navy-dark); margin-top: 4px; opacity: 0.8; }

/* ── GENERIC SECTION STYLES ── */
section { padding: 96px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold-dark); margin-bottom: 12px;
}
h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800; line-height: 1.1;
    color: var(--navy); margin-bottom: 20px;
}
h2 em { color: var(--gold-dark); font-style: normal; }
.section-intro { font-size: 1.1rem; line-height: 1.75; color: var(--text-muted); max-width: 640px; }

/* ── ABOUT ── */
#about { background: var(--gray); }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.about-image-block { position: relative; }
.about-img-main {
    width: 100%; border-radius: 12px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    aspect-ratio: 4/3;
    display: flex; align-items: center; justify-content: center;
    font-size: 6rem; color: rgba(255,190,95,0.3);
    position: relative; overflow: hidden;
}
.about-img-main::after {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFBE5F' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.about-accent-box {
    position: absolute; bottom: -24px; right: -24px;
    background: var(--gold); padding: 24px 28px;
    border-radius: 8px; box-shadow: 0 12px 40px rgba(255,190,95,0.35);
}
.about-accent-box .num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem; font-weight: 800; color: var(--navy); line-height: 1;
}
.about-accent-box .lbl { font-size: 0.8rem; font-weight: 600; color: var(--navy-dark); opacity: 0.8; }
.about-text h2 { margin-bottom: 20px; }
.about-points { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.about-point {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 16px 20px;
    background: var(--white); border-radius: 8px;
    border-left: 3px solid var(--gold);
}
.about-point-icon { font-size: 1.3rem; flex-shrink: 0; }
.about-point strong { display: block; font-weight: 700; margin-bottom: 4px; color: var(--navy); }
.about-point p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

/* ── SERVICES ── */
#services { background: var(--white); }
.services-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 56px; flex-wrap: wrap; gap: 20px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: var(--gray);
    border-radius: 12px; padding: 36px 28px;
    transition: all 0.3s; cursor: default;
    border: 1px solid transparent;
    position: relative; overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gold); transform: scaleX(0);
    transition: transform 0.3s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,38,73,0.12);
    border-color: rgba(255,190,95,0.3);
    background: var(--white);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.2rem; margin-bottom: 20px; display: block; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--navy); }
.service-card p  { font-size: 0.9rem; line-height: 1.7; color: var(--text-muted); }

/* ── WHY US ── */
#why { background: var(--navy); color: var(--white); }
#why h2 { color: var(--white); }
#why .section-intro { color: rgba(255,255,255,0.65); }
.why-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 56px; align-items: center; margin-top: 48px;
}
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 20px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,190,95,0.15);
    border-radius: 10px; transition: all 0.2s;
}
.why-item:hover {
    background: rgba(255,190,95,0.1);
    border-color: rgba(255,190,95,0.4);
    transform: translateX(6px);
}
.why-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem; font-weight: 800;
    color: var(--gold); line-height: 1; flex-shrink: 0;
}
.why-item strong { display: block; font-size: 1rem; margin-bottom: 6px; }
.why-item p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.why-visual {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,190,95,0.2);
    border-radius: 12px; padding: 40px;
}
.vision-title {
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
}
.vision-text {
    font-size: 1.1rem; line-height: 1.85;
    color: rgba(255,255,255,0.8);
    font-style: italic; font-weight: 300;
}
.vision-divider {
    height: 2px; background: linear-gradient(90deg, var(--gold), transparent);
    margin: 32px 0;
}
.goals-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.goals-list li {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.88rem; color: rgba(255,255,255,0.7);
}
.goals-list li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ── CONTACT ── */
#contact { background: var(--gray); }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.3fr;
    gap: 60px; align-items: start; margin-top: 48px;
}
.contact-detail {
    display: flex; gap: 16px; align-items: flex-start;
    margin-bottom: 24px;
}
.contact-icon {
    width: 48px; height: 48px; background: var(--navy);
    color: var(--gold); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
}
.contact-detail h4 {
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px;
}
.contact-detail p { font-size: 0.95rem; color: var(--navy); font-weight: 600; }
.contact-form {
    background: var(--white); border-radius: 12px;
    padding: 40px; box-shadow: 0 8px 40px rgba(0,38,73,0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 0.82rem; font-weight: 600;
    color: var(--navy); margin-bottom: 8px; letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid var(--gray-mid);
    border-radius: 6px; font-family: 'Barlow', sans-serif;
    font-size: 0.95rem; color: var(--navy);
    background: var(--gray); transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-dark);
    background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
    width: 100%; padding: 14px;
    background: var(--navy); color: var(--white);
    border: none; border-radius: 6px;
    font-family: 'Barlow', sans-serif; font-size: 1rem; font-weight: 700;
    letter-spacing: 0.06em; cursor: pointer; transition: all 0.2s;
}
.form-submit:hover { background: var(--navy-light); transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.6);
    padding: 60px 5% 32px;
}
.footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px; margin-bottom: 48px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h5 {
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
    color: rgba(255,255,255,0.55); text-decoration: none;
    font-size: 0.88rem; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
    max-width: 1200px; margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.82rem; flex-wrap: wrap; gap: 12px;
}

/* ── ANIMATIONS ── */
@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE / MOBILE ── */
@media (max-width: 900px) {
    .hero-content,
    .about-grid,
    .why-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual   { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid    { grid-template-columns: repeat(2, 1fr); }
    .footer-grid   { grid-template-columns: 1fr 1fr; }
    /* Hide desktop links, show hamburger */
    .nav-links     { display: none !important; }
    .nav-hamburger { display: flex !important; }
    /* Logo responsive on tablet */
    .nav-logo { gap: 10px; }
    .nav-logo svg { width: 38px; height: 38px; }
    .nav-logo-text { font-size: 1.05rem; }
    .nav-logo-text small { font-size: 0.55rem; }
    .about-accent-box { display: none; }
    .form-row      { grid-template-columns: 1fr; }

    /* Mobile nav drawer - triggered by body.nav-open */
    body.nav-open .nav-links {
        display: flex !important;
        flex-direction: column;
        position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
        background: rgba(0,26,51,0.98);
        padding: 32px 6%;
        gap: 4px;
        align-items: stretch;
        z-index: 999;
        overflow-y: auto;
        animation: fadeSlideIn 0.25s ease;
    }
    body.nav-open .nav-links li { width: 100%; }
    body.nav-open .nav-links li a {
        display: block;
        font-size: 1.15rem;
        font-weight: 600;
        padding: 14px 18px;
        border-radius: 8px;
        color: rgba(255,255,255,0.88);
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    body.nav-open .nav-links li a:hover,
    body.nav-open .nav-links li a.nav-active {
        background: rgba(255,190,95,0.12);
        color: var(--gold);
    }
    body.nav-open .nav-links li a.nav-cta {
        margin-top: 14px;
        background: var(--gold);
        color: var(--navy) !important;
        text-align: center;
        border-bottom: none;
        font-weight: 700;
    }

    /* Hamburger to X animation */
    body.nav-open .nav-hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    body.nav-open .nav-hamburger span:nth-child(2) {
        opacity: 0; transform: scaleX(0);
    }
    body.nav-open .nav-hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}
@media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid    { grid-template-columns: 1fr 1fr; }
    .contact-form  { padding: 28px 20px; }
}

/* =====================================================
   SHARED HEADER / FOOTER — New classes
   ===================================================== */

/* Site header wrapper */
.site-header { /* same as nav — alias for clarity */ }

/* Logo text */
.nav-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800; font-size: 1.2rem;
    color: #fff; letter-spacing: 0.05em;
    line-height: 1;
}
.nav-logo-text small {
    display: block; font-size: 0.62rem; font-weight: 500;
    letter-spacing: 0.12em; color: var(--gold); margin-top: 2px;
}

/* Active nav link */
.nav-links a.nav-active,
.nav-links a.active {
    color: var(--gold);
}
.nav-links a.nav-active::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

/* Footer brand text */
.footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px; margin-bottom: 48px;
}
.footer-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800; font-size: 1.5rem;
    color: #fff; letter-spacing: 0.05em; margin-bottom: 4px;
}
.footer-logo-sub {
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.12em; color: var(--gold); margin-bottom: 16px;
}
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08); border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); text-decoration: none;
    transition: all 0.2s;
}
.social-btn:hover { background: var(--gold); color: var(--navy); }

.footer-contact-icon { margin-right: 6px; }
.footer-hours {
    display: flex; gap: 10px; align-items: flex-start;
    margin-top: 20px;
    font-size: 0.82rem; color: rgba(255,255,255,0.55);
    line-height: 1.6;
}
.footer-hours strong { color: rgba(255,255,255,0.75); }

.footer-bottom-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
}
.footer-tagline { color: rgba(255,190,95,0.5); }

/* =====================================================
   PAGE HERO (About / Contact pages)
   ===================================================== */
.page-hero {
    min-height: 320px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
    display: flex; align-items: flex-end;
    position: relative; overflow: hidden;
    padding-top: 72px;
}
.page-hero-bg {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(255,190,95,0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(255,190,95,0.05) 0%, transparent 40%);
}
.page-hero-bg::after {
    content: '';
    position: absolute; inset: 0; opacity: 0.04;
    background-image:
        linear-gradient(var(--gold) 1px, transparent 1px),
        linear-gradient(90deg, var(--gold) 1px, transparent 1px);
    background-size: 60px 60px;
}
.page-hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto;
    padding: 48px 5% 56px;
    width: 100%;
}
.breadcrumb {
    display: flex; gap: 8px; align-items: center;
    font-size: 0.8rem; color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
    animation: fadeSlideIn 0.5s ease both;
}
.breadcrumb a { color: rgba(255,190,95,0.7); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.page-hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800; color: var(--white); line-height: 1.05;
    margin-bottom: 10px;
    animation: fadeSlideIn 0.5s 0.1s ease both;
}
.page-hero-title span { color: var(--gold); }
.page-hero-sub {
    font-size: 1.05rem; color: rgba(255,255,255,0.6);
    font-style: italic; font-weight: 300;
    animation: fadeSlideIn 0.5s 0.2s ease both;
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-intro { background: var(--white); padding: 80px 5%; }
.about-split {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 72px; align-items: center;
}
.about-img-block {
    position: relative; border-radius: 14px; overflow: visible;
}
.about-img-block svg {
    width: 100%; height: auto; display: block;
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(0,38,73,0.2);
}
.about-accent-card {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--gold); padding: 20px 24px;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(255,190,95,0.4);
    text-align: center;
}
.accent-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.2rem; font-weight: 800; color: var(--navy); line-height: 1;
}
.accent-lbl { font-size: 0.75rem; font-weight: 600; color: var(--navy-dark); opacity: 0.8; }

.about-pillars { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.pillar {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 16px 20px; background: var(--gray);
    border-radius: 8px; border-left: 3px solid var(--gold);
    transition: transform 0.2s, box-shadow 0.2s;
}
.pillar:hover { transform: translateX(4px); box-shadow: 0 4px 20px rgba(0,38,73,0.08); }
.pillar-icon { font-size: 1.4rem; flex-shrink: 0; }
.pillar strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.pillar p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

/* Vision / Mission */
.vision-section { background: var(--gray); padding: 80px 5%; }
.vm-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 28px; margin-top: 0;
}
.vm-card {
    border-radius: 14px; padding: 40px;
    transition: transform 0.2s;
}
.vm-card:hover { transform: translateY(-4px); }
.vm-card--navy { background: var(--navy); color: var(--white); }
.vm-card--navy h3 { color: var(--white); }
.vm-card--navy p { color: rgba(255,255,255,0.75); font-style: italic; line-height: 1.8; }
.vm-card--gold { background: var(--gold); color: var(--navy); }
.vm-card--gold h3 { color: var(--navy); }
.vm-card--gold p { color: rgba(0,38,73,0.8); line-height: 1.8; }
.vm-icon { font-size: 2.5rem; margin-bottom: 16px; }
.vm-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem; font-weight: 800; margin-bottom: 16px;
}

/* Values */
.values-section { background: var(--white); padding: 80px 5%; }
.values-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; margin-top: 48px;
}
.value-card {
    background: var(--gray); border-radius: 12px; padding: 28px 22px;
    border: 1px solid transparent;
    transition: all 0.25s;
}
.value-card:hover {
    border-color: rgba(255,190,95,0.4);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,38,73,0.1);
    background: var(--white);
}
.value-icon { font-size: 1.8rem; margin-bottom: 14px; }
.value-card h4 {
    font-size: 0.95rem; font-weight: 700;
    color: var(--navy); margin-bottom: 8px;
}
.value-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* Goals */
.goals-section { background: var(--navy); padding: 80px 5%; }
.goals-layout {
    display: grid; grid-template-columns: 1fr 1.5fr;
    gap: 64px; align-items: start;
}
.goals-text h2 { color: var(--white); }
.goals-text h2 em { color: var(--gold); font-style: normal; }
.goal-item {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 18px 22px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,190,95,0.12);
    border-radius: 10px; margin-bottom: 14px;
    transition: all 0.2s;
}
.goal-item:hover {
    background: rgba(255,190,95,0.1);
    border-color: rgba(255,190,95,0.35);
    transform: translateX(6px);
}
.goal-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8rem; font-weight: 800;
    color: var(--gold); flex-shrink: 0; line-height: 1;
}
.goal-item strong { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.goal-item p { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

/* CTA Strip */
.cta-strip { background: var(--gold); padding: 56px 5%; }
.cta-strip-inner {
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 24px;
}
.cta-strip h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8rem; font-weight: 800; color: var(--navy); margin-bottom: 6px;
}
.cta-strip p { color: rgba(0,38,73,0.7); font-size: 0.95rem; }
.cta-strip-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-outline-dark {
    background: transparent; color: var(--navy);
    padding: 13px 28px; border-radius: 4px;
    font-weight: 700; font-size: 0.92rem;
    text-decoration: none; letter-spacing: 0.05em;
    border: 2px solid rgba(0,38,73,0.4);
    transition: all 0.2s; display: inline-block;
}
.btn-outline-dark:hover { border-color: var(--navy); background: rgba(0,38,73,0.08); }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-page-section { background: var(--gray); padding: 72px 5%; }
.contact-page-grid {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 56px; align-items: start; margin-bottom: 64px;
}
.contact-info-panel { }
.info-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.info-card {
    display: flex; gap: 16px; align-items: flex-start;
    background: var(--white); border-radius: 10px; padding: 18px 20px;
    border: 1px solid var(--gray-mid);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.info-card:hover { border-color: rgba(255,190,95,0.4); box-shadow: 0 4px 20px rgba(0,38,73,0.07); }
.info-card-icon {
    width: 44px; height: 44px; background: var(--navy);
    color: var(--gold); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; flex-shrink: 0;
}
.info-card h4 {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px;
}
.info-card p, .info-card a {
    font-size: 0.92rem; color: var(--navy); font-weight: 600;
    text-decoration: none;
}
.info-card a:hover { color: var(--gold-dark); }

.contact-quick h5 {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 12px;
}
.quick-btn {
    display: flex; align-items: center; gap: 10px;
    background: var(--navy); color: var(--white) !important;
    padding: 12px 20px; border-radius: 8px;
    text-decoration: none; font-weight: 600; font-size: 0.9rem;
    margin-bottom: 10px; transition: background 0.2s, transform 0.1s;
}
.quick-btn:hover { background: var(--navy-light); transform: translateX(4px); }

/* Contact Form Box */
.contact-form-panel { }
.contact-form-box {
    background: var(--white); border-radius: 14px;
    padding: 44px; box-shadow: 0 8px 48px rgba(0,38,73,0.09);
}
.contact-form-box h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 6px;
}
.form-intro { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 28px; }
.req { color: #e53e3e; margin-left: 2px; }
.has-error input,
.has-error textarea,
.has-error select { border-color: #e53e3e !important; }
.form-privacy {
    text-align: center; font-size: 0.78rem; color: var(--text-muted);
    margin-top: 14px;
}

/* Alert Success */
.alert-success {
    display: flex; gap: 16px; align-items: flex-start;
    background: #f0fdf4; border: 1.5px solid #4ade80;
    border-radius: 10px; padding: 20px 24px; margin-bottom: 36px;
}
.alert-icon { font-size: 1.8rem; flex-shrink: 0; }
.alert-success strong { display: block; color: #166534; font-size: 1rem; margin-bottom: 4px; }
.alert-success p { font-size: 0.88rem; color: #15803d; }

/* FAQ Strip */
.faq-strip {
    background: var(--white); border-radius: 14px;
    padding: 48px; box-shadow: 0 4px 24px rgba(0,38,73,0.06);
}
.faq-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.faq-item {
    background: var(--gray); border-radius: 10px; padding: 24px;
    border-left: 3px solid var(--gold);
    transition: transform 0.2s;
}
.faq-item:hover { transform: translateY(-3px); }
.faq-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.faq-item p  { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }

/* =====================================================
   RESPONSIVE — New pages
   ===================================================== */
@media (max-width: 1000px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .about-split,
    .vm-grid,
    .goals-layout,
    .contact-page-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-accent-card { display: none; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .cta-strip-inner { flex-direction: column; align-items: flex-start; }
    .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .values-grid { grid-template-columns: 1fr 1fr; }
    .contact-form-box { padding: 28px 20px; }
    .faq-strip { padding: 32px 20px; }
}
@media (max-width: 420px) {
    .values-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   SERVICES PAGE
   ===================================================== */

/* Intro strip */
.services-intro-strip {
    background: var(--white);
    padding: 36px 5%;
    border-bottom: 1px solid var(--gray-mid);
}
.intro-strip-inner {
    display: flex; justify-content: space-between; align-items: center;
    gap: 32px; flex-wrap: wrap;
}
.intro-strip-text {
    font-size: 1rem; color: var(--text-muted);
    line-height: 1.75; max-width: 680px;
}

/* Overview grid */
.services-overview { background: var(--gray); padding: 80px 5%; }
.services-overview-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px; margin-top: 40px;
}
.overview-card {
    display: flex; align-items: center; gap: 16px;
    background: var(--white); border-radius: 10px; padding: 20px 22px;
    border: 1.5px solid var(--gray-mid);
    text-decoration: none; color: var(--navy);
    transition: all 0.25s;
}
.overview-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 28px rgba(0,38,73,0.1);
    transform: translateY(-3px);
}
.overview-icon { font-size: 1.8rem; flex-shrink: 0; }
.overview-card h4 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.overview-card p  { font-size: 0.78rem; color: var(--text-muted); }
.overview-arrow {
    margin-left: auto; font-size: 1.1rem; color: var(--gold-dark);
    font-weight: 700; flex-shrink: 0;
    transition: transform 0.2s;
}
.overview-card:hover .overview-arrow { transform: translateX(4px); }

/* Detail sections */
.service-detail {
    padding: 96px 5%;
    background: var(--white);
    border-bottom: 1px solid var(--gray-mid);
}
.service-detail--alt { background: var(--gray); }
.service-detail-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 72px; align-items: center;
}
/* Flip layout on alternating rows */
.service-detail--alt .service-detail-grid { direction: rtl; }
.service-detail--alt .service-detail-grid > * { direction: ltr; }

.service-detail-badge {
    display: flex; align-items: center; gap: 12px;
}
.service-detail-icon {
    font-size: 2.4rem; line-height: 1;
}
.service-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem; font-weight: 800;
    color: var(--gray-mid); line-height: 1;
    user-select: none;
}
.service-summary {
    font-size: 1.05rem; line-height: 1.8;
    color: var(--text-muted); margin-top: 12px; margin-bottom: 28px;
}

/* Includes list */
.service-includes h5 {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold-dark); margin-bottom: 16px;
}
.service-includes ul {
    list-style: none;
    display: flex; flex-direction: column; gap: 10px;
}
.service-includes li {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 0.9rem; color: var(--navy); line-height: 1.5;
}
.check {
    color: var(--white); background: var(--navy);
    width: 20px; height: 20px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; font-weight: 700; flex-shrink: 0;
    margin-top: 1px;
}

/* Visual card */
.service-detail-visual { }
.service-visual-card {
    background: var(--navy);
    border-radius: 16px; padding: 36px;
    box-shadow: 0 24px 60px rgba(0,38,73,0.2);
    position: relative; overflow: hidden;
}
.service-visual-card::before {
    content: '';
    position: absolute; top: -40px; right: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(255,190,95,0.06);
}
.svc-card-header {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.svc-card-icon { font-size: 2rem; }
.svc-card-title {
    font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.9);
    line-height: 1.3;
}
.svc-benefit-box {
    background: rgba(255,190,95,0.1);
    border: 1px solid rgba(255,190,95,0.25);
    border-radius: 10px; padding: 20px;
    margin-bottom: 28px;
}
.svc-benefit-label {
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 10px;
}
.svc-benefit-box p {
    font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.7;
}
.svc-stat-row {
    display: flex; gap: 0;
    border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
    overflow: hidden;
}
.svc-stat {
    flex: 1; text-align: center; padding: 14px 8px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.svc-stat:last-child { border-right: none; }
.svc-stat-val {
    display: block; font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem; font-weight: 800; color: var(--gold); line-height: 1;
}
.svc-stat-lbl {
    display: block; font-size: 0.68rem; color: rgba(255,255,255,0.45);
    margin-top: 4px; font-weight: 500;
}

/* Why / Promise section */
.services-why { background: var(--navy); padding: 80px 5%; }
.services-why h2 { color: var(--white); margin-bottom: 12px; }
.promise-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 48px;
}
.promise-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,190,95,0.15);
    border-radius: 12px; padding: 28px;
    transition: all 0.25s;
}
.promise-card:hover {
    background: rgba(255,190,95,0.1);
    border-color: rgba(255,190,95,0.4);
    transform: translateY(-4px);
}
.promise-icon { font-size: 2rem; margin-bottom: 14px; }
.promise-card h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.promise-card p  { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* Process section */
.process-section { background: var(--white); padding: 80px 5%; }
.process-steps {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 0; position: relative; margin-top: 0;
}
/* Connecting line */
.process-steps::before {
    content: '';
    position: absolute; top: 28px; left: 10%; right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), rgba(255,190,95,0.2));
    z-index: 0;
}
.process-step {
    text-align: center; padding: 0 16px;
    position: relative; z-index: 1;
}
.step-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem; font-weight: 800;
    color: var(--navy);
    background: var(--gold);
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(255,190,95,0.4);
    transition: transform 0.2s;
}
.process-step:hover .step-num { transform: scale(1.12); }
.step-connector { display: none; }
.process-step h4 {
    font-size: 0.92rem; font-weight: 700; color: var(--navy);
    margin-bottom: 8px;
}
.process-step p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* =====================================================
   SERVICES PAGE — RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
    .services-overview-grid { grid-template-columns: repeat(2, 1fr); }
    .promise-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .service-detail-grid { grid-template-columns: 1fr; gap: 36px; }
    .service-detail--alt .service-detail-grid { direction: ltr; }
    .services-overview-grid { grid-template-columns: 1fr 1fr; }
    .process-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .process-steps::before { display: none; }
    .process-step { text-align: left; display: flex; align-items: flex-start; gap: 20px; padding: 0; }
    .step-num { margin: 0; flex-shrink: 0; }
    .intro-strip-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
    .services-overview-grid { grid-template-columns: 1fr; }
    .promise-grid { grid-template-columns: 1fr; }
    .service-visual-card { padding: 24px 20px; }
}

/* =====================================================
   LOGO SPLASH SCREEN
   ===================================================== */
#splash-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.splash-logo-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: splashPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.splash-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    color: #fff;
    letter-spacing: 0.06em;
    line-height: 1;
}
.splash-logo-text small {
    display: block;
    font-size: 0.38em;
    font-weight: 500;
    letter-spacing: 0.16em;
    color: var(--gold);
    margin-top: 5px;
}
.splash-tagline {
    font-size: clamp(0.8rem, 2.5vw, 0.95rem);
    color: rgba(255,255,255,0.5);
    font-style: italic;
    letter-spacing: 0.06em;
    animation: splashPop 0.7s 0.15s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.splash-bar {
    width: 160px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
    animation: splashPop 0.7s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.splash-bar-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 3px;
    animation: splashLoad 1.4s 0.3s ease forwards;
    width: 0;
}
@keyframes splashPop {
    from { opacity: 0; transform: scale(0.85) translateY(12px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes splashLoad {
    from { width: 0; }
    to   { width: 100%; }
}

/* =====================================================
   MOBILE NAV EXTRA FIXES (≤ 480px small phones)
   ===================================================== */
@media (max-width: 480px) {
    .site-nav { padding: 0 4%; }
    .nav-logo { gap: 8px; }
    .nav-logo svg  { width: 34px; height: 34px; }
    .nav-logo-text { font-size: 0.95rem; }
    .nav-logo-text small { font-size: 0.48rem; }
    body.nav-open .nav-links {
        padding: 24px 4%;
    }
    body.nav-open .nav-links li a {
        font-size: 1.05rem;
        padding: 12px 14px;
    }
}
