/* ============================================================
   ELECTROBREIZH - MAIN STYLESHEET
   Professional Trust Design System
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES & RESET
   ============================================================ */
:root {
    --primary: #0B2545;
    --secondary: #13315C;
    --accent: #C5A55A;
    --teal: #2A7F8B;
    --light-bg: #F4F5F7;
    --white: #FFFFFF;
    --text-primary: #1B1B1E;
    --text-secondary: #4A4A4F;
    --text-on-dark: #E8E8EC;
    --border: #D1D3D8;
    --dark-footer: #091D38;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* ============================================================
   2. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(32px, 5vw, 52px); }
h2 { font-size: clamp(26px, 3.5vw, 38px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
h4 { font-size: clamp(18px, 2vw, 22px); }

p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

p:last-child {
    margin-bottom: 0;
}

.section-label {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    display: block;
    margin-bottom: 12px;
}

.section-label::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin-top: 8px;
}

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-pad {
    padding: 90px 0;
}

.section-pad-sm {
    padding: 60px 0;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-accent { color: var(--accent); }

.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-60 { margin-bottom: 60px; }

/* Section heading block */
.section-heading {
    margin-bottom: 60px;
}

.section-heading h2 {
    margin-bottom: 20px;
}

.section-heading p {
    max-width: 680px;
}

.section-heading.centered {
    text-align: center;
}

.section-heading.centered .section-label::after {
    margin: 8px auto 0;
}

.section-heading.centered p {
    margin: 0 auto;
}

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 36px;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

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

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--primary);
}

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

.btn-ghost {
    background: transparent;
    border: 1px solid var(--text-on-dark);
    color: var(--text-on-dark);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

/* ============================================================
   5. ICON CONTAINERS
   ============================================================ */
.icon-container {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.icon-container i {
    font-size: 22px;
    color: var(--accent);
    transition: color 0.3s ease;
}

.icon-container:hover,
.card:hover .icon-container {
    background: var(--primary);
}

.icon-container:hover i,
.card:hover .icon-container i {
    color: var(--accent);
}

/* ============================================================
   6. SKIP LINK (Accessibility)
   ============================================================ */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent);
    color: var(--white);
    padding: 8px 16px;
    z-index: 9999;
    font-family: 'Fira Sans', sans-serif;
    font-size: 13px;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* ============================================================
   7. HEADER / NAVIGATION
   ============================================================ */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--primary);
    height: 80px;
    transition: box-shadow 0.3s ease;
}

#main-header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.logo-line {
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.main-nav a {
    font-family: 'Fira Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-on-dark);
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

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

.nav-cta {
    border: 1px solid var(--accent) !important;
    padding: 8px 20px;
    border-radius: 3px;
    color: var(--accent) !important;
    transition: background 0.3s ease, color 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--accent);
    color: var(--white) !important;
}

.nav-cta::after {
    display: none !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--primary);
    z-index: 1001;
    padding: 100px 40px 40px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    flex-direction: column;
    gap: 0;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav a {
    font-family: 'Fira Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-on-dark);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: block;
    transition: color 0.3s ease;
}

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

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.mobile-overlay.open {
    display: block;
}

/* ============================================================
   8. HERO SECTIONS
   ============================================================ */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-full {
    min-height: 100vh;
    padding-top: 80px;
}

.hero-half {
    min-height: 60vh;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 37, 69, 0.72);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-label {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    display: block;
    margin-bottom: 20px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    max-width: 800px;
}

.hero-sub {
    font-size: 19px;
    color: var(--text-on-dark);
    max-width: 680px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Hero stats bar */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(9, 29, 56, 0.85);
    padding: 24px 0;
    z-index: 3;
}

.hero-stats-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    display: block;
    line-height: 1;
}

.stat-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    color: var(--text-on-dark);
    margin-top: 4px;
}

/* Breadcrumb */
.breadcrumb {
    margin-top: 24px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    color: rgba(232, 232, 236, 0.6);
}

.breadcrumb a {
    color: rgba(232, 232, 236, 0.6);
    transition: color 0.3s ease;
}

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

.breadcrumb span {
    color: var(--text-on-dark);
}

.breadcrumb .sep {
    margin: 0 8px;
    color: rgba(232, 232, 236, 0.4);
}

/* ============================================================
   9. TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--light-bg);
    padding: 50px 0;
}

.trust-label {
    font-family: 'Fira Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 36px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-badge {
    border: 1px solid var(--accent);
    border-radius: 4px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    filter: grayscale(0.3);
    transition: filter 0.3s ease, box-shadow 0.3s ease;
}

.trust-badge:hover {
    filter: grayscale(0);
    box-shadow: 0 4px 16px rgba(197, 165, 90, 0.15);
}

.trust-badge i {
    font-size: 20px;
    color: var(--accent);
}

.trust-badge span {
    font-family: 'Fira Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

/* ============================================================
   10. SERVICE CARDS
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.card {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 32px;
    border-radius: 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.card-service {
    border-top: 3px solid var(--accent);
}

.card-service .icon-container {
    margin-bottom: 24px;
}

.card-service h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.card-service p {
    font-size: 15px;
    line-height: 1.65;
}

/* ============================================================
   11. SPLIT LAYOUT SECTIONS
   ============================================================ */
.split-section {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 60px;
    align-items: center;
}

.split-section.reverse {
    grid-template-columns: 45% 55%;
}

.split-section.reverse .split-img {
    order: 1; /* image goes LEFT in reverse layout */
}

.split-section.reverse .split-content {
    order: 2; /* content goes RIGHT in reverse layout */
}

.split-img {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.split-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.85) brightness(0.95);
}

.split-content h2 {
    margin-bottom: 20px;
}

/* ============================================================
   12. DIFFERENTIATORS (DARK SECTION)
   ============================================================ */
.differentiators {
    background: var(--primary);
    padding: 90px 0;
}

.differentiators .section-label {
    color: var(--accent);
}

.differentiators h2 {
    color: var(--white);
    margin-bottom: 60px;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
}

.diff-col {
    padding: 0 40px;
    position: relative;
}

.diff-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: var(--accent);
    opacity: 0.4;
}

.diff-col .icon-container {
    border-color: rgba(197, 165, 90, 0.5);
    margin-bottom: 24px;
}

.diff-col h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 16px;
}

.diff-col p {
    color: rgba(232, 232, 236, 0.8);
    font-size: 15px;
}

/* ============================================================
   13. TESTIMONIALS
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card-testimonial {
    padding: 36px 32px;
}

.testimonial-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: var(--accent);
    line-height: 0.6;
    margin-bottom: 20px;
    display: block;
    opacity: 0.7;
}

.testimonial-text {
    font-style: italic;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.testimonial-author {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.testimonial-name {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
}

.testimonial-role {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    color: var(--text-secondary);
}

/* ============================================================
   14. SECTOR TILES
   ============================================================ */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sector-tile {
    background: var(--white);
    padding: 36px 20px;
    text-align: center;
    border-radius: 2px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: background 0.3s ease;
    cursor: default;
}

.sector-tile:hover {
    background: var(--primary);
}

.sector-tile i {
    font-size: 32px;
    color: var(--teal);
    margin-bottom: 16px;
    display: block;
    transition: color 0.3s ease;
}

.sector-tile:hover i {
    color: var(--accent);
}

.sector-tile span {
    font-family: 'Fira Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.sector-tile:hover span {
    color: var(--accent);
}

/* ============================================================
   15. CTA SECTION
   ============================================================ */
.cta-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
}

.cta-section .hero-overlay {
    background: rgba(11, 37, 69, 0.80);
}

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

.cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: clamp(28px, 4vw, 42px);
}

.cta-section p {
    color: var(--text-on-dark);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 36px;
}

.cta-phone {
    display: block;
    margin-top: 24px;
    font-family: 'Fira Sans', sans-serif;
    font-size: 15px;
    color: var(--accent);
    letter-spacing: 0.5px;
}

.cta-phone a {
    color: var(--accent);
    transition: opacity 0.3s ease;
}

.cta-phone a:hover {
    opacity: 0.8;
}

/* ============================================================
   16. FOOTER
   ============================================================ */
#main-footer {
    background: var(--primary);
}

.footer-top {
    padding: 70px 0 50px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 50px;
}

.footer-col h4 {
    font-family: 'Fira Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-on-dark);
    margin-bottom: 20px;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 6px;
}

.footer-logo-line {
    width: 30px;
    height: 2px;
    background: var(--accent);
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    color: #A0A4AC;
    line-height: 1.65;
    margin-bottom: 0;
}

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

.footer-links a {
    font-size: 14px;
    color: #A0A4AC;
    transition: color 0.3s ease;
}

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

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-item i {
    font-size: 14px;
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-size: 14px;
    color: #A0A4AC;
    line-height: 1.5;
}

.footer-bottom {
    background: var(--dark-footer);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: #A0A4AC;
    margin-bottom: 0;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    font-size: 13px;
    color: #A0A4AC;
    transition: color 0.3s ease;
}

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

/* ============================================================
   17. ABOUT PAGE COMPONENTS
   ============================================================ */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv-card {
    background: var(--white);
    padding: 36px 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.mvv-card .icon-container {
    margin-bottom: 24px;
}

.mvv-card h3 {
    margin-bottom: 16px;
    font-size: 22px;
}

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

.team-card {
    text-align: center;
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: top;
    filter: grayscale(0.5) brightness(0.9);
    margin-bottom: 20px;
    border-radius: 2px;
}

.team-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.team-role {
    font-family: 'Fira Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    display: block;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Stats row (dark) */
.stats-dark {
    background: var(--primary);
    padding: 80px 0;
}

.stats-dark h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.big-stat {
    text-align: center;
}

.big-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--accent);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.big-stat-label {
    font-size: 15px;
    color: var(--text-on-dark);
}

/* Certifications list */
.cert-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cert-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.cert-item .icon-container {
    flex-shrink: 0;
}

.cert-item h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.cert-item p {
    font-size: 14px;
    margin-bottom: 0;
}

/* ============================================================
   18. SERVICES PAGE COMPONENTS
   ============================================================ */
.service-block {
    padding: 80px 0;
}

.service-block:nth-child(even) {
    background: var(--light-bg);
}

.service-block .split-section {
    grid-template-columns: 50% 50%;
    gap: 60px;
}

.service-features {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.service-feature i {
    color: var(--accent);
    font-size: 14px;
    flex-shrink: 0;
}

.service-icon-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.service-icon-row h2 {
    margin-bottom: 0;
}

/* Process steps */
.process-section {
    background: var(--primary);
    padding: 90px 0;
}

.process-section .section-label {
    color: var(--accent);
}

.process-section h2 {
    color: var(--white);
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 60px;
}

.steps-row::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--accent);
    opacity: 0.4;
    z-index: 0;
}

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

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    background: var(--accent);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 18px;
}

.step h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 12px;
}

.step p {
    color: rgba(232, 232, 236, 0.75);
    font-size: 14px;
    margin-bottom: 0;
}

/* ============================================================
   19. CONTACT PAGE
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 60px;
    align-items: start;
}

.contact-form-heading h2 {
    margin-bottom: 12px;
}

.contact-form-heading p {
    margin-bottom: 36px;
}

/* Forms */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group label .req {
    color: var(--accent);
    margin-left: 2px;
}

.form-control {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 12px 16px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    color: var(--text-primary);
    background: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.15);
}

.form-control.error {
    border-color: #C0392B;
}

.form-control.success {
    border-color: #27AE60;
}

.field-error {
    font-size: 13px;
    color: #C0392B;
    margin-top: 6px;
    display: none;
}

.field-error.visible {
    display: block;
}

select.form-control {
    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='%234A4A4F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

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

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

/* Checkbox */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--accent);
}

.form-check label {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
}

/* Contact info card */
.contact-info-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 2px;
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 24px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-item .icon-container {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.contact-info-item .icon-container i {
    font-size: 16px;
}

.contact-info-item-text strong {
    display: block;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.contact-info-item-text span {
    font-size: 14px;
    color: var(--text-secondary);
}

.gold-divider {
    width: 100%;
    height: 1px;
    background: var(--accent);
    opacity: 0.3;
    margin: 28px 0;
}

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

.location-card {
    background: var(--white);
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.location-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-card h4 i {
    font-size: 14px;
    color: var(--accent);
}

.location-card .main-hub {
    font-family: 'Fira Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    background: rgba(197, 165, 90, 0.1);
    padding: 2px 8px;
    border-radius: 2px;
    margin-bottom: 8px;
    display: inline-block;
}

.location-card p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Map placeholder */
.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder p {
    font-family: 'Fira Sans', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ============================================================
   20. QUOTE PAGE
   ============================================================ */
.quote-form-container {
    max-width: 860px;
    margin: 0 auto;
}

.quote-intro {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    padding: 16px 20px;
    border-left: 3px solid var(--accent);
    background: rgba(197, 165, 90, 0.05);
}

fieldset {
    border: none;
    margin-bottom: 48px;
}

fieldset legend {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    padding-bottom: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    width: 100%;
    display: block;
}

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

.reassurance-item {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.reassurance-item .icon-container {
    margin: 0 auto 20px;
}

.reassurance-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.reassurance-item p {
    font-size: 14px;
}

/* ============================================================
   21. LEGAL PAGES
   ============================================================ */
.legal-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 80px 0;
}

.legal-content h1 {
    margin-bottom: 12px;
}

.legal-meta {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.legal-content h3 {
    font-size: 18px;
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content p, .legal-content li {
    font-size: 15px;
    line-height: 1.75;
}

.legal-content ul, .legal-content ol {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content ol {
    list-style: decimal;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
}

.legal-table th {
    background: var(--primary);
    color: var(--white);
    padding: 12px 16px;
    text-align: left;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}

.legal-table tr:nth-child(even) td {
    background: var(--light-bg);
}

/* ============================================================
   22. FORM SUCCESS/ERROR STATES
   ============================================================ */
.form-success-msg {
    display: none;
    padding: 40px;
    text-align: center;
    background: rgba(39, 174, 96, 0.06);
    border: 1px solid rgba(39, 174, 96, 0.3);
    border-radius: 3px;
}

.form-success-msg i {
    font-size: 48px;
    color: #27AE60;
    margin-bottom: 16px;
}

.form-success-msg h3 {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.form-success-msg p {
    font-size: 16px;
}

.form-success-msg.visible {
    display: block;
}

/* ============================================================
   23. ANIMATION CLASSES
   ============================================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-up.delay-1 { transition-delay: 0.1s; }
.fade-in-up.delay-2 { transition-delay: 0.2s; }
.fade-in-up.delay-3 { transition-delay: 0.3s; }
.fade-in-up.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   24. UTILITY / MISC
   ============================================================ */
.gold-rule {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin-bottom: 32px;
}

.bg-white { background: var(--white); }
.bg-light { background: var(--light-bg); }
.bg-dark { background: var(--primary); }

/* ============================================================
   25. RESPONSIVE - LARGE (992–1199px)
   ============================================================ */
@media (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

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

/* ============================================================
   26. RESPONSIVE - MEDIUM (768–991px)
   ============================================================ */
@media (max-width: 991px) {
    .section-pad { padding: 70px 0; }

    .split-section,
    .split-section.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-section.reverse .split-img,
    .split-section.reverse .split-content {
        order: unset;
    }

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

    .diff-col {
        padding: 0;
    }

    .diff-col:not(:last-child)::after {
        display: none;
    }

    .diff-col:not(:last-child) {
        padding-bottom: 40px;
        border-bottom: 1px solid rgba(197, 165, 90, 0.2);
    }

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

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

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

    .steps-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .steps-row::before {
        display: none;
    }

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

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

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

/* ============================================================
   27. RESPONSIVE - SMALL (576–767px)
   ============================================================ */
@media (max-width: 767px) {
    .section-pad { padding: 50px 0; }
    .container { padding: 0 20px; }

    .hero-full { min-height: 100svh; }
    .hero-half { min-height: 55vh; }

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

    .main-nav { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: flex; }

    .hero-stats-inner {
        justify-content: center;
        gap: 24px;
    }

    .stat-item {
        min-width: 120px;
    }

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

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

    .stats-row {
        gap: 32px;
    }

    .big-stat-number {
        font-size: 40px;
    }

    .steps-row {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .btn-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-badges {
        gap: 16px;
    }
}

/* ============================================================
   28. RESPONSIVE - EXTRA SMALL (< 576px)
   ============================================================ */
@media (max-width: 575px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats-inner {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-number {
        font-size: 26px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-sub {
        font-size: 16px;
    }
}

/* ============================================================
   29. ACCESSIBILITY UTILITIES
   ============================================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
