@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
    --navy: #0a1628;
    --navy-light: #11213d;
    --blue: #1a6bb5;
    --blue-light: #2a8fd4;
    --amber: #f59e0b;
    --amber-light: #fbbf24;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-light); }

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

/* ─── HEADER ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0);
    backdrop-filter: blur(0);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
    background: #222222;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.site-header.scrolled .nav-center a {
    color: #ffffff;
}

.header-inner { display: none; }

.logo { display: none; }

.nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    width: 100%;
    padding: 10px 16px;
}
.nav-center a {
    color: #222222;
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color var(--transition);
    white-space: nowrap;
    padding: 10px 0;
}
.nav-center .nav-cta {
    padding: 6px 40px !important;
}
.nav-center a:hover { color: var(--amber); }

.nav-cta {
    display: none;
    background: #ffffff;
    color: #111111 !important;
    padding: 10px 40px;
    border-radius: var(--radius);
    font-weight: 700;
    transition: all var(--transition);
    margin-right: 8px;
    box-sizing: border-box;
}
.site-header.scrolled .nav-cta,
.nav-cta.visible {
    display: inline-block;
}
.nav-cta:hover { background: #f0f0f0; transform: translateY(-1px); }

.mobile-toggle {
    display: none;
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    color: var(--white);
}

/* Mobile nav */
.mobile-nav {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 8px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* ─── HERO ─── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url('/img/hero-bg.png') center/100vw no-repeat;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.85);
    pointer-events: none;
}

@media (min-width: 1024px) {
    .hero {
        background: url('/img/hero-bg-wide.png') center/cover no-repeat;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: calc(100% - 550px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Title Component */
.hero-title-wrapper {
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 210px 0 60px 0;
}

.hero-title-wrapper .hero-title {
    font-size: clamp(3.5rem, 8vw, 5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0;
}

.hero-title-wrapper .highlight {
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons & Stats Component */
.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 16px;
}

.hero-stats {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

/* Logo Component - Right Side */
.hero-logo-wrapper {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 3;
}

.hero-logo {
    max-height: 100vh;
    max-width: 400px;
    width: auto;
    height: auto;
    filter: invert(1) hue-rotate(180deg);
}

/* ─── MODERN HERO ─── */
.hero-modern {
    position: sticky;
    top: 0;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.hero-modern-bg {
    position: absolute;
    inset: 0;
    background: url('/electrical_eng_no_lightning_img.png') center / cover no-repeat;
}

.hero-modern ~ .section,
.hero-modern ~ footer {
    position: relative;
    z-index: 10;
}

.hero-modern-text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-brand-name {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 8px;
}

.hero-modern-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-modern-logo img {
    max-width: 90%;
    max-height: 70vh;
    width: auto;
    height: auto;
}

.hero-tagline {
    font-size: clamp(0.85rem, 1.8vw, 1.1rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #222222;
    margin-top: 8px;
}

.hero-cta {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 40px;
    background: #f5c518;
    color: #111111;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-cta:hover {
    background: #e5b316;
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

@media (min-width: 768px) {
    .hero-modern-logo img {
        max-width: 80%;
        max-height: 60vh;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,0.12);
    border: 1px solid rgba(245,158,11,0.25);
    color: var(--amber);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.hero h1 .highlight {
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 0;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    align-items: center;
    justify-content: center;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

.hero-visual {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    max-width: 700px;
    opacity: 0.18;
    z-index: 1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}
.btn-primary {
    background: #111111;
    color: #ffffff;
}
.btn-primary:hover { background: #333333; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); color: #ffffff; }
.btn-outline {
    background: transparent;
    color: #111111;
    border: 2px solid #111111;
}
.btn-outline:hover { border-color: #555555; background: rgba(0,0,0,0.05); color: #111111; }
.btn-blue {
    background: #222222;
    color: #ffffff;
}
.btn-blue:hover { background: #444444; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); color: #ffffff; }

/* ─── STATS BAR ─── */
.stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 40px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: var(--gray-200);
}
.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0a1628;
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
    margin-top: 4px;
}

/* ─── SECTIONS ─── */
.section { padding: 96px 0; background: var(--white); }
#services { border-top: 1px solid #111111; }
.section-dark { background: var(--gray-50); }
.section-navy { background: #0a1628; color: var(--white); }
.section-navy .section-header h2 { color: var(--white); }
.section-navy .section-header p { color: rgba(255,255,255,0.85); }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}
.section-header .overline {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 12px;
}
.section-header h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111111;
    margin-bottom: 16px;
    line-height: 1.2;
}
.section-navy .section-header h2 { color: var(--white); }
.section-header p {
    font-size: 1rem;
    color: #555555;
    line-height: 1.7;
}
.section-navy .section-header p { color: rgba(255,255,255,0.9); }

/* ─── SERVICES ─── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #222222;
    opacity: 0;
    transition: opacity var(--transition);
}
.service-card:hover {
    border-color: #222222;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: #f5c518;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #111111;
}
.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.service-card p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.6;
}

/* ─── WHY JEC ─── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.why-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #ffffff;
}
.why-image svg { width: 70%; height: 70%; opacity: 0.3; color: #666; }
.why-content h2 {
    font-size: clamp(1.5rem, 2.5vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}
.why-content > p {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 36px;
    line-height: 1.7;
}
.why-intro {
    color: #f5c518 !important;
}
.why-features { display: flex; flex-direction: column; gap: 20px; }
.why-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.why-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: #f5c518;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #111111;
}
.why-feature h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}
.why-feature p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}

/* ─── PROJECTS ─── */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.project-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}
.project-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.project-image {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--navy-light), var(--navy));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.project-image svg { width: 50%; height: 50%; opacity: 0.45; }
.project-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #f5c518;
    color: #111111;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.project-body { padding: 24px; }
.project-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.project-body p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    transition: all var(--transition);
}
.testimonial-card:hover {
    border-color: #f5c518;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.testimonial-stars {
    display: flex;
    gap: 2px;
    color: #f5c518;
    margin-bottom: 16px;
}
.testimonial-text {
    font-size: 0.95rem;
    color: #444444;
    line-height: 1.7;
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5c518;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #111111;
}
.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #111111;
}
.testimonial-source {
    font-size: 0.75rem;
    color: #888888;
}

/* ─── SERVICE AREA ─── */
.area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.area-map {
    background: #f5f5f5;
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}
.area-map svg { width: 85%; height: 85%; color: #999; }

.area-info h2 {
    font-size: clamp(1.5rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.area-info > p {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    line-height: 1.7;
}
.area-towns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.area-town {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
}
.area-town svg { color: #f5c518; flex-shrink: 0; }

/* ─── ABOUT ─── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}
.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #f0f0f0;
    aspect-ratio: 1/1;
    display: block;
    position: relative;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-image svg { display: none; }
.about-content h2 {
    font-size: clamp(1.5rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #111111;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.about-content p {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.7;
}
.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}
.about-value {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
}
.about-value svg { color: var(--amber); flex-shrink: 0; }

/* ─── CONTACT ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.contact-info { padding-top: 8px; }
.contact-info h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}
.contact-info > p {
    font-size: 1.05rem;
    color: var(--gray-800);
    margin-bottom: 40px;
    line-height: 1.7;
}
.contact-methods { display: flex; flex-direction: column; gap: 24px; }
.contact-method {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-method-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(26,107,181,0.3), rgba(26,107,181,0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
    border: 1px solid rgba(26,107,181,0.3);
}
.contact-method h4 {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 4px;
}
.contact-method p, .contact-method a {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    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: var(--radius);
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--gray-800);
    background: var(--white);
    transition: all var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26,107,181,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--transition);
}
.form-submit:hover { background: var(--blue-light); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-message {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 500;
    display: none;
}
.form-message.success {
    display: block;
    background: rgba(34,197,94,0.95);
    color: #064e3b;
    border: 1px solid rgba(34,197,94,0.3);
}
.form-message.error {
    display: block;
    background: rgba(239,68,68,0.95);
    color: #7f1d1d;
    border: 1px solid rgba(239,68,68,0.3);
}

/* ─── QUOTE SECTION ─── */
.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}
.quote-info .overline { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #f5c518; margin-bottom: 12px; }
.quote-info h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; letter-spacing: -0.02em; color: #ffffff; margin-bottom: 20px; line-height: 1.2; }
.quote-info > p { font-size: 1rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 24px; }

/* Form styles for the new quote section */
.contact-form-wrapper input:focus,
.contact-form-wrapper select:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-color: #f5c518;
    box-shadow: 0 0 0 3px rgba(245,197,24,0.15);
}
.contact-form-wrapper .form-submit:hover {
    background: #333333;
    transform: translateY(-1px);
}

/* ─── FOOTER ─── */
.site-footer {
    background: #111111;
    color: rgba(255,255,255,0.5);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-top: 16px;
    color: rgba(255,255,255,0.6);
}
.footer-col h4 {
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    transition: color var(--transition);
}
.footer-col a:hover { color: #ffffff; }
.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 0.85rem;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--amber-light); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8rem;
}
.footer-license { display: flex; gap: 8px; align-items: center; }
.footer-license img { height: 20px; opacity: 0.5; }

/* ─── ANIMATIONS ─── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── MOBILE NAV ─── */
.mobile-nav {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #222222;
    backdrop-filter: blur(12px);
    z-index: 999;
    padding: 24px;
    flex-direction: column;
    gap: 4px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
    color: var(--white);
    padding: 14px 16px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 500;
    display: block;
    transition: all var(--transition);
}
.mobile-nav a:hover { background: rgba(255,255,255,0.15); color: var(--white); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-stats { display: none; }
    .services-grid, .testimonials-grid, .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid, .about-grid, .area-content, .contact-grid, .quote-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-visual { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-item:nth-child(2)::after { display: none; }
}

@media (max-width: 768px) {
    .nav-links, .header-cta-wrapper, .nav-center { display: none; }
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero { min-height: 80vh; }
    .hero h1 { font-size: 2.2rem; }
    .hero-modern {
        position: relative;
        top: 0;
        min-height: 100svh;
    }
    .services-grid, .testimonials-grid, .projects-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .section { padding: 64px 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item::after { display: none; }
    .area-towns { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 24px; }
}

@media (max-width: 768px) {
    .nav-center { display: none; }
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mobile-nav { display: none; flex-direction: column; gap: 0; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #222222; padding-top: 60px; z-index: 999; }
    .mobile-nav.active { display: flex; }
    .mobile-nav a { color: var(--white); padding: 16px 24px; font-size: 1.1rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.05); text-align: center; }
    .mobile-nav a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }
}
