/* ============================================================
   CANPROPP PERFORMANCE PARTNERS INC. — styles.css
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
    --navy-950: #020810;
    --navy-900: #edeae3;
    --navy-800: #e4e0d8;
    --navy-700: #d8d3c9;
    --navy-600: #c8c2b8;
    --gold-300: #f5e098;
    --gold-400: #e8c96e;
    --gold-500: #c9a84c;
    --gold-600: #a8873c;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy-950); }
::-webkit-scrollbar-thumb { background: var(--gold-600); border-radius: 2px; }

/* ---------- Typography ---------- */
.text-gradient {
    background: linear-gradient(120deg, var(--gold-600) 0%, var(--gold-500) 45%, var(--gold-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-500);
    border: 1px solid rgba(201, 168, 76, 0.25);
    background: rgba(201, 168, 76, 0.04);
    padding: 5px 14px;
    border-radius: 2px;
}

/* ---------- Navbar ---------- */
#navbar { background: transparent; }

#navbar.scrolled {
    background: rgba(5, 13, 26, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.07);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.logo-mark {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


/* ---------- Brand Wordmark (new logo) ---------- */
.brand-wordmark {
    font-family: 'Playfair Display', serif;
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    background: linear-gradient(135deg, #a8873c 0%, #c9a84c 50%, #e8c96e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.brand-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.57rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.48);
    margin-top: 4px;
}

.hamburger-line {
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: var(--transition);
    width: 24px;
}
.hamburger-line:last-child { width: 16px; }

/* ---------- Buttons ---------- */
.btn-primary {
    position: relative;
    z-index: 0;
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%);
    color: #1a1506;
    font-weight: 700;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover { box-shadow: 0 0 40px rgba(201, 168, 76, 0.35), 0 8px 24px rgba(0,0,0,0.3); color: #1a1506; }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary > span, .btn-primary > svg { position: relative; z-index: 1; }

.btn-ghost {
    border: 1.5px solid rgba(201, 168, 76, 0.35);
    color: rgba(232, 201, 110, 0.9);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-ghost:hover {
    border-color: var(--gold-500);
    background: rgba(201, 168, 76, 0.07);
    color: var(--gold-400);
}

/* ---------- Hero ---------- */
#hero {
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
}

#hero-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(5,13,26,0.6) 0%, transparent 100%),
        linear-gradient(to bottom, rgba(2,8,16,0.6) 0%, rgba(2,8,16,0.2) 40%, rgba(5,13,26,0.75) 100%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-400);
    border: 1px solid rgba(201, 168, 76, 0.2);
    background: rgba(201, 168, 76, 0.05);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 100px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-500);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-stats {
    border: 1px solid rgba(201, 168, 76, 0.08);
    background: rgba(5, 13, 26, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 8px;
    overflow: hidden;
}

.hero-stat {
    padding: 20px 16px;
    border-right: 1px solid rgba(201, 168, 76, 0.08);
}
.hero-stat:last-child { border-right: none; }

/* Scroll indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.scroll-wheel {
    width: 22px;
    height: 36px;
    border: 1.5px solid rgba(201, 168, 76, 0.3);
    border-radius: 11px;
    position: relative;
    animation: bounce-slow 2.5s ease-in-out infinite;
}
.scroll-wheel::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 6px;
    transform: translateX(-50%);
    width: 3px;
    height: 7px;
    background: var(--gold-500);
    border-radius: 2px;
    animation: scroll-dot 2.5s ease-in-out infinite;
}

@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(8px); opacity: 1; }
}
@keyframes scroll-dot {
    0% { top: 6px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

/* ---------- Hero Reveal Animations ---------- */
.reveal-element {
    opacity: 0;
    animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Scroll Reveal ---------- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
    transition-delay: var(--reveal-delay, 0s);
}
.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Pillars ---------- */
.pillar { transition: var(--transition); }
.pillar:hover { background: rgba(201, 168, 76, 0.03); }

.pillar-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}
.pillar:hover .pillar-icon {
    background: rgba(201, 168, 76, 0.15);
    border-color: rgba(201, 168, 76, 0.35);
}

/* ---------- Service Cards ---------- */
.service-card {
    background: rgba(15, 32, 64, 0.4);
    border: 1px solid rgba(201, 168, 76, 0.07);
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    background: rgba(15, 32, 64, 0.7);
    transform: translateY(-5px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 60px rgba(201, 168, 76, 0.04);
}

.service-number {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(201, 168, 76, 0.3);
    font-family: 'Inter', sans-serif;
}

.service-icon-wrap {
    width: 54px;
    height: 54px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
    background: rgba(201, 168, 76, 0.16);
    border-color: rgba(201, 168, 76, 0.35);
    transform: scale(1.06);
}

.service-metric {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.metric-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--gold-400);
    line-height: 1;
}
.metric-label {
    font-size: 0.72rem;
    color: rgba(100, 116, 139, 0.8);
    font-weight: 500;
}

/* ---------- About Section ---------- */
.about-visual-wrap {
    position: relative;
    padding: 20px;
}

.about-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}
.about-orb-1 {
    width: 300px; height: 300px;
    background: rgba(201, 168, 76, 0.04);
    top: -60px; left: -60px;
}
.about-orb-2 {
    width: 200px; height: 200px;
    background: rgba(45, 90, 142, 0.08);
    bottom: -40px; right: -40px;
}

.about-main-card {
    background: linear-gradient(145deg, var(--navy-700) 0%, var(--navy-600) 100%);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}
.about-main-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
}

.about-card-inner {
    padding: 36px;
}

.about-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
}

.about-mini-stat {
    padding: 12px;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.04);
}

.about-industries-tag {
    margin-top: 12px;
    padding: 16px 20px;
    background: rgba(10, 22, 40, 0.7);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.industry-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold-400);
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.15);
    padding: 3px 10px;
    border-radius: 3px;
    letter-spacing: 0.05em;
}

.capability-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 9px 12px;
    background: rgba(201, 168, 76, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 7px;
    font-size: 0.82rem;
    color: rgb(203, 213, 225);
    transition: var(--transition);
}
.capability-item:hover {
    border-color: rgba(201, 168, 76, 0.2);
    background: rgba(201, 168, 76, 0.06);
}

.contact-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.85rem;
    color: rgba(100, 116, 139, 1);
    transition: color 0.2s ease;
}
.contact-inline-link:hover { color: var(--gold-400); }

/* ---------- Impact / Stats ---------- */
.impact-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.stat-card {
    background: rgba(10, 22, 40, 0.7);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.stat-card:hover::after { opacity: 1; }
.stat-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.stat-num {
    font-size: 3.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-desc {
    font-size: 0.78rem;
    color: rgba(100, 116, 139, 0.85);
    margin-top: 10px;
    line-height: 1.5;
}

/* ---------- Timeline ---------- */
.timeline-container { position: relative; }

.tl-item {
    display: grid;
    grid-template-columns: 140px 32px 1fr;
    gap: 0 16px;
    align-items: start;
    margin-bottom: 32px;
}
@media (max-width: 640px) {
    .tl-item {
        grid-template-columns: 0 24px 1fr;
    }
    .tl-left { display: none; }
}

.tl-left { padding-top: 20px; text-align: right; }

.tl-date {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-500);
    line-height: 1.4;
}

.tl-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

.tl-dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.25);
    border: 2px solid rgba(201, 168, 76, 0.4);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.tl-dot.active {
    background: var(--gold-500);
    border-color: var(--gold-400);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.15), 0 0 16px rgba(201, 168, 76, 0.4);
}

.tl-line {
    width: 1px;
    flex: 1;
    min-height: 40px;
    background: linear-gradient(to bottom, rgba(201, 168, 76, 0.3), rgba(201, 168, 76, 0.05));
    margin-top: 6px;
}

.tl-right { padding-top: 8px; padding-bottom: 16px; }

.tl-card {
    background: rgba(15, 32, 64, 0.45);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 14px;
    padding: 24px;
    transition: var(--transition);
}
.tl-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    background: rgba(15, 32, 64, 0.7);
    transform: translateX(4px);
}

.tl-badge-current {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-400);
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
}

.tl-bullet {
    display: flex;
    gap: 8px;
    font-size: 0.83rem;
    color: rgba(148, 163, 184, 0.9);
    line-height: 1.6;
    padding-left: 4px;
}
.tl-bullet::before {
    content: '▸';
    color: var(--gold-500);
    flex-shrink: 0;
    font-size: 0.7rem;
    margin-top: 3px;
}

/* ---------- Certifications ---------- */
.cert-card {
    background: rgba(10, 22, 40, 0.5);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 14px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.cert-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.cert-card:hover::before { opacity: 1; }
.cert-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.cert-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 3px;
}
.cert-badge.certified {
    color: var(--gold-400);
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
}
.cert-badge.in-progress {
    color: #93c5fd;
    background: rgba(147, 197, 253, 0.08);
    border: 1px solid rgba(147, 197, 253, 0.2);
}
.cert-badge.education {
    color: #86efac;
    background: rgba(134, 239, 172, 0.08);
    border: 1px solid rgba(134, 239, 172, 0.2);
}

.cert-icon-wrap {
    width: 44px; height: 44px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- CTA Section ---------- */
.cta-radial {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 500px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at center, black 40%, transparent 100%);
}

/* ---------- Contact ---------- */
.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
}
.contact-detail-icon {
    width: 46px; height: 46px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(100, 116, 139, 0.7);
    margin-bottom: 3px;
}

.form-group { display: flex; flex-direction: column; }

.form-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.8);
    margin-bottom: 7px;
    letter-spacing: 0.03em;
}

.form-field {
    background: rgba(5, 13, 26, 0.8);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 7px;
    padding: 13px 16px;
    color: white;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    width: 100%;
}
.form-field::placeholder { color: rgba(71, 85, 105, 0.7); }
.form-field:focus {
    border-color: rgba(201, 168, 76, 0.4);
    background: rgba(15, 32, 64, 0.6);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.06);
}
.form-field:focus-visible { outline: none; }
select.form-field { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23c9a84c' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
select.form-field option { background: #0a1628; color: white; }

/* ---------- Credential Story Cards ---------- */
.cred-card {
    background: rgba(15, 32, 64, 0.45);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.cred-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}
.cred-card:hover::before { transform: scaleX(1); }
.cred-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    background: rgba(15, 32, 64, 0.7);
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.cred-header {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 12px;
}

.cred-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-400);
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 5px 12px;
    border-radius: 3px;
}

.cred-metric {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold-400);
    line-height: 1;
    text-align: right;
    flex-shrink: 0;
}
.cred-metric span {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(100, 116, 139, 0.8);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 3px;
}

.cred-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.cred-tags span {
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(100, 116, 139, 0.9);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 3px 10px;
    border-radius: 3px;
    letter-spacing: 0.04em;
}

.cred-industries {
    padding: 28px 32px;
    background: rgba(5, 13, 26, 0.5);
    border: 1px solid rgba(201, 168, 76, 0.07);
    border-radius: 12px;
}

/* ---------- About Image Banner ---------- */
.about-img-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 380px;
}
.about-img-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    transition: transform 0.8s ease;
    filter: brightness(0.65) saturate(0.8);
}
.about-img-banner:hover .about-img-banner-img {
    transform: scale(1.03);
    filter: brightness(0.78) saturate(0.9);
}

.about-img-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5,13,26,0.92) 0%, rgba(5,13,26,0.65) 55%, rgba(5,13,26,0.28) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}
.about-img-banner-content { max-width: 560px; }

/* ---------- Split Image Section ---------- */
.split-img-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 420px;
}
@media (max-width: 768px) {
    .split-img-section { grid-template-columns: 1fr; height: auto; }
}

.split-img-left,
.split-img-right {
    position: relative;
    overflow: hidden;
}
.split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
    filter: brightness(0.6) saturate(0.8);
}
.split-img-left:hover .split-img,
.split-img-right:hover .split-img {
    transform: scale(1.05);
    filter: brightness(0.7) saturate(0.9);
}

.split-img-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 36px 36px 32px;
    background: linear-gradient(to top, rgba(5,13,26,0.95) 0%, rgba(5,13,26,0.5) 60%, transparent 100%);
}
.split-img-caption::before {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background: var(--gold-500);
    margin-bottom: 14px;
    border-radius: 1px;
}
.split-img-caption-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    font-style: italic;
    color: white;
    line-height: 1.4;
    letter-spacing: 0.01em;
}
.split-img-caption-sub {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-top: 8px;
    opacity: 0.85;
}
.split-img-left::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 1px;
    height: 100%;
    background: rgba(201, 168, 76, 0.15);
}

/* ---------- CTA Image Section ---------- */
.cta-img-section {
    background-image: url('https://images.unsplash.com/photo-1531746790731-6c087fecd65a?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.cta-img-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 13, 26, 0.88);
}

/* ---------- Approach Cards ---------- */
.approach-card {
    background: rgba(15, 32, 64, 0.4);
    border: 1px solid rgba(201, 168, 76, 0.07);
    border-radius: 14px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.approach-card:hover {
    border-color: rgba(201, 168, 76, 0.22);
    background: rgba(15, 32, 64, 0.7);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.approach-step {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(201, 168, 76, 0.35);
}
.approach-icon {
    width: 46px; height: 46px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.approach-card:hover .approach-icon {
    background: rgba(201, 168, 76, 0.16);
    border-color: rgba(201, 168, 76, 0.3);
}

/* ---------- Scale Badges ---------- */
.scale-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(232, 201, 110, 0.8);
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.18);
    padding: 6px 14px;
    border-radius: 100px;
    transition: var(--transition);
}
.scale-badge:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: rgba(201, 168, 76, 0.35);
    color: var(--gold-400);
}

/* ---------- Industry Cards ---------- */
.industry-card {
    background: rgba(15, 32, 64, 0.3);
    border: 1px solid rgba(201, 168, 76, 0.07);
    border-radius: 12px;
    transition: var(--transition);
}
.industry-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    background: rgba(201, 168, 76, 0.04);
    transform: translateY(-3px);
}
.industry-icon {
    width: 52px; height: 52px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
}
.industry-card:hover .industry-icon {
    background: rgba(201, 168, 76, 0.14);
    border-color: rgba(201, 168, 76, 0.28);
}

/* ---------- Expect Items (Contact) ---------- */
.expect-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.expect-num {
    width: 32px; height: 32px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-400);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ---------- Testimonial Cards ---------- */
.testimonial-card {
    background: rgba(15, 32, 64, 0.45);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 16px;
    padding: 36px 32px 32px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}
.testimonial-card:hover::before { transform: scaleX(1); }
.testimonial-card:hover {
    border-color: rgba(201, 168, 76, 0.22);
    background: rgba(15, 32, 64, 0.7);
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold-500);
    line-height: 0.6;
    opacity: 0.35;
    flex-shrink: 0;
}

.testimonial-text {
    font-size: 0.92rem;
    color: rgba(203, 213, 225, 0.88);
    line-height: 1.75;
    font-weight: 300;
    flex: 1;
}

.testimonial-industry-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-500);
    background: rgba(201, 168, 76, 0.07);
    border: 1px solid rgba(201, 168, 76, 0.18);
    padding: 5px 12px;
    border-radius: 3px;
    margin-top: 8px;
}

/* ---------- Methodology Badges ---------- */
.method-badge {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(148, 163, 184, 0.6);
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 3px;
    background: rgba(255,255,255,0.02);
    transition: var(--transition);
}
.method-badge:hover {
    color: var(--gold-400);
    border-color: rgba(201, 168, 76, 0.2);
    background: rgba(201, 168, 76, 0.04);
}

/* ========== LIGHT THEME OVERRIDES ========== */

/* Navbar: white glass when scrolled */
#navbar.scrolled {
    background: rgba(237, 234, 227, 0.97);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
}
#navbar.scrolled .nav-link { color: #4b5563; }
#navbar.scrolled .nav-link:hover { color: var(--gold-600); }

/* Cards — white with soft shadow on light bg */
.service-card,
.cred-card,
.approach-card,
.testimonial-card {
    background: #f5f2eb;
    border-color: rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.05);
}
.service-card:hover,
.cred-card:hover,
.approach-card:hover,
.testimonial-card:hover {
    background: #f7f4ed;
    border-color: rgba(201, 168, 76, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10), 0 0 0 1px rgba(201, 168, 76, 0.12);
}
.industry-card {
    background: #f5f2eb;
    border-color: rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.industry-card:hover {
    background: #f7f4ed;
    border-color: rgba(201, 168, 76, 0.28);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

/* Form fields — white with visible border */
.form-field {
    background: #ede9e2;
    border-color: rgba(0, 0, 0, 0.12);
    color: #111827;
}
.form-field::placeholder { color: #9ca3af; }
.form-field:focus {
    background: #e8e4dc;
    border-color: rgba(201, 168, 76, 0.5);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}
.form-label { color: #6b7280; }
select.form-field option { background: #ffffff; color: #111827; }

/* Tags, badges, misc on light bg */
.cred-tags span {
    color: #6b7280;
    background: rgba(0, 0, 0, 0.025);
    border-color: rgba(0, 0, 0, 0.07);
}
.cred-industries {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.method-badge {
    color: #6b7280;
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.02);
}
.method-badge:hover {
    color: var(--gold-600);
    border-color: rgba(201, 168, 76, 0.3);
    background: rgba(201, 168, 76, 0.05);
}

/* Icons on light bg */
.pillar-icon,
.service-icon-wrap,
.approach-icon,
.industry-icon {
    background: rgba(201, 168, 76, 0.09);
    border-color: rgba(201, 168, 76, 0.22);
}
.pillar:hover .pillar-icon,
.service-card:hover .service-icon-wrap,
.approach-card:hover .approach-icon,
.industry-card:hover .industry-icon {
    background: rgba(201, 168, 76, 0.16);
    border-color: rgba(201, 168, 76, 0.38);
}

/* Small text elements on light cards */
.service-number  { color: rgba(201, 168, 76, 0.5); }
.approach-step   { color: rgba(201, 168, 76, 0.5); }
.metric-label    { color: #9ca3af; }
.testimonial-text { color: #4b5563; font-weight: 400; }

/* Contact section */
.contact-detail-icon {
    background: rgba(201, 168, 76, 0.09);
    border-color: rgba(201, 168, 76, 0.22);
}
.contact-detail-label { color: #9ca3af; }
.expect-num {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.25);
}

/* ---- Section text normalization ---- */
/* text-white on light sections → near-black */
#pillars .text-white, #services .text-white, #about .text-white,
#approach .text-white, #industries .text-white, #testimonials .text-white,
#contact .text-white { color: #111827; }

/* text-gray-300/400 → readable medium gray */
#pillars .text-gray-300,   #pillars .text-gray-400,
#services .text-gray-300,  #services .text-gray-400,
#about .text-gray-300,     #about .text-gray-400,
#approach .text-gray-300,  #approach .text-gray-400,
#industries .text-gray-300,#industries .text-gray-400,
#testimonials .text-gray-300,#testimonials .text-gray-400,
#contact .text-gray-300,   #contact .text-gray-400 { color: #6b7280; }

/* text-gray-500/600 → slightly muted */
#pillars .text-gray-500,    #pillars .text-gray-600,
#services .text-gray-500,   #services .text-gray-600,
#about .text-gray-500,      #about .text-gray-600,
#approach .text-gray-500,   #approach .text-gray-600,
#industries .text-gray-500, #industries .text-gray-600,
#testimonials .text-gray-500,#testimonials .text-gray-600,
#contact .text-gray-500,    #contact .text-gray-600 { color: #9ca3af; }

/* Exception: preserve light text inside the dark about-banner overlay */
#about .about-img-banner-content .text-white { color: #ffffff; }
#about .about-img-banner-content .text-gray-400 { color: rgba(156, 163, 175, 0.9); }

/* Exception: keep industry tags gold */
.industry-tag { color: var(--gold-400); }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .stat-num { font-size: 2.75rem; }
    .hero-badge { font-size: 0.62rem; }
    .about-card-inner { padding: 24px; }
}

@media (max-width: 480px) {
    .hero-stats { display: none; }
    .tl-item { grid-template-columns: 0 24px 1fr; }
}
