/* ════════════════════════════════════════════════
   BRIGHT-WAVES v2.0 — Main Stylesheet
   Colors: Red #DC2626 · Black #0a0a0a · White #fff
   ════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Sora:wght@600;700;800;900&display=swap');

/* ─── Variables ─── */
:root, [data-theme="dark"] {
    --bw-red: #DC2626;
    --bw-bg: #0a0a0a;
    --bw-bg-alt: #111;
    --bw-card-bg: rgba(255,255,255,.04);
    --bw-text: #f9fafb;
    --bw-text-light: #a1a1aa;
    --bw-text-muted: #71717a;
    --bw-border: rgba(255,255,255,.08);
    --bw-radius: 10px;
    --bw-radius-lg: 16px;
    --bw-radius-full: 9999px;
    --bw-transition: .35s cubic-bezier(.25,.46,.45,.94);
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-heading: 'Sora', 'Inter', sans-serif;
}
[data-theme="light"] {
    --bw-bg: #fff;
    --bw-bg-alt: #f4f4f5;
    --bw-card-bg: rgba(0,0,0,.02);
    --bw-text: #18181b;
    --bw-text-light: #52525b;
    --bw-text-muted: #a1a1aa;
    --bw-border: rgba(0,0,0,.08);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    background: var(--bw-bg);
    color: var(--bw-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    transition: background .4s, color .4s;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 800; line-height: 1.15; }

/* ─── Layout ─── */
.bw-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.bw-container--narrow { max-width: 960px; }
.bw-section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag { display: inline-block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--bw-red); margin-bottom: .75rem; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .75rem; }
.section-desc { font-size: 1.05rem; color: var(--bw-text-light); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.section-cta { text-align: center; margin-top: 2.5rem; }

/* ═══════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════ */
.bw-preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: #0a0a0a;
    display: flex; align-items: center; justify-content: center;
    transition: opacity .6s, visibility .6s;
}
.bw-preloader.loaded { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-wave { width: 120px; height: 40px; display: block; margin: 0 auto 1rem; }
.wave-path { animation: wave-draw 1.5s ease-in-out infinite; }
.wave-2 { animation-delay: .3s; }
@keyframes wave-draw { 0%, 100% { stroke-dashoffset: 200; } 50% { stroke-dashoffset: 0; } }
.preloader-wave .wave-path { stroke-dasharray: 200; }
.preloader-text { color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; letter-spacing: 2px; }

/* ═══════════════════════════════════════
   CUSTOM CURSOR
   ═══════════════════════════════════════ */
.bw-cursor { pointer-events: none; position: fixed; z-index: 10000; }
.cursor-dot { width: 6px; height: 6px; background: var(--bw-red); border-radius: 50%; position: fixed; transform: translate(-50%, -50%); transition: transform .1s; z-index: 10001; pointer-events: none; }
.cursor-circle { width: 36px; height: 36px; border: 1.5px solid rgba(220, 38, 38, .4); border-radius: 50%; position: fixed; transform: translate(-50%, -50%); transition: width .3s, height .3s, border-color .3s; z-index: 10000; pointer-events: none; }
@media (hover: none) { .bw-cursor { display: none; } }

/* ═══════════════════════════════════════
   HEADER — bw-header
   ═══════════════════════════════════════ */
.bw-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1rem 0;
    transition: all .4s ease;
}
.bw-header.header--solid {
    background: rgba(10, 10, 10, .95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: .6rem 0;
    border-bottom: 1px solid var(--bw-border);
}
[data-theme="light"] .bw-header.header--solid { background: rgba(255,255,255,.95); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.header-logo { display: flex; align-items: center; }
.header-logo img { height: 42px; width: auto; }

/* Nav */
.header-nav { display: flex; align-items: center; }
.nav-list { display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.nav-list li a {
    font-size: .9rem; font-weight: 600; color: var(--bw-text-light);
    transition: color .3s; position: relative; padding: 4px 0;
}
.nav-list li a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 2px; background: var(--bw-red); transition: width .3s;
}
.nav-list li a:hover, .nav-list .current-menu-item a { color: var(--bw-text); }
.nav-list li a:hover::after, .nav-list .current-menu-item a::after { width: 100%; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: .75rem; }
.dark-mode-toggle {
    background: none; border: 1px solid var(--bw-border);
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .3s; color: var(--bw-text);
    position: relative;
}
.dark-mode-toggle:hover { border-color: var(--bw-red); }
.dark-mode-toggle .icon-sun, .dark-mode-toggle .icon-moon { position: absolute; transition: opacity .3s, transform .3s; }
[data-theme="light"] .dark-mode-toggle .icon-sun { opacity: 0; transform: rotate(90deg); }
[data-theme="light"] .dark-mode-toggle .icon-moon { opacity: 1; transform: rotate(0); }
[data-theme="dark"] .dark-mode-toggle .icon-sun { opacity: 1; transform: rotate(0); }
[data-theme="dark"] .dark-mode-toggle .icon-moon { opacity: 0; transform: rotate(-90deg); }
.header-cta { white-space: nowrap; }

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none; background: none; border: none;
    cursor: pointer; padding: 8px; z-index: 1002;
}
.hamburger { display: flex; flex-direction: column; gap: 5px; width: 24px; }
.hamburger span { display: block; width: 100%; height: 2px; background: var(--bw-text); transition: all .3s; }
.mobile-menu-toggle.is-active .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.is-active .hamburger span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.is-active .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay */
.mobile-menu-overlay {
    position: fixed; inset: 0; background: rgba(10, 10, 10, .98);
    backdrop-filter: blur(20px); z-index: 1001;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all .4s;
}
.mobile-menu-overlay.mobile-menu--open { opacity: 1; visibility: visible; }
.mobile-menu-inner { text-align: center; }
.mobile-nav-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.mobile-nav-list li { margin-bottom: .5rem; }
.mobile-nav-list li a {
    font-family: var(--font-heading); font-size: 2rem; font-weight: 800;
    color: #fff; transition: color .3s; display: inline-block; padding: .25rem 0;
}
.mobile-nav-list li a:hover { color: var(--bw-red); }
.mobile-menu-contact { margin-top: 2rem; }
.mobile-phone { display: block; color: var(--bw-text-light); font-size: 1.1rem; margin-bottom: 1rem; }
.mobile-social { display: flex; gap: 1rem; justify-content: center; }
.mobile-social a { color: var(--bw-text-light); transition: color .3s; }
.mobile-social a:hover { color: var(--bw-red); }

/* Page transition */
.page-transition {
    position: fixed; inset: 0; background: var(--bw-red); z-index: 9998;
    transform: scaleY(0); transform-origin: bottom; transition: transform .5s cubic-bezier(.86,0,.07,1);
    pointer-events: none;
}

/* ═══════════════════════════════════════
   HERO — bw-hero
   ═══════════════════════════════════════ */
.bw-hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; background: #000;
}
.hero-particles { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-gradient {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(220,38,38,.06) 0%, transparent 70%);
}
.hero-bg-pattern { position: absolute; inset: 0; opacity: .03; background-image: radial-gradient(rgba(255,255,255,.3) 1px, transparent 1px); background-size: 40px 40px; }
.hero-content { position: relative; z-index: 4; text-align: center; max-width: 900px; padding: 0 2rem; will-change: transform; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(220,38,38,.08); border: 1px solid rgba(220,38,38,.2);
    padding: 8px 20px; border-radius: var(--bw-radius-full);
    font-size: .85rem; color: rgba(255,255,255,.9); font-weight: 600;
    margin-bottom: 2rem; backdrop-filter: blur(8px);
    min-height: 40px; position: relative; overflow: hidden;
}
.badge-item { display: none; }
.badge-item.active { display: inline; }
.hero-title {
    font-size: clamp(2.5rem, 6.5vw, 5rem); font-weight: 900;
    color: #fff; line-height: 1.05; margin-bottom: 1.5rem; letter-spacing: -.02em;
}
.title-line { display: block; }
.title-accent { color: var(--bw-red); }
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,.5);
    max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.7;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-text { font-size: .7rem; text-transform: uppercase; letter-spacing: 3px; color: rgba(255,255,255,.25); }
.scroll-chevron { animation: scroll-bounce 2s ease-in-out infinite; }
@keyframes scroll-bounce { 0%, 100% { transform: translateY(0); opacity: .4; } 50% { transform: translateY(8px); opacity: 1; } }

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 30px; border-radius: var(--bw-radius-full);
    font-family: var(--font-body); font-weight: 700; font-size: .9rem;
    text-decoration: none; transition: all var(--bw-transition);
    border: 2px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--bw-red); color: #fff; border-color: var(--bw-red); }
.btn-primary:hover { background: #b91c1c; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(220,38,38,.3); }
.btn-glow { box-shadow: 0 0 20px rgba(220,38,38,.2); }
.btn-glow:hover { box-shadow: 0 0 40px rgba(220,38,38,.4); }
.btn-outline { background: transparent; color: var(--bw-text); border-color: var(--bw-border); }
.btn-outline:hover { border-color: var(--bw-text); transform: translateY(-2px); }
.bw-hero .btn-outline { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.2); }
.bw-hero .btn-outline:hover { color: #fff; border-color: #fff; }
.btn-glow-outline { box-shadow: 0 0 15px rgba(255,255,255,.05); }
.btn-white { background: #fff; color: #0a0a0a; border-color: #fff; }
.btn-white:hover { background: transparent; color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: .85rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════
   GLASS CARD
   ═══════════════════════════════════════ */
.glass-card {
    background: var(--bw-card-bg);
    border: 1px solid var(--bw-border);
    border-radius: var(--bw-radius-lg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* ═══════════════════════════════════════
   CLIENTS MARQUEE
   ═══════════════════════════════════════ */
.bw-clients { padding: 3rem 0; overflow: hidden; }
.clients-label { text-align: center; font-size: .85rem; color: var(--bw-text-muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 2rem; }
.marquee-wrapper { overflow: hidden; position: relative; }
.marquee-wrapper::before, .marquee-wrapper::after { content: ''; position: absolute; top: 0; width: 100px; height: 100%; z-index: 2; }
.marquee-wrapper::before { left: 0; background: linear-gradient(to right, var(--bw-bg), transparent); }
.marquee-wrapper::after { right: 0; background: linear-gradient(to left, var(--bw-bg), transparent); }
.marquee-track { display: flex; gap: 3rem; animation: marquee 25s linear infinite; width: max-content; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item { flex-shrink: 0; }
.client-logo-placeholder { width: 120px; height: 50px; background: var(--bw-card-bg); border: 1px solid var(--bw-border); border-radius: var(--bw-radius); display: flex; align-items: center; justify-content: center; font-size: .75rem; color: var(--bw-text-muted); }

/* ═══════════════════════════════════════
   SERVICES GRID
   ═══════════════════════════════════════ */
.services-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
    padding: 2.5rem 2rem; transition: all var(--bw-transition);
    position: relative; overflow: hidden; display: block; text-decoration: none; color: var(--bw-text);
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--card-accent, var(--bw-red)); transform: scaleX(0); transition: transform .4s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 25px 60px rgba(0,0,0,.15); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 50px; height: 50px; margin-bottom: 1.5rem; color: var(--card-accent, var(--bw-red)); font-size: 2rem; position: relative; }
.icon-glow { position: absolute; inset: -8px; background: var(--card-accent, var(--bw-red)); opacity: .08; border-radius: 50%; filter: blur(8px); }
.service-title { font-size: 1.15rem; font-weight: 700; margin-bottom: .75rem; }
.service-desc { font-size: .9rem; color: var(--bw-text-light); line-height: 1.7; margin-bottom: 1rem; }
.service-arrow { display: inline-flex; color: var(--card-accent, var(--bw-red)); transition: transform .3s; }
.service-card:hover .service-arrow { transform: translateX(6px); }

/* ═══════════════════════════════════════
   WHY US / STATS
   ═══════════════════════════════════════ */
.why-us-grid { display: flex; gap: 4rem; align-items: center; }
.why-us-content { flex: 1; }
.why-us-content .section-tag, .why-us-content .section-title { text-align: left; }
.why-us-content p { color: var(--bw-text-light); margin-bottom: 1.5rem; line-height: 1.8; }
.why-us-list { margin-bottom: 2rem; }
.why-us-list li { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; font-weight: 500; }
.why-us-list li svg { flex-shrink: 0; }
.why-us-stats { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.stat-card {
    text-align: center; padding: 2rem;
    background: var(--bw-card-bg); border: 1px solid var(--bw-border);
    border-radius: var(--bw-radius-lg); transition: all var(--bw-transition);
}
.stat-card:hover { border-color: rgba(220,38,38,.15); transform: translateY(-3px); }
.stat-number { font-family: var(--font-heading); font-size: 3rem; font-weight: 900; color: var(--bw-red); line-height: 1; }
.stat-suffix { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; color: var(--bw-red); }
.stat-label { display: block; margin-top: .5rem; color: var(--bw-text-light); font-size: .85rem; }

/* ═══════════════════════════════════════
   PORTFOLIO
   ═══════════════════════════════════════ */
.portfolio-filters { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
    background: var(--bw-bg-alt); border: 1px solid var(--bw-border);
    padding: .5rem 1.25rem; border-radius: var(--bw-radius-full);
    font-family: var(--font-body); font-size: .85rem; font-weight: 600;
    color: var(--bw-text-light); cursor: pointer; transition: all .3s;
}
.filter-btn:hover, .filter-btn.active { background: var(--bw-red); color: #fff; border-color: var(--bw-red); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.portfolio-item {
    border-radius: var(--bw-radius-lg); overflow: hidden;
    background: var(--bw-card-bg); border: 1px solid var(--bw-border);
    transition: all var(--bw-transition); cursor: pointer;
}
.portfolio-item.hidden { display: none; }
.portfolio-item:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.2); }
.portfolio-thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bw-bg-alt); }
.portfolio-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.portfolio-item:hover .portfolio-thumb img { transform: scale(1.08); }
.portfolio-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--bw-text-muted); background: var(--bw-bg-alt); }
.portfolio-placeholder[style*="--ph-hue"] { background: linear-gradient(135deg, hsl(var(--ph-hue), 30%, 15%), hsl(var(--ph-hue), 40%, 10%)); }
.portfolio-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(transparent 30%, rgba(0,0,0,.85));
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .4s;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-link {
    width: 48px; height: 48px; background: var(--bw-red); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: #fff;
    transform: translateY(10px); transition: transform .3s;
}
.portfolio-item:hover .portfolio-link { transform: translateY(0); }
.portfolio-info { padding: 1.25rem 1.5rem; }
.portfolio-info h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .25rem; }
.portfolio-cat { font-size: .75rem; color: var(--bw-red); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* ═══════════════════════════════════════
   PROCESS TIMELINE
   ═══════════════════════════════════════ */
.process-timeline { position: relative; max-width: 700px; margin: 0 auto; }
.process-line { position: absolute; left: 30px; top: 0; bottom: 0; width: 2px; background: var(--bw-border); z-index: 0; }
.process-step { display: flex; gap: 2rem; margin-bottom: 2.5rem; position: relative; z-index: 1; }
.process-dot {
    width: 60px; height: 60px; min-width: 60px;
    background: var(--bw-red); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 2;
}
.process-num { font-family: var(--font-heading); font-weight: 800; color: #fff; font-size: 1rem; }
.process-card { padding: 1.5rem 2rem; flex: 1; }
.process-icon { font-size: 1.5rem; margin-bottom: .5rem; display: block; }
.process-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .5rem; }
.process-card p { color: var(--bw-text-light); font-size: .9rem; line-height: 1.6; }

/* ═══════════════════════════════════════
   TESTIMONIALS CAROUSEL
   ═══════════════════════════════════════ */
.testimonials-carousel { position: relative; max-width: 800px; margin: 0 auto; overflow: hidden; }
.testimonials-track { display: flex; transition: transform .6s cubic-bezier(.25,.46,.45,.94); }
.testimonial-card { min-width: 100%; padding: 2.5rem; text-align: center; }
.testimonial-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 1.25rem; }
.testimonial-card blockquote { font-size: 1.05rem; line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; color: var(--bw-text); }
.testimonial-author { display: flex; align-items: center; gap: 1rem; justify-content: center; }
.author-avatar { width: 44px; height: 44px; background: var(--bw-red); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 1.1rem; }
.testimonial-author strong { display: block; font-weight: 700; }
.testimonial-author span { font-size: .85rem; color: var(--bw-text-light); }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.carousel-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--bw-card-bg); border: 1px solid var(--bw-border);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .3s; color: var(--bw-text);
}
.carousel-btn:hover { border-color: var(--bw-red); color: var(--bw-red); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dots .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--bw-border); border: none; cursor: pointer;
    padding: 0; transition: all .3s;
}
.carousel-dots .dot.active { background: var(--bw-red); transform: scale(1.3); }

/* ═══════════════   BLOG CARDS
   ═══════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { background: var(--bw-card-bg); border: 1px solid var(--bw-border); border-radius: var(--bw-radius-lg); overflow: hidden; transition: all var(--bw-transition); }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.15); }
.blog-card-thumb { display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--bw-bg-alt); position: relative; }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.05); }
.blog-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--bw-text-muted); background: var(--bw-bg-alt); }
.blog-date { position: absolute; top: 12px; right: 12px; background: rgba(10,10,10,.75); backdrop-filter: blur(4px); padding: 4px 12px; border-radius: var(--bw-radius-full); font-size: .75rem; color: #fff; font-weight: 600; }
.blog-card-content { padding: 1.5rem; }
.blog-card-content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; line-height: 1.35; }
.blog-card-content h3 a { color: var(--bw-text); transition: color .3s; }
.blog-card-content h3 a:hover { color: var(--bw-red); }
.blog-card-content p { font-size: .88rem; color: var(--bw-text-light); line-height: 1.6; margin-bottom: 1rem; }
.read-more { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 700; color: var(--bw-red); transition: gap .3s; }
.read-more:hover { gap: 12px; }

/* CTA */
.bw-cta-section { background: var(--bw-red); padding: 5rem 0; text-align: center; }
.cta-content { max-width: 650px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); color: #fff; margin-bottom: 1rem; }
.cta-content p { font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 2rem; }

/* FOOTER */
.bw-footer { background: var(--bw-bg-alt); border-top: 1px solid var(--bw-border); }
.footer-wave { width: 100%; color: var(--bw-bg-alt); margin-bottom: -1px; }
.footer-wave svg { width: 100%; height: 60px; display: block; }
.footer-main { padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-logo img { height: 40px; width: auto; margin-bottom: 1rem; }
.footer-desc { font-size: .88rem; color: var(--bw-text-light); line-height: 1.7; margin-bottom: 1rem; }
.footer-tagline { font-size: .8rem; color: var(--bw-text-muted); font-style: italic; }
.footer-heading { font-size: .95rem; font-weight: 700; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { font-size: .88rem; color: var(--bw-text-light); transition: color .3s; }
.footer-links a:hover { color: var(--bw-red); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { font-size: .88rem; color: var(--bw-text-light); margin-bottom: .5rem; }
.footer-contact a { color: var(--bw-text-light); transition: color .3s; }
.footer-contact a:hover { color: var(--bw-red); }
.newsletter-title { font-size: .88rem; color: var(--bw-text-light); margin-bottom: 1rem; }
.newsletter-form { display: flex; }
.newsletter-input-wrap { flex: 1; }
.newsletter-input-wrap input { width: 100%; padding: 10px 14px; border: 1px solid var(--bw-border); border-radius: var(--bw-radius) 0 0 var(--bw-radius); background: var(--bw-bg); color: var(--bw-text); font-family: var(--font-body); font-size: .88rem; }
.newsletter-form .btn { border-radius: 0 var(--bw-radius) var(--bw-radius) 0; padding: 10px 16px; }
.footer-social { display: flex; gap: .75rem; margin-top: 1.5rem; }
.social-link { width: 36px; height: 36px; border: 1px solid var(--bw-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--bw-text-light); transition: all .3s; }
.social-link:hover { border-color: var(--bw-red); color: var(--bw-red); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid var(--bw-border); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.copyright { font-size: .8rem; color: var(--bw-text-muted); }
.back-to-top { position: fixed; bottom: 30px; right: 30px; z-index: 900; width: 44px; height: 44px; border-radius: 50%; background: var(--bw-red); color: #fff; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transition: all .3s; box-shadow: 0 4px 20px rgba(220,38,38,.3); }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); }

/* PAGE HERO (reused across about/contact/services/portfolio/blog) */
.bw-page-hero { padding: 120px 2rem 60px; text-align: center; }
.page-hero-title { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: .75rem; }
.page-hero-desc { font-size: 1.1rem; color: var(--bw-text-light); max-width: 600px; margin: 0 auto; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-card { display: flex; gap: 1rem; margin-bottom: 1.5rem; padding: 1.25rem; background: var(--bw-card-bg); border: 1px solid var(--bw-border); border-radius: var(--bw-radius-lg); }
.contact-card-icon { width: 48px; height: 48px; min-width: 48px; background: rgba(220,38,38,.08); border-radius: var(--bw-radius); display: flex; align-items: center; justify-content: center; color: var(--bw-red); }
.contact-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: .25rem; }
.contact-card p, .contact-card a { font-size: .88rem; color: var(--bw-text-light); }
.contact-card a:hover { color: var(--bw-red); }
.bw-contact-form .form-group { margin-bottom: 1.25rem; }
.bw-contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.bw-contact-form label { display: block; font-weight: 600; margin-bottom: .4rem; font-size: .88rem; }
.bw-contact-form input, .bw-contact-form textarea, .bw-contact-form select { width: 100%; padding: 12px 16px; border: 1px solid var(--bw-border); border-radius: var(--bw-radius); background: var(--bw-bg-alt); color: var(--bw-text); font-family: var(--font-body); font-size: 1rem; transition: border-color .3s, box-shadow .3s; box-sizing: border-box; }
.bw-contact-form input:focus, .bw-contact-form textarea:focus { outline: none; border-color: var(--bw-red); box-shadow: 0 0 0 3px rgba(220,38,38,.1); }
.bw-contact-form textarea { min-height: 140px; resize: vertical; }

/* SINGLE POST */
.bw-single-content { max-width: 960px; margin: 0 auto; padding: 0 2rem 4rem; }
.entry-content p { line-height: 1.9; margin-bottom: 1.5rem; color: var(--bw-text-light); }
.entry-content h2 { font-size: 1.75rem; margin: 2.5rem 0 1rem; }
.entry-content h3 { font-size: 1.35rem; margin: 2rem 0 .75rem; }
.entry-content img { width: 100%; border-radius: var(--bw-radius-lg); margin: 1.5rem 0; }
.entry-content blockquote { border-left: 4px solid var(--bw-red); padding: 1rem 1.5rem; margin: 1.5rem 0; background: var(--bw-bg-alt); border-radius: 0 var(--bw-radius) var(--bw-radius) 0; font-style: italic; }
.entry-content a { color: var(--bw-red); text-decoration: underline; }
.post-meta-top { display: flex; gap: 1rem; font-size: .85rem; color: var(--bw-text-muted); margin-bottom: 1.5rem; }
.post-tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.post-tag { background: var(--bw-bg-alt); border: 1px solid var(--bw-border); padding: 4px 12px; border-radius: var(--bw-radius-full); font-size: .78rem; color: var(--bw-text-light); }

/* 404 */
.bw-404 { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem; }
.error-number { font-size: 8rem; font-weight: 900; color: var(--bw-red); line-height: 1; opacity: .15; }
.error-content h1 { font-size: 2rem; margin-bottom: 1rem; }
.error-content p { color: var(--bw-text-light); margin-bottom: 2rem; }

/* ARCHIVE */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; }
.widget { background: var(--bw-card-bg); border: 1px solid var(--bw-border); border-radius: var(--bw-radius-lg); padding: 1.5rem; margin-bottom: 1.5rem; }
.widget-title { font-size: .95rem; font-weight: 700; margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--bw-border); }
.bw-pagination { display: flex; justify-content: center; gap: .5rem; padding: 3rem 0; }
.bw-pagination .current { background: var(--bw-red); color: #fff; border-color: var(--bw-red); }
.bw-search-form { display: flex; }
.search-input { flex: 1; padding: 10px 14px; border: 1px solid var(--bw-border); border-radius: var(--bw-radius) 0 0 var(--bw-radius); background: var(--bw-bg-alt); color: var(--bw-text); font-family: var(--font-body); }
.search-submit { padding: 10px 18px; background: var(--bw-red); color: #fff; border: 2px solid var(--bw-red); border-radius: 0 var(--bw-radius) var(--bw-radius) 0; cursor: pointer; font-weight: 700; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute; height: 1px; width: 1px; overflow: hidden; }
.no-posts { text-align: center; padding: 4rem 2rem; color: var(--bw-text-muted); }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-placeholder { width: 100%; aspect-ratio: 4/3; background: var(--bw-bg-alt); border-radius: var(--bw-radius-lg); display: flex; align-items: center; justify-content: center; color: var(--bw-text-muted); }
.about-img-accent { position: absolute; bottom: -10px; right: -10px; width: 60%; height: 60%; border: 3px solid var(--bw-red); border-radius: var(--bw-radius-lg); z-index: -1; }
.about-text p { color: var(--bw-text-light); line-height: 1.8; margin-bottom: 1rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card { padding: 2rem; text-align: center; }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.value-card p { font-size: .88rem; color: var(--bw-text-light); line-height: 1.6; }

/* SERVICE PAGES */
.bw-service-hero { position: relative; min-height: 50vh; display: flex; align-items: center; overflow: hidden; padding-top: 100px; }
.service-hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.bw-service-hero .bw-container { position: relative; z-index: 2; }
.service-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card { padding: 2rem; }
.feature-icon { width: 50px; height: 50px; margin-bottom: 1rem; color: var(--bw-red); }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.feature-card p { font-size: .88rem; color: var(--bw-text-light); line-height: 1.6; }
.service-row { display: flex; gap: 3rem; align-items: center; margin-bottom: 3rem; }
.service-row:nth-child(even) { flex-direction: row-reverse; }
.service-row-content { flex: 1.3; }
.service-row-content h3 { font-size: 1.3rem; margin-bottom: .75rem; }
.service-row-content p { color: var(--bw-text-light); line-height: 1.7; }
.service-row-visual { flex: 0.7; }
.service-visual-placeholder { width: 100%; aspect-ratio: 16/10; background: var(--bw-bg-alt); border-radius: var(--bw-radius-lg); display: flex; align-items: center; justify-content: center; color: var(--bw-text-muted); }
.service-intro p { color: var(--bw-text-light); line-height: 1.8; max-width: 700px; margin: 0 auto; }

/* RESPONSIVE */
@media(max-width:1024px){.services-cards,.service-features-grid{grid-template-columns:repeat(2,1fr)}.portfolio-grid,.blog-grid{grid-template-columns:repeat(2,1fr)}.footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:768px){.bw-hero{min-height:90vh}.hero-title{font-size:clamp(1.75rem,8vw,3rem)}.header-nav,.header-cta{display:none}.mobile-menu-toggle{display:block}.services-cards,.blog-grid,.service-features-grid,.values-grid{grid-template-columns:1fr}.portfolio-grid{grid-template-columns:1fr 1fr}.contact-grid,.about-grid{grid-template-columns:1fr}.why-us-grid{flex-direction:column}.footer-grid{grid-template-columns:1fr}.hero-cta{flex-direction:column;align-items:stretch}.hero-cta .btn{justify-content:center}.blog-layout{grid-template-columns:1fr}.service-row,.service-row:nth-child(even){flex-direction:column}.bw-contact-form .form-row{grid-template-columns:1fr}}
@media(max-width:480px){.portfolio-grid{grid-template-columns:1fr}.stat-number{font-size:2.25rem}.why-us-stats{grid-template-columns:1fr 1fr;gap:1rem}}

/* ═══════════════════════════════════════════════
   v3.0 ADDITIONS
   ═══════════════════════════════════════════════ */

/* ═══ Scroll Progress Bar ═══ */
.scroll-progress-bar {
    position: fixed; top: 0; left: 0; height: 3px;
    background: linear-gradient(90deg, var(--bw-red), #f97316);
    z-index: 10001; width: 0%; transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

/* ═══ Typing Cursor ═══ */
.typing-cursor::after {
    content: '|'; animation: blink-cursor .8s infinite; color: var(--bw-red); font-weight: 400;
}
@keyframes blink-cursor { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

/* ═══ Enhanced Portfolio (Archive) ═══ */
.portfolio-grid--showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.portfolio-showcase-item { position: relative; border-radius: var(--bw-radius-lg); overflow: hidden; background: var(--bw-card-bg); border: 1px solid var(--bw-border); transition: all .4s; }
.portfolio-showcase-item:hover { transform: translateY(-8px); box-shadow: 0 25px 60px rgba(220,38,38,.1); }
.portfolio-showcase-item .showcase-svg { width: 100%; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
.portfolio-showcase-item .showcase-svg img { width: 100%; height: 100%; object-fit: cover; }

/* ═══ Team Cards ═══ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card { text-align: center; padding: 2.5rem 2rem; }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 1.25rem; background: linear-gradient(135deg, var(--bw-red), #f97316); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: #fff; }
.team-card h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.team-role { color: var(--bw-red); font-weight: 600; font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: .75rem; display: block; }
.team-bio { font-size: .88rem; color: var(--bw-text-light); line-height: 1.7; }

/* ═══ Timeline ═══ */
.timeline { position: relative; max-width: 600px; margin: 0 auto; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 2px; background: var(--bw-border); }
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-dot { width: 30px; height: 30px; background: var(--bw-red); border-radius: 50%; position: absolute; left: -40px; top: 0; display: flex; align-items: center; justify-content: center; z-index: 1; }
.timeline-dot::after { content: ''; width: 10px; height: 10px; background: #fff; border-radius: 50%; }
.timeline-year { font-family: var(--font-heading); font-weight: 800; color: var(--bw-red); font-size: 1.1rem; margin-bottom: .25rem; }
.timeline-text { color: var(--bw-text-light); font-size: .95rem; line-height: 1.6; }

/* ═══ Business Hours ═══ */
.hours-grid { display: grid; gap: .75rem; }
.hours-row { display: flex; justify-content: space-between; padding: .75rem 1rem; border-radius: var(--bw-radius); background: var(--bw-card-bg); border: 1px solid var(--bw-border); }
.hours-row.today { border-color: var(--bw-red); background: rgba(220,38,38,.05); }
.hours-day { font-weight: 600; }
.hours-time { color: var(--bw-text-light); }
.hours-closed { color: var(--bw-red); font-weight: 600; }

/* ═══ Map Placeholder ═══ */
.map-placeholder { width: 100%; height: 300px; background: var(--bw-bg-alt); border: 1px solid var(--bw-border); border-radius: var(--bw-radius-lg); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--bw-text-muted); gap: 1rem; margin-top: 2rem; }

/* ═══ 404 Glitch ═══ */
.glitch-404 { font-size: clamp(6rem, 20vw, 12rem); font-weight: 900; color: var(--bw-red); position: relative; display: inline-block; }
.glitch-404::before, .glitch-404::after { content: attr(data-text); position: absolute; left: 0; top: 0; width: 100%; height: 100%; }
.glitch-404::before { animation: glitch-1 2s infinite linear alternate-reverse; clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%); color: #0ff; left: 2px; }
.glitch-404::after { animation: glitch-2 3s infinite linear alternate-reverse; clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%); color: #f0f; left: -2px; }
@keyframes glitch-1 { 0% { transform: translate(0); } 20% { transform: translate(-3px, 3px); } 40% { transform: translate(3px, -3px); } 60% { transform: translate(-2px, 1px); } 80% { transform: translate(1px, -2px); } 100% { transform: translate(0); } }
@keyframes glitch-2 { 0% { transform: translate(0); } 25% { transform: translate(3px, -2px); } 50% { transform: translate(-3px, 2px); } 75% { transform: translate(2px, 3px); } 100% { transform: translate(0); } }

/* ═══ Benefits Grid ═══ */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.benefit-card { text-align: center; padding: 2rem 1.5rem; }
.benefit-icon { width: 64px; height: 64px; margin: 0 auto 1rem; background: rgba(220,38,38,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; }
.benefit-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.benefit-card p { font-size: .85rem; color: var(--bw-text-light); line-height: 1.6; }

/* ═══ Quick Links (404) ═══ */
.quick-links { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }
.quick-links a { padding: 10px 24px; background: var(--bw-card-bg); border: 1px solid var(--bw-border); border-radius: var(--bw-radius-full); font-weight: 600; font-size: .9rem; transition: all .3s; }
.quick-links a:hover { border-color: var(--bw-red); color: var(--bw-red); }

/* ═══ Responsive additions ═══ */
@media(max-width:1024px){.benefits-grid{grid-template-columns:repeat(2,1fr)}.team-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:768px){.benefits-grid,.team-grid{grid-template-columns:1fr}.portfolio-grid--showcase{grid-template-columns:1fr 1fr}}
@media(max-width:480px){.portfolio-grid--showcase{grid-template-columns:1fr}}

/* ═══ v3.0 — Footer Creative Redesign ═══ */

/* Pre-Footer CTA Strip */
.bw-footer-cta {
    background: linear-gradient(135deg, var(--bw-red) 0%, #b91c1c 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.bw-footer-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255,255,255,.05) 0%, transparent 50%);
    pointer-events: none;
}
.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.footer-cta-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: #fff;
    margin-bottom: .25rem;
}
.footer-cta-content p {
    color: rgba(255,255,255,.8);
    font-size: 1.05rem;
}
.bw-footer-cta .btn-white {
    background: #fff;
    color: var(--bw-red);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 14px 32px;
    border-radius: var(--bw-radius-full);
    transition: all .3s;
}
.bw-footer-cta .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
}

/* Stats Strip */
.bw-footer-stats {
    background: var(--bw-bg-alt);
    border-top: 1px solid var(--bw-border);
    border-bottom: 1px solid var(--bw-border);
    padding: 2.5rem 0;
}
.footer-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.footer-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
}
.footer-stat-emoji { font-size: 1.5rem; }
.footer-stat-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--bw-red);
}
.footer-stat-label {
    font-size: .82rem;
    color: var(--bw-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Enhanced Wave */
.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}
.footer-wave .wave-1 { animation: wave-drift 8s ease-in-out infinite; }
.footer-wave .wave-2 { animation: wave-drift 6s ease-in-out infinite reverse; }
.footer-wave .wave-3 { animation: wave-drift 10s ease-in-out infinite; }
@keyframes wave-drift {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-20px); }
}

/* Creative Footer Grid */
.footer-grid--creative {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
}

/* Footer Brand Column */
.footer-brand-col {
    padding-right: 2rem;
}
.footer-brand-col .footer-logo img {
    width: 180px;
    height: auto;
}

/* Availability Indicator */
.footer-availability {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: rgba(34,197,94,.08);
    border: 1px solid rgba(34,197,94,.2);
    border-radius: var(--bw-radius-full);
    font-size: .82rem;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 1.25rem;
}
.availability-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.4); }
    50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* Footer Link Hover Animations */
.footer-links li a {
    display: inline-block;
    position: relative;
    padding: 2px 0;
    transition: color .3s, transform .3s;
}
.footer-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--bw-red);
    transition: width .3s;
}
.footer-links li a:hover {
    color: var(--bw-red);
    transform: translateX(4px);
}
.footer-links li a:hover::after {
    width: 100%;
}

/* Footer Signature */
.footer-signature {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .88rem;
    color: var(--bw-text-muted);
}
.heart-beat {
    display: inline-block;
    animation: heart-beat 1.5s ease-in-out infinite;
}
@keyframes heart-beat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
    75% { transform: scale(1.15); }
}

/* Footer Bottom Creative */
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ═══ v3.0 — Contact Form Styling Fixes ═══ */

/* More breathing room in contact grid */
.contact-grid {
    gap: 3rem;
    align-items: start;
}

/* Contact form wrap — more padding */
.contact-form-wrap {
    padding: 2.5rem;
    padding-bottom: 3rem;
}
.contact-form-wrap h2 {
    margin-bottom: 1.5rem;
}

/* Spacing between form elements */
.bw-contact-form .form-group {
    margin-bottom: 1.5rem;
}
.bw-contact-form .form-row {
    gap: 1.25rem;
    margin-bottom: .25rem;
}

/* Brand red focus states — override ALL blue */
.bw-contact-form input:focus,
.bw-contact-form textarea:focus,
.bw-contact-form select:focus {
    outline: none;
    border-color: var(--bw-red);
    box-shadow: 0 0 0 3px rgba(220,38,38,.1);
}

/* Custom select dropdown — no browser blue */
.bw-contact-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}
.bw-contact-form select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23DC2626' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

/* Submit button spacing */
.bw-contact-form .btn-full {
    margin-top: .5rem;
}

/* ═══ Portfolio showcase items use .portfolio-item too ═══ */
.portfolio-grid--showcase .portfolio-item {
    position: relative;
    border-radius: var(--bw-radius-lg);
    overflow: hidden;
    background: var(--bw-card-bg);
    border: 1px solid var(--bw-border);
    transition: all .4s;
}
.portfolio-grid--showcase .portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(220,38,38,.1);
}
.portfolio-grid--showcase .portfolio-item .showcase-svg {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.portfolio-grid--showcase .portfolio-item .showcase-svg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ═══ v3.0 — Responsive for footer + form fixes ═══ */
@media(max-width:1024px){
    .footer-grid--creative{grid-template-columns:1fr 1fr}
    .footer-stats-grid{grid-template-columns:repeat(2,1fr)}
    .footer-brand-col{padding-right:0}
}
@media(max-width:768px){
    .footer-grid--creative{grid-template-columns:1fr}
    .footer-cta-inner{flex-direction:column;text-align:center}
    .footer-stats-grid{grid-template-columns:repeat(2,1fr);gap:1.5rem}
    .footer-bottom-inner{flex-direction:column;text-align:center}
    /* ═══ NUCLEAR BLUE KILL — override ALL browser defaults ═══ */
*:focus { outline-color: var(--bw-red); }
*::selection { background: rgba(220, 38, 38, .2); color: var(--bw-text); }
input:focus, textarea:focus, select:focus, button:focus {
    outline: none !important;
    border-color: var(--bw-red) !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, .1) !important;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="url"],
input[type="password"], input[type="search"], input[type="number"], textarea, select {
    accent-color: var(--bw-red);
    caret-color: var(--bw-red);
}
.newsletter-input-wrap input:focus {
    outline: none !important;
    border-color: var(--bw-red) !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, .1) !important;
}
.search-input:focus {
    outline: none !important;
    border-color: var(--bw-red) !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, .1) !important;
}

/* ═══ Blog Grid — 3 Column Equal Cards ═══ */
.blog-grid--cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.blog-grid--cards .blog-card {
    display: flex;
    flex-direction: column;
    background: var(--bw-card-bg);
    border: 1px solid var(--bw-border);
    border-radius: var(--bw-radius-lg);
    overflow: hidden;
    transition: all var(--bw-transition);
    height: 100%;
}
.blog-grid--cards .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
}
.blog-grid--cards .blog-card-thumb {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bw-bg-alt);
    position: relative;
    flex-shrink: 0;
}
.blog-grid--cards .blog-card-thumb img {
    width: 100%; height: 100%; object-fit: cover; transition: transform .5s;
}
.blog-grid--cards .blog-card:hover .blog-card-thumb img { transform: scale(1.05); }
.blog-grid--cards .blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-grid--cards .blog-card-content h2 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .5rem;
    line-height: 1.4;
}
.blog-grid--cards .blog-card-content h2 a {
    color: var(--bw-text);
    transition: color .3s;
}
.blog-grid--cards .blog-card-content h2 a:hover { color: var(--bw-red); }
.blog-grid--cards .blog-card-content p {
    font-size: .88rem;
    color: var(--bw-text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}
.blog-grid--cards .blog-category {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bw-red);
    margin-bottom: .5rem;
}
.blog-grid--cards .read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    font-weight: 700;
    color: var(--bw-red);
    transition: gap .3s;
    margin-top: auto;
}
.blog-grid--cards .read-more:hover { gap: 12px; }

/* Load More Button */
.load-more-wrap {
    text-align: center;
    margin-top: 3rem;
}

/* ═══ Blog Masonry Grid — Zenith Style ═══ */
.blog-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.blog-tile {
    background: var(--bw-card-bg);
    border: 1px solid var(--bw-border);
    border-radius: var(--bw-radius-lg);
    overflow: hidden;
    transition: all .4s cubic-bezier(.25,.46,.45,.94);
    display: flex;
    flex-direction: column;
}
.blog-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,.2);
    border-color: rgba(220,38,38,.2);
}
.blog-tile__image {
    display: block;
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bw-bg-alt);
}
.blog-tile__image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.blog-tile:hover .blog-tile__image img { transform: scale(1.08); }
.blog-tile__placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--bw-bg-alt), var(--bw-card-bg));
    color: var(--bw-text-muted);
}
.blog-tile__category {
    position: absolute; top: 14px; left: 14px;
    background: var(--bw-red);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: var(--bw-radius-full);
    z-index: 2;
}
.blog-tile__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-tile__title {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: .75rem;
}
.blog-tile__title a {
    color: var(--bw-text);
    transition: color .3s;
}
.blog-tile__title a:hover { color: var(--bw-red); }
.blog-tile__meta {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    color: var(--bw-text-muted);
    margin-bottom: .75rem;
    flex-wrap: wrap;
}
.blog-tile__meta img {
    width: 28px; height: 28px;
    border-radius: 50%;
    object-fit: cover;
}
.blog-tile__author { font-weight: 600; color: var(--bw-text-light); }
.blog-tile__dot { opacity: .4; }
.blog-tile__excerpt {
    font-size: .88rem;
    color: var(--bw-text-light);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-tile__readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    font-weight: 700;
    color: var(--bw-red);
    transition: gap .3s;
    margin-top: auto;
}
.blog-tile__readmore:hover { gap: 12px; }

/* Load More Button */
.load-more-wrap {
    text-align: center;
    margin-top: 3rem;
}
.load-more-btn {
    min-width: 220px;
    justify-content: center;
}

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

/* Contact social row — FORCE horizontal */
.contact-social { margin-top: 1rem; }
.contact-social h3 { margin-bottom: .75rem; font-size: 1rem; font-weight: 700; }
.social-links-row {
    display: flex !important;
    flex-direction: row !important;
    gap: .75rem;
    flex-wrap: wrap;
    align-items: center;
}
.social-links-row .social-link {
    display: inline-flex !important;
    width: 42px;
    height: 42px;
    border: 1px solid var(--bw-border);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--bw-text-light);
    transition: all .3s;
    flex-shrink: 0;
}
.social-links-row .social-link:hover {
    border-color: var(--bw-red);
    color: var(--bw-red);
    transform: translateY(-3px);
}

/* Contact form extra spacing */
.contact-form-wrap { padding: 2.5rem !important; padding-bottom: 3rem !important; }
.contact-form-wrap h2 { margin-bottom: 1.5rem; }
.bw-contact-form .form-group { margin-bottom: 1.75rem; }
.bw-contact-form .form-row { gap: 1.5rem; }

/* ═══ Blog responsive ═══ */
@media(max-width:1024px){ .blog-grid--cards { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:768px){ .blog-grid--cards { grid-template-columns: 1fr; } }

/* ═══ Portfolio visit link ═══ */
.portfolio-visit-link {
    display: inline-block;
    margin-top: .75rem;
    font-size: .82rem;
    font-weight: 700;
    color: var(--bw-red);
    transition: all .3s;
    letter-spacing: .5px;
}
.portfolio-visit-link:hover { letter-spacing: 2px; }
.portfolio-info h3 a:hover { color: var(--bw-red) !important; }

/* ═══ Performance & Smoothness ═══ */
.service-card, .portfolio-item, .portfolio-showcase-item, .blog-card, .stat-card,
.value-card, .benefit-card, .team-card, .contact-card, .testimonial-card {
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.anim-fade-up, .anim-fade-right, .anim-fade-left {
    will-change: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
/* Smooth all interactive elements */
a, button, input, select, textarea {
    transition-timing-function: cubic-bezier(.25, .46, .45, .94);
}
/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .bw-preloader { display: none !important; }
    .bw-cursor { display: none !important; }
    .chatbot-bubble { animation: none !important; }
    .marquee-track { animation: none !important; }
}
/* Optimize image rendering */
img { content-visibility: auto; }
/* Contain layout for sections to prevent reflow */
.bw-section { contain: layout style; }

.contact-form-wrap{padding:1.75rem;padding-bottom:2.5rem}
}
@media(max-width:480px){
    .footer-stats-grid{grid-template-columns:1fr 1fr}
}
