:root {
    /* Color Palette */
    --color-bg-dark: #121212;
    --color-bg-panel: #1e1e1e;
    --color-text-main: #e0e0e0;
    --color-text-muted: #a0a0a0;

    --color-accent: #ff4500;
    /* Electric Orange/Red */
    --color-accent-hover: #e03e00;
    --color-accent-dim: rgba(255, 69, 0, 0.1);

    --color-steel: #4a5568;
    --color-steel-light: #718096;

    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1200px;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.separator {
    width: 80px;
    height: 4px;
    background-color: var(--color-accent);
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--color-accent-dim);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: var(--color-bg-dark);
}

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

.btn-outline:hover {
    background-color: var(--color-accent);
    color: #fff;
}

.btn-block {
    display: block;
    width: 100%;
    margin-top: 20px;
}

/* Header */
.header {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
    transition: transform 0.3s ease, padding 0.3s ease, background-color 0.3s ease;
}

.header.scrolled {
    padding: 12px 0;
    background-color: rgba(10, 10, 10, 0.98);
    border-bottom-color: #222;
}


.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.logo .accent {
    color: var(--color-accent);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--color-accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    font-weight: 700;
    font-size: 1.1rem;
}

.header-phone i {
    color: var(--color-accent);
    margin-right: 5px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background-color: var(--color-bg-dark);
    z-index: 1001;
    transition: 0.4s;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-link {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

/* =============================================
   HERO — ENHANCED
   ============================================= */

/* Keyframes */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(8px);
        opacity: 0.5;
    }
}

@keyframes sparkFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-40%) scale(1.4);
        opacity: 1;
    }

    100% {
        transform: translateY(-90%) scale(0.6);
        opacity: 0;
    }
}

@keyframes particleDrift {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translate(var(--dx), var(--dy)) rotate(360deg);
        opacity: 0;
    }
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 69, 0, 0.5), 0 4px 15px rgba(0, 0, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 69, 0, 0.9), 0 4px 25px rgba(0, 0, 0, 0.4);
    }
}

.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/Herosection.jpg');
    background-size: cover;
    background-position: center 30%;
    background-color: #1a1a1a;
    /* Subtle Ken-Burns drift */
    animation: heroBgZoom 20s ease-in-out infinite alternate;
    transform-origin: center;
}

@keyframes heroBgZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.06);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Deep top-to-bottom + left-edge burn */
    background:
        linear-gradient(120deg, rgba(150, 20, 0, 0.35) 0%, transparent 55%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.78) 100%);
}

/* Orange glow at the bottom edge */
.hero-vignette {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to top, rgba(255, 69, 0, 0.22), transparent);
    pointer-events: none;
    z-index: 1;
}

/* ---- Particles ---- */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0;
    animation: particleDrift linear infinite;
}

/* Each particle has unique position, size, timing, and travel direction */
.p1 {
    width: 4px;
    height: 4px;
    bottom: 35%;
    left: 15%;
    --dx: -30px;
    --dy: -120px;
    animation-duration: 4.5s;
    animation-delay: 0s;
}

.p2 {
    width: 3px;
    height: 3px;
    bottom: 25%;
    left: 28%;
    --dx: 20px;
    --dy: -90px;
    animation-duration: 3.8s;
    animation-delay: 0.8s;
}

.p3 {
    width: 5px;
    height: 5px;
    bottom: 40%;
    left: 50%;
    --dx: -15px;
    --dy: -140px;
    animation-duration: 5.2s;
    animation-delay: 1.5s;
}

.p4 {
    width: 3px;
    height: 3px;
    bottom: 20%;
    left: 65%;
    --dx: 35px;
    --dy: -110px;
    animation-duration: 4.1s;
    animation-delay: 0.3s;
}

.p5 {
    width: 6px;
    height: 6px;
    bottom: 45%;
    left: 80%;
    --dx: -25px;
    --dy: -160px;
    animation-duration: 6.0s;
    animation-delay: 2.0s;
    background: #ff8c00;
}

.p6 {
    width: 3px;
    height: 3px;
    bottom: 30%;
    left: 44%;
    --dx: 10px;
    --dy: -85px;
    animation-duration: 3.5s;
    animation-delay: 1.0s;
}

.p7 {
    width: 5px;
    height: 5px;
    bottom: 50%;
    left: 72%;
    --dx: -40px;
    --dy: -130px;
    animation-duration: 5.5s;
    animation-delay: 2.5s;
    background: #ff8c00;
}

.p8 {
    width: 4px;
    height: 4px;
    bottom: 22%;
    left: 90%;
    --dx: 15px;
    --dy: -100px;
    animation-duration: 4.3s;
    animation-delay: 1.8s;
}

/* ---- Content ---- */
.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* Eyebrow tag */
.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 20px;
    opacity: 0;
    animation: heroFadeIn 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-eyebrow-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--color-accent);
    opacity: 0.7;
}

/* Title — staggered line reveal */
.hero-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: 1.05;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hero-title-line {
    display: block;
    opacity: 0;
    animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-line-1 {
    animation-delay: 0.5s;
}

.hero-line-2 {
    animation-delay: 0.75s;
}

.hero-line-3 {
    animation-delay: 1.0s;
    font-size: 0.75em;
    color: #ccc;
}

/* Accent: "Mobile Welding" in glowing orange */
.hero-accent {
    font-style: normal;
    color: var(--color-accent);
    text-shadow: 0 0 30px rgba(255, 69, 0, 0.6);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #c8c8c8;
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 1.2s;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-bottom: 44px;
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 1.4s;
}

/* Glowing pulsing primary button */
.btn-glow {
    animation: glowPulse 2.5s ease-in-out infinite;
    animation-delay: 2s;
}

.hero-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #bbb;
    font-size: 0.85rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroFadeIn 0.8s ease forwards;
    animation-delay: 1.6s;
}

.hero-trust-badges i {
    color: var(--color-accent);
    margin-right: 6px;
}

.badge-divider {
    color: #555;
    font-size: 0.7rem;
}

/* ---- Scroll cue ---- */
.hero-scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.4rem;
    text-decoration: none;
    animation: scrollBounce 1.8s ease-in-out infinite;
    transition: color 0.3s;
}

.hero-scroll-cue:hover {
    color: var(--color-accent);
}



/* Why Choose */
.why-choose {
    background-color: var(--color-bg-panel);
    padding: 60px 0;
    border-bottom: 1px solid var(--color-border, #333);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-item {
    background-color: var(--color-bg-dark);
    border: 1px solid var(--color-border, #333);
    border-top: 3px solid var(--color-accent);
    border-radius: 4px;
    padding: 30px 24px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 69, 0, 0.3);
}

.why-item i {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 16px;
    display: inline-block;
}

.why-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* Services */
/* ==========================================
   SERVICES — EDITORIAL LIST
   ========================================== */

.services-section {
    background-color: #111;
    border-top: 1px solid #222;
}

/* --- Intro block --- */
.svc-intro {
    padding: 90px 20px 60px;
    max-width: 700px;
}

.svc-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 20px;
    font-weight: 600;
}

.svc-label span {
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--color-accent);
}

.svc-heading {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.0;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.svc-heading-dim {
    color: #555;
    display: block;
}

.svc-subtext {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 560px;
}

/* --- List container --- */
.svc-list {
    border-top: 1px solid #2a2a2a;
}

/* --- Single service row --- */
.svc-row {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 32px 40px;
    border-bottom: 1px solid #2a2a2a;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: background 0.25s ease;
    overflow: hidden;
}

/* Orange left-edge reveal on hover */
.svc-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--color-accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.svc-row:hover {
    background: rgba(255, 69, 0, 0.04);
}

.svc-row:hover::before {
    transform: scaleY(1);
}

/* Ghost number */
.svc-num {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    min-width: 36px;
    transition: color 0.3s;
    flex-shrink: 0;
}

.svc-row:hover .svc-num {
    color: var(--color-accent);
}

/* Body: tag + name + desc */
.svc-row-body {
    flex: 1;
    min-width: 0;
}

.svc-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    border: 1px solid #333;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 10px;
    transition: border-color 0.3s, color 0.3s;
}

.svc-row:hover .svc-tag {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* Hot/emergency tag */
.svc-tag--hot {
    border-color: var(--color-accent);
    color: var(--color-accent);
    animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.svc-name {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    /* Underline slide effect */
    background-image: linear-gradient(var(--color-accent), var(--color-accent));
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.35s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.svc-row:hover .svc-name {
    background-size: 100% 2px;
}

.svc-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 560px;
    transition: color 0.25s;
}

.svc-row:hover .svc-desc {
    color: #999;
}

/* Right: icon + CTA */
.svc-row-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    flex-shrink: 0;
    min-width: 130px;
}

.svc-icon-lg {
    font-size: 1.8rem;
    color: #333;
    transition: color 0.3s, transform 0.3s;
}

.svc-row:hover .svc-icon-lg {
    color: var(--color-accent);
    transform: scale(1.15) rotate(-5deg);
}

.svc-cta {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: color 0.25s, gap 0.25s;
}

.svc-cta i {
    transition: transform 0.25s;
}

.svc-row:hover .svc-cta {
    color: var(--color-accent);
    gap: 12px;
}

.svc-row:hover .svc-cta i {
    transform: translateX(4px);
}

/* Emergency row — slightly different bg */
.svc-row--emergency {
    background: rgba(255, 69, 0, 0.03);
}

.svc-row--emergency::after {
    content: '24 / 7';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 69, 0, 0.05);
    pointer-events: none;
    letter-spacing: -3px;
}

/* --- Bottom CTA bar --- */
.svc-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 32px 40px;
    background: #0d0d0d;
    border-top: 1px solid #222;
}

.svc-bottom-bar p {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.svc-bottom-bar strong {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .svc-intro {
        padding: 60px 20px 40px;
    }

    .svc-row {
        flex-wrap: wrap;
        padding: 24px 20px;
        gap: 16px;
    }

    .svc-row-right {
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: space-between;
        min-width: unset;
    }

    .svc-num {
        display: none;
    }

    .svc-icon-lg {
        display: none;
    }

    .svc-bottom-bar {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }

    .svc-row--emergency::after {
        display: none;
    }
}




/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   PROCESS — TIMELINE
   ============================================= */
.process-section {
    background-color: #0e0e0e;
    padding: 100px 0;
    position: relative;
}

.process-header {
    margin-bottom: 70px;
}

.process-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
}

.process-title-dim {
    color: #444;
    display: block;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

/* Connecting dashed line across all 3 steps */
.timeline-connector {
    position: absolute;
    top: 44px;
    left: calc(16.66% + 24px);
    right: calc(16.66% + 24px);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--color-accent) 0px, var(--color-accent) 8px, transparent 8px, transparent 18px);
    pointer-events: none;
    z-index: 0;
}

.process-step {
    text-align: center;
    padding: 0 30px 40px;
    position: relative;
    z-index: 1;
}

.pstep-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 2px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--color-accent);
    position: relative;
    transition: background 0.3s, transform 0.3s;
}

.process-step:hover .pstep-icon {
    background: var(--color-accent);
    color: #fff;
    transform: scale(1.08);
}

.pstep-num {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 12px;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #fff;
}

.process-step p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

.process-cta {
    display: flex;
    gap: 20px;
    margin-top: 60px;
    justify-content: center;
}

/* =============================================
   ABOUT — SPLIT COLUMN
   ============================================= */
.about-section {
    background: #111;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 680px;
}

.about-image-panel {
    position: relative;
    background: url('../assets/images/aboutsection.jpg') center/cover no-repeat;
    background-color: #1a1a1a;
    overflow: hidden;
}

.about-image-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(10, 10, 10, 0.3) 0%, transparent 60%),
        linear-gradient(to right, rgba(17, 17, 17, 0.8) 0%, transparent 30%);
}

.about-image-bg {
    position: absolute;
    inset: 0;
}

.about-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    background: rgba(20, 20, 20, 0.92);
    border: 1px solid var(--color-accent);
    border-radius: 4px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
}

.about-badge i {
    color: var(--color-accent);
    font-size: 1.2rem;
}

.about-content-panel {
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #111;
}

.about-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.05;
    margin-bottom: 20px;
}

.about-accent {
    font-style: normal;
    color: var(--color-accent);
}

.about-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text-muted);
    border-left: 3px solid var(--color-accent);
    padding-left: 20px;
    margin: 20px 0 28px;
}

.about-body {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.about-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 36px 0 28px;
    text-align: center;
}

.about-stat {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: border-color 0.3s;
}

.about-stat:hover {
    border-color: var(--color-accent);
}

.counter,
.astat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-accent);
    font-weight: 700;
}

.astat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666;
    margin-top: 4px;
}

.about-certs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ccc;
    border: 1px solid #333;
    padding: 5px 12px;
    border-radius: 2px;
}

.cert-badge i {
    color: var(--color-accent);
    font-size: 0.65rem;
}

/* =============================================
   PORTFOLIO — BENTO MAGAZINE GRID
   ============================================= */
.portfolio-section {
    background: #0e0e0e;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 30px;
}

.portfolio-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.05;
}

.portfolio-dim {
    color: #444;
}

.portfolio-sub {
    max-width: 360px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: right;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 12px;
}

.bento-lg {
    grid-column: span 2;
}

.bento-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}

/* Unique CSS-gradient "images" — each has a distinct industrial palette */
.bento-fire {
    background: linear-gradient(135deg, #1a0800 0%, #3d1a00 40%, #7a2e00 70%, #ff4500 100%);
}

.bento-gate {
    background: linear-gradient(135deg, #0d0d1a 0%, #1a1a3a 50%, #2a2a50 100%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0px, transparent 1px, transparent 40px);
    background-blend-mode: normal;
}

.bento-trailer {
    background: linear-gradient(160deg, #111 0%, #2a2a2a 50%, #1a1a1a 100%);
}

.bento-fence {
    background: repeating-linear-gradient(90deg, #1a1a1a 0px, #1a1a1a 8px, #222 8px, #222 20px);
}

.bento-struct {
    background: linear-gradient(200deg, #0a0a0a 0%, #222 40%, #1a0800 100%);
}

.bento-ranch {
    background: linear-gradient(145deg, #111 0%, #1a1507 50%, #2a2209 100%);
}

/* Add a visual texture to all bento items */
.bento-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%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;
    z-index: 1; /* Above image, below overlay */
}

.bento-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.5s ease;
}

.bento-item:hover .bento-img {
    transform: scale(1.05);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: background 0.3s;
    z-index: 1;
}

.bento-item:hover .bento-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.96) 0%, rgba(255, 69, 0, 0.1) 100%);
}

.bento-tag {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 8px;
    transform: translateY(4px);
    transition: transform 0.3s;
}

.bento-item:hover .bento-tag {
    transform: translateY(0);
}

.bento-overlay h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 4px;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.bento-overlay p {
    font-size: 0.8rem;
    color: #999;
}

/* =============================================
   TESTIMONIALS — LARGE QUOTE FORMAT
   ============================================= */
.reviews-section {
    background: #0a0a0a;
}

.reviews-header {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.reviews-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.1;
}

.google-rating-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 14px 24px;
    white-space: nowrap;
}

.g-stars {
    color: #ffd700;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.g-icon {
    color: #4285F4;
    font-size: 1.4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tcard {
    background: #151515;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 36px 30px 28px;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
}

.tcard:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
}

.tcard--featured {
    background: #1a0d05;
    border-color: var(--color-accent);
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.08);
}

.tcard-quote {
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 0.6;
    color: var(--color-accent);
    opacity: 0.4;
    margin-bottom: 16px;
}

.tcard-text {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 28px;
}

.tcard-footer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tcard-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tcard-name {
    display: block;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 3px;
}

.tcard-loc {
    font-size: 0.75rem;
    color: #666;
}

.tcard-loc i {
    color: var(--color-accent);
    font-size: 0.65rem;
}

.tcard-stars {
    margin-left: auto;
    color: #ffd700;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

/* =============================================
   MAP SECTION
   ============================================= */
.map-section {
    background: #111;
}

.map-header {
    margin-bottom: 40px;
}

.map-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 10px;
}

.map-sub {
    color: var(--color-text-muted);
    font-size: 1rem;
}

.map-wrap {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    align-items: start;
}

.map-container {
    height: 420px;
    background-color: #333;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
}

.map-cities-panel {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 28px;
}

.map-cities-panel h4 {
    font-size: 1rem;
    margin-bottom: 18px;
    color: var(--color-accent);
    letter-spacing: 1px;
}

.city-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.city-chips span {
    font-size: 0.75rem;
    background: #222;
    border: 1px solid #333;
    color: #bbb;
    padding: 4px 10px;
    border-radius: 2px;
    transition: border-color 0.2s, color 0.2s;
}

.city-chips span:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.map-note {
    font-size: 0.82rem;
    color: #666;
}

.accent-link {
    color: var(--color-accent);
    font-weight: 700;
}

/* =============================================
   QUOTE FORM — SPLIT PANEL
   ============================================= */
.quote-section {
    background: #0a0a0a;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100%;
}

.quote-trust-panel {
    background: linear-gradient(145deg, #0f0a07 0%, #1a0d05 100%);
    padding: 80px 70px;
    border-right: 1px solid #2a1a10;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-panel-title {
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    line-height: 1.1;
    margin: 16px 0 20px;
}

.quote-panel-sub {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.quote-trust-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.qtrust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #ccc;
}

.qtrust-item i {
    color: var(--color-accent);
    font-size: 1rem;
    flex-shrink: 0;
}

.quote-direct-call {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 28px;
    border-top: 1px solid #2a1a10;
}

.quote-direct-call span {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qcall-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s;
}

.qcall-link:hover {
    color: #ff8c00;
}

/* Right: form */
.quote-form-panel {
    background: #111;
    padding: 60px 70px;
    display: flex;
    align-items: center;
}

.quote-form {
    width: 100%;
}

.form-title {
    font-size: 1.6rem;
    margin-bottom: 28px;
    color: #fff;
}

.form-field {
    margin-bottom: 16px;
    flex: 1;
}

.form-field label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 6px;
    font-weight: 600;
}

.form-group-row {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 0;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

form input:focus,
form select:focus,
form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.btn-block {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 16px;
    font-size: 1rem;
    letter-spacing: 1.5px;
}

.form-privacy {
    text-align: center;
    font-size: 0.75rem;
    color: #555;
    margin-top: 12px;
}

.form-privacy i {
    color: #444;
    margin-right: 4px;
}

/* =============================================
   FAQ — TWO-COLUMN
   ============================================= */
.faq-section {
    background: #0e0e0e;
}

.faq-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: start;
}

.faq-left {
    position: sticky;
    top: 100px;
}

.faq-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.1;
    margin-top: 16px;
}

.faq-right {
    padding-top: 8px;
}

.accordion-item {
    border-bottom: 1px solid #222;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    color: #ddd;
    padding: 22px 0;
    text-align: left;
    font-size: 1rem;
    font-family: var(--font-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    letter-spacing: 0.5px;
    transition: color 0.25s;
}

.accordion-header:hover {
    color: var(--color-accent);
}

.accordion-header i {
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.accordion-header.active {
    color: var(--color-accent);
}

.accordion-header.active i {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-content p {
    padding: 0 0 22px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* =============================================
   FOOTER — 4-COLUMN
   ============================================= */
.footer {
    background-color: #0a0a0a;
    border-top: 1px solid #1a1a1a;
}

.footer-top {
    padding: 70px 0 50px;
}

.footer-top-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 50px;
}

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 14px;
    display: block;
}

.footer-tagline {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-brand .social-icons {
    display: flex;
    gap: 14px;
}

.footer-brand .social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #888;
    transition: border-color 0.3s, color 0.3s;
}

.footer-brand .social-icons a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.footer-col h4 {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li {
    font-size: 0.9rem;
    color: #888;
}

.footer-col ul li a {
    color: #888;
    transition: color 0.25s, padding-left 0.25s;
}

.footer-col ul li a:hover {
    color: var(--color-accent);
    padding-left: 4px;
}

.footer-contact-list {
    gap: 14px !important;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem !important;
    color: #888;
}

.footer-contact-list li i {
    color: var(--color-accent);
    margin-top: 3px;
    min-width: 14px;
    font-size: 0.85rem;
}

.footer-contact-list li a {
    color: #888;
    transition: color 0.25s;
}

.footer-contact-list li a:hover {
    color: var(--color-accent);
}

.footer-hours {
    align-items: flex-start !important;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid #181818;
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 0.8rem;
    color: #444;
}

.footer-legal {
    color: #3a3a3a;
    font-size: 0.75rem;
}

/* =============================================
   MOBILE STICKY CALL
   ============================================= */
.mobile-sticky-call {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-accent);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255, 69, 0, 0.5);
    font-weight: 700;
    z-index: 999;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: glowPulse 3s ease-in-out infinite;
}

/* =============================================
   UTILITY
   ============================================= */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 40px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.small-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
    .about-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .map-wrap {
        grid-template-columns: 1fr;
    }

    .map-cities-panel {
        display: none;
    }
}

@media (max-width: 992px) {

    .nav-links,
    .header-phone {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-eyebrow {
        font-size: 0.7rem;
        gap: 10px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image-panel {
        height: 350px;
    }

    .about-content-panel {
        padding: 60px 40px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .timeline-connector {
        display: none;
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .bento-lg {
        grid-column: span 2;
    }

    .quote-grid {
        grid-template-columns: 1fr;
    }

    .quote-trust-panel {
        padding: 60px 40px;
        border-right: none;
        border-bottom: 1px solid #2a1a10;
    }

    .quote-form-panel {
        padding: 60px 40px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-left {
        position: static;
    }

    .footer-top-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        gap: 6px;
    }

    .hero-eyebrow {
        display: none;
    }

    .hero-scroll-cue {
        display: none;
    }

    .about-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-lg {
        grid-column: span 1;
    }

    .svc-row {
        flex-wrap: wrap;
        padding: 24px 20px;
        gap: 16px;
    }

    .svc-row-right {
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: space-between;
        min-width: unset;
    }

    .svc-num {
        display: none;
    }

    .svc-icon-lg {
        display: none;
    }

    .svc-bottom-bar {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }

    .svc-row--emergency::after {
        display: none;
    }

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

    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .portfolio-sub {
        text-align: left;
        max-width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-top-inner {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .reviews-header {
        flex-direction: column;
        gap: 20px;
    }

    .mobile-sticky-call {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .process-cta {
        flex-direction: column;
        align-items: center;
    }

    .quote-trust-panel {
        padding: 50px 24px;
    }

    .quote-form-panel {
        padding: 40px 24px;
    }

    .about-content-panel {
        padding: 50px 24px;
    }
}

/* =============================================
   INNER PAGE HERO BANNER
   ============================================= */
.inner-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    margin-top: 74px;
    background-color: #0e0e0e;
    background-image:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255, 69, 0, 0.12) 0%, transparent 70%),
        linear-gradient(180deg, #0e0e0e 0%, #1a1008 100%);
    border-bottom: 1px solid #2a2a2a;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/images/Herosection.jpg') center/cover no-repeat;
    opacity: 0.07;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
}

.inner-hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.inner-hero-eyebrow a {
    color: #666;
    transition: color 0.2s;
}

.inner-hero-eyebrow a:hover {
    color: var(--color-accent);
}

.inner-hero-eyebrow i {
    font-size: 0.6rem;
    color: #444;
}

.inner-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 20px;
    color: #fff;
}

.inner-hero-sub {
    font-size: 1.1rem;
    color: #aaa;
    max-width: 560px;
    line-height: 1.7;
}

/* Active nav link */
.nav-active {
    color: var(--color-accent) !important;
}

/* =============================================
   SERVICES PAGE — CARD GRID
   ============================================= */
.services-page-section {
    background: var(--color-bg-dark);
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    gap: 2px;
}

.svc-card {
    background: #111;
    border: 1px solid #1e1e1e;
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background 0.3s, border-color 0.3s;
}

.svc-card:hover {
    background: #161616;
    border-color: #2a2a2a;
}

.svc-card--emergency {
    border-color: rgba(255, 69, 0, 0.2);
    background: linear-gradient(135deg, #130800 0%, #111 100%);
}

.svc-card--emergency:hover {
    border-color: rgba(255, 69, 0, 0.4);
}

.svc-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 6px;
    background: rgba(255, 69, 0, 0.1);
    border: 1px solid rgba(255, 69, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.svc-card-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    font-weight: 600;
}

.svc-card-title {
    font-size: 1.4rem;
    color: #fff;
    margin: 0;
}

.svc-card-desc {
    font-size: 0.92rem;
    color: #999;
    line-height: 1.75;
    margin: 0;
}

.svc-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 4px 0;
    flex: 1;
}

.svc-card-list li {
    font-size: 0.88rem;
    color: #bbb;
    display: flex;
    align-items: center;
    gap: 10px;
}

.svc-card-list li i {
    color: var(--color-accent);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.svc-card .btn {
    margin-top: 6px;
    align-self: flex-start;
}

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-section {
    background: var(--color-bg-dark);
}

.gallery-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 9px 20px;
    border: 1px solid #333;
    background: transparent;
    color: #888;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.25s;
}

.filter-btn:hover,
.filter-btn.filter-active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.gallery-item {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
    transition: opacity 0.35s, transform 0.35s;
}

.gallery-item--tall {
    grid-row: span 2;
    height: auto;
}

.gallery-item.gallery-hidden {
    display: none;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 55%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    font-weight: 700;
}

.gallery-overlay h3 {
    font-size: 1rem;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.gallery-overlay p {
    font-size: 0.8rem;
    color: #aaa;
    margin: 0;
}

.gallery-overlay p i {
    color: var(--color-accent);
    margin-right: 4px;
    font-size: 0.7rem;
}

.gallery-no-results {
    text-align: center;
    padding: 80px 20px;
    color: #444;
}

.gallery-no-results i {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-page-story {
    background: var(--color-bg-dark);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin: 16px 0 20px;
}

.about-story-visual {
    position: relative;
}

.about-story-img {
    height: 480px;
    border-radius: 4px;
    width: 100%;
}

.about-stats-section {
    background: #0e0e0e;
    padding: 70px 0;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.about-stats-row--page {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.about-values-section {
    background: #111;
}

.section-header-left {
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: #141414;
    border: 1px solid #222;
    border-top: 2px solid var(--color-accent);
    padding: 36px 28px;
    transition: border-color 0.3s, background 0.3s;
}

.value-card:hover {
    background: #181818;
    border-color: var(--color-accent);
    border-top-color: var(--color-accent);
}

.value-card-icon {
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: 18px;
}

.value-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.7;
}

.about-credentials-section {
    background: #0a0a0a;
    padding: 60px 0;
    border-top: 1px solid #1a1a1a;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.credential-item>i {
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-top: 4px;
    flex-shrink: 0;
}

.credential-item strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 6px;
}

.credential-item p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

/* =============================================
   CONTACT PAGE — INFO BLOCK
   ============================================= */
.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 28px;
    border-top: 1px solid #2a1a10;
}

.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-info-row>i {
    color: var(--color-accent);
    font-size: 1rem;
    margin-top: 3px;
    width: 18px;
    flex-shrink: 0;
}

.contact-info-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #555;
    margin-bottom: 3px;
}

.contact-info-val {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
}

a.contact-info-val {
    transition: color 0.2s;
}

a.contact-info-val:hover {
    color: var(--color-accent);
}

.contact-page-quote {
    padding-top: 0;
}

/* =============================================
   PAGE CTA STRIP
   ============================================= */
.page-cta-strip {
    background: linear-gradient(135deg, #0f0a07 0%, #1a0d05 100%);
    border-top: 1px solid #2a1a10;
    padding: 70px 0;
}

.page-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.page-cta-inner h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    margin-bottom: 8px;
}

.page-cta-inner p {
    color: var(--color-text-muted);
    font-size: 1rem;
}

.page-cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* =============================================
   RESPONSIVE — NEW PAGES
   ============================================= */
@media (max-width: 1100px) {
    .services-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats-row--page {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .gallery-item--tall {
        grid-row: span 1;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-story-img {
        height: 300px;
    }

    .page-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-cta-actions {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .inner-hero {
        min-height: 280px;
    }

    .services-cards-grid {
        grid-template-columns: 1fr;
    }

    .svc-card {
        padding: 32px 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-filter-bar {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 0.72rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
    }

    .about-stats-row--page {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .page-cta-actions .btn {
        width: 100%;
        text-align: center;
    }
}
/* Service Card Thumbnails */
.svc-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}
.svc-thumb-link {
    display: block;
    width: 90px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,140,0,0.15);
}
.svc-thumb-link:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(255,140,0,0.35);
}
.svc-thumb-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.svc-related-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.3s, gap 0.3s;
}
.svc-related-link:hover {
    color: #fff;
    gap: 8px;
}
@media (max-width: 768px) {
    .svc-thumb-link {
        width: 70px;
        height: 48px;
    }
}

/* Gallery Captions */
.gallery-caption {
    padding: 10px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-align: center;
    letter-spacing: 0.3px;
    line-height: 1.4;
}
.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-bg-alt);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255,140,0,0.15);
}
