/* ============================================================
   SKAA & Associates — Chartered Accountants
   Shared CSS — All Pages
   Brand: Navy + Gold + Cream | Playfair Display + DM Sans
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --black: #0D0D0D;
    --navy: #1B3A5C;
    --navy-light: #234b75;
    --gold: #C9A040;
    --gold-light: #d4b05a;
    --cream: #FAF8F5;
    --warm-white: #FDFCFA;
    --warm-gray: #F5F3F0;
    --text-dark: #1a1a1a;
    --text-body: #3d3d3d;
    --text-muted: #6b6b6b;
    --border-light: #e8e4df;
    --shadow-soft: 0 2px 20px rgba(13,13,13,0.06);
    --shadow-medium: 0 8px 40px rgba(13,13,13,0.1);
    --shadow-deep: 0 16px 60px rgba(13,13,13,0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

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

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--text-dark);
    line-height: 1.25;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }


/* ===== HEADER / NAV (Fixed Glassmorphism) ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(253,252,250,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-soft); }
.header .container {
    display: flex; align-items: center; justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo {
    display: flex; align-items: center; gap: 12px;
}
.logo-mark {
    width: 44px; height: 44px; background: var(--navy);
    border-radius: 6px; display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-family: 'Playfair Display', serif;
    font-weight: 700; font-size: 18px; letter-spacing: 1px;
}
.logo-text h2 {
    font-size: 20px; font-weight: 600; color: var(--navy);
    letter-spacing: 0.5px; line-height: 1.2;
}
.logo-text span {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; color: var(--text-muted);
    letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
}

/* Nav Links */
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    font-size: 14px; font-weight: 500; color: var(--text-body);
    letter-spacing: 0.3px; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--gold);
    transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after { width: 100%; }

/* Nav CTA Pill */
.nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--navy); color: #fff !important;
    padding: 10px 24px; border-radius: 9999px;
    font-size: 14px; font-weight: 500;
    transition: var(--transition);
}
.nav-cta:hover { background: var(--navy-light); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Mobile Toggle */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span {
    display: block; width: 24px; height: 2px; background: var(--text-dark);
    margin: 5px 0; transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ===== HERO (Home Page) ===== */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(170deg, var(--warm-white) 0%, var(--warm-gray) 50%, var(--cream) 100%);
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(27,58,92,0.04) 0%, transparent 70%);
    border-radius: 50%;
}
.hero .container { position: relative; z-index: 1; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(27,58,92,0.06); padding: 8px 20px;
    border-radius: 9999px; font-size: 13px; font-weight: 500;
    color: var(--navy); margin-bottom: 32px;
    border: 1px solid rgba(27,58,92,0.1);
}
.hero-badge .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold); display: inline-block;
}

.hero h1 {
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 600; max-width: 800px;
    margin-bottom: 24px; color: var(--navy);
}
.hero h1 em {
    font-style: italic; color: var(--gold);
}

.hero-sub {
    font-size: 19px; max-width: 580px;
    color: var(--text-muted); line-height: 1.8;
    margin-bottom: 40px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Buttons (shared) */
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--navy); color: #fff;
    padding: 16px 36px; border-radius: 9999px;
    font-size: 15px; font-weight: 600; font-family: 'DM Sans', sans-serif;
    border: none; cursor: pointer; transition: var(--transition);
    box-shadow: 0 4px 20px rgba(27,58,92,0.25);
}
.btn-primary:hover {
    background: var(--navy-light); transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27,58,92,0.3);
}

.btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--navy);
    padding: 16px 36px; border-radius: 9999px;
    font-size: 15px; font-weight: 600; font-family: 'DM Sans', sans-serif;
    border: 2px solid var(--border-light); cursor: pointer;
    transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--navy); background: rgba(27,58,92,0.03); }

.btn-gold {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold); color: #fff;
    padding: 16px 36px; border-radius: 9999px;
    font-size: 15px; font-weight: 600; font-family: 'DM Sans', sans-serif;
    border: none; cursor: pointer; transition: var(--transition);
    box-shadow: 0 4px 20px rgba(201,160,64,0.25);
}
.btn-gold:hover {
    background: var(--gold-light); transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,160,64,0.3);
}

.btn-outline-gold {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--gold);
    padding: 16px 36px; border-radius: 9999px;
    font-size: 15px; font-weight: 600; font-family: 'DM Sans', sans-serif;
    border: 2px solid var(--gold); cursor: pointer;
    transition: var(--transition);
}
.btn-outline-gold:hover { background: rgba(201,160,64,0.08); }

.btn-sm {
    padding: 10px 24px; font-size: 13px;
}

/* Hero Stats */
.hero-stats {
    display: flex; gap: 48px; margin-top: 72px;
    padding-top: 40px; border-top: 1px solid var(--border-light);
}
.hero-stat h3 {
    font-size: 36px; font-weight: 700; color: var(--navy);
    font-family: 'Playfair Display', serif;
}
.hero-stat h3 span { color: var(--gold); }
.hero-stat p {
    font-size: 13px; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 1.5px;
    font-weight: 500; margin-top: 4px;
}


/* ===== TRUST BAND ===== */
.trust-band {
    background: var(--navy); padding: 48px 0;
    color: rgba(255,255,255,0.7);
}
.trust-band .container {
    display: flex; align-items: center; justify-content: center;
    gap: 48px; flex-wrap: wrap; text-align: center;
}
.trust-item {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; font-weight: 500; letter-spacing: 0.5px;
}
.trust-item svg { flex-shrink: 0; }
.trust-divider {
    width: 1px; height: 24px; background: rgba(255,255,255,0.15);
}


/* ===== SECTION COMMON ===== */
.section { padding: 100px 0; }
.section-label {
    font-size: 12px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 3px; color: var(--gold); margin-bottom: 16px;
}
.section-title {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 600; max-width: 700px; margin-bottom: 20px;
}
.section-desc {
    font-size: 17px; color: var(--text-muted);
    max-width: 560px; line-height: 1.8; margin-bottom: 56px;
}

/* Page Hero (inner pages) */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(170deg, var(--warm-white) 0%, var(--warm-gray) 100%);
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; top: -40%; right: -15%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(27,58,92,0.04) 0%, transparent 70%);
    border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 600; color: var(--navy); margin-bottom: 16px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
    font-size: 18px; color: var(--text-muted);
    max-width: 600px; line-height: 1.8;
}
.page-hero .hero-badge { margin-bottom: 24px; }

/* Breadcrumbs */
.breadcrumbs {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--text-muted); margin-bottom: 24px;
}
.breadcrumbs a { color: var(--navy); font-weight: 500; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { color: var(--border-light); }


/* ===== LEGACY / ABOUT ===== */
.legacy { background: var(--warm-gray); }
.legacy-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.legacy-content .section-label { margin-bottom: 16px; }

.legacy-timeline { display: flex; flex-direction: column; gap: 32px; }
.timeline-item {
    display: flex; gap: 20px; align-items: flex-start;
}
.timeline-year {
    flex-shrink: 0; width: 72px; height: 72px;
    background: var(--navy); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-family: 'Playfair Display', serif;
    font-size: 15px; font-weight: 700;
}
.timeline-text h4 {
    font-size: 18px; font-weight: 600; margin-bottom: 4px;
    font-family: 'DM Sans', sans-serif; color: var(--text-dark);
}
.timeline-text p {
    font-size: 14px; color: var(--text-muted); line-height: 1.7;
}

/* Values Grid */
.legacy-values {
    background: white; border-radius: var(--radius-lg);
    padding: 48px; box-shadow: var(--shadow-medium);
}
.legacy-values h3 {
    font-size: 28px; margin-bottom: 32px; color: var(--navy);
}
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.value-item {
    padding: 24px; border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}
.value-item:hover {
    border-color: var(--gold); box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}
.value-icon {
    width: 40px; height: 40px; border-radius: 8px;
    background: rgba(27,58,92,0.06);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px; font-size: 20px;
}
.value-item h4 {
    font-size: 15px; font-weight: 600; margin-bottom: 6px;
    font-family: 'DM Sans', sans-serif;
}
.value-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }


/* ===== SERVICES ===== */
.services { background: var(--warm-white); }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: white; border-radius: var(--radius-lg);
    padding: 40px 32px; border: 1px solid var(--border-light);
    transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--gold); transform: scaleX(0);
    transform-origin: left; transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    box-shadow: var(--shadow-medium); transform: translateY(-4px);
    border-color: transparent;
}
.service-icon {
    width: 56px; height: 56px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(27,58,92,0.08), rgba(27,58,92,0.03));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px; font-size: 24px;
}
.service-card h3 {
    font-size: 20px; font-weight: 600; margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}
.service-card p {
    font-size: 14px; color: var(--text-muted); line-height: 1.7;
}
.service-tag {
    display: inline-block; margin-top: 16px;
    font-size: 11px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--gold);
}

/* Service Detail (individual service pages) */
.service-detail {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.service-detail-content h2 {
    font-size: 28px; margin-bottom: 16px; color: var(--navy);
}
.service-detail-content p {
    font-size: 15px; color: var(--text-body); line-height: 1.8; margin-bottom: 16px;
}
.service-detail-content ul {
    margin: 16px 0 24px 20px; list-style: disc;
}
.service-detail-content ul li {
    font-size: 14px; color: var(--text-body); line-height: 1.8; margin-bottom: 8px;
}
.service-detail-sidebar {
    background: white; border-radius: var(--radius-lg);
    padding: 36px; border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft); position: sticky; top: 104px;
}
.service-detail-sidebar h3 {
    font-size: 20px; margin-bottom: 20px; color: var(--navy);
}


/* ===== WHY SKAA (Dark Section) ===== */
.why-skaa { background: var(--navy); color: #fff; }
.why-skaa .section-label { color: var(--gold); }
.why-skaa .section-title { color: #fff; }
.why-skaa .section-desc { color: rgba(255,255,255,0.6); }
.reasons-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.reason-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg); padding: 36px;
    transition: var(--transition);
}
.reason-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(201,160,64,0.3);
}
.reason-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px; font-weight: 700; color: var(--gold);
    opacity: 0.4; margin-bottom: 12px;
}
.reason-card h3 {
    font-size: 20px; color: #fff; margin-bottom: 10px;
}
.reason-card p {
    font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.8;
}


/* ===== TEAM ===== */
.team { background: var(--warm-gray); }
.team-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.team-card {
    background: white; border-radius: var(--radius-lg);
    padding: 36px 28px; text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-medium); transform: translateY(-4px); }
.team-avatar {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-family: 'Playfair Display', serif;
    font-size: 24px; font-weight: 700;
}
.team-avatar img {
    width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
}
.team-card h3 {
    font-size: 18px; font-weight: 600; margin-bottom: 4px;
}
.team-role {
    font-size: 13px; color: var(--gold); font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.team-card p {
    font-size: 13px; color: var(--text-muted); line-height: 1.7;
}
.team-card .team-qualifications {
    font-size: 12px; color: var(--text-muted); margin-top: 8px;
    font-weight: 500; letter-spacing: 0.5px;
}


/* ===== INDUSTRIES ===== */
.industries { background: var(--warm-white); }
.industries-flex {
    display: flex; flex-wrap: wrap; gap: 12px;
}
.industry-tag {
    padding: 12px 24px; border-radius: 9999px;
    border: 1px solid var(--border-light); background: white;
    font-size: 14px; font-weight: 500; color: var(--text-body);
    transition: var(--transition); cursor: default;
}
.industry-tag:hover {
    border-color: var(--gold); background: rgba(201,160,64,0.05);
    color: var(--navy);
}


/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--warm-gray); }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: white; border-radius: var(--radius-lg);
    padding: 36px; border: 1px solid var(--border-light);
    transition: var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-medium); transform: translateY(-4px);
}
.testimonial-stars {
    display: flex; gap: 4px; margin-bottom: 20px;
}
.testimonial-stars svg,
.testimonial-stars span {
    color: var(--gold); font-size: 16px;
}
.testimonial-quote {
    font-size: 15px; color: var(--text-body); line-height: 1.8;
    font-style: italic; margin-bottom: 24px; position: relative;
}
.testimonial-quote::before {
    content: '\201C'; font-family: 'Playfair Display', serif;
    font-size: 48px; color: var(--gold); opacity: 0.3;
    position: absolute; top: -16px; left: -4px; line-height: 1;
}
.testimonial-client {
    display: flex; align-items: center; gap: 12px;
    padding-top: 20px; border-top: 1px solid var(--border-light);
}
.testimonial-client-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-family: 'Playfair Display', serif;
    font-size: 14px; font-weight: 700;
}
.testimonial-client h4 {
    font-size: 14px; font-weight: 600; margin-bottom: 2px;
    font-family: 'DM Sans', sans-serif;
}
.testimonial-client p {
    font-size: 12px; color: var(--text-muted);
}


/* ===== PHILOSOPHY / QUOTE ===== */
.philosophy {
    background: var(--cream); padding: 100px 0; text-align: center;
}
.philosophy blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 40px);
    font-style: italic; color: var(--navy);
    max-width: 800px; margin: 0 auto 24px;
    line-height: 1.5;
}
.philosophy cite {
    font-family: 'DM Sans', sans-serif;
    font-style: normal; font-size: 14px;
    color: var(--text-muted); letter-spacing: 1px;
    text-transform: uppercase; font-weight: 500;
}
.quote-line {
    width: 48px; height: 3px; background: var(--gold);
    margin: 0 auto 32px; border-radius: 2px;
}


/* ===== RESOURCES ===== */
.resources { background: var(--warm-white); }
.resources-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Calculator Card */
.calculator-card {
    background: white; border-radius: var(--radius-lg);
    padding: 40px; border: 1px solid var(--border-light);
    transition: var(--transition);
}
.calculator-card:hover {
    box-shadow: var(--shadow-medium); border-color: transparent;
}
.calculator-card .card-icon {
    width: 56px; height: 56px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(201,160,64,0.12), rgba(201,160,64,0.04));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; font-size: 24px;
}
.calculator-card h3 {
    font-size: 20px; margin-bottom: 10px; color: var(--navy);
}
.calculator-card p {
    font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px;
}

/* Calendar Card */
.calendar-card {
    background: var(--navy); border-radius: var(--radius-lg);
    padding: 40px; color: #fff;
}
.calendar-card h3 {
    font-size: 20px; color: #fff; margin-bottom: 10px;
}
.calendar-card p {
    font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px;
}
.calendar-card .card-icon {
    width: 56px; height: 56px; border-radius: 12px;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; font-size: 24px;
}
.calendar-list {
    list-style: none; margin-top: 16px;
}
.calendar-list li {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 14px; color: rgba(255,255,255,0.7);
}
.calendar-list li:last-child { border-bottom: none; }
.calendar-date {
    flex-shrink: 0; min-width: 60px;
    font-weight: 600; color: var(--gold);
    font-size: 13px;
}

/* FAQ Accordion */
.faq { background: var(--warm-gray); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: white; border-radius: var(--radius);
    margin-bottom: 12px; border: 1px solid var(--border-light);
    overflow: hidden; transition: var(--transition);
}
.faq-item.active { border-color: var(--gold); box-shadow: var(--shadow-soft); }
.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; background: none; border: none;
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
    color: var(--text-dark); cursor: pointer; text-align: left;
    transition: var(--transition);
}
.faq-question:hover { color: var(--navy); }
.faq-question .faq-icon {
    width: 24px; height: 24px; border-radius: 50%;
    background: rgba(27,58,92,0.06); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: var(--transition); font-size: 14px; color: var(--navy);
}
.faq-item.active .faq-icon { background: var(--gold); color: #fff; transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 14px; color: var(--text-muted); line-height: 1.8;
}
.faq-item.active .faq-answer {
    max-height: 500px;
}


/* ===== BLOG ===== */
.blog { background: var(--warm-white); }
.blog-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-card {
    background: white; border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--border-light);
    transition: var(--transition);
}
.blog-card:hover {
    box-shadow: var(--shadow-medium); transform: translateY(-4px);
    border-color: transparent;
}
.blog-card-image {
    width: 100%; height: 200px; background: var(--warm-gray);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: var(--transition);
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-image .placeholder-icon {
    font-size: 32px; color: var(--border-light);
}
.blog-card-body {
    padding: 28px;
}
.blog-category {
    display: inline-block; font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold);
    margin-bottom: 12px;
}
.blog-card-body h3 {
    font-size: 18px; font-weight: 600; margin-bottom: 10px;
    line-height: 1.4; color: var(--text-dark);
    transition: var(--transition);
}
.blog-card:hover .blog-card-body h3 { color: var(--navy); }
.blog-card-body p {
    font-size: 14px; color: var(--text-muted); line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-date {
    font-size: 12px; color: var(--text-muted); font-weight: 500;
    letter-spacing: 0.5px;
}
.blog-read-more {
    font-size: 13px; font-weight: 600; color: var(--navy);
    display: inline-flex; align-items: center; gap: 6px;
}
.blog-read-more:hover { color: var(--gold); }

/* Blog single */
.blog-single { max-width: 760px; margin: 0 auto; }
.blog-single h2 { font-size: 24px; margin: 40px 0 16px; color: var(--navy); }
.blog-single h3 { font-size: 20px; margin: 32px 0 12px; color: var(--navy); }
.blog-single p { font-size: 16px; line-height: 1.9; margin-bottom: 20px; }
.blog-single ul, .blog-single ol {
    margin: 16px 0 24px 24px;
}
.blog-single li {
    font-size: 15px; line-height: 1.8; margin-bottom: 8px;
}
.blog-meta {
    display: flex; align-items: center; gap: 16px;
    font-size: 13px; color: var(--text-muted); margin-bottom: 32px;
}
.blog-meta .divider { width: 4px; height: 4px; border-radius: 50%; background: var(--border-light); }


/* ===== CAREERS ===== */
.careers { background: var(--warm-white); }

/* Benefits Grid */
.benefits-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-bottom: 80px;
}
.benefit-card {
    background: white; border-radius: var(--radius-lg);
    padding: 36px; border: 1px solid var(--border-light);
    text-align: center; transition: var(--transition);
}
.benefit-card:hover {
    box-shadow: var(--shadow-soft); transform: translateY(-2px);
    border-color: var(--gold);
}
.benefit-icon {
    width: 56px; height: 56px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(27,58,92,0.08), rgba(27,58,92,0.03));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 24px;
}
.benefit-card h3 {
    font-size: 17px; font-weight: 600; margin-bottom: 8px;
    font-family: 'DM Sans', sans-serif;
}
.benefit-card p {
    font-size: 13px; color: var(--text-muted); line-height: 1.7;
}

/* Position Listings */
.positions-list {
    max-width: 800px; margin: 0 auto;
}
.position-card {
    background: white; border-radius: var(--radius-lg);
    padding: 32px; border: 1px solid var(--border-light);
    margin-bottom: 16px; display: flex; align-items: center;
    justify-content: space-between; gap: 24px;
    transition: var(--transition);
}
.position-card:hover {
    box-shadow: var(--shadow-soft); border-color: var(--gold);
}
.position-info h3 {
    font-size: 18px; font-weight: 600; margin-bottom: 8px;
    font-family: 'DM Sans', sans-serif; color: var(--text-dark);
}
.position-tags {
    display: flex; gap: 8px; flex-wrap: wrap;
}
.position-tag {
    font-size: 12px; font-weight: 500; padding: 4px 12px;
    border-radius: 9999px; background: rgba(27,58,92,0.06);
    color: var(--navy);
}
.position-tag.type { background: rgba(201,160,64,0.1); color: var(--gold); }
.position-apply {
    flex-shrink: 0;
}

/* Apply CTA Section */
.apply-cta {
    background: var(--navy); border-radius: var(--radius-lg);
    padding: 56px; text-align: center; margin-top: 64px;
}
.apply-cta h3 {
    font-size: 28px; color: #fff; margin-bottom: 12px;
}
.apply-cta p {
    font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 28px;
    max-width: 500px; margin-left: auto; margin-right: auto;
}


/* ===== CONTACT ===== */
.contact { background: var(--warm-white); }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: start;
}
.contact-info h3 {
    font-size: 24px; margin-bottom: 24px; color: var(--navy);
}
.contact-item {
    display: flex; gap: 16px; align-items: flex-start;
    margin-bottom: 28px;
}
.contact-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(27,58,92,0.06);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 18px;
}
.contact-item h4 {
    font-size: 14px; font-weight: 600; margin-bottom: 2px;
    font-family: 'DM Sans', sans-serif;
}
.contact-item p { font-size: 14px; color: var(--text-muted); }
.contact-item a { color: var(--navy); font-weight: 500; }
.contact-item a:hover { color: var(--gold); }

/* Contact Form */
.contact-form {
    background: white; border-radius: var(--radius-lg);
    padding: 40px; box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}
.contact-form h3 {
    font-size: 22px; margin-bottom: 24px; color: var(--navy);
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 13px; font-weight: 600;
    margin-bottom: 6px; color: var(--text-dark);
    text-transform: uppercase; letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: 14px 16px; border: 1px solid var(--border-light);
    border-radius: var(--radius); font-family: 'DM Sans', sans-serif;
    font-size: 14px; color: var(--text-dark); background: var(--warm-white);
    transition: var(--transition); outline: none;
    -webkit-appearance: none; appearance: none;
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,58,92,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted); opacity: 0.6;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-submit {
    width: 100%; padding: 16px; background: var(--navy); color: #fff;
    border: none; border-radius: 9999px; font-size: 15px; font-weight: 600;
    font-family: 'DM Sans', sans-serif; cursor: pointer;
    transition: var(--transition);
}
.form-submit:hover { background: var(--navy-light); }
.form-submit:active { transform: scale(0.98); }

/* Map Placeholder */
.map-placeholder {
    width: 100%; height: 300px; border-radius: var(--radius-lg);
    background: var(--warm-gray); border: 1px solid var(--border-light);
    display: flex; align-items: center; justify-content: center;
    margin-top: 40px; overflow: hidden;
}
.map-placeholder iframe {
    width: 100%; height: 100%; border: 0;
}


/* ===== FOOTER ===== */
.footer {
    background: var(--black); color: rgba(255,255,255,0.5);
    padding: 64px 0 32px;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; margin-bottom: 48px;
}
.footer-brand .logo-mark {
    background: rgba(255,255,255,0.08); margin-bottom: 16px;
}
.footer-brand p {
    font-size: 14px; line-height: 1.7; max-width: 280px;
}
.footer h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 2px; color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    font-size: 14px; color: rgba(255,255,255,0.5);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px; display: flex;
    justify-content: space-between; align-items: center;
    font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold); }
.footer-social {
    display: flex; gap: 16px;
}
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.06); display: flex;
    align-items: center; justify-content: center;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--gold); color: #fff;
}
.footer-social a svg { width: 16px; height: 16px; }


/* ===== WHATSAPP FLOAT ===== */
.wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 24px rgba(37,211,102,0.4);
    transition: var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,0.5); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
.wa-float-label {
    position: fixed; bottom: 36px; right: 96px; z-index: 999;
    background: white; color: var(--text-dark); padding: 8px 16px;
    border-radius: var(--radius); font-size: 13px; font-weight: 500;
    box-shadow: var(--shadow-medium); opacity: 0; transform: translateX(8px);
    transition: var(--transition); pointer-events: none;
}
.wa-float:hover + .wa-float-label { opacity: 1; transform: translateX(0); }


/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-muted); }
.text-white { color: #fff; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mb-6 { margin-bottom: 64px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mt-6 { margin-top: 64px; }

.mx-auto { margin-left: auto; margin-right: auto; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.hidden { display: none; }
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}


/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1; transform: translateY(0);
}
.reveal-left {
    opacity: 0; transform: translateX(-32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible {
    opacity: 1; transform: translateX(0);
}
.reveal-right {
    opacity: 0; transform: translateX(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible {
    opacity: 1; transform: translateX(0);
}
.reveal-scale {
    opacity: 0; transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.visible {
    opacity: 1; transform: scale(1);
}

/* Stagger delays for grid children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* Fade in on load */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}
.animate-in.delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-in.delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-in.delay-3 { animation-delay: 0.3s; opacity: 0; }
.animate-in.delay-4 { animation-delay: 0.4s; opacity: 0; }


/* ===== RESPONSIVE — 1024px ===== */
@media (max-width: 1024px) {
    .services-grid,
    .team-grid,
    .testimonials-grid,
    .blog-grid,
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }

    .legacy-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .service-detail { grid-template-columns: 1fr; }
    .service-detail-sidebar { position: static; }
    .resources-grid { grid-template-columns: 1fr; }
}

/* ===== RESPONSIVE — 768px ===== */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .nav-links.active {
        display: flex; flex-direction: column;
        position: absolute; top: 80px; left: 0; right: 0;
        background: var(--warm-white); padding: 24px;
        border-bottom: 1px solid var(--border-light);
        box-shadow: var(--shadow-medium);
        gap: 16px;
    }
    .nav-links.active a { font-size: 16px; padding: 8px 0; }
    .nav-links.active .nav-cta {
        align-self: flex-start; margin-top: 8px;
    }

    .hero { padding: 120px 0 60px; }
    .hero h1 { font-size: clamp(32px, 6vw, 48px); }
    .hero-stats { flex-direction: column; gap: 24px; }
    .hero-stats .hero-stat { display: flex; align-items: baseline; gap: 12px; }

    .page-hero { padding: 120px 0 48px; }

    .services-grid,
    .reasons-grid,
    .testimonials-grid,
    .blog-grid,
    .benefits-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }

    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .trust-band .container { flex-direction: column; gap: 16px; }
    .trust-divider { display: none; }

    .value-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .position-card { flex-direction: column; align-items: flex-start; }
    .apply-cta { padding: 40px 24px; }

    .section { padding: 64px 0; }
    .section-desc { margin-bottom: 40px; }

    .wa-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
    .wa-float svg { width: 24px; height: 24px; }
    .wa-float-label { display: none; }
}

/* ===== RESPONSIVE — 480px ===== */
@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .header .container { height: 64px; }
    .logo-mark { width: 36px; height: 36px; font-size: 14px; }
    .logo-text h2 { font-size: 16px; }
    .logo-text span { font-size: 9px; }

    .hero { padding: 100px 0 48px; }
    .hero-badge { font-size: 12px; padding: 6px 14px; }
    .hero-sub { font-size: 16px; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn-primary,
    .hero-ctas .btn-secondary { width: 100%; justify-content: center; }

    .page-hero { padding: 100px 0 36px; }
    .page-hero p { font-size: 16px; }

    .section { padding: 48px 0; }
    .section-title { font-size: clamp(26px, 6vw, 36px); }
    .section-desc { font-size: 15px; margin-bottom: 32px; }

    .service-card { padding: 28px 24px; }
    .reason-card { padding: 24px; }
    .team-card { padding: 28px 20px; }
    .testimonial-card { padding: 24px; }
    .blog-card-body { padding: 20px; }
    .contact-form { padding: 28px; }
    .calculator-card { padding: 28px; }
    .calendar-card { padding: 28px; }
    .benefit-card { padding: 24px; }
    .position-card { padding: 24px; }

    .btn-primary, .btn-secondary, .btn-gold, .btn-outline-gold {
        padding: 14px 28px; font-size: 14px;
    }

    .philosophy blockquote { font-size: clamp(20px, 5vw, 28px); }

    .legacy-values { padding: 32px 24px; }
    .legacy-values h3 { font-size: 22px; }

    .footer { padding: 48px 0 24px; }
    .footer-grid { gap: 24px; }
}


/* ===== PRINT ===== */
@media print {
    .header, .wa-float, .wa-float-label, .mobile-toggle { display: none; }
    .hero { padding-top: 40px; }
    body { background: #fff; color: #000; }
    .section { padding: 32px 0; }
    a { color: #000; }
    .footer { background: #fff; color: #333; border-top: 1px solid #ccc; }
}
