/* ============================================================
   LEDAF SERVICE V5 - "Refined & Fluid"
   Minimalist modern UI, smooth transitions, geometric accents
   Gold accent #C5A059 / Navy #1a2332 / Soft surfaces
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
    --dark: #1e2d42;
    --dark-lighter: #2d3f58;
    --dark-surface: #1e2a3a;
    --light: #ffffff;
    --light-alt: #f8f9fb;
    --light-section: #f4f5f7;
    --accent: #C5A059;
    --accent-hover: #b08d47;
    --accent-soft: rgba(197, 160, 89, 0.12);
    --accent-glow: rgba(197, 160, 89, 0.25);
    --accent-light: #d4b87a;
    --accent-dark: #8b7340;
    --text-dark: #1a2332;
    --text-body: #475569;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --border-light: rgba(0, 0, 0, 0.06);
    --border-dark: rgba(255, 255, 255, 0.08);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.12);
    --shadow-accent: 0 8px 32px rgba(197, 160, 89, 0.2);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    overscroll-behavior-x: none;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-body);
    background: var(--white);
    line-height: 1.75;
    overflow-x: clip;
    overscroll-behavior-x: none;
    letter-spacing: 0.01em;
    width: 100%;
    max-width: 100vw;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.hidden { display: none !important; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-dark);
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.section-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}
.section-label--light { color: var(--accent-light); }

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.section-title--light { color: var(--white); }

.section-desc {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}
.section-desc--light { color: rgba(255, 255, 255, 0.7); }

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

/* ---- Sections ---- */
.section { padding: 120px 0; position: relative; overflow: hidden; }
.section--dark { background: var(--light-section); }
.section--light { background: #ffffff; }

/* ---- Section--dark text overrides (airy light theme) ---- */
.section--dark .section-label { color: var(--accent); }
.section--dark .section-title { color: var(--text-dark); }
.section--dark .section-desc { color: var(--text-body); }
.section--dark .section-desc--light { color: var(--text-body); }
.section--dark .section-label--light { color: var(--accent); }
.section--dark .section-title--light { color: var(--text-dark); }

/* ---- Diagonal Dividers ---- */
.section-divider {
    position: absolute;
    width: 100%;
    height: 100px;
    left: 0;
    z-index: 2;
    pointer-events: none;
}
.section-divider--top {
    top: 0;
    background: linear-gradient(to right bottom, var(--light) 49.5%, transparent 50%);
}
.section-divider--top-light {
    top: 0;
    background: linear-gradient(to right bottom, var(--light-section) 49.5%, transparent 50%);
}

/* ---- Geometric Shapes (decorative) — SIGNATURE V5 DESIGN ---- */
/* HTML geometric shapes (kept for backward compat) */
.geometric-shape {
    position: absolute;
    border: 2px solid var(--accent-soft);
    border-radius: 4px;
    z-index: 0;
    pointer-events: none;
}
.geometric-shape--1 {
    width: 220px; height: 220px;
    top: 8%; right: -70px;
    transform: rotate(45deg);
    border-color: rgba(197, 160, 89, 0.08);
}
.geometric-shape--2 {
    width: 140px; height: 140px;
    bottom: 12%; left: -40px;
    transform: rotate(30deg);
    border-color: rgba(26, 35, 50, 0.06);
}

/* ======== CSS-ONLY GEOMETRIC DECORATIONS ======== */
/* Light sections: gold + navy outlines */
.section--light::before,
.section--light::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
/* Rectangle gold — top-right, rotated */
.section--light::before {
    width: 180px;
    height: 180px;
    top: 6%;
    right: -50px;
    border: 2px solid rgba(197, 160, 89, 0.1);
    border-radius: 4px;
    transform: rotate(45deg);
}
/* Circle navy — bottom-left */
.section--light::after {
    width: 120px;
    height: 120px;
    bottom: 8%;
    left: -30px;
    border: 2px solid rgba(26, 35, 50, 0.06);
    border-radius: 50%;
}

/* Dark sections: gold outlines + dotted accents */
.section--dark::before,
.section--dark::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
/* Losange gold — bottom-right */
.section--dark::before {
    width: 160px;
    height: 160px;
    bottom: 10%;
    right: -40px;
    border: 1.5px solid rgba(197, 160, 89, 0.03);
    border-radius: 4px;
    transform: rotate(45deg);
}
/* Circle dotted — top-left */
.section--dark::after {
    width: 200px;
    height: 200px;
    top: 5%;
    left: -60px;
    border: 1.5px dashed rgba(197, 160, 89, 0.04);
    border-radius: 50%;
}

/* --- Services section: override with unique shapes --- */
.services::before {
    width: 240px;
    height: 240px;
    top: 8%;
    right: -80px;
    bottom: auto;
    border: 2px solid rgba(197, 160, 89, 0.07);
    border-radius: 50%;
    transform: none;
}
.services::after {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 3%;
    top: auto;
    border: 2px solid rgba(197, 160, 89, 0.06);
    border-radius: 4px;
    transform: rotate(30deg);
}

/* --- Process section: offset rectangles --- */
.process::before {
    width: 150px;
    height: 150px;
    top: 15%;
    right: 2%;
    bottom: auto;
    border: 1.5px solid rgba(26, 35, 50, 0.05);
    border-radius: 4px;
    transform: rotate(15deg);
}
.process::after {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: -20px;
    top: auto;
    border: 2px solid rgba(197, 160, 89, 0.08);
    border-radius: 50%;
}

/* --- Projects section: large circle + small diamond --- */
.projects::before {
    width: 280px;
    height: 280px;
    top: -60px;
    left: -100px;
    bottom: auto;
    right: auto;
    border: 1.5px solid rgba(197, 160, 89, 0.05);
    border-radius: 50%;
    transform: none;
}
.projects::after {
    width: 90px;
    height: 90px;
    bottom: 8%;
    right: 5%;
    top: auto;
    left: auto;
    border: 2px solid rgba(26, 35, 50, 0.04);
    border-radius: 4px;
    transform: rotate(45deg);
}

/* --- Testimonials section: triangle-ish + ring --- */
.testimonials::before {
    width: 200px;
    height: 200px;
    top: 10%;
    left: -70px;
    bottom: auto;
    right: auto;
    border: 2px solid rgba(197, 160, 89, 0.08);
    border-radius: 4px;
    transform: rotate(60deg);
}
.testimonials::after {
    width: 140px;
    height: 140px;
    bottom: 5%;
    right: -40px;
    top: auto;
    left: auto;
    border: 1.5px solid rgba(26, 35, 50, 0.05);
    border-radius: 50%;
}

/* --- Team section: cross pattern --- */
.team::before {
    width: 170px;
    height: 170px;
    top: 12%;
    right: -50px;
    bottom: auto;
    left: auto;
    border: 1.5px solid rgba(197, 160, 89, 0.06);
    border-radius: 50%;
    transform: none;
}
.team::after {
    width: 120px;
    height: 120px;
    bottom: 12%;
    left: -30px;
    top: auto;
    right: auto;
    border: 2px solid rgba(197, 160, 89, 0.07);
    border-radius: 4px;
    transform: rotate(20deg);
}

/* --- Blog section (homepage): subtle accents --- */
.blog::before {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 8%;
    bottom: auto;
    left: auto;
    border: 2px solid rgba(197, 160, 89, 0.06);
    border-radius: 50%;
    transform: none;
}
.blog::after {
    display: none;
}

/* --- CTA section: floating shapes --- */
.cta-section::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    top: -40px;
    left: -60px;
    border: 2px solid rgba(197, 160, 89, 0.06);
    border-radius: 4px;
    transform: rotate(45deg);
    pointer-events: none;
    z-index: 1;
}
.cta-section::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    bottom: -30px;
    right: -30px;
    border: 2px solid rgba(26, 35, 50, 0.04);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* --- Page hero: decorations --- */
.page-hero::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: -80px;
    right: -60px;
    border: 2px solid rgba(197, 160, 89, 0.06);
    border-radius: 4px;
    transform: rotate(45deg);
    pointer-events: none;
    z-index: 1;
}
.page-hero::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    top: 30%;
    left: 5%;
    border: 1.5px dashed rgba(197, 160, 89, 0.08);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* --- Values / Qualites page section --- */
.values-section::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    top: 5%;
    right: -60px;
    border: 2px solid rgba(197, 160, 89, 0.07);
    border-radius: 4px;
    transform: rotate(45deg);
    pointer-events: none;
    z-index: 0;
}
.values-section::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    bottom: 10%;
    left: -50px;
    border: 1.5px solid rgba(26, 35, 50, 0.05);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* --- Gallery section --- */
.gallery-section::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    top: 8%;
    left: -60px;
    border: 2px solid rgba(197, 160, 89, 0.06);
    border-radius: 4px;
    transform: rotate(30deg);
    pointer-events: none;
    z-index: 0;
}
.gallery-section::after {
    content: '';
    position: absolute;
    width: 130px;
    height: 130px;
    bottom: 5%;
    right: -40px;
    border: 1.5px dashed rgba(197, 160, 89, 0.07);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* --- Contact section --- */
.contact-section::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    top: -40px;
    right: -70px;
    border: 2px solid rgba(197, 160, 89, 0.06);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.contact-section::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    bottom: 10%;
    left: -20px;
    border: 2px solid rgba(26, 35, 50, 0.04);
    border-radius: 4px;
    transform: rotate(45deg);
    pointer-events: none;
    z-index: 0;
}

/* --- About intro page section --- */
.about-intro::before {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    top: 5%;
    right: -80px;
    border: 2px solid rgba(197, 160, 89, 0.06);
    border-radius: 4px;
    transform: rotate(45deg);
    pointer-events: none;
    z-index: 0;
}
.about-intro::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 3%;
    border: 1.5px solid rgba(26, 35, 50, 0.05);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* --- Service detail page --- */
.service-detail::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    top: 10%;
    right: -50px;
    border: 2px solid rgba(197, 160, 89, 0.05);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.service-detail::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    bottom: 8%;
    left: -30px;
    border: 1.5px solid rgba(197, 160, 89, 0.06);
    border-radius: 4px;
    transform: rotate(35deg);
    pointer-events: none;
    z-index: 0;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}
.btn--primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.btn--primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}
.btn--outline {
    background: transparent;
    color: var(--text-dark);
    border-color: rgba(0, 0, 0, 0.15);
}
.btn--outline:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
    transform: translateY(-2px);
}
/* Keep btn--outline white in hero, CTA, page-hero, footer contexts */
.hero .btn--outline,
.cta-section .btn--outline,
.page-hero .btn--outline,
.footer .btn--outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}
.hero .btn--outline:hover,
.cta-section .btn--outline:hover,
.page-hero .btn--outline:hover,
.footer .btn--outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}
.btn--lg { padding: 16px 38px; font-size: 0.95rem; }

/* ============ TOP BAR ============ */
.top-bar {
    background: #f4f5f7;
    color: var(--text-body);
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    position: relative;
    z-index: 1001;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.top-bar__left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.top-bar__left span { display: flex; align-items: center; gap: 8px; }
.top-bar__hq {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.top-bar__hq i { font-size: 0.75rem; }
.top-bar__hq:hover { color: var(--accent-hover); }
.top-bar__left i { color: var(--accent); font-size: 0.75rem; }
.top-bar__right { display: flex; gap: 16px; }
.top-bar__right a {
    color: var(--text-body);
    font-size: 0.85rem;
    transition: var(--transition);
}
.top-bar__right a:hover { color: var(--accent); }

/* ============ HEADER ============ */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #f4f5f7;
    transition: all 0.4s ease;
    padding: 0;
}
.header.scrolled {
    background: rgba(244, 245, 247, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.header__logo img { height: 60px; width: auto; }
.header__nav { display: flex; }
.nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav-list > li > a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-dark);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.nav-list > li > a:hover,
.nav-list > li > a.active { color: var(--accent); }
.nav-list > li > a i { font-size: 0.6rem; transition: var(--transition); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 100;
    border: 1px solid var(--border-light);
}
.has-dropdown:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 0.88rem;
    color: var(--text-body);
    font-weight: 500;
    transition: var(--transition);
}
.dropdown li a:hover {
    background: var(--light);
    color: var(--accent);
    padding-left: 24px;
}
.sub-dropdown {
    left: 100%;
    top: 0;
}

.header__cta {
    font-size: 0.82rem;
    padding: 10px 24px;
}

/* Hamburger */
.header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}
.header__hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}
.header__hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(8px); }
.header__hamburger.active span:nth-child(2) { opacity: 0; }
.header__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-8px); }

/* ============ HERO ============ */
.hero {
    position: relative;
    height: 120vh;
    min-height: 1000px;
    max-height: 1650px;
}
.hero-swiper {
    width: 100%;
    height: 100%;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    transform: none;
    transition: none;
    display: block;
    overflow: hidden;
}
img.hero__bg,
.hero__bg > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.swiper-slide-active .hero__bg { transform: none; }
.hero__overlay {
    display: none;
}
.hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 76px;
}
.hero__tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 24px;
    padding: 8px 20px;
    border: 1.5px solid rgba(197, 160, 89, 0.4);
    border-radius: 50px;
    width: fit-content;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.25);
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.hero__content h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 24px;
    max-width: 750px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.3);
}
.hero__content p {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.hero__buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero pagination */
.hero-pagination {
    bottom: 24px !important;
}
.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.6);
    opacity: 1;
    border: 2px solid transparent;
    transition: var(--transition);
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.hero-pagination .swiper-pagination-bullet-active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.2);
}
.hero-next, .hero-prev {
    color: var(--white) !important;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    width: 52px !important;
    height: 52px !important;
    border-radius: 50%;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-next:hover, .hero-prev:hover {
    background: var(--accent);
    border-color: var(--accent);
}
.hero-next::after, .hero-prev::after { font-size: 18px !important; font-weight: 900; }

/* Scroll indicator */
.hero__scroll {
    display: none;
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.hero__scroll span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    writing-mode: vertical-rl;
}
.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}
.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 40%;
    background: var(--accent);
    animation: scrollLine 2.5s infinite;
}
@keyframes scrollLine {
    0% { top: -40%; }
    100% { top: 100%; }
}

/* ============ HERO BOTTOM BAR ============ */
.hero__bar {
    background: #ffffff;
    border-top: 2px solid var(--accent);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.hero__bar > .container {
    max-width: 100%;
    padding: 0;
}
.hero__bar-inner {
    display: flex;
    align-items: stretch;
    gap: 0;
}
.hero__bar-link {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    padding: 22px 32px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    position: relative;
    background: #f8f9fa;
}
.hero__bar-link:hover {
    background: #edeef0;
}
.hero__bar-link-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.12), rgba(197, 160, 89, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}
.hero__bar-link:hover .hero__bar-link-icon {
    background: var(--accent);
}
.hero__bar-link-icon i {
    font-size: 1.1rem;
    color: var(--accent);
    transition: var(--transition);
}
.hero__bar-link:hover .hero__bar-link-icon i {
    color: #ffffff;
}
.hero__bar-link strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 3px;
}
.hero__bar-link span {
    display: block;
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.4;
}
.hero__bar-arrow {
    margin-left: auto;
    font-size: 0.85rem;
    color: var(--accent);
    opacity: 0.3;
    transform: translateX(0);
    transition: var(--transition);
}
.hero__bar-link:hover .hero__bar-arrow {
    opacity: 1;
    transform: translateX(4px);
}
.hero__bar-divider {
    width: 1px;
    background: rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .hero__bar-inner {
        flex-direction: column;
    }
    .hero__bar-divider {
        width: 100%;
        height: 1px;
    }
    .hero__bar-link {
        padding: 18px 20px;
    }
    .hero__bar-arrow {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============ HIGHLIGHTS ============ */
.highlights {
    padding: 80px 0;
    background: #ffffff;
}
.highlights__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.highlights__card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    padding: 40px 32px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}
.highlights__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.highlights__card:hover::before {
    transform: scaleX(1);
}
.highlights__card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}
.highlights__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1), rgba(197, 160, 89, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.highlights__icon i {
    font-size: 1.3rem;
    color: var(--accent);
}
.highlights__tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}
.highlights__card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 14px;
}
.highlights__card p {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.75;
}
@media (max-width: 1024px) {
    .highlights__grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 600px;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .highlights {
        padding: 60px 0;
    }
    .highlights__card {
        padding: 32px 24px;
    }
}

/* ============ ABOUT ============ */
.about__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.about__image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}
.about__image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: var(--radius);
    transition: transform var(--transition-slow);
}
.about-intro .about__image-wrapper img {
    object-position: center 16%;
}
.about__image-wrapper:hover img { transform: scale(1.03); }
.about__image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 180px;
    height: 180px;
    border: 3px solid var(--accent-soft);
    border-radius: var(--radius);
    z-index: -1;
}
.about__badge {
    position: absolute;
    bottom: 30px;
    right: -24px;
    background: var(--accent);
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-accent);
    z-index: 5;
}
.about__badge-number {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}
.about__badge-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about__content .section-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    line-height: 1.35;
}
.about__content .section-label { margin-bottom: 20px; }
.about__desc {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-body);
    margin-bottom: 32px;
    line-height: 1.9;
}
.about__vision {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 28px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.about__vision:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}
.about__vision-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.about__vision h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}
.about__vision p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.7;
}
.about__checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
    margin-bottom: 36px;
}
.about__checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}
.about__checklist li:hover { transform: translateX(4px); }
.about__checklist li i { color: var(--accent); font-size: 0.95rem; }
.about__cta-row {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.about__phone {
    display: flex;
    align-items: center;
    gap: 12px;
}
.about__phone-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    animation: pulse-ring 2.5s infinite;
}
@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 var(--accent-glow); }
    70% { box-shadow: 0 0 0 10px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}
.about__phone span { font-size: 0.82rem; color: var(--text-muted); display: block; }
.about__phone strong {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--text-dark);
}
.about__pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.about__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.2);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--text-dark);
    transition: var(--transition);
}
.about__pill i {
    color: var(--accent);
    font-size: 0.75rem;
}
.about__pill:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}
.about__pill:hover i {
    color: #ffffff;
}
.about__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}
.about__link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}
.about__link:hover {
    color: var(--accent-hover);
}
.about__link:hover i {
    transform: translateX(4px);
}

/* ============ SERVICES ============ */
.services { padding-top: 140px; }
.services__tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}
.services__tab {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 32px;
    border-radius: 50px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}
.services__tab:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.services__tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Service Card */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
}
.service-card:hover {
    border-color: rgba(197, 160, 89, 0.15);
    box-shadow: var(--shadow-lg);
}
.service-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-card:hover .service-card__icon { transform: scale(1.08) rotate(-3deg); }
.service-card__icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}
.service-card__number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.8rem;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
}
.service-card__title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.35;
}
.service-card__desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.7;
}
.service-card__border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--accent), var(--accent-light));
    transition: width 0.5s ease;
}
.service-card:hover .service-card__border { width: 100%; }

/* Service card hover image reveal */
.service-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    clip-path: inset(100% 0 0 0);
    transition: clip-path 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    border-radius: var(--radius);
}
.service-card__bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 35, 50, 0.5);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: var(--radius);
}
.service-card:hover .service-card__bg {
    clip-path: inset(0 0 0 0);
}
.service-card:hover .service-card__bg-overlay {
    opacity: 1;
}
.service-card .service-card__icon,
.service-card .service-card__title,
.service-card .service-card__desc,
.service-card .service-card__number {
    position: relative;
    z-index: 3;
    transition: color 0.4s ease, background 0.4s ease;
}
.service-card:has(.service-card__bg):hover .service-card__title {
    color: var(--white);
}
.service-card:has(.service-card__bg):hover .service-card__desc {
    color: rgba(255, 255, 255, 0.8);
}
.service-card:has(.service-card__bg):hover .service-card__number {
    color: rgba(255, 255, 255, 0.08);
}
.service-card:has(.service-card__bg):hover .service-card__icon {
    background: var(--accent);
}
.service-card > a {
    position: absolute;
    inset: 0;
    z-index: 4;
}

/* ============ WORK PROCESS ============ */
.process { padding-top: 140px; }
.process__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    max-width: 100%;
}
.process__step { position: relative; text-align: center; }
.process__step-img {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
    aspect-ratio: 4 / 3;
}
.process__step-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.process__step:hover .process__step-img img { transform: scale(1.06); }
.process__step-number {
    display: none;
}
.process__step-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.process__step-content h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.process__step-content p {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.7;
}
.process__connector {
    position: absolute;
    top: 140px;
    right: -40px;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--accent), transparent);
}
.process__step:last-child .process__connector { display: none; }

/* ============ PROJECTS ============ */
.projects { padding-top: 140px; }
.projects__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.project-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
}
.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 160, 89, 0.15);
}
.project-card__image {
    position: relative;
    overflow: hidden;
    height: 300px;
}
.project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.project-card:hover .project-card__image img { transform: scale(1.08); }
.project-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(197, 160, 89, 0.75));
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}
.project-card:hover .project-card__overlay { opacity: 1; }
.project-card__link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    transform: translateY(16px);
    transition: var(--transition);
}
.project-card:hover .project-card__link { transform: translateY(0); }
.project-card__content {
    padding: 22px 24px;
}
.project-card__cat {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}
.project-card__content h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.4;
}

/* ============ TESTIMONIALS ============ */
.testimonials { padding-top: 140px; }
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    position: relative;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 3px solid var(--accent);
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.testimonial-card__quote {
    font-size: 2.2rem;
    color: var(--accent);
    opacity: 0.25;
    margin-bottom: 14px;
    line-height: 1;
}
.testimonial-card__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}
.testimonial-card__stars i { color: #f59e0b; font-size: 0.95rem; }
.testimonial-card__text {
    font-size: 0.98rem;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-card__author h4 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 2px;
}
.testimonial-card__author span {
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 600;
}

/* ============ PARTNERS ============ */
.partners {
    padding: 72px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.partners::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    top: 10%;
    left: -70px;
    border: 2px solid rgba(197, 160, 89, 0.08);
    border-radius: 4px;
    transform: rotate(60deg);
    pointer-events: none;
    z-index: 0;
}
.partners .section-label {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: none;
    color: var(--accent);
}
.partners .section-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dark);
}
.partners__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
}
.partners__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 120px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    min-width: 0;
}
.partners__item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(197, 160, 89, 0.15);
}
.partners__item img {
    max-height: 80px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
}
@media (max-width: 1024px) {
    .partners__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
    .partners__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
    .partners__item { height: 100px; padding: 14px; }
    .partners__item img { max-height: 60px; }
}
@media (max-width: 480px) {
    .partners__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .partners__item { padding: 12px; height: 90px; }
}

/* ============ TEAM ============ */
.team { padding-top: 140px; }
.team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.team-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
}
.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(197, 160, 89, 0.15);
    box-shadow: var(--shadow-lg);
}
.team-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}
.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform var(--transition-slow);
}
.team-card:hover .team-card__image img { transform: scale(1.06); }
.team-card__social {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: linear-gradient(transparent, rgba(26, 35, 50, 0.92));
    transform: translateY(100%);
    transition: var(--transition);
}
.team-card:hover .team-card__social { transform: translateY(0); }
.team-card__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition);
}
.team-card__social a:hover { background: var(--accent-hover); transform: scale(1.12); }
.team-card__info {
    padding: 18px;
    text-align: center;
}
.team-card__info h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.team-card__info span {
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 600;
}

/* ============ BLOG ============ */
.blog { padding-top: 140px; }
.blog__grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
}
.blog__grid--two {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1120px;
}
@media (max-width: 900px) {
    .blog__grid--two { grid-template-columns: 1fr; max-width: 680px; gap: 24px; }
}
.blog-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.blog-card__image {
    position: relative;
    height: 320px;
    overflow: hidden;
}
.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.blog-card:hover .blog-card__image img { transform: scale(1.04); }
.blog-card__date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-family: var(--font-heading);
}
.blog-card__day {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1;
}
.blog-card__month {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.blog-card__content { padding: 28px; }
.blog-card__meta {
    display: flex;
    gap: 20px;
    margin-bottom: 14px;
}
.blog-card__meta span {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}
.blog-card__meta i { color: var(--accent); font-size: 0.75rem; }
.blog-card__content h3 { margin-bottom: 10px; }
.blog-card__content h3 a {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.4;
    transition: var(--transition);
}
.blog-card__content h3 a:hover { color: var(--accent); }
.blog-card__content p {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--text-body);
    margin-bottom: 18px;
    line-height: 1.7;
}
.blog-card__link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.blog-card__link:hover { gap: 14px; color: var(--accent-hover); }

/* ============ CTA SECTION — REPLICATED FROM V2 ============ */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--light-section);
}
.cta-section__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.cta-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.55), rgba(26, 35, 50, 0.65));
}
.cta-section__content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.cta-section__content h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.cta-section__content p {
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}
.cta-section .btn--outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}
.cta-section .btn--outline:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* ============ MAP ============ */
.map-section { position: relative; background: var(--light-section); }
#leaflet-map {
    width: 100%;
    height: 550px;
    z-index: 1;
}
.pulsing-marker {
    width: 20px;
    height: 20px;
    position: relative;
}
.pulsing-marker .pulse-core {
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}
.pulsing-marker .pulse-ring {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--accent-glow);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseMap 2s infinite;
}
@keyframes pulseMap {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}
.leaflet-popup-content-wrapper {
    border-radius: var(--radius-sm) !important;
    box-shadow: var(--shadow-md) !important;
    border-top: 3px solid var(--accent);
}
.leaflet-popup-content {
    margin: 0 !important;
    padding: 0 !important;
    font-family: var(--font-body) !important;
}
.map-popup { padding: 0; }
.map-popup img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.map-popup-content { padding: 16px; }
.map-popup-content h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.92rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.map-popup-content p {
    font-size: 0.8rem;
    color: var(--text-body);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.map-popup-content p i { color: var(--accent); width: 14px; }

/* ---- Headquarters marker ---- */
.hq-marker {
    position: relative;
}
.hq-marker__pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.hq-marker__pin i {
    color: #ffffff;
    font-size: 1.05rem;
}
.hq-marker__pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.5;
    animation: hqPulse 2s infinite;
}
@keyframes hqPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
}

/* ---- HQ popup tag ---- */
.map-popup--hq .map-popup-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--white);
    background: var(--accent);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}
.map-popup-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 8px 14px;
    background: var(--dark);
    color: var(--white);
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.map-popup-link:hover {
    background: var(--accent);
    color: var(--white);
}

/* ============ FOOTER ============ */
.footer {
    background: #f4f5f7;
    padding: 80px 0 0;
    color: var(--text-body);
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-light), var(--accent), transparent);
    opacity: 0.6;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.footer__logo {
    height: 64px;
    margin-bottom: 16px;
}
.footer__col--about p {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--text-body);
    margin-bottom: 20px;
    line-height: 1.7;
}
.footer__social {
    display: flex;
    gap: 10px;
}
.footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer__social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}
.footer__col h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer__col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}
.footer__col ul li { margin-bottom: 8px; }
.footer__col ul li a {
    font-size: 0.88rem;
    color: var(--text-body);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer__col ul li a::before {
    content: '';
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.3s;
}
.footer__col ul li a:hover {
    color: var(--accent);
    padding-left: 4px;
}
.footer__col ul li a:hover::before { width: 10px; }
.footer__contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-body);
}
.footer__contact li i { color: var(--accent); width: 16px; }
.footer__bottom {
    text-align: center;
    padding: 22px 0;
    margin-top: 0;
}
.footer__bottom p {
    font-size: 0.82rem;
    color: var(--text-body);
}

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-accent);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px var(--accent-glow);
}

/* ============ COUNTER ANIMATION ============ */
.counter-animate {
    display: inline-block;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .about__grid { grid-template-columns: 1fr; gap: 50px; }
    .about__image-wrapper img { height: 400px; }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .projects__grid { grid-template-columns: repeat(2, 1fr); }
    .team__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar__left { display: none; }
    .top-bar__right { margin-left: auto; }

    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        height: 100dvh;
        background: #f4f5f7;
        flex-direction: column;
        padding: 100px 30px calc(30px + env(safe-area-inset-bottom));
        transform: translateX(100%);
        transition: transform 0.4s ease, visibility 0.4s ease;
        visibility: hidden;
        z-index: 1001;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
    .header__nav.open {
        transform: translateX(0);
        visibility: visible;
    }
    /* Disable backdrop-filter on mobile: it creates a containing block that
       breaks position:fixed on .header__nav (menu panel would be anchored to
       the sticky header's scroll position instead of the viewport). */
    .header.scrolled {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    /* Keep the hamburger (which morphs into the close X) pinned to the
       viewport while the menu is open — the sticky header goes out of flow
       when body scroll is locked. */
    .header__hamburger.active {
        position: fixed;
        top: 20px;
        right: 16px;
        z-index: 1003;
    }
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }
    .nav-list > li { width: 100%; border-bottom: 1px solid rgba(0,0,0,0.08); }
    .nav-list > li > a { padding: 14px 0; width: 100%; }
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.03);
        border-radius: 0;
        display: none;
        padding: 0;
        border: none;
    }
    .has-dropdown.show-dropdown > .dropdown { display: block; }
    .dropdown li a { color: var(--text-dark); padding: 10px 16px; }
    .dropdown li a:hover { background: rgba(0, 0, 0, 0.05); color: var(--accent); }
    .sub-dropdown { left: 0; top: auto; }
    .header__cta { display: none; }
    .header__hamburger { display: flex; }

    .hero { height: 75vh; min-height: 480px; max-height: 720px; }
    .hero__content h1 { font-size: 2rem; }
    .hero__buttons { flex-direction: column; }
    .hero__buttons .btn { text-align: center; justify-content: center; }
    .hero-next, .hero-prev { display: none !important; }
    .hero__scroll { display: none; }

    .section { padding: 70px 0; }
    .section-divider { height: 50px; }
    .services, .process, .projects, .testimonials, .team, .blog { padding-top: 110px; }

    .services__grid { grid-template-columns: 1fr; }
    .process__grid { grid-template-columns: 1fr; }
    .process__connector { display: none; }
    .projects__grid { grid-template-columns: 1fr; }
    .testimonials__grid { grid-template-columns: 1fr; }
    .team__grid { grid-template-columns: 1fr; }

    .about__badge { right: 16px; bottom: 16px; padding: 16px; }
    .about__badge-number { font-size: 2.5rem; }
    .about__checklist { grid-template-columns: 1fr; }
    .about__cta-row { flex-direction: column; align-items: flex-start; }
    .about__image-accent { display: none; }

    .footer__grid { grid-template-columns: 1fr; gap: 30px; }

    .cta-section { padding: 80px 0; }
    .cta-section__bg { background-attachment: scroll; }

    #leaflet-map { height: 400px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero__content h1 { font-size: 1.6rem; }
    .hero__content p { font-size: 1rem; }
    .section-title { font-size: 1.6rem; }
    .services__tabs { flex-direction: column; align-items: center; }
    .services__tab { width: 100%; justify-content: center; }
    .project-card__image { height: 220px; }
    .team-card__image { aspect-ratio: 3 / 4; }
}

/* ---- Mobile nav overlay ---- */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============ PAGE HERO / BREADCRUMB ============ */
.page-hero {
    position: relative;
    padding: 200px 0 100px;
    background: var(--dark);
    overflow: hidden;
}
.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.55;
}
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.25), rgba(0,0,0,0.1));
}
.page-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.page-hero__content h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.page-hero__content .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
}
.breadcrumb a {
    color: var(--text-muted);
    transition: var(--transition);
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }
.breadcrumb .sep { color: var(--text-muted); font-size: 0.7rem; }

/* ============ ABOUT PAGE ============ */
.about-intro { padding: 100px 0; }
.about-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-intro__text h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.about-intro__text p {
    font-size: 1.02rem;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 16px;
}
.expertise-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}
.expertise-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border-bottom: 3px solid var(--accent);
    transition: var(--transition);
}
.expertise-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.expertise-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--white);
    font-size: 1.4rem;
}
.expertise-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.expertise-card p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.65;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(197, 160, 89, 0.15);
    box-shadow: var(--shadow-lg);
}
.feature-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.4rem;
}
.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.7;
}

/* ============ SERVICE DETAIL PAGE ============ */
.service-detail {
    padding: 100px 0;
}
.service-detail__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}
.service-detail__main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 28px;
}
.service-detail__main h2 {
    font-size: 1.9rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.service-detail__main p {
    font-size: 1.02rem;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 20px;
}
.service-detail__main .detail-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius);
    margin-top: 20px;
    margin-bottom: 0;
}
.service-detail__sidebar {}
.sidebar-services {
    background: var(--light-section);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.sidebar-services h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}
.sidebar-services ul li {
    margin-bottom: 4px;
}
.sidebar-services ul li a {
    display: block;
    padding: 11px 16px;
    font-size: 0.88rem;
    color: var(--text-body);
    border-radius: var(--radius-xs);
    transition: var(--transition);
    font-weight: 500;
}
.sidebar-services ul li a:hover,
.sidebar-services ul li a.active {
    background: var(--accent);
    color: var(--white);
    padding-left: 22px;
}
.sidebar-contact {
    background: var(--accent);
    border-radius: var(--radius);
    padding: 28px;
    margin-top: 16px;
    text-align: center;
    color: var(--white);
}
.sidebar-contact h4 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--white);
}
.sidebar-contact p {
    font-size: 0.88rem;
    margin-bottom: 14px;
    opacity: 0.9;
}
.sidebar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--white);
}

/* ============ GALLERY PAGE ============ */
.gallery-section { padding: 100px 0; }
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery__item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(197, 160, 89, 0.65));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery__item:hover .gallery__item-overlay { opacity: 1; }
.gallery__item-overlay i {
    color: var(--white);
    font-size: 1.8rem;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}
.gallery__item:hover .gallery__item-overlay i { transform: scale(1); }

/* Gallery Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
}
.lightbox__close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.lightbox__close:hover { background: var(--accent-hover); transform: rotate(90deg); }
.lightbox__prev, .lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.4);
    color: var(--white);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__prev:hover, .lightbox__next:hover { background: var(--accent); }

/* ============ CONTACT PAGE ============ */
.contact-section { padding: 100px 0; }
.contact__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
}
.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}
.contact-form h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 24px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-dark);
    background: var(--light);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
    background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
}
.contact-info-card:hover {
    border-color: rgba(197, 160, 89, 0.15);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}
.contact-info-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-info-card h4 {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.contact-info-card p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.6;
}

/* ============ VALEURS / QUALITES PAGES ============ */
.values-section { padding: 100px 0; }
.values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.value-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 22px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid var(--accent);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-card__number {
    position: absolute;
    top: 10px;
    right: 14px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.8rem;
    color: rgba(197, 160, 89, 0.05);
    line-height: 1;
}
.value-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--white);
    font-size: 1.4rem;
}
.value-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.value-card p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.65;
}

/* Dark variant for values (now light in airy theme) */
.values__grid--dark .value-card {
    background: var(--white);
    border-bottom-color: var(--accent);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 3px solid var(--accent);
}
.values__grid--dark .value-card h3 { color: var(--text-dark); }
.values__grid--dark .value-card p { color: var(--text-body); }

/* ============ PROJECT DETAIL ============ */
.project-detail { padding: 100px 0; }
.project-detail__hero {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius);
    margin-bottom: 40px;
}
.project-detail__content {
    max-width: 800px;
    margin: 0 auto;
}
.project-detail__content h2 {
    font-size: 1.9rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.project-detail__content p {
    font-size: 1.02rem;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 20px;
}
.project-detail__gallery-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
}
.project-detail__gallery-hint i {
    color: var(--accent);
    font-size: 0.9rem;
}
.project-detail__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.project-detail__gallery a {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
}
.project-detail__gallery a::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    color: #fff;
    font-size: 1.4rem;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.project-detail__gallery a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
    z-index: 1;
}
.project-detail__gallery a:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.project-detail__gallery a:hover::before {
    background: rgba(0,0,0,0.2);
}
.project-detail__gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform 0.4s ease;
}
.project-detail__gallery a:hover img {
    transform: scale(1.04);
}

/* ============ BLOG DETAIL ============ */
.blog-detail { padding: 100px 0; }
.blog-detail__content {
    max-width: 800px;
    margin: 0 auto;
}
.blog-detail__image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 30px;
}
.blog-detail__meta {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1.5px solid #e2e8f0;
}
.blog-detail__meta span {
    font-size: 0.88rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-detail__meta i { color: var(--accent); }
.blog-detail__content h2 {
    font-size: 1.9rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.blog-detail__content p {
    font-size: 1.02rem;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 20px;
}

/* ============ SERVICES PAGE TABS ============ */
.services-page .services__tabs {
    margin-bottom: 50px;
}
.services-page .services__grid {
    gap: 24px;
}
.services-page .service-card {
    cursor: pointer;
}
.services-page .service-card a {
    position: absolute;
    inset: 0;
    z-index: 5;
}

/* ============ SUB-PAGE RESPONSIVE ============ */
@media (max-width: 1024px) {
    .service-detail__grid { grid-template-columns: 1fr; }
    .contact__grid { grid-template-columns: 1fr; }
    .gallery__grid { grid-template-columns: repeat(3, 1fr); }
    .values__grid { grid-template-columns: repeat(2, 1fr); }
    .about-intro__grid { grid-template-columns: 1fr; }
    .feature-cards { grid-template-columns: repeat(2, 1fr); }
    .expertise-cards { grid-template-columns: 1fr; }
    .project-detail__gallery { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .page-hero { padding: 150px 0 70px; }
    .gallery__grid { grid-template-columns: repeat(2, 1fr); }
    .values__grid { grid-template-columns: 1fr; }
    .feature-cards { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .service-detail__main img { height: 250px; }
    .project-detail__hero { height: auto; }
    .blog-detail__image { height: 280px; }
}
