/* ============================================
   BEAR METAL FABRICATION
   Industrial / Welding Theme
   ============================================ */

/* ---- Reset & Variables ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   EMBER PARTICLES (full-page floating embers)
   ============================================ */
.ember-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}
.ember {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform, opacity;
}
@keyframes ember-rise {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    70% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) translateX(var(--drift)) scale(0.3);
        opacity: 0;
    }
}

/* ============================================
   RIVETS (bolts at card corners)
   ============================================ */
.rivet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%,
        #777 0%,
        #555 30%,
        #333 60%,
        #222 80%,
        #1a1a1a 100%
    );
    box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.2),
        inset 0 -1px 2px rgba(0,0,0,0.6),
        0 1px 3px rgba(0,0,0,0.8);
    position: absolute;
    z-index: 10;
}
.rivet::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,200,200,0.5), transparent);
}
.rivet-tl { top: 8px; left: 8px; }
.rivet-tr { top: 8px; right: 8px; }
.rivet-bl { bottom: 8px; left: 8px; }
.rivet-br { bottom: 8px; right: 8px; }

/* Smaller rivets for compact cards */
.why-item .rivet {
    width: 7px;
    height: 7px;
}
.why-item .rivet::after {
    top: 1px;
    left: 1px;
    width: 2px;
    height: 2px;
}
.why-item .rivet-tl { top: 5px; left: 5px; }
.why-item .rivet-tr { top: 5px; right: 5px; }
.why-item .rivet-bl { bottom: 5px; left: 5px; }
.why-item .rivet-br { bottom: 5px; right: 5px; }

/* Brushed metal background for cards */
.metal-card {
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(255,255,255,0.013) 1px,
            rgba(255,255,255,0.013) 2px
        ),
        linear-gradient(150deg, #1e1e22 0%, #1a1a1e 40%, #222226 100%) !important;
    border-color: rgba(255,255,255,0.06) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        inset 0 -1px 0 rgba(0,0,0,0.3),
        0 4px 12px rgba(0,0,0,0.4),
        0 1px 3px rgba(0,0,0,0.3) !important;
}

:root {
    /* Core palette */
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;
    --bg-section-alt: #0e0e0e;
    --border: #222;
    --border-hover: #333;

    /* Accent - welding orange */
    --accent: #E8601C;
    --accent-glow: #ff7a33;
    --accent-dark: #c44d12;
    --accent-bg: rgba(232, 96, 28, 0.08);
    --accent-bg-strong: rgba(232, 96, 28, 0.15);

    /* Sparks yellow */
    --spark: #F59E0B;
    --spark-glow: #fbbf24;

    /* Text */
    --text: #e5e5e5;
    --text-muted: #888;
    --text-dim: #555;
    --text-white: #ffffff;

    /* Fonts */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-pad: 100px;
    --container: 1200px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}
a:hover {
    color: var(--accent-glow);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Section headers ---- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    padding: 6px 16px;
    border: 1px solid rgba(232, 96, 28, 0.3);
    border-radius: 2px;
    background: var(--accent-bg);
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-decoration: none;
}
.btn-primary {
    background: var(--accent);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(232, 96, 28, 0.3);
}
.btn-primary:hover {
    background: var(--accent-glow);
    color: var(--text-white);
    box-shadow: 0 6px 30px rgba(232, 96, 28, 0.5);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-bg);
}
.btn-full {
    width: 100%;
    justify-content: center;
}
.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--ease);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.nav-logo-img {
    height: 48px;
    width: auto;
    border-radius: 4px;
    filter: invert(1);
}
.logo-icon svg {
    width: 40px;
    height: 40px;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 2px;
    line-height: 1.1;
}
.logo-sub {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    color: var(--accent);
    letter-spacing: 4px;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}
.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--text-white);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1px;
    padding: 8px 16px;
    border: 1px solid rgba(232, 96, 28, 0.3);
    border-radius: 3px;
    transition: all 0.3s;
}
.nav-phone:hover {
    background: var(--accent-bg);
    border-color: var(--accent);
    color: var(--accent-glow);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-white);
    transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(232, 96, 28, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(232, 96, 28, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.008) 2px,
            rgba(255, 255, 255, 0.008) 4px
        );
    pointer-events: none;
}

/* Metal texture overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Spark particles container */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.spark-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--spark);
    box-shadow: 0 0 6px var(--spark), 0 0 12px var(--accent);
    animation: spark-fall linear forwards;
    opacity: 0;
}

@keyframes spark-fall {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--dx), var(--dy)) scale(0);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 120px 24px 80px;
}
.hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--accent);
    padding: 8px 20px;
    border: 1px solid rgba(232, 96, 28, 0.3);
    margin-bottom: 24px;
    position: relative;
}
.hero-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent);
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.1;
    max-width: 800px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.text-accent {
    color: var(--accent);
    position: relative;
}
.text-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    opacity: 0.3;
}
.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 36px;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.hero-trust {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}
.hero-scroll span {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim);
    writing-mode: vertical-rl;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
    position: relative;
}
.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stat {
    position: relative;
    padding: 28px 16px;
}
.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: var(--section-pad) 0;
    background: var(--bg-dark);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 40px 30px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--spark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.service-card:hover {
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-4px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        inset 0 -1px 0 rgba(0,0,0,0.4),
        0 12px 32px rgba(0,0,0,0.5),
        0 4px 12px rgba(0,0,0,0.3),
        0 0 20px rgba(232,96,28,0.08);
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}
.service-icon svg {
    width: 100%;
    height: 100%;
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}
.service-tags li {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent);
    padding: 4px 12px;
    border: 1px solid rgba(232, 96, 28, 0.2);
    border-radius: 2px;
    background: var(--accent-bg);
    letter-spacing: 0.5px;
}

/* ============================================
   ABOUT / WHY US
   ============================================ */
.about {
    padding: var(--section-pad) 0;
    background: var(--bg-section-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-photo {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border: 1px solid var(--border);
    border-radius: 4px;
    display: block;
}
.about-image-placeholder {
    aspect-ratio: 4/5;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.about-image-placeholder svg {
    opacity: 0.3;
}
.about-image-placeholder span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    padding: 24px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(232, 96, 28, 0.3);
}
.about-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-white);
    line-height: 1;
}
.about-badge span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about-content .section-tag {
    margin-bottom: 12px;
}
.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.2;
}
.about-content > p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 32px;
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    padding: 16px;
    border-radius: 4px;
}
.why-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--accent-bg);
    border: 1px solid rgba(232, 96, 28, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-item h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.why-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   SERVICE AREAS
   ============================================ */
.areas {
    padding: var(--section-pad) 0;
    background: var(--bg-dark);
}
.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.area-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 30px;
    transition: all 0.3s var(--ease);
    position: relative;
}
.area-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}
.area-primary {
    grid-column: 1 / -1;
    border-color: rgba(232, 96, 28, 0.3);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(232, 96, 28, 0.05) 100%);
}
.area-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.area-header h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.area-badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    padding: 3px 10px;
    border: 1px solid rgba(232, 96, 28, 0.3);
    border-radius: 2px;
    background: var(--accent-bg);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.area-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 16px;
}
.area-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.area-cities span {
    font-size: 0.8rem;
    color: var(--text);
    padding: 4px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 2px;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: var(--section-pad) 0;
    background: var(--bg-section-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.gallery-item {
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s var(--ease);
    position: relative;
    border: 1px solid var(--border);
}
.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--border-hover);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}
.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.7);
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
}
.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}
.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.gallery-wide {
    grid-column: span 2;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
    padding: var(--section-pad) 0;
    background: var(--bg-dark);
}
.process-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}
.process-step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 0 24px;
}
.process-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 16px;
    line-height: 1;
}
.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}
.process-connector {
    flex-shrink: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--accent), var(--border));
    margin-top: 28px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: var(--section-pad) 0;
    background: var(--bg-section-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--accent);
    opacity: 0.15;
    line-height: 1;
}
.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}
.testimonial-card p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial-author strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: var(--section-pad) 0;
    background: var(--bg-dark);
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: 4px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item:hover,
.faq-item.active {
    border-color: var(--border-hover);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-white);
    text-align: left;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}
.faq-question:hover {
    background: var(--bg-card-hover);
}
.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
    color: var(--accent);
}
.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}
.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: var(--section-pad) 0;
    background: var(--bg-section-alt);
    border-top: 1px solid var(--border);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}
.contact-info .section-tag {
    margin-bottom: 12px;
}
.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    line-height: 1.2;
}
.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
}
.contact-detail-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-bg);
    border: 1px solid rgba(232, 96, 28, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-detail strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.contact-detail span {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.contact-cta-mobile {
    display: none;
    margin-top: 24px;
}

/* Form */
.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 3px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232, 96, 28, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='%23888' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form-group select option {
    background: var(--bg-dark);
    color: var(--text);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-status {
    margin-top: 12px;
    font-size: 0.9rem;
    text-align: center;
    min-height: 24px;
}
.form-status.success {
    color: #4ade80;
}
.form-status.error {
    color: #f87171;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.footer-logo-img {
    height: 50px;
    width: auto;
    border-radius: 4px;
    filter: invert(1);
}
.footer-logo svg {
    width: 36px;
    height: 36px;
}
.footer-logo .logo-name {
    font-size: 1rem;
}
.footer-logo .logo-sub {
    font-size: 0.55rem;
}
.footer-brand > p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
}
.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--accent);
}
.footer-phone {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.footer-contact p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-dim);
}
.footer-seo {
    margin-top: 8px;
    font-size: 0.7rem !important;
    color: var(--text-dim) !important;
    opacity: 0.5;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--accent);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s var(--ease);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(232, 96, 28, 0.3);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--accent-glow);
    transform: translateY(-4px);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 60px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    /* Nav mobile */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 0;
        border-left: 1px solid var(--border);
        transition: right 0.4s var(--ease);
        z-index: 998;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li {
        border-bottom: 1px solid var(--border);
    }
    .nav-links a {
        display: block;
        padding: 16px 0;
        font-size: 1rem;
    }
    .nav-phone {
        display: none;
    }
    .nav-toggle {
        display: flex;
        z-index: 999;
    }

    /* Hero */
    .hero-content {
        padding: 100px 24px 60px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        justify-content: center;
    }
    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }
    .hero-scroll {
        display: none;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-badge {
        right: 10px;
        bottom: -10px;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }

    /* Areas */
    .areas-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-wide {
        grid-column: span 2;
    }

    /* Process */
    .process-grid {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .process-connector {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, var(--border), var(--accent), var(--border));
        margin-top: 0;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid .testimonial-card:last-child {
        max-width: 100%;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-cta-mobile {
        display: block;
    }
    .contact-form-wrap {
        padding: 24px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-wide {
        grid-column: span 1;
    }
}
