/* =====================================================
   A&M CONSTRUCTION STOKE LTD - Frontend Stylesheet
   Bold Construction Theme: Charcoal + Safety Orange
   ===================================================== */

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

/* ─── CSS Variables ─────────────────────────────────── */
:root {
    /* Primary: Charcoal */
    --charcoal: #1C2B3A;
    --charcoal-light: #253446;
    --charcoal-dark: #111D28;

    /* Accent: Construction Orange */
    --orange: #E8610A;
    --orange-light: #F07840;
    --orange-dark: #C94E08;
    --orange-pale: #FFF4EE;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #FAFAF9;
    --light-gray: #F5F6F8;
    --gray-50: #F9FAFB;
    --gray-200: #E2E5E9;
    --gray-400: #9AA0A8;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;

    /* Status */
    --success: #16a34a;
    --danger: #dc2626;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Effects */
    --transition: 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow: 0 4px 18px rgba(0,0,0,0.09);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-orange: 0 6px 20px rgba(232,97,10,0.25);
    --radius: 8px;
    --radius-lg: 14px;
    --radius-xl: 20px;
}

/* ─── Base ──────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.3;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 65px 0; }

/* ─── Animations ────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes letterReveal {
    0% { opacity: 0; transform: translateY(20px) scale(0.85); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes pulseOrange {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232,97,10,0.4); }
    50% { box-shadow: 0 0 0 12px rgba(232,97,10,0); }
}

/* Scroll animations */
.animate-fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.55s ease, transform 0.55s ease; }
.animate-fade-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.55s ease, transform 0.55s ease; }
.animate-fade-right { opacity: 0; transform: translateX(30px); transition: opacity 0.55s ease, transform 0.55s ease; }
.animate-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.6s ease, transform 0.6s ease; }
.animated { opacity: 1 !important; transform: translate(0) scale(1) !important; }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Hero word-by-word animation */
.hero-title .word {
    display: inline-block;
    margin-right: 0.18em;
    opacity: 0;
    transform: translateY(38px);
    animation: heroWordIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-title .word.orange {
    color: var(--orange-light);
}
@keyframes heroWordIn {
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Section Header ────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 50px; }

.section-header .subtitle {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--orange);
    margin-bottom: 12px;
    padding: 5px 18px;
    background: var(--orange-pale);
    border-radius: 20px;
    border: 1px solid rgba(232,97,10,0.2);
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--charcoal);
    margin-bottom: 14px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 55px;
    height: 3px;
    background: var(--orange);
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ─── Buttons ───────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 30px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
    color: var(--white);
}

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

.btn-secondary:hover {
    background: var(--charcoal-light);
    border-color: var(--charcoal-light);
    transform: translateY(-2px);
    color: var(--white);
}

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

.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.55);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
    transform: translateY(-2px);
}

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

.btn-outline-orange:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-sm { padding: 9px 22px; font-size: 0.78rem; }
.btn-lg { padding: 15px 38px; font-size: 0.92rem; }

/* ─── HEADER ────────────────────────────────────────── */
.header {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Top Bar */
.top-bar {
    background: var(--charcoal);
    padding: 9px 0;
    font-size: 0.83rem;
}

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

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.top-bar a, .top-bar span {
    color: rgba(255,255,255,0.82);
    display: flex;
    align-items: center;
    gap: 7px;
}

.top-bar a:hover { color: var(--orange-light); }
.top-bar i { color: var(--orange-light); font-size: 0.83rem; }

.top-bar-login {
    background: rgba(232,97,10,0.2);
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(232,97,10,0.4);
}

.top-bar-login:hover {
    background: var(--orange);
    color: var(--white) !important;
    border-color: var(--orange);
}

.top-bar-login:hover i { color: var(--white); }

.top-bar .social-links { display: flex; gap: 10px; }

.top-bar .social-links a {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
}

.top-bar .social-links a:hover { background: var(--orange); color: var(--white); }
.top-bar .social-links i { color: inherit; font-size: 0.73rem; }

/* Navbar */
.navbar { padding: 14px 0; }

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

.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 48px; width: auto; object-fit: contain; }

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

.mobile-menu-links { display: flex; align-items: center; gap: 30px; }

.nav-link {
    color: var(--charcoal);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 8px 0;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover, .nav-link.active { color: var(--orange); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Nav Dropdown */
.nav-dropdown { position: relative; }

.dropdown-toggle { cursor: pointer; }
.dropdown-toggle .fa-chevron-down { font-size: 0.65rem; margin-left: 3px; transition: transform 0.2s; }
.nav-dropdown:hover .fa-chevron-down { transform: rotate(180deg); }

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    padding: 8px 0;
    border: 1px solid var(--gray-200);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 18px;
    color: var(--gray-700) !important;
    font-size: 0.875rem;
    font-family: var(--font-body);
    font-weight: 500;
    transition: background 0.2s;
}

.dropdown-item::after { display: none; }
.dropdown-item:hover { background: var(--light-gray); color: var(--orange) !important; }

.nav-cta { margin-left: 12px; }

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 26px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Actions */
.mobile-actions { display: none; }
.mobile-btn { display: none; }

/* ─── HERO ──────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: linear-gradient(150deg, var(--charcoal-dark) 0%, var(--charcoal) 60%, #2A3F52 100%);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Gradient overlay (default - no image) */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 75% 50%, rgba(232,97,10,0.15) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(232,97,10,0.08) 0%, transparent 45%);
    pointer-events: none;
    z-index: 1;
}

/* Diagonal stripe texture */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(255,255,255,0.015) 0px,
        rgba(255,255,255,0.015) 1px,
        transparent 1px,
        transparent 12px
    );
    pointer-events: none;
    z-index: 1;
}

/* When a real background image is set */
.hero.has-hero-image::before {
    background: linear-gradient(
        105deg,
        rgba(17,29,40,0.92) 0%,
        rgba(28,43,58,0.78) 55%,
        rgba(28,43,58,0.55) 100%
    );
}
.hero.has-hero-image::after { display: none; }

.hero-overlay { display: none; }

.hero .container { position: relative; z-index: 2; padding: 80px 20px; }

.hero-wrapper { max-width: 860px; text-align: left; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,97,10,0.15);
    border: 1px solid rgba(232,97,10,0.35);
    color: var(--orange-light);
    padding: 7px 16px;
    border-radius: 25px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hero-title {
    font-size: clamp(1.6rem, 4vw, 3.0rem);
    font-weight: 800;
    color: var(--white);
    white-space: nowrap;
    line-height: 1.15;
    margin-bottom: 22px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-title .word.orange,
.hero-title .orange { color: var(--orange-light); }

.hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 620px;
    line-height: 1.8;
    margin-bottom: 34px;
}

.hero-description strong { color: var(--orange-light); font-weight: 600; }

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

.hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat-item { text-align: left; }

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--orange-light);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ─── SERVICES ──────────────────────────────────────── */
.services { background: var(--off-white); }

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232,97,10,0.2);
}

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

.service-icon {
    width: 62px;
    height: 62px;
    border-radius: var(--radius);
    background: var(--orange-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--orange);
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--orange);
    color: var(--white);
    transform: scale(1.08);
}

.service-card h3 {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 18px;
}

.service-card-link {
    color: var(--orange);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: gap 0.25s ease;
}

.service-card:hover .service-card-link { gap: 12px; }
.service-card-link i { font-size: 0.78rem; }

/* Service card with image */
.service-card.has-image { padding: 0; overflow: hidden; }

.service-card-img {
    position: relative;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}
.service-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.service-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(17,29,40,0.1) 0%, rgba(17,29,40,0.5) 100%);
}
.service-card.has-image:hover .service-card-img img { transform: scale(1.06); }

.service-card.has-image .service-icon {
    margin: 20px 24px 14px;
}
.service-card.has-image h3 { padding: 0 24px; }
.service-card.has-image p { padding: 0 24px; }
.service-card.has-image .service-card-link { padding: 0 24px 22px; }

/* Service box (image-based) */
.service-box {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 3/2;
    box-shadow: var(--shadow);
}

.service-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-box:hover img { transform: scale(1.07); }

.service-box-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17,29,40,0.9) 0%, rgba(17,29,40,0.3) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: background 0.3s ease;
}

.service-box:hover .service-box-overlay {
    background: linear-gradient(to top, rgba(17,29,40,0.95) 0%, rgba(17,29,40,0.5) 70%, transparent 100%);
}

.service-box-overlay h4 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.service-box-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: none;
    transition: all 0.3s ease;
}

.service-box:hover .service-box-overlay p { display: block; }

.service-box-link {
    color: var(--orange-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 7px;
}

/* ─── ABOUT ─────────────────────────────────────────── */
.about-section { background: var(--white); }

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

.about-image { position: relative; }

.about-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    max-height: 480px;
}

.about-image-placeholder {
    width: 100%;
    height: 420px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    color: rgba(255,255,255,0.5);
}

.about-image-placeholder i { font-size: 4rem; color: var(--orange); opacity: 0.6; }
.about-image-placeholder p { font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; }

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

.about-badge h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 3px;
}

.about-badge p { font-size: 0.75rem; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

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

.about-content > .subtitle {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    padding: 5px 16px;
    background: var(--orange-pale);
    border-radius: 20px;
    border: 1px solid rgba(232,97,10,0.2);
}

.about-content h2 {
    font-size: 2rem;
    color: var(--charcoal);
    margin: 14px 0 16px;
}

.about-content > p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 0.98rem;
}

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

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: var(--light-gray);
    border-radius: var(--radius);
    border-left: 3px solid var(--orange);
}

.about-feature i {
    font-size: 1.3rem;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature h5 {
    font-size: 0.9rem;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.about-feature p { font-size: 0.8rem; color: var(--gray-500); }

/* ─── FEATURES BANNER ───────────────────────────────── */
.features-banner {
    background: var(--charcoal);
    padding: 55px 0;
}

.features-creative-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
}

.feature-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(232,97,10,0.18);
    border: 2px solid rgba(232,97,10,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--orange-light);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-circle {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    animation: pulseOrange 1.5s ease-in-out infinite;
}

.feature-text h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 4px;
}

.feature-text p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

.feature-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.12);
}

/* ─── PROJECTS SECTION ──────────────────────────────── */
.projects-section { background: var(--light-gray); }

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 26px;
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232,97,10,0.2);
}

.project-card-image {
    position: relative;
    overflow: hidden;
    height: 230px;
    background: var(--charcoal);
}

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

.project-card:hover .project-card-image img { transform: scale(1.06); }

.project-card-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
}

.project-card-no-img i { font-size: 3rem; color: rgba(255,255,255,0.2); }

.project-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--orange);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-card-featured-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--charcoal);
    color: var(--orange-light);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

.project-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.project-card-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--gray-400);
}

.project-card-meta span { display: flex; align-items: center; gap: 5px; }
.project-card-meta i { color: var(--orange); font-size: 0.72rem; }

.project-card-body h3 {
    font-size: 1.08rem;
    color: var(--charcoal);
    margin-bottom: 10px;
    transition: color 0.2s;
}

.project-card:hover .project-card-body h3 { color: var(--orange); }

.project-card-body p {
    color: var(--gray-500);
    font-size: 0.875rem;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
}

.project-card-link {
    color: var(--orange);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: gap 0.25s ease;
}

.project-card:hover .project-card-link { gap: 12px; }
.project-card-link i { font-size: 0.78rem; }

/* ─── FAQ ───────────────────────────────────────────── */
/* FAQ on home page uses white bg; on dedicated faq.php use light */
.faq-section { background: var(--light-gray); }
/* Home page FAQ specifically */
.home-faq-section { background: var(--white); }

.faq-wrapper { max-width: 820px; margin: 0 auto; }

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item.active {
    border-color: var(--orange);
    box-shadow: 0 3px 14px rgba(232,97,10,0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 14px;
    transition: background 0.2s;
}

.faq-question:hover { background: var(--orange-pale); }
.faq-item.active .faq-question { background: var(--orange-pale); }

/* FAQ inline question number/icon */
.faq-question::before {
    content: 'Q';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--orange-pale);
    color: var(--orange);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}
.faq-item.active .faq-question::before {
    background: var(--orange);
    color: var(--white);
}

.faq-question span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--charcoal);
    line-height: 1.4;
    flex: 1;           /* fill space between Q badge and chevron */
    text-align: left;  /* always left-aligned on every device */
}

.faq-item.active .faq-question span { color: var(--orange-dark); }

.faq-question i {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--orange);
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer-content {
    padding: 5px 22px 20px;
    color: var(--gray-600);
    font-size: 0.925rem;
    line-height: 1.8;
    text-align: left;
}


.faq-cta {
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    padding: 26px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.faq-cta-content { display: flex; align-items: center; gap: 16px; color: var(--white); }
.faq-cta-content i { font-size: 1.8rem; color: var(--orange-light); }
.faq-cta-content h4 { font-size: 1.05rem; margin-bottom: 3px; color: var(--white); }
.faq-cta-content p { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

.faq-cta-buttons { display: flex; gap: 12px; }

/* ─── WHY CHOOSE US ─────────────────────────────────── */
.why-section { background: var(--off-white); }

.why-list { max-width: 860px; margin: 0 auto; }

.why-row {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 30px 0;
    border-bottom: 1px solid var(--gray-200);
}

.why-row:last-child { border-bottom: none; }

.why-number-large {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(232,97,10,0.15);
    line-height: 1;
    min-width: 85px;
    flex-shrink: 0;
}

.why-details { flex: 1; }

.why-details h3 {
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}

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

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--orange-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--orange);
    flex-shrink: 0;
}

/* ─── CTA SECTION ───────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal) 100%);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(232,97,10,0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.cta-section.has-bg-image::before {
    background: rgba(17,29,40,0.82);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.cta-content h2 { color: var(--white); font-size: 2.2rem; margin-bottom: 14px; }
.cta-content p { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-bottom: 32px; }
.cta-content .cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ─── CONTACT ───────────────────────────────────────── */
.contact-section { background: var(--off-white); padding: 80px 0; }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: start;
}

.contact-info { padding: 40px; background: var(--charcoal); border-radius: var(--radius-lg); color: rgba(255,255,255,0.85); }
.contact-info h3 { font-size: 1.6rem; margin-bottom: 14px; color: var(--white); }
.contact-info > p { color: rgba(255,255,255,0.65); margin-bottom: 28px; font-size: 0.95rem; line-height: 1.8; }
.contact-info .contact-list .contact-item-icon { background: rgba(232,97,10,0.2); color: var(--orange-light); }
.contact-info .contact-list .contact-item-text h5 { color: var(--white); }
.contact-info .contact-list .contact-item-text p,
.contact-info .contact-list .contact-item-text a { color: rgba(255,255,255,0.65); }
.contact-info .contact-list .contact-item-text a:hover { color: var(--orange-light); }

/* Both old and new class names */
.contact-info-item, .contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-list { display: flex; flex-direction: column; margin-bottom: 10px; }

.contact-info-icon, .contact-item-icon {
    width: 46px;
    height: 46px;
    background: var(--orange-pale);
    color: var(--orange);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-text h5, .contact-item-text h5 { color: var(--charcoal); margin-bottom: 3px; font-size: 0.9rem; font-weight: 600; }
.contact-info-text p, .contact-info-text a,
.contact-item-text p, .contact-item-text a {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
}
.contact-info-text a:hover, .contact-item-text a:hover { color: var(--orange); }

/* Contact Form Section (used in contact.php) */
.contact-form-section {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.contact-form-section h3 { margin-bottom: 10px; font-size: 1.5rem; }

/* Alias for old class */
.contact-form {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.contact-form h3 { margin-bottom: 24px; font-size: 1.4rem; }

/* Contact form success/error messages */
.form-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 16px;
    line-height: 1.4;
    animation: fadeInUp 0.3s ease;
}
.form-message.success {
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #15803d;
}
.form-message.success i { color: #16a34a; font-size: 1.1rem; flex-shrink: 0; }
.form-message.error {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #b91c1c;
}
.form-message.error i { color: #dc2626; font-size: 1.1rem; flex-shrink: 0; }

/* Map Section */
.map-section { padding: 0 0 60px; background: var(--off-white); }
.map-section iframe {
    width: 100%;
    height: 420px;
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: block;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.875rem;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gray-700);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    transition: all 0.25s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232,97,10,0.1);
}

select.form-control {
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%236B7280"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px;
    padding-right: 42px;
}

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

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

/* ─── ABOUT PAGE ────────────────────────────────────── */
.about-page-content { background: var(--white); }

.company-info-table {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    margin-top: 30px;
}

.company-info-table table { width: 100%; border-collapse: collapse; }
.company-info-table td { padding: 14px 20px; border-bottom: 1px solid var(--gray-200); font-size: 0.9rem; }
.company-info-table tr:last-child td { border-bottom: none; }
.company-info-table td:first-child { font-weight: 700; color: var(--charcoal); width: 180px; background: var(--white); }
.company-info-table td:last-child { color: var(--gray-600); }

/* ─── COMPANY INFO TABLE (row-based) ────────────────── */
.company-info-row {
    display: flex;
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
}
.company-info-row:last-child { border-bottom: none; }
.company-info-label {
    flex: 0 0 200px;
    padding: 14px 20px;
    font-weight: 700;
    color: var(--charcoal);
    font-size: 0.88rem;
    background: var(--gray-50);
    border-right: 1px solid var(--gray-200);
}
.company-info-value {
    flex: 1;
    padding: 14px 20px;
    color: var(--gray-700);
    font-size: 0.9rem;
}

/* ─── VALUES GRID ───────────────────────────────────── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.value-item {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: transform 0.3s, box-shadow 0.3s;
}
.value-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.value-icon-wrapper { margin-bottom: 16px; }
.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.value-icon i { color: white; font-size: 1.4rem; }
.value-item h3 { font-size: 1.1rem; color: var(--charcoal); margin-bottom: 10px; }
.value-item p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; }

/* ─── POLICY PAGES ──────────────────────────────────── */
.policy-section { padding: 60px 0 80px; background: var(--white); }
.policy-content { max-width: 820px; margin: 0 auto; }
.policy-content p { color: var(--gray-700); line-height: 1.8; margin-bottom: 16px; }
.policy-content h2 {
    font-size: 1.35rem;
    color: var(--charcoal);
    margin: 36px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}
.policy-content h3 { font-size: 1.05rem; color: var(--charcoal); margin: 24px 0 8px; }
.policy-content ul { margin: 0 0 16px 20px; }
.policy-content ul li { color: var(--gray-700); line-height: 1.7; margin-bottom: 6px; }
.policy-content a { color: var(--orange); }
.policy-content a:hover { color: var(--orange-dark); }
.policy-intro { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 24px; }

.contact-box {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--orange);
    border-radius: var(--radius);
    padding: 24px;
    margin: 24px 0;
}
.contact-box h4 { color: var(--charcoal); margin-bottom: 12px; font-size: 1.05rem; }
.contact-box p { display: flex; align-items: center; gap: 10px; color: var(--gray-700); margin: 0 0 8px; font-size: 0.9rem; }
.contact-box p i { color: var(--orange); width: 16px; }
.contact-box a { color: var(--orange); }

.policy-footer {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.warning-box {
    background: #FFF8F3;
    border: 1px solid #FDDCCC;
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--gray-700);
    margin: 16px 0;
}
.warning-box i { color: var(--orange); margin-top: 2px; flex-shrink: 0; }

.cookie-table { overflow-x: auto; margin: 16px 0; }
.cookie-table table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.cookie-table th { background: var(--charcoal); color: white; padding: 10px 14px; text-align: left; }
.cookie-table td { padding: 10px 14px; border-bottom: 1px solid var(--gray-200); color: var(--gray-700); }
.cookie-table tr:last-child td { border-bottom: none; }

/* ─── PROJECTS PAGE ─────────────────────────────────── */
.projects-page { background: var(--off-white); min-height: 60vh; }

.projects-filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 35px;
    justify-content: center;
}

.filter-btn {
    padding: 8px 22px;
    border-radius: 25px;
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

/* ─── PROJECT DETAIL PAGE ───────────────────────────── */
.project-hero {
    background: var(--charcoal);
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

/* When project has a photo */
.project-hero.has-project-img {
    background-size: cover;
    background-position: center;
}

.project-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17,29,40,0.92) 0%, rgba(17,29,40,0.55) 55%, rgba(17,29,40,0.25) 100%);
    z-index: 1;
}

.project-hero:not(.has-project-img) .project-hero-overlay {
    background: linear-gradient(135deg, rgba(17,29,40,0.95), rgba(37,52,70,0.90));
}

.project-hero .container { position: relative; z-index: 2; width: 100%; padding-bottom: 50px; }

.project-hero-inner { padding-top: 50px; }

.project-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 0.82rem;
}

.project-hero-breadcrumb a { color: rgba(255,255,255,0.55); }
.project-hero-breadcrumb a:hover { color: var(--orange-light); }
.project-hero-breadcrumb i { color: rgba(255,255,255,0.25); font-size: 0.6rem; }
.project-hero-breadcrumb .current { color: rgba(255,255,255,0.85); }

.project-hero-category {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--orange);
    color: var(--white);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.project-hero h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.project-hero-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.project-hero-meta span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
}

.project-hero-meta i { color: var(--orange-light); font-size: 0.8rem; }

.project-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Content area */
.project-detail-content { background: var(--white); padding: 70px 0; }

.project-detail-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 50px;
    align-items: start;
    margin-bottom: 70px;
}

.project-detail-main {}

.pd-section-title {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-200);
    position: relative;
}
.pd-section-title span { display: inline-block; }
.pd-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 50px; height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.project-description { margin-bottom: 40px; }
.project-description p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.9; margin-bottom: 16px; }

.project-gallery-section {}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.project-gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    position: relative;
}

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

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

.gallery-zoom {
    position: absolute;
    inset: 0;
    background: rgba(17,29,40,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
    color: white;
    font-size: 1.3rem;
}
.project-gallery-item:hover .gallery-zoom { opacity: 1; }

/* Sidebar card */
.project-detail-sidebar {}

.project-sidebar-card {
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(232,97,10,0.4) rgba(255,255,255,0.05);
}
.project-sidebar-card::-webkit-scrollbar { width: 4px; }
.project-sidebar-card::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); }
.project-sidebar-card::-webkit-scrollbar-thumb { background: rgba(232,97,10,0.4); border-radius: 4px; }

.psc-header {
    background: linear-gradient(135deg, var(--charcoal-dark), var(--charcoal));
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.psc-header i { font-size: 1.1rem; color: var(--orange); }
.psc-header h3 { color: var(--white); font-size: 1.05rem; margin: 0; }

.psc-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.psc-row:last-of-type { border-bottom: none; }

.psc-icon {
    width: 34px;
    height: 34px;
    background: rgba(232,97,10,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.psc-icon i { color: var(--orange-light); font-size: 0.85rem; }

.psc-info { display: flex; flex-direction: column; gap: 2px; }
.psc-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: rgba(255,255,255,0.4); }
.psc-val { font-size: 0.88rem; color: var(--white); font-weight: 500; }

.psc-cta { padding: 20px 24px; }

/* Share row */
.psc-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    font-size: 0.8rem;
    color: var(--gray-400);
}
.psc-share a {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-500);
    font-size: 0.75rem;
    transition: all 0.2s;
}
.psc-share a:hover { background: var(--orange); border-color: var(--orange); color: white; }

/* Related projects */
.related-projects { padding-top: 50px; border-top: 1px solid var(--gray-200); }

/* Lightbox */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
#lightboxImg {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
#lbPrev, #lbNext {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none; color: white; cursor: pointer;
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    transition: background 0.2s;
    z-index: 2;
}
#lbPrev:hover, #lbNext:hover { background: var(--orange); }
#lbPrev { left: 20px; }
#lbNext { right: 20px; }
#lbClose {
    position: absolute; top: 20px; right: 24px;
    background: rgba(255,255,255,0.1); border: none; color: white; cursor: pointer;
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; transition: background 0.2s; z-index: 2;
}
#lbClose:hover { background: var(--danger); }

/* Legacy compat */
.project-detail-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--gray-200); }
.project-detail-item:last-of-type { border-bottom: none; }
.project-detail-item i { color: var(--orange); width: 18px; flex-shrink: 0; margin-top: 3px; }
.project-detail-item div label { font-weight: 700; font-size: 0.8rem; color: var(--charcoal); display: block; margin-bottom: 2px; }
.project-detail-item div span { color: var(--gray-500); font-size: 0.875rem; }

/* ─── SERVICES PAGE ─────────────────────────────────── */
.services-hero { background: var(--charcoal); padding: 60px 0; }
.services-hero h1 { color: var(--white); font-size: 2.4rem; }
.services-hero p { color: rgba(255,255,255,0.7); margin-top: 12px; font-size: 1.05rem; }

.services-detail { padding: 65px 0; background: var(--off-white); }

.service-detail-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    border: 1px solid var(--gray-200);
}

.service-detail-header {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-detail-header-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    flex-shrink: 0;
}

.service-detail-header h2 { color: var(--white); font-size: 1.4rem; }
.service-detail-header p { color: rgba(255,255,255,0.65); font-size: 0.875rem; margin-top: 4px; }

.service-detail-body { padding: 30px 32px; }

.service-detail-body > p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.85; margin-bottom: 22px; }

.service-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.service-feature-item i { color: var(--orange); font-size: 0.85rem; flex-shrink: 0; }

/* ─── PAGE HERO (generic) ───────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal) 100%);
    padding: 65px 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(232,97,10,0.1) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

/* When a real background image is set */
.page-hero.has-hero-image::before {
    background: linear-gradient(
        105deg,
        rgba(17,29,40,0.88) 0%,
        rgba(28,43,58,0.72) 100%
    );
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 10px;
}

.page-hero h1 span { color: var(--orange-light); }

.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    max-width: 580px;
    line-height: 1.75;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 0.83rem;
}

.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb i { color: rgba(255,255,255,0.3); font-size: 0.65rem; }
.breadcrumb span { color: rgba(255,255,255,0.85); }

/* ─── FOOTER ────────────────────────────────────────── */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.75);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-about .logo img { height: 46px; max-width: 200px; filter: brightness(1.1); margin-bottom: 16px; }

.footer-about p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-socials { display: flex; gap: 10px; }

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    transition: all 0.25s ease;
}

.footer-socials a:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--white);
    margin-bottom: 18px;
}

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

.footer-links li a {
    color: rgba(255,255,255,0.58);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.footer-links li a i { color: var(--orange); font-size: 0.68rem; }

.footer-links li a:hover {
    color: var(--orange-light);
    padding-left: 4px;
}

.footer-contact h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--white);
    margin-bottom: 18px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

.footer-contact p i { color: var(--orange-light); flex-shrink: 0; margin-top: 3px; }

.footer-contact a {
    color: rgba(255,255,255,0.65);
    transition: color 0.2s;
}

.footer-contact a:hover { color: var(--orange-light); }

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-bottom-left p {
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    margin-bottom: 5px;
}

.footer-legal-links {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    transition: color 0.2s;
}

.footer-legal-links a:hover { color: var(--orange-light); }
.footer-legal-links span { color: rgba(255,255,255,0.2); }

/* ─── COOKIE CONSENT ────────────────────────────────── */
.cookie-consent {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    width: calc(100% - 40px);
    max-width: 820px;
    background: var(--charcoal);
    border: 1px solid rgba(232,97,10,0.3);
    border-bottom: 3px solid var(--orange);
    border-radius: 14px;
    padding: 20px 26px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.45), 0 2px 8px rgba(0,0,0,0.2);
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.45s cubic-bezier(0.34,1.30,0.64,1), opacity 0.35s ease, visibility 0.35s ease;
}
.cookie-consent.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 2rem;
    color: var(--orange);
    flex-shrink: 0;
    background: rgba(232,97,10,0.12);
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-text { flex: 1; min-width: 200px; }
.cookie-text h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.cookie-text p { color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.6; margin: 0; }
.cookie-text a { color: var(--orange-light); text-decoration: underline; }

.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }

/* ─── MAPS ──────────────────────────────────────────── */
.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.map-container iframe { width: 100%; display: block; }

/* ─── LEGAL PAGES ───────────────────────────────────── */
.legal-page { background: var(--white); padding: 60px 0; }
.legal-content { max-width: 840px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; margin: 30px 0 12px; color: var(--charcoal); }
.legal-content p, .legal-content li { color: var(--gray-600); font-size: 0.95rem; line-height: 1.85; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; list-style: disc; }

/* ─── ERROR PAGES (404 / 500) ───────────────────────── */
.error-page {
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    padding: 70px 20px;
}

.error-inner {
    max-width: 580px;
    text-align: center;
}

.error-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--charcoal), #2d4a5e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(28,43,58,0.18);
}

.error-icon i {
    font-size: 2rem;
    color: var(--orange);
}

.error-code {
    font-size: clamp(4.5rem, 18vw, 8rem);
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    letter-spacing: -2px;
}

.error-divider {
    width: 56px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
    margin: 0 auto 24px;
}

.error-page h1 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: var(--charcoal);
    margin-bottom: 14px;
}

.error-page p {
    color: var(--gray-500);
    margin-bottom: 32px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.error-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-note {
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.error-note a {
    color: var(--orange);
    font-weight: 600;
}

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-about { grid-column: 1 / -1; }
    .features-creative-wrapper { grid-template-columns: 1fr; gap: 22px; }
    .feature-divider { display: none; }
    .feature-item { justify-content: center; text-align: left; }
    .project-detail-layout { grid-template-columns: 1fr; }
    .project-sidebar-card { position: static; }
    .project-hero { min-height: 360px; }
    .project-hero-actions .btn { padding: 12px 20px; font-size: 0.9rem; }
    .psc-share { flex-wrap: wrap; }
}

@media (max-width: 992px) {
    section { padding: 50px 0; }

    .about-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .about-badge { bottom: auto; right: 20px; top: 20px; }

    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-form-section { padding: 24px; }
    .map-section iframe { height: 280px; }

    .nav-menu { gap: 20px; }

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

    .hero { min-height: 75vh; }
    .hero-stats { gap: 22px; }

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

@media (max-width: 768px) {
    .top-bar { display: none; }

    .mobile-toggle { display: flex; }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 15px 0 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        gap: 0;
    }

    .nav-menu.active { display: flex; }

    .mobile-menu-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0 20px;
    }

    .nav-link {
        padding: 13px 0;
        border-bottom: 1px solid var(--gray-200);
        font-size: 0.95rem;
    }

    .nav-link::after { display: none; }

    /* Legal dropdown: hidden entirely on mobile */
    .nav-dropdown { display: none; }

    .nav-cta { display: none; }

    .mobile-actions {
        display: flex;
        gap: 12px;
        padding: 16px 20px 0;
        flex-wrap: wrap;
    }

    .mobile-btn {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 11px 20px;
        border-radius: 50px;
        font-family: var(--font-heading);
        font-size: 0.82rem;
        font-weight: 700;
        flex: 1;
        justify-content: center;
    }

    .mobile-btn-signin {
        background: var(--light-gray);
        color: var(--charcoal);
        border: 2px solid var(--gray-200);
    }

    .mobile-btn-quote {
        background: var(--orange);
        color: var(--white);
        border: 2px solid var(--orange);
    }

    .mobile-btn-admin {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        padding: 0;
        background: var(--light-gray);
        color: var(--gray-400);
        border: 2px solid var(--gray-200);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.88rem;
        transition: color 0.2s, border-color 0.2s;
    }
    .mobile-btn-admin:hover {
        color: var(--orange);
        border-color: var(--orange);
    }

    .hero { min-height: auto; }
    .hero .container { padding: 60px 20px; }
    .hero-stats { gap: 18px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }

    .section-header h2 { font-size: 1.75rem; }

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

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .contact-form { padding: 24px; }
    .form-row { grid-template-columns: 1fr; }

    .service-features-list { grid-template-columns: 1fr; }

    .faq-cta { flex-direction: column; text-align: center; }
    .faq-cta-content { flex-direction: column; }
    .faq-cta-buttons { width: 100%; }
    .faq-cta-buttons .btn { flex: 1; justify-content: center; }

    .why-row { flex-direction: column; gap: 12px; }
    .why-number-large { font-size: 2.5rem; }

    .projects-filter-bar { justify-content: flex-start; }

    .project-gallery { grid-template-columns: repeat(3, 1fr); }

    .cookie-consent-content { flex-direction: column; text-align: center; }
    .cookie-buttons { width: 100%; }
    .cookie-buttons .btn { flex: 1; justify-content: center; }

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

    .company-info-label { flex: 0 0 140px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.6rem; white-space: normal; }
    .section-header h2 { font-size: 1.5rem; }
    .hero-stats { flex-direction: column; gap: 12px; }
    .values-grid { grid-template-columns: 1fr; }
    .company-info-row { flex-direction: column; }
    .company-info-label { flex: none; border-right: none; border-bottom: 1px solid var(--gray-200); }
}

/* ─── DIRECTOR / CEO SECTION ─────────────────────── */
.director-section {
    background: var(--charcoal);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.director-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(232,97,10,0.07);
    pointer-events: none;
}

.director-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(232,97,10,0.04);
    pointer-events: none;
}

.director-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.director-photo-col { flex-shrink: 0; }

.director-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 3px solid rgba(232,97,10,0.3);
    cursor: zoom-in;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.director-img:hover {
    transform: scale(1.02);
    box-shadow: 0 28px 72px rgba(0,0,0,0.5);
}

/* Director photo lightbox */
.dir-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: zoom-out;
    padding: 20px;
}
.dir-lightbox.active {
    opacity: 1;
    visibility: visible;
}
.dir-lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.7);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
    cursor: default;
}
.dir-lightbox.active img {
    transform: scale(1);
}
.dir-lb-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}
.dir-lb-close:hover {
    background: var(--orange);
    border-color: var(--orange);
}
/* On mobile: push image down so close button has clear space above it */
@media (max-width: 600px) {
    .dir-lightbox {
        align-items: flex-start;
        padding-top: 70px;
        padding-left: 12px;
        padding-right: 12px;
    }
    .dir-lb-close { top: 14px; right: 14px; width: 40px; height: 40px; font-size: 1.4rem; }
    .dir-lightbox img { max-height: 80vh; max-width: 100%; }
}

.director-photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: rgba(255,255,255,0.04);
    border: 2px dashed rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.director-photo-placeholder i { font-size: 3rem; color: rgba(232,97,10,0.5); }
.director-photo-placeholder p { color: rgba(255,255,255,0.35); font-size: 0.85rem; text-align: center; }
.director-photo-placeholder small { font-size: 0.72rem; opacity: 0.7; }

.director-content { position: relative; }

.director-content .subtitle { margin-bottom: 8px; display: block; }

.director-quote-mark {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 6rem;
    color: var(--orange);
    opacity: 0.35;
    line-height: 0.7;
    display: block;
    margin-bottom: 18px;
    user-select: none;
}

.director-message {
    font-size: 1.08rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.78);
    font-style: italic;
    margin-bottom: 28px;
    max-width: 640px;
}

.director-signature {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.director-name {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.director-role {
    color: var(--orange-light);
    font-size: 0.875rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .director-wrapper {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .director-photo-col {
        max-width: 240px;
        margin: 0 auto;
    }
    .director-quote-mark { font-size: 4rem; }
    .director-message { font-size: 0.975rem; }
}

/* ======================================================
   ENHANCED FRONTEND — A&M Construction Stoke Ltd
   Creative redesign of all page sections
   ====================================================== */

/* ─── HOW WE WORK — Process Steps ─────────────────────── */
.process-section { background: var(--off-white); }

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    gap: 0;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 41px;
    left: calc(16.66% + 20px);
    right: calc(16.66% + 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
    z-index: 0;
}
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 28px 30px;
    position: relative;
    z-index: 1;
}
.process-step-num {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--orange);
    margin-bottom: 24px;
    box-shadow: 0 4px 18px rgba(232,97,10,0.2);
    transition: all 0.35s ease;
    flex-shrink: 0;
}
.process-step:hover .process-step-num {
    background: var(--orange);
    color: var(--white);
    transform: scale(1.08);
}
.process-step-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
}
.process-step-desc {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.75;
}

/* ─── FAQ CATEGORY GROUP ───────────────────────────────── */
.faq-category-group { margin-bottom: 8px; }
.faq-category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0 14px;
    margin-top: 36px;
    margin-bottom: 6px;
    border-bottom: 2px solid var(--orange);
}
.faq-category-header:first-child { margin-top: 0; }
.faq-category-header i { color: var(--orange); }
.faq-category-header h3 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--charcoal);
    margin: 0;
}
.faq-category-pill {
    background: var(--orange-pale);
    border: 1px solid rgba(232,97,10,0.25);
    color: var(--orange);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    margin-left: auto;
    white-space: nowrap;
}

/* ─── FAQ ITEM — left accent bar ─────────────────────── */
.faq-item {
    position: relative;
    padding-left: 0;
    border-left: 3px solid transparent;
    border-right: 1px solid var(--gray-200);
    border-radius: 0 var(--radius) var(--radius) 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: none;
    margin-bottom: 0;
    border: 1px solid var(--gray-200);
    border-left: 3px solid transparent;
}
.faq-item.active {
    border-left-color: var(--orange);
    border-color: rgba(232,97,10,0.25);
    border-left-color: var(--orange);
}

/* ─── PROJECT FILTER — Pill Container ─────────────────── */
.projects-filter-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}
.projects-filter-bar {
    background: var(--white);
    border-radius: 50px;
    padding: 5px;
    border: 1px solid var(--gray-200);
    display: inline-flex;
    gap: 4px;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
}
.filter-btn {
    padding: 7px 20px;
    border-radius: 25px;
    border: none;
    background: transparent;
    color: var(--gray-600);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.22s ease;
    text-decoration: none;
    display: inline-block;
}
.filter-btn:hover { background: var(--light-gray); color: var(--charcoal); }
.filter-btn.active {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 3px 10px rgba(232,97,10,0.3);
}
.projects-count {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-400);
}
.projects-count strong { color: var(--charcoal); }

/* ─── CONTACT — Card-style info items ─────────────────── */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.07);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s, transform 0.2s;
}
.contact-info-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateX(4px);
}
.contact-info-card-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
    flex-shrink: 0;
}
.contact-info-card-body h5 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 3px;
    font-weight: 600;
}
.contact-info-card-body p,
.contact-info-card-body a {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.5;
}
.contact-info-card-body a:hover { color: var(--orange-light); }
.contact-social-row {
    display: flex;
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.contact-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    transition: all 0.25s;
}
.contact-social-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

/* ─── ABOUT — Stats Strip ──────────────────────────────── */
.about-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 70px;
    box-shadow: var(--shadow-lg);
}
.about-stat-cell {
    padding: 32px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.07);
    transition: background 0.3s;
}
.about-stat-cell:last-child { border-right: none; }
.about-stat-cell:hover { background: rgba(232,97,10,0.08); }
.about-stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--orange-light);
    line-height: 1;
    margin-bottom: 7px;
}
.about-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ─── WHY SECTION — Card rows ──────────────────────────── */
.why-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.why-row {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 28px 30px;
    border-bottom: none;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--orange);
    transition: box-shadow 0.3s, transform 0.3s;
}
.why-row:hover { box-shadow: var(--shadow); transform: translateX(6px); }
.why-number-large {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(232,97,10,0.12);
    line-height: 1;
    min-width: 72px;
    flex-shrink: 0;
}
.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--orange-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--orange);
    flex-shrink: 0;
}

/* ─── SERVICE DETAIL BLOCK — Proper Classes ────────────── */
.service-detail-block {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.service-detail-block.reverse {
    grid-template-columns: 1fr 340px;
}
.service-detail-block.reverse .service-detail-media { order: 2; }
.service-detail-block.reverse .service-detail-content { order: 1; }
.service-detail-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.service-detail-media img {
    width: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-detail-media:hover img { transform: scale(1.04); }
.service-detail-icon-block {
    background: linear-gradient(135deg, var(--charcoal) 0%, #2d4a5e 100%);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.service-detail-icon-block::before {
    content: '';
    position: absolute;
    top: -20px; right: -20px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(232,97,10,0.15);
}
.service-detail-icon-block::after {
    content: '';
    position: absolute;
    bottom: -30px; left: -30px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: rgba(232,97,10,0.08);
}
.service-detail-icon-block i {
    font-size: 4rem;
    color: var(--orange);
    display: block;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.service-detail-icon-block h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin: 0;
    position: relative;
    z-index: 1;
}
.service-detail-content .subtitle {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    padding: 4px 14px;
    background: var(--orange-pale);
    border-radius: 20px;
    border: 1px solid rgba(232,97,10,0.2);
    margin-bottom: 14px;
}
.service-detail-content h2 {
    font-size: 1.9rem;
    margin-bottom: 16px;
    color: var(--charcoal);
}
.service-detail-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 0.95rem;
}
.service-features-ul {
    list-style: none;
    padding: 0;
    margin: 18px 0 26px;
}
.service-features-ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    color: var(--gray-700);
    font-size: 0.92rem;
    border-bottom: 1px solid var(--gray-200);
}
.service-features-ul li:last-child { border-bottom: none; }
.service-features-ul li i { color: var(--orange); flex-shrink: 0; }

/* ─── PAGE HERO — Angular accent ────────────────────────── */
.page-hero { padding: 75px 0 65px; }
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(232,97,10,0.05) 100%);
    pointer-events: none;
    z-index: 0;
}

/* ─── VALUES GRID — Top accent line ──────────────────────── */
.value-item {
    border-top: 3px solid transparent;
}
.value-item:hover {
    border-top-color: var(--orange);
}

/* ─── COMPANY INFO TABLE ─────────────────────────────────── */
.company-info-label i {
    color: var(--orange);
    font-size: 0.82rem;
    width: 14px;
    text-align: center;
}
.company-info-row:nth-child(even) .company-info-label {
    background: var(--light-gray);
}
.company-info-row:nth-child(even) { background: var(--light-gray); }

/* ─── FEATURES BANNER ────────────────────────────────────── */
.features-banner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.feature-banner-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 30px 24px;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background 0.25s;
}
.feature-banner-item:last-child { border-right: none; }
.feature-banner-item:hover { background: rgba(255,255,255,0.04); }
.feature-banner-item i {
    font-size: 1.8rem;
    color: var(--orange-light);
    flex-shrink: 0;
}
.feature-banner-item h4 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 4px;
}
.feature-banner-item p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

/* ─── HERO Scroll Indicator ──────────────────────────────── */
.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.35);
    font-size: 0.68rem;
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 2;
    cursor: pointer;
    animation: heroScrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll i { font-size: 1.1rem; }
@keyframes heroScrollBounce {
    0%, 100% { opacity: 0.35; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.6; transform: translateX(-50%) translateY(6px); }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
    .process-steps { grid-template-columns: 1fr; gap: 36px; }
    .process-steps::before { display: none; }
    .service-detail-block,
    .service-detail-block.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .service-detail-block.reverse .service-detail-media,
    .service-detail-block.reverse .service-detail-content { order: unset; }
    .about-stats-strip { grid-template-columns: repeat(2, 1fr); }
    .features-banner-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-banner-item:nth-child(2) { border-right: none; }
    .feature-banner-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .feature-banner-item:nth-child(3),
    .feature-banner-item:nth-child(4) { border-bottom: none; }
}
@media (max-width: 600px) {
    .about-stats-strip { grid-template-columns: repeat(2, 1fr); }
    .about-stat-cell { padding: 22px 14px; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .features-banner-grid { grid-template-columns: 1fr; }
    .feature-banner-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .feature-banner-item:last-child { border-bottom: none; }
    .projects-filter-bar { border-radius: var(--radius-lg); }
}
@media (max-width: 420px) {
    .values-grid { grid-template-columns: 1fr; }
    .about-stats-strip { grid-template-columns: 1fr 1fr; }
}


