/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #0f1a2e;
    --primary-light: #162340;
    --accent: #2d6a4f;
    --accent-light: #40916c;
    --accent-dark: #1b4332;
    --accent-bg: rgba(45,106,79,0.10);
    --accent-bg-strong: rgba(45,106,79,0.15);
    --hero-gradient: linear-gradient(135deg, #0f1a2e 0%, #162340 40%, #1b4332 100%);
    --industries-gradient: linear-gradient(135deg, #0f1a2e 0%, #1b4332 100%);
    --hero-glow: rgba(45,106,79,0.15);
    --logo-icon-color: #CCFF00;
    --light: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-500: #6c757d;
    --gray-700: #495057;
    --gray-900: #212529;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --transition: 0.3s ease;
}

/* Home Repair theme — warm, residential, craftsman */
body[data-business="repair"] {
    --accent: #c2410c;
    --accent-light: #ea580c;
    --accent-dark: #7c2d12;
    --accent-bg: rgba(194,65,12,0.10);
    --accent-bg-strong: rgba(194,65,12,0.15);
    --hero-gradient: linear-gradient(135deg, #1a1208 0%, #2a1a0c 40%, #7c2d12 100%);
    --industries-gradient: linear-gradient(135deg, #1a1208 0%, #7c2d12 100%);
    --hero-glow: rgba(234,88,12,0.18);
    --logo-icon-color: #fef3c7;
}

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    line-height: 1.7;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}
.btn-primary:hover { background: var(--accent-dark); }

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(15,26,46,0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-icon {
    width: 42px;
    height: 42px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--logo-icon-color);
    font-size: 1.1rem;
    transition: background 0.4s ease, color 0.4s ease;
}

.nav-logo-text {
    color: var(--white);
    font-weight: 700;
    font-size: 1.15rem;
}

.nav-logo-text span {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
    padding: 10px 24px !important;
    font-size: 0.85rem !important;
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.nav-mobile-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all var(--transition);
}

/* ===== BUSINESS TOGGLE ===== */
.business-toggle {
    display: inline-flex;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 4px;
    margin-bottom: 28px;
    gap: 4px;
    max-width: 100%;
}

.business-toggle button {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.65);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    min-width: 0;
}

.business-toggle .toggle-label-short { display: none; }

.business-toggle button:hover:not(.active) { color: var(--white); }

.business-toggle button.active {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(45,106,79,0.45);
}

/* Show/hide sections based on which business tab is active */
body[data-business="safety"] [data-business-only="repair"] { display: none !important; }
body[data-business="repair"] [data-business-only="safety"] { display: none !important; }

@media (max-width: 600px) {
    .business-toggle {
        display: flex;
        width: 100%;
    }
    .business-toggle button {
        flex: 1 1 0;
        padding: 10px 12px;
        font-size: 0.8rem;
        justify-content: center;
    }
    .business-toggle .toggle-label-full { display: none; }
    .business-toggle .toggle-label-short { display: inline; }
}

@media (max-width: 380px) {
    .business-toggle button { padding: 9px 8px; font-size: 0.75rem; gap: 6px; }
    .business-toggle button svg { width: 12px; height: 12px; }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 140px 0 100px;
    display: flex;
    align-items: center;
    background: var(--hero-gradient);
    overflow: hidden;
    transition: background 0.4s ease;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='g' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Cpath d='M0 30h60M30 0v60' stroke='%23ffffff' stroke-width='0.3' opacity='0.05'/%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23g)' width='60' height='60'/%3E%3C/svg%3E");
    opacity: 0.5;
}

body[data-business="repair"] .hero::before {
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='d' width='80' height='80' patternUnits='userSpaceOnUse'%3E%3Cpath d='M0 0l40 40M40 0l40 40M0 40l40 40M40 40l40 40' stroke='%23ffffff' stroke-width='0.4' opacity='0.06'/%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23d)' width='80' height='80'/%3E%3C/svg%3E");
    opacity: 0.6;
}

.hero-accent-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--hero-glow) 0%, transparent 70%);
    right: -200px;
    top: -100px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--accent-bg-strong);
    border: 1px solid var(--accent);
    border-radius: 100px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: normal;
    color: var(--accent);
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.hero-stat p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0;
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-header {
    text-align: center;
    margin-bottom: 64px;
}

.services-header .section-subtitle {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.service-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent);
}
.service-icon svg { stroke: currentColor; }

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
}

.service-card p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--gray-100);
}

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

.about-image {
    position: relative;
}

.about-image-main {
    width: 100%;
    height: 480px;
    background: linear-gradient(135deg, var(--primary), var(--accent-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: background 0.4s ease;
}

.about-image-main svg {
    width: 200px;
    opacity: 0.2;
}

.about-experience-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--accent);
    color: white;
    padding: 24px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about-experience-badge h3 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge p {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-content .section-subtitle { margin-bottom: 28px; }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--gray-700);
}

.about-feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-bg-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent);
}

/* ===== WHY CHOOSE ===== */
.why-choose {
    padding: 100px 0;
    background: var(--white);
}

.why-choose-header {
    text-align: center;
    margin-bottom: 64px;
}

.why-choose-header .section-subtitle { margin: 0 auto; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.why-card {
    text-align: center;
    padding: 40px 24px;
}

.why-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.why-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery-header {
    text-align: center;
    margin-bottom: 64px;
}

.gallery-header .section-subtitle { margin: 0 auto; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    cursor: default;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.gallery-item.has-image {
    background: var(--gray-900);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    color: var(--gray-500);
    gap: 12px;
}

.gallery-placeholder svg {
    width: 36px;
    height: 36px;
    stroke: var(--accent);
    opacity: 0.6;
}

.gallery-placeholder-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.gallery-placeholder-hint {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.gallery-caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 14px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition);
}

.gallery-item.has-image:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* ===== INDUSTRIES ===== */
.industries {
    padding: 100px 0;
    background: var(--industries-gradient);
    color: white;
    transition: background 0.4s ease;
}

.industries-header {
    text-align: center;
    margin-bottom: 64px;
}

.industries-header .section-label { color: var(--accent); }
.industries-header .section-title { color: white; }
.industries-header .section-subtitle { color: rgba(255,255,255,0.6); margin: 0 auto; }

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.industry-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.92rem;
    transition: all var(--transition);
}

.industry-tag:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
}

.industry-tag-icon {
    font-size: 1.3rem;
    color: var(--accent);
}
.industry-tag-icon svg { stroke: currentColor; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    position: relative;
    padding: 140px 0 80px;
    background: var(--hero-gradient);
    color: var(--white);
    overflow: hidden;
    transition: background 0.4s ease;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='g' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Cpath d='M0 30h60M30 0v60' stroke='%23ffffff' stroke-width='0.3' opacity='0.05'/%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23g)' width='60' height='60'/%3E%3C/svg%3E");
    opacity: 0.5;
}
body[data-business="repair"] .page-hero::before {
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='d' width='80' height='80' patternUnits='userSpaceOnUse'%3E%3Cpath d='M0 0l40 40M40 0l40 40M0 40l40 40M40 40l40 40' stroke='%23ffffff' stroke-width='0.4' opacity='0.06'/%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23d)' width='80' height='80'/%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 2; max-width: 800px; }
.page-hero .section-label { color: var(--accent-light); }
.page-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.page-hero h1 em { font-style: normal; color: var(--accent-light); }
.page-hero-intro {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    margin-bottom: 28px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.breadcrumb a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); text-decoration: underline; }
.breadcrumb-sep { opacity: 0.5; }
.breadcrumb span:last-child { color: var(--white); font-weight: 500; }

/* ===== PAGE SECTION ===== */
.page-section { padding: 80px 0; background: var(--white); }
.page-section-alt { background: var(--gray-100); }
.page-section-header { text-align: center; margin-bottom: 40px; max-width: 760px; margin-left: auto; margin-right: auto; }
.page-section-header .section-subtitle { margin: 0 auto; }

.checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    list-style: none;
    max-width: 1000px;
    margin: 0 auto;
}
.checklist li {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
    padding: 18px 22px;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--gray-700);
}
.checklist strong { color: var(--primary); display: block; margin-bottom: 4px; font-size: 1rem; }

.process-list {
    counter-reset: step;
    list-style: none;
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.process-list li {
    counter-increment: step;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px 24px 20px 70px;
    position: relative;
    line-height: 1.7;
    color: var(--gray-700);
    font-size: 0.95rem;
}
.process-list li::before {
    content: counter(step);
    position: absolute;
    left: 18px;
    top: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
}
.process-list strong { color: var(--primary); display: block; margin-bottom: 4px; font-size: 1rem; }

.service-area-text {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.8;
}

.prose {
    max-width: 760px;
    margin: 0 auto;
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 1rem;
}
.prose p { margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }

/* ===== SERVICE CARD AS LINK (hub pages) ===== */
.service-card-link { display: block; color: inherit; }
.service-card-link .service-card { height: 100%; cursor: pointer; }
.service-card-link:hover .service-card { border-color: var(--accent); box-shadow: var(--shadow); }
.service-card-link:hover .service-card::before { transform: scaleX(1); }
.service-card-cta {
    display: inline-block;
    margin-top: 14px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .page-hero { padding: 100px 0 60px; }
    .page-section { padding: 60px 0; }
    .checklist { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    background: var(--gray-100);
}
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header .section-subtitle { margin: 0 auto; }
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--accent);
    transition: transform var(--transition);
    line-height: 1;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item-body {
    padding: 0 24px 22px;
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 80px 0;
    background: var(--accent);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23ffffff' opacity='0.1'/%3E%3C/svg%3E");
}

.cta-banner-content {
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: white;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn {
    background: var(--white);
    color: var(--accent);
    font-weight: 700;
}
.cta-banner .btn:hover { background: var(--gray-100); }

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--gray-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--gray-200);
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--accent-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
}

.contact-info-card h4 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--primary);
}

.contact-info-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
}

.contact-form-wrapper > p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--gray-900);
    transition: border-color var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-bg-strong);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary);
    color: rgba(255,255,255,0.6);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.footer-social a:hover { background: var(--accent); }
.footer-social a svg { width: 16px; height: 16px; fill: white; }

.footer-col h4 {
    color: white;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 0.88rem;
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a { transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }

    .nav-links { display: none; }
    .nav-mobile-toggle { display: flex; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        padding: 24px;
        gap: 16px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .hero { padding: 110px 0 70px; }
    .hero p { font-size: 1rem; }
    .hero-stats { flex-direction: column; gap: 24px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .services, .gallery, .about, .why-choose, .industries, .contact { padding: 70px 0; }
    .cta-banner { padding: 60px 0; }
    .form-row { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .about-experience-badge { right: 16px; bottom: -16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .contact-info-card p,
    .contact-info-card a,
    .footer-col a { overflow-wrap: anywhere; word-break: break-word; }
    .contact-form-wrapper { padding: 28px 20px; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
