/*
Theme Name: SIC Custom Theme
Theme URI: https://sibcoating.com
Author: Antigravity
Author URI: 
Description: Custom high-performance theme for Sturgeon Industrial Coating.
Version: 1.81
*/
:root {
    --bg-dark: #0a0a0c;
    --bg-surface: #111114;
    --bg-card: rgba(22, 22, 28, 0.7);
    --bg-card-hover: rgba(35, 35, 45, 0.85);
    --primary: #e95e01;
    --primary-glow: rgba(233, 94, 1, 0.35);
    --primary-hover: #FF7733;
    --accent: #ff8f00;
    --text-main: #f0f0f5;
    --text-muted: #E0E0E0;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 255, 255, 0.15);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 12px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg-dark); color: var(--text-main); font-family: var(--font-body); line-height: 1.7; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 900; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.2rem; }
.highlight { color: var(--primary); }
a { text-decoration: none; color: var(--primary); transition: color var(--transition); }
a:hover { color: var(--primary-hover); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 5%); }
img { max-width: 100%; height: auto; display: block; }

/* ── NAVBAR ── */
.navbar { position: fixed; top: 0; left: 0; width: 100%; padding: 0.15rem 5%; display: flex; justify-content: space-between; align-items: center; background: rgba(10, 10, 12, 0.6); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); z-index: 1000; transition: padding var(--transition), background var(--transition); }
.navbar.scrolled { padding: 0.15rem 5%; background: rgba(15, 15, 18, 0.85); backdrop-filter: blur(15px); border-bottom: 1px solid var(--glass-border); }
/* Header Logo - Dark Mode */
body:not(.light-mode) .logo-img { height: 45px; margin-top: 0; margin-bottom: 0; width: auto; transition: height var(--transition); }
body:not(.light-mode) .navbar.scrolled .logo-img { height: 35px; margin-top: 0; margin-bottom: 0; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a:not(.btn-primary) { color: var(--text-main); font-weight: 500; font-size: 0.8rem; position: relative; }
.nav-links a:not(.btn-primary)::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); transition: width var(--transition); }
.nav-links a:not(.btn-primary):hover::after { width: 100%; }
.nav-links a:not(.btn-primary):hover { color: var(--primary); }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--text-main); margin: 6px 0; transition: var(--transition); border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ── BUTTONS ── */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff !important; padding: 0.6rem 1.5rem; border-radius: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; transition: transform var(--transition), box-shadow var(--transition); border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px var(--primary-glow); color: #fff !important; }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; text-align: center; color: var(--text-main) !important; padding: 0.6rem 1.5rem; border-radius: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; border: 2px solid var(--glass-border-hover); transition: all var(--transition); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary) !important; background: rgba(255, 85, 0, 0.08); }
.btn-highlight { background: #fff; color: #0a0a0c !important; padding: 0.75rem 2rem; border-radius: 6px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; transition: all var(--transition); display: inline-block; box-shadow: 0 0 15px rgba(255,255,255,0.2); }
.btn-highlight:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255,255,255,0.4); }
.nav-cta { padding: 0.4rem 1.2rem !important; border-radius: 50px; font-weight: 600; font-size: 0.8rem !important; letter-spacing: 1px; transition: transform 0.3s ease, box-shadow 0.3s ease; display: inline-flex !important; align-items: center !important; height: 35px !important; line-height: 1 !important; box-sizing: border-box !important; }
.nav-cta:hover { transform: translateY(-2px); color: #fff !important; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ── HERO ── */
.hero { min-height: 70vh; display: flex; align-items: center; padding: 6rem 5% 8rem 5%; position: relative; }
.hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,12,0.88) 0%, rgba(10,10,12,0.6) 50%, rgba(10,10,12,0.85) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 750px; }
.hero-badge { display: inline-block; background: linear-gradient(135deg, var(--primary), var(--accent)); border: none; color: #fff; padding: 0.4rem 1.2rem; border-radius: 50px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.5rem; box-shadow: 0 0 15px var(--primary-glow); }
.hero-tagline { font-size: clamp(1.1rem, 2.5vw, 1.5rem); color: #ccc; margin: 1rem 0 1.5rem; font-weight: 300; }
.hero-tagline strong { color: var(--primary); font-weight: 700; }
.hero-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; text-align: center; }
.hero-scroll-indicator span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px; color: var(--text-muted); display: block; margin-bottom: 0.2rem; line-height: 1.3; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--primary), transparent); margin: 0 auto; animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(0.7); } 50% { opacity: 1; transform: scaleY(1); } }

/* ── STATS BAR ── */
.stats-bar { background: var(--bg-surface); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); padding: 3rem 5%; }
.stats-container { display: flex; justify-content: center; align-items: flex-start; gap: 3rem; max-width: 1100px; margin: 0 auto; flex-wrap: wrap; }
.stat-item { text-align: center; flex: 1; min-width: 150px; min-height: 120px; display: flex; flex-direction: column; justify-content: flex-start; align-items: center; }
.stat-number { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 900; color: var(--primary); display: inline-block; font-variant-numeric: tabular-nums; min-width: 2.5em; text-align: right; }
.stat-number-text { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 900; color: var(--primary); display: inline-block; text-align: center; }
.stat-suffix { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--primary); }
.stat-label { display: block; font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 0.3rem; }
.stat-divider { width: 1px; height: 50px; background: var(--glass-border); }

/* ── SECTIONS ── */
section { padding: clamp(4rem, 8vw, 8rem) 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag { display: inline-block; color: var(--accent); font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 550px; margin: 0 auto; }

/* ── SERVICES ── */
.services { background: var(--bg-dark); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: var(--radius); overflow: hidden; backdrop-filter: blur(10px); transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.service-card:hover { transform: translateY(-8px); border-color: rgba(255, 85, 0, 0.4); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px var(--primary-glow); }
.card-image-wrap { position: relative; overflow: hidden; height: 140px; }
.card-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .card-image-wrap img { transform: scale(1.08); }
.card-overlay { position: absolute; top: 1rem; right: 1rem; }
.card-number { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 900; color: rgba(255,255,255,0.15); }
.card-content { padding: 1.5rem 2rem; }
.card-content h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.spec-list { list-style: none; margin-bottom: 1.5rem; }
.spec-list li { color: var(--text-muted); font-size: 0.95rem; padding: 0.3rem 0; padding-left: 1.2rem; position: relative; }
.spec-list li::before { content: ''; position: absolute; left: 0; top: 50%; width: 6px; height: 6px; background: var(--primary); border-radius: 50%; transform: translateY(-50%); }
.card-link { font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 0.5rem; }
.card-link span { transition: transform var(--transition); }
.card-link:hover span { transform: translateX(5px); }

/* ── PROJECTS GALLERY ── */
.projects { background: var(--bg-surface); }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 1.5rem; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-large { grid-row: 1 / 3; }
.gallery-large img { height: 584px; }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; background: linear-gradient(to top, rgba(0,0,0,0.85), transparent); transform: translateY(100%); transition: transform var(--transition); }
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.gallery-caption h4 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.gallery-caption p { color: var(--text-muted); font-size: 0.85rem; }

/* ── ABOUT ── */
.about { padding: 8rem 5%; position: relative; overflow: hidden; }
.about-intro { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: center; margin-bottom: 6rem; max-width: 1200px; margin-inline: auto; }
.about-lead { font-size: 1.3rem; color: var(--text-muted); font-weight: 300; margin-bottom: 1.5rem; }
.about-lead strong { color: var(--primary); }
.about-text-col p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 1rem; }
.guarantee-box { display: flex; gap: 1.2rem; align-items: flex-start; margin-top: 2.5rem; padding: 1.5rem 2rem; background: rgba(255, 85, 0, 0.04); border: 1px solid rgba(255, 85, 0, 0.15); border-radius: var(--radius); }
.guarantee-icon { font-size: 2rem; flex-shrink: 0; }
.guarantee-box h4 { color: var(--primary); font-size: 1.1rem; margin-bottom: 0.2rem; line-height: 1.3; }
.guarantee-box p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }
.about-text-col p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.about-logo { width: 100%; max-width: 450px; height: auto; }

/* ── LEADERSHIP ── */
.leadership-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.leader-card { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); }
.leader-card:hover { transform: translateY(-6px); border-color: rgba(255, 85, 0, 0.3); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); }
.leader-accent { height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.leader-info { padding: 1.5rem 2rem; }
.leader-info h3 { font-size: 1.4rem; margin-bottom: 0.3rem; }
.leader-title { display: inline-block; color: var(--primary); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1rem; }
.leader-info p { color: var(--text-muted); font-size: 0.95rem; }
.leader-info em { color: var(--text-main); font-style: italic; }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg, rgba(255, 85, 0, 0.04), rgba(255, 143, 0, 0.02)); border-top: 1px solid rgba(255, 85, 0, 0.15); border-bottom: 1px solid rgba(255, 85, 0, 0.15); text-align: center; padding: 5rem 5%; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2rem; max-width: 550px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer { background: #050508; padding: 2.5rem 0 1rem; border-top: 1px solid var(--glass-border); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 1rem; }
/* Footer Logo - Dark Mode */
/* Footer Logo - Dark Mode */
body:not(.light-mode) .footer-logo { height: 76px !important; margin: 50px auto 19px auto; display: block; width: auto; }
.footer-brand p { color: var(--text-muted); font-size: 0.95rem; }
.footer-tagline { color: var(--primary) !important; font-weight: 600; font-style: italic; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 0.2rem; line-height: 1.3; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.2rem; line-height: 1.3; color: var(--text-muted); display: flex; align-items: flex-start; }
.footer-col a { color: var(--text-muted); }
.footer-col a:hover { color: var(--primary); }
.social-links { margin-top: 1.5rem; }
.social-links a { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border: 1px solid var(--glass-border); border-radius: 6px; color: var(--text-muted); font-size: 0.9rem; transition: all var(--transition); }
.social-links a:hover { border-color: var(--primary); color: var(--primary); }
.social-links svg { flex-shrink: 0; }
.footer-bottom { text-align: center; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-bottom p { color: #999; font-size: 0.85rem; }

/* ── ANIMATIONS ── */
.fade-in { animation: fadeIn 1s ease forwards; }
.fade-in-delay-1 { animation: fadeIn 1s 0.2s ease forwards; opacity: 0; }
.fade-in-delay-2 { animation: fadeIn 1s 0.4s ease forwards; opacity: 0; }
.fade-in-delay-3 { animation: fadeIn 1s 0.6s ease forwards; opacity: 0; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .services-grid, .leadership-grid { grid-template-columns: 1fr 1fr; }
    .about-intro { grid-template-columns: 1fr; }
    .about-logo-col { order: -1; }
    .about-logo { max-width: 280px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }

    .nav-links { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: rgba(15, 15, 20, 0.98); backdrop-filter: blur(20px); flex-direction: column; justify-content: center; gap: 2rem; padding: 1.5rem 2rem; transition: right var(--transition); }
    .nav-links.open { right: 0; }
    .hamburger { display: block; }
}
@media (max-width: 768px) {
    /* Mobile Fixes */
    .hero-scroll-indicator { display: none; }
    .hero-actions { flex-direction: column; gap: 1rem; width: 100%; }
    .hero-actions .btn-lg { width: 100%; text-align: center; }
    .about-logo { margin: 0 auto; display: block; }
    .services-grid, .leadership-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-large { grid-row: auto; }
    .gallery-large img { min-height: 300px; }
    .stats-container { gap: 1.5rem; }
    .stat-divider { display: none; }
    .stat-number, .stat-number-text { font-size: 2.2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; text-align: left; }
    .footer-brand { grid-column: auto; text-align: left; }
    .footer-col ul li { text-align: left; display: flex; align-items: flex-start; justify-content: flex-start; }
    .footer-col h3 { text-align: left; }
    body:not(.light-mode) .footer-logo { margin: 20px auto 10px auto; height: 60px !important; }
    .light-mode .footer-logo.light-logo { margin: 20px auto 10px auto !important; height: 60px !important; }
    .social-links { display: flex; gap: 1rem; }
    .hero { background-attachment: scroll; }
    .cta-band { padding: 3rem 5%; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
    .footer-brand { text-align: center; }
    .footer-col h3 { text-align: center; }
    .footer-col ul li { text-align: center; justify-content: center; }
    .social-links { justify-content: center; }
}


.brand-text { color: var(--primary); font-weight: 800; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.info-boxes { display: flex; flex-direction: column; align-items: stretch; max-width: 400px; margin: 0 auto; gap: 1rem; }
.info-box {
    display: flex;
    align-items: center;
    text-align: left;
    background: var(--bg-card);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
}
.info-icon { font-size: 2rem; color: var(--primary); flex-shrink: 0; margin-right: 1.5rem; display: flex; align-items: center; justify-content: center; }
.info-text strong { display: block; color: var(--primary); font-size: 1.3rem; margin-bottom: 0.3rem; }
.info-text p { color: var(--text-main); margin: 0; line-height: 1.5; }

.form-card { background: var(--bg-surface); padding: 1.5rem 2rem; border-radius: var(--radius); border: 1px solid var(--glass-border); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.sic-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { color: var(--text-muted); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.sic-form input, .sic-form select, .sic-form textarea { width: 100%; padding: 1rem 1.2rem; background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); border-radius: 6px; color: var(--text-main); font-family: var(--font-body); font-size: 1rem; transition: border-color var(--transition), background var(--transition); }
.sic-form input:focus, .sic-form select:focus, .sic-form textarea:focus { outline: none; border-color: var(--primary); background: rgba(255,255,255,0.08); }
.sic-form select option { background: var(--bg-surface); color: var(--text-main); }

.careers-banner { background: linear-gradient(135deg, rgba(255, 85, 0, 0.04), rgba(255, 143, 0, 0.02)); border-top: 1px solid rgba(255, 85, 0, 0.15); border-bottom: 1px solid rgba(255, 85, 0, 0.15); padding: 4rem 5%; text-align: center; }
.careers-banner h3 { margin-bottom: 1rem; color: var(--text-main); font-size: 1.8rem; }
.careers-banner p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2rem; max-width: 700px; margin-inline: auto; }

@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; }
}

.cta-actions a { padding: 0.5rem 1rem !important; font-size: 0.8rem !important; min-width: 120px; }

/* ── LIGHT MODE OVERRIDES ── */
@media (max-width: 1024px) {
    body.light-mode .nav-links { background: rgba(240, 242, 245, 0.98); }
}
body.light-mode .nav-links a { color: var(--text-main); }
.light-mode {

    --bg-dark: #f0f2f5;
    --bg-surface: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.95);
    --bg-card-hover: rgba(255, 255, 255, 1);
    --text-main: #1a1a1c;
    --text-muted: #4a4a50;
    --glass-border: rgba(0, 0, 0, 0.12);
    --glass-border-hover: rgba(0, 0, 0, 0.25);
    --primary: #c44d00;
}
.light-mode .hero-bg-overlay { background: rgba(255, 255, 255, 0.25); }
.light-mode .hero-desc, .light-mode .hero-tagline { color: #000; font-weight: 700; }
.light-mode .hero-desc { font-size: 1.15rem; }
.light-mode .hero-tagline { font-size: 1.35rem; }
.light-mode .hero-scroll-indicator span { color: #000; font-weight: 800; font-size: 0.85rem; }
.light-mode .scroll-line { width: 3px; background: var(--primary); }
.light-mode .hero h1 { color: #000; }
.light-mode .hero h1 .highlight, .light-mode .hero-desc .highlight, .light-mode .hero-tagline .highlight { color: var(--primary); }
.hero .btn-outline { background: linear-gradient(135deg, var(--primary), var(--accent)); border: none; color: #fff !important; box-shadow: 0 4px 15px rgba(255, 85, 0, 0.2); }
.hero .btn-outline .contact-icon { fill: #fff; }
.light-mode .hero .btn-outline { color: #000 !important; }
.light-mode .hero .btn-outline .contact-icon { fill: #000; }
.light-mode .btn-primary { color: #000 !important; box-shadow: 0 4px 15px rgba(255, 85, 0, 0.2); }
.light-mode .hero-badge { color: #000; box-shadow: none; border: 1px solid rgba(255, 85, 0, 0.2); }
.light-mode .obfuscated-email { color: var(--text-main) !important; }
.light-mode .gallery-caption { background: linear-gradient(to top, rgba(255,255,255,0.95), transparent); }
.light-mode .gallery-caption h4 { color: #0a0a0c; }
.light-mode .gallery-caption p { color: #444; }

.light-mode .footer { background: #e0e2e8; border-top: 1px solid rgba(0,0,0,0.1); }
.light-mode .footer-col h4 { color: #111; }
.light-mode .sic-form input, .light-mode .sic-form select, .light-mode .sic-form textarea { background: rgba(0,0,0,0.03); color: #111; }
.light-mode .sic-form input:focus, .light-mode .sic-form select:focus, .light-mode .sic-form textarea:focus { background: rgba(0,0,0,0.05); }
.light-mode .card-number { color: rgba(0,0,0,0.08); }

/* Theme Toggle Button */
.theme-toggle { background: transparent; border: 1px solid var(--glass-border); border-radius: 50%; width: 40px; height: 40px; display: flex; justify-content: center; align-items: center; cursor: pointer; color: var(--text-main); font-size: 1.1rem; transition: var(--transition); margin-left: 1rem; }
.theme-toggle:hover { border-color: var(--primary); color: var(--primary); transform: rotate(15deg); }

/* ── WP BLOCK COMPATIBILITY ── */
.alignwide { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull { max-width: 100%; margin-left: auto; margin-right: auto; width: 100vw; position: relative; left: 50%; right: 50%; transform: translateX(-50%); }
.wp-block-image { margin-bottom: 2rem; }
.wp-block-image img { border-radius: var(--radius); }

.light-mode .navbar { background: rgba(255, 255, 255, 0.95); border-bottom: 1px solid rgba(0,0,0,0.1); }
.light-mode .navbar.scrolled { background: rgba(255, 255, 255, 0.98); box-shadow: 0 4px 10px rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.1); }
.light-mode .nav-links a:not(.btn-primary) { color: #111; }
.light-mode .hamburger span { background: #111; }
.light-mode .hero-badge { box-shadow: none; border: 1px solid rgba(255, 85, 0, 0.2); }
.light-mode .btn-primary { box-shadow: 0 4px 15px rgba(255, 85, 0, 0.2); }
.light-mode .btn-primary:hover { box-shadow: 0 8px 20px rgba(255, 85, 0, 0.3); }

/* Delivery Grid Animations */
.delivery-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}
@media(max-width: 900px) {
    .delivery-grid { grid-template-columns: 1fr; }
    .delivery-center-img { display: none; }
}
.delivery-col { display: flex; flex-direction: column; gap: 2rem; }
.delivery-center-img img { border-radius: var(--radius); box-shadow: 0 10px 30px rgba(0,0,0,0.5); max-width: 350px; border: 2px solid var(--primary); }

.snap-left { opacity: 0; transform: translateX(-100px); }
.snap-right { opacity: 0; transform: translateX(100px); }
.snap-bottom-left { opacity: 0; transform: translate(-100px, 100px); }
.snap-bottom-right { opacity: 0; transform: translate(100px, 100px); }
.snap-center { opacity: 0; transform: scale(0.8); }

.visible.snap-left { animation: snapInLeft 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
.visible.snap-right { animation: snapInRight 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
.visible.snap-bottom-left { animation: snapInBottomLeft 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
.visible.snap-bottom-right { animation: snapInBottomRight 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
.visible.snap-center { animation: snapInCenter 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }

@keyframes snapInLeft { to { opacity: 1; transform: translateX(0); } }
@keyframes snapInRight { to { opacity: 1; transform: translateX(0); } }
@keyframes snapInBottomLeft { to { opacity: 1; transform: translate(0, 0); } }
@keyframes snapInBottomRight { to { opacity: 1; transform: translate(0, 0); } }
@keyframes snapInCenter { to { opacity: 1; transform: scale(1); } }

.delivery-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.delivery-card h4 { color: var(--primary); margin-bottom: 0.2rem; line-height: 1.3; }

.light-mode svg { fill: #2c3e50 !important; }

/* Fix Contact SVG Icons for Dark Mode */
.contact-icon {
    fill: var(--text-main);
    flex-shrink: 0;
    margin-right: 10px !important;
    margin-top: 3px;
}
.contact-icon-orange {
    fill: var(--primary);
}

/* Service Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
}
.step-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.step-card:hover {
    transform: translateY(-10px);
}
.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 85, 0, 0.1); /* Very faint orange */
    position: absolute;
    top: -10px;
    right: 20px;
    pointer-events: none;
}
.step-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}
.step-card p {
    color: var(--text-main);
    position: relative;
    z-index: 2;
}

/* Fix footer logo scaling */
.footer-logo {
    /* Reverted logo scaling */
    transform-origin: left center;
}

/* Fix leadership cards to headshot size */
.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 250px)); /* Restrict width */
    gap: 2rem;
    justify-content: center;
}
.leader-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

/* Services Stacked Layout */
.services-stacked {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.service-row {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    transition: transform 0.3s ease;
}
.service-row:hover {
    transform: translateY(-5px);
}
.service-num {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    margin-right: 2rem;
    line-height: 1;
}
.service-text h3 {
    color: var(--text-main);
    margin-bottom: 0.2rem; line-height: 1.3;
}
.service-text p {
    color: var(--text-muted);
    margin: 0;
}

/* Headshot Style */
.leader-img-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
}
.leader-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.leader-card {
    text-align: center;
    background: var(--bg-card);
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
}

.obfuscated-email { color: #ffffff !important; }

.info-box a {
    color: var(--text-main);
    text-decoration: none;
}
.info-box a:hover {
    color: var(--primary);
}

/* Force About/Services icons to white */
.service-icon, .icon, svg {
    fill: currentColor;
}
.service-card svg {
    color: var(--text-main); /* White in dark mode */
}

.footer-brand { text-align: center; }


/* Swap logos to full color version in light mode */
.light-mode .dark-logo { display: none !important; }
body:not(.light-mode) .light-logo { display: none !important; }

/* Light Mode Logo Overrides (Compensating for image whitespace on the transparent PNG) */
.light-mode .logo-img.light-logo { height: 45px !important; margin: 0; width: auto !important; }
.light-mode .navbar.scrolled .logo-img.light-logo { height: 35px !important; margin: 0; width: auto !important; }
.light-mode .footer-logo.light-logo { height: 76px !important; margin: 50px auto 19px auto !important; width: auto !important; }

.light-mode .section-tag {
    color: #b84800;
}




.light-mode .footer-brand p, 
.light-mode .footer-col ul li, 
.light-mode .footer-col a,
.light-mode .footer-bottom p {
    color: #111;
    font-weight: 500;
}
.light-mode .footer-col h4 {
    color: #000;
    font-weight: 700;
}







/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lightbox-modal.show {
    display: block;
    opacity: 1;
}
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}
.lightbox-modal.show .lightbox-content {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}
.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}
.gallery-item {
    cursor: pointer;
}
.gallery-item img {
    transition: transform 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

/* ═══════════════════════ COOKIE BANNER ═══════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}
.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.cookie-banner a {
    color: var(--primary);
    text-decoration: underline;
}
.cookie-btn {
    background: #fff;
    color: #000;
    font-weight: 700;
    border: none;
    padding: 6px 16px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    transition: background 0.3s ease, color 0.3s ease;
}
.cookie-btn:hover {
    background: #e0e0e0;
}
.light-mode .cookie-banner {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #000;
}
.light-mode .cookie-btn {
    background: #000;
    color: #fff;
}
.light-mode .cookie-btn:hover {
    background: #333;
    color: #fff;
}
@media (max-width: 600px) {
    .cookie-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
        border-radius: 12px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

