/*
Theme Name: Executive Career Lab
Theme URI: https://executivecl.com
Author: Executive Career Lab
Author URI: https://executivecl.com
Description: Premium WordPress theme for Executive Career Lab — Executive Resume Writing, Market Positioning & HR Advisory Services. Built for Directors, VPs & C-Suite professionals.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: executive-career-lab
Tags: executive, career, resume, hr, consulting, business, professional, elementor
*/

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

:root {
    --navy: #0D1B40;
    --navy-dark: #081229;
    --navy-light: #1a2d5a;
    --gold: #C9A84C;
    --gold-light: #e0c170;
    --gold-dark: #a8863a;
    --charcoal: #2C2C2C;
    --white: #FFFFFF;
    --off-white: #F8F7F4;
    --light-gray: #EEEEEE;
    --mid-gray: #999999;
    --text-dark: #1a1a1a;
    --text-mid: #444444;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', Arial, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 48px rgba(0,0,0,0.16);
    --radius: 4px;
    --radius-lg: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }

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

h1 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1.2rem; }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.8rem); margin-bottom: 0.8rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.6rem; }
p { margin-bottom: 1.2rem; color: var(--text-mid); font-size: 1rem; line-height: 1.8; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.section {
    padding: 90px 0;
}

.section-sm { padding: 60px 0; }
.section-lg { padding: 120px 0; }

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

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
    color: var(--white);
}

.section-dark p { color: rgba(255,255,255,0.8); }

.section-gold {
    background: var(--gold);
}

.section-off-white { background: var(--off-white); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-white { color: var(--white) !important; }
.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

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

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

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
    .section-lg { padding: 80px 0; }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.section-header .eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-header h2 { margin-bottom: 1rem; }

.section-header p {
    font-size: 1.1rem;
    color: var(--text-mid);
}

.divider-gold {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 1.2rem auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--navy);
}

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

.btn-navy:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 44px;
    font-size: 1rem;
}

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

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
#site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: var(--navy);
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
    transition: var(--transition);
}

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

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.site-logo .logo-text span {
    color: var(--gold);
}

.site-logo .logo-tagline {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2px;
}

#site-navigation {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

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

.nav-menu li a {
    display: block;
    padding: 8px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item > a,
.nav-menu li.current_page_item > a {
    color: var(--gold);
    background: rgba(201,168,76,0.1);
}

.header-cta {
    flex-shrink: 0;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--white);
    padding: 8px 12px;
    cursor: pointer;
    border-radius: var(--radius);
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .menu-toggle { display: block; }
    .header-cta { display: none; }

    #site-navigation {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--navy-dark);
        padding: 1.5rem;
        box-shadow: var(--shadow-md);
        flex-direction: column;
        align-items: flex-start;
    }

    #site-navigation.active { display: flex; }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
    }

    .nav-menu li { width: 100%; }

    .nav-menu li a {
        padding: 12px 16px;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    padding: 110px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    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='%23C9A84C' fill-opacity='0.04'%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");
    opacity: 0.5;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content .eyebrow {
    display: inline-block;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-content h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.trust-item::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
}

.hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    max-width: 400px;
    width: 100%;
}

.hero-card .card-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-stat {
    margin-bottom: 1.8rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero-stat:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.hero-stat .stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.hero-stat .stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-visual { justify-content: flex-start; }
    .hero-card { max-width: 100%; }
}

/* ============================================================
   PROBLEM AGITATION SECTION
   ============================================================ */
.problem-section { background: var(--off-white); }

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

.problem-list {
    list-style: none;
    margin: 1.5rem 0 2rem;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.problem-list li:last-child { border-bottom: none; }

.problem-icon {
    width: 32px;
    height: 32px;
    background: rgba(13, 27, 64, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--navy);
    font-size: 0.9rem;
    margin-top: 2px;
}

.problem-list li p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-mid);
}

.problem-callout {
    background: var(--navy);
    color: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--gold);
}

.problem-callout blockquote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    margin: 0;
}

.problem-callout cite {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-style: normal;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 1.5rem;
}

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

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.service-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--navy);
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-mid);
    flex: 1;
}

.service-card .service-features {
    list-style: none;
    margin: 1.2rem 0 1.5rem;
}

.service-card .service-features li {
    font-size: 0.88rem;
    color: var(--text-mid);
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card .service-features li::before {
    content: '›';
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 700;
}

.service-card .learn-more {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: auto;
}

.service-card .learn-more:hover { color: var(--gold-dark); }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section { background: var(--navy); }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    counter-reset: step-counter;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(201,168,76,0.2) 100%);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 0 8px rgba(201,168,76,0.15);
}

.process-step h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.process-step p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
}

@media (max-width: 480px) {
    .process-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--off-white); }

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

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--navy);
    line-height: 1.6;
    margin: 0 0 1.5rem;
    flex: 1;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.author-info .name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.author-info .role {
    font-size: 0.78rem;
    color: var(--mid-gray);
}

/* ============================================================
   DIFFERENTIATOR / COMPARISON TABLE
   ============================================================ */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th {
    padding: 1.2rem 1.5rem;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.comparison-table th:first-child { text-align: left; background: var(--off-white); }
.comparison-table th:nth-child(2) { background: #f0f0f0; color: var(--mid-gray); }
.comparison-table th:nth-child(3) { background: var(--navy); color: var(--white); }

.comparison-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.92rem;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--navy);
    background: var(--off-white);
}

.comparison-table td:nth-child(2) {
    text-align: center;
    color: var(--mid-gray);
}

.comparison-table td:nth-child(3) {
    text-align: center;
    background: rgba(13,27,64,0.03);
    color: var(--navy);
    font-weight: 600;
}

.comparison-table .check { color: var(--gold); font-size: 1.1rem; }
.comparison-table .cross { color: #ccc; font-size: 1.1rem; }

.comparison-table tr:last-child td { border-bottom: none; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
    background: var(--navy-dark);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 700;
    display: block;
    margin-bottom: 0.3rem;
}

.footer-brand .logo-text span { color: var(--gold); }

.footer-brand .tagline {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1.5rem;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.footer-col h5 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

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

.footer-nav li {
    margin-bottom: 0.7rem;
}

.footer-nav li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
}

.footer-nav li a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}

.footer-legal a:hover { color: var(--gold); }

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

@media (max-width: 600px) {
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
}

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

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

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-placeholder {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    color: var(--white);
}

.about-image-placeholder .initials {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1rem;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-badge .badge-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.about-badge .badge-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--navy);
    display: block;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border-left: 4px solid var(--gold);
}

.value-card h4 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.85rem; margin: 0; }

@media (max-width: 768px) {
    .about-intro { grid-template-columns: 1fr; gap: 3rem; }
    .about-values { grid-template-columns: 1fr; }
    .about-badge { position: static; margin-top: 1rem; }
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--light-gray);
}

.service-detail:last-child { border-bottom: none; }
.service-detail:nth-child(even) .service-detail-content { order: 2; }
.service-detail:nth-child(even) .service-detail-visual { order: 1; }

.service-detail-visual {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.service-detail-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255,255,255,0.07);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
}

.service-detail-feature-icon {
    width: 36px;
    height: 36px;
    background: var(--gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.service-detail-feature p {
    margin: 0;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
}

.deliverables-list {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 1.5rem 0;
}

.deliverables-list h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.deliverables-list ul {
    list-style: none;
}

.deliverables-list ul li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--light-gray);
}

.deliverables-list ul li:last-child { border-bottom: none; }

.deliverables-list ul li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .service-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .service-detail:nth-child(even) .service-detail-content,
    .service-detail:nth-child(even) .service-detail-visual {
        order: unset;
    }
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-item {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: var(--transition);
}

.faq-question:hover { background: var(--off-white); }
.faq-question.active { background: var(--navy); color: var(--white); }

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--navy);
    font-weight: 700;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-answer {
    display: none;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--light-gray);
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-mid);
    margin: 0;
}

.faq-answer.active { display: block; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--gold);
}

.blog-thumb {
    height: 200px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: relative;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 50px;
}

.blog-content {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 0.78rem;
    color: var(--mid-gray);
    margin-bottom: 0.8rem;
    display: flex;
    gap: 1rem;
}

.blog-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.blog-content h3 a {
    color: var(--navy);
}

.blog-content h3 a:hover { color: var(--gold); }

.blog-content p {
    font-size: 0.88rem;
    color: var(--text-mid);
    flex: 1;
    margin-bottom: 1.5rem;
}

.read-more {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: auto;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.contact-item p {
    font-size: 0.92rem;
    margin: 0;
}

.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

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

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

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

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 2rem; }
}

/* ============================================================
   LEGAL PAGES (Privacy / Terms)
   ============================================================ */
.legal-content {
    max-width: 860px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.legal-content p, .legal-content li {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
}

.legal-content ul, .legal-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.2rem;
}

.legal-content li { margin-bottom: 0.5rem; }

.legal-last-updated {
    display: inline-block;
    background: var(--off-white);
    border-left: 4px solid var(--gold);
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
    color: var(--text-mid);
    margin-bottom: 2.5rem;
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background: var(--gold);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-box .stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(13,27,64,0.7);
}

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

/* ============================================================
   MISC
   ============================================================ */
.calendly-embed {
    min-height: 700px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.wp-block-separator { border-color: var(--light-gray); }

.entry-content p { margin-bottom: 1.2rem; }

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 99999;
    padding: 8px 16px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
}

.skip-link:focus { left: 6px; top: 7px; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--navy-light); }

/* Print */
@media print {
    #site-header, #site-footer, .btn, .hero { display: none; }
}
