/* 
   Buraq Al Taybah - Brand Redesign (style2.css)
   Theme: Steel Blue & Gray Corporate (from brand quotation letterhead)
   Colors: --brand-blue (#5b8fa8 type steel/slate teal), --brand-gray (soft light gray bg)
*/

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

:root {
    /* === BRAND COLORS (from quotation letterhead) === */
    --brand-blue: #4a7c95;
    /* Steel teal-blue (header bar) */
    --brand-blue-dark: #2d5a72;
    /* Deeper navy-teal */
    --brand-blue-light: #7aafc7;
    /* Lighter teal accent */
    --brand-blue-pale: #cde4ef;
    /* Very light blue tint (backgrounds) */

    --brand-gray-dark: #3d4d56;
    /* Dark blue-gray (text) */
    --brand-gray-mid: #8fa8b5;
    /* Mid gray-blue (subtext) */
    --brand-gray-light: #e8f0f4;
    /* Very light blue-gray (section bg) */
    --brand-white: #ffffff;
    --brand-off-white: #f5f8fa;
    /* Warm white/page bg */

    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --s-xs: 0.5rem;
    --s-s: 1rem;
    --s-m: 2rem;
    --s-l: 4rem;
    --s-xl: 7rem;

    /* Transitions */
    --t-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --t-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--brand-off-white);
}

body {
    font-family: var(--font-sans);
    color: var(--brand-gray-dark);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--brand-blue-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--t-fast);
}

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

ul {
    list-style: none;
}

/* =====================
   Utilities
   ===================== */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.section {
    padding: var(--s-xl) 0;
}

.section-sm {
    padding: 3rem 0;
}

.bg-light {
    background-color: var(--brand-gray-light);
}

.bg-brand {
    background-color: var(--brand-blue-dark);
}

.bg-white {
    background-color: var(--brand-white);
}

.text-white {
    color: var(--brand-white);
}

.text-blue {
    color: var(--brand-blue);
}

.center {
    text-align: center;
}

.mb-m {
    margin-bottom: var(--s-m);
}

.mb-l {
    margin-bottom: var(--s-l);
}

.mt-m {
    margin-top: var(--s-m);
}

/* =====================
   Buttons
   ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--t-smooth);
    border-radius: 4px;
}

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

.btn-primary:hover {
    background-color: var(--brand-blue-dark);
    border-color: var(--brand-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 124, 149, 0.35);
}

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

.btn-outline:hover {
    background-color: var(--brand-blue);
    color: var(--brand-white);
}

.btn-white {
    background-color: var(--brand-white);
    color: var(--brand-blue-dark);
    border-color: transparent;
}

.btn-white:hover {
    background-color: var(--brand-blue-pale);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.1rem 2.75rem;
    font-size: 1rem;
}

/* =====================
   Top Contact Bar
   ===================== */
.top-bar {
    background: var(--brand-blue-dark);
    padding: 0.55rem 0;
    font-size: 0.8rem;
}

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

.tb-left,
.tb-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--brand-blue-pale);
}

.tb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--brand-blue-pale);
    font-weight: 500;
    transition: var(--t-fast);
}

.tb-link:hover {
    color: var(--brand-white);
}

.tb-divider {
    color: rgba(255, 255, 255, 0.25);
}

/* =====================
   Header / Navbar
   ===================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(20, 40, 55, 0.65);
    backdrop-filter: blur(16px) saturate(1.6);
    -webkit-backdrop-filter: blur(16px) saturate(1.6);
    z-index: 1000;
    border-bottom: 1px solid rgba(122, 175, 199, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(45, 90, 114, 0.1);
    border-bottom-color: var(--brand-blue-pale);
}

.header.scrolled .nav-link {
    color: var(--brand-gray-dark);
}

.header.scrolled .nav-link:hover {
    color: var(--brand-blue);
}

.header.scrolled .nav-cta {
    background: var(--brand-blue);
    color: var(--brand-white) !important;
    border-color: var(--brand-blue);
}

.header.scrolled .logo img {
    height: 80px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
}

.logo img {
    height: 105px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

.desktop-nav ul {
    display: flex;
    align-items: center;
    gap: 2.8rem;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

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

.nav-link:hover {
    color: var(--brand-white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: transparent;
    color: #d4a84b !important;
    padding: 0.55rem 1.6rem;
    border: 1.5px solid rgba(212, 168, 75, 0.6);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #d4a84b;
    color: var(--brand-white) !important;
    border-color: #d4a84b;
    transform: none;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--brand-gray-dark);
}

/* =====================
   Hero / Slider
   ===================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Account for top-bar + header height */
    margin-top: 0;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    animation: none;
}

.slide.active {
    opacity: 1;
    animation: slowZoom 12s linear forwards;
}

@keyframes slowZoom {
    from {
        transform: scale(1.0);
    }

    to {
        transform: scale(1.06);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Centered uniform dark overlay for centered text readability */
    background: rgba(45, 90, 114, 0.7);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--brand-white);
    width: 100%;
}

.hero-text-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
    animation: fadeUp 0.8s both;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 1.25rem;
    color: var(--brand-white);
    animation: fadeUp 0.8s 0.1s both;
}

.hero-title span {
    color: var(--brand-blue-pale);
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    max-width: 620px;
    margin: 0 auto 2.5rem;
    animation: fadeUp 0.8s 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 0.8s 0.3s both;
}

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--t-fast);
}

.dot.active {
    background: var(--brand-white);
    width: 24px;
    border-radius: 4px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================
   Section Headings
   ===================== */
.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-blue);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    color: var(--brand-blue-dark);
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.1rem;
    color: var(--brand-gray-dark);
    font-weight: 500;
    margin-bottom: 1rem;
}

.body-text {
    font-size: 1rem;
    color: var(--brand-gray-mid);
    line-height: 1.75;
}

/* =====================
   Quick Brief (About on homepage)
   ===================== */
.brief-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.brief-img-wrap {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(45, 90, 114, 0.15);
}

.brief-img-wrap img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    filter: grayscale(20%);
    transition: var(--t-smooth);
}

.brief-img-wrap:hover img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.brief-accent-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--brand-blue);
    color: var(--brand-white);
    padding: 1.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(74, 124, 149, 0.3);
}

.brief-accent-card .number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.brief-accent-card .label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.85;
    margin-top: 0.25rem;
}

/* =====================
   Services Teaser Grid
   ===================== */
.services-teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.teaser-card {
    background: var(--brand-white);
    border: 1px solid var(--brand-blue-pale);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--t-smooth);
    cursor: pointer;
}

.teaser-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(45, 90, 114, 0.14);
    border-color: var(--brand-blue-light);
}

.teaser-img {
    height: 200px;
    overflow: hidden;
}

.teaser-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(70%);
    transition: all 0.6s ease;
}

.teaser-card:hover .teaser-img img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.teaser-body {
    padding: 1.5rem;
    border-top: 3px solid var(--brand-blue-pale);
    transition: var(--t-fast);
}

.teaser-card:hover .teaser-body {
    border-top-color: var(--brand-blue);
}

.teaser-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--brand-blue-dark);
}

.teaser-body p {
    font-size: 0.9rem;
    color: var(--brand-gray-mid);
    line-height: 1.6;
}

/* =====================
   Services Page - Full Grid
   ===================== */
.services-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--brand-white);
    border: 1px solid var(--brand-blue-pale);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--t-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(45, 90, 114, 0.13);
    border-color: var(--brand-blue-light);
}

.service-card-img {
    height: 220px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(75%);
    transition: all 0.6s ease;
}

.service-card:hover .service-card-img img {
    filter: grayscale(0%);
    transform: scale(1.06);
}

.service-card-body {
    padding: 1.75rem;
    border-top: 3px solid var(--brand-blue-pale);
    transition: var(--t-fast);
}

.service-card:hover .service-card-body {
    border-top-color: var(--brand-blue);
}

.service-card-body h3 {
    font-size: 1.2rem;
    color: var(--brand-blue-dark);
    margin-bottom: 0.6rem;
}

.service-card-body p {
    font-size: 0.9rem;
    color: var(--brand-gray-mid);
    line-height: 1.65;
}

/* =====================
   Why Choose Us
   ===================== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    background: var(--brand-blue-pale);
    border-radius: 8px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--brand-blue);
}

.feature-item h4 {
    font-size: 1.05rem;
    color: var(--brand-blue-dark);
    margin-bottom: 0.3rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--brand-gray-mid);
}

/* =====================
   Contact Strip
   ===================== */
.contact-strip {
    background: var(--brand-blue-dark);
    padding: 4rem 0;
    color: var(--brand-white);
}

.contact-strip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.ci-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.ci-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--brand-blue-pale);
}

.ci-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-blue-light);
    margin-bottom: 0.2rem;
}

.ci-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--brand-white);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.input-group {
    margin-bottom: 1.25rem;
}

.input-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--brand-blue-pale);
    margin-bottom: 0.45rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.65rem 0;
    color: var(--brand-white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--t-fast);
    outline: none;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.input-group input:focus,
.input-group textarea:focus {
    border-bottom-color: var(--brand-blue-light);
    box-shadow: 0 1px 0 0 var(--brand-blue-light);
}

/* =====================
   Footer
   ===================== */
.footer {
    background: var(--brand-off-white);
    padding: 3rem 0 1.5rem;
    border-top: 2px solid var(--brand-blue-pale);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--brand-blue-pale);
    margin-bottom: 1.75rem;
}

.footer-brand img {
    height: 105px;
    /* Increased to accommodate the taller winged shield logo */
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--brand-gray-mid);
    max-width: 280px;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-blue-dark);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: var(--brand-gray-mid);
}

.footer-col ul li a:hover {
    color: var(--brand-blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--brand-gray-mid);
}

/* =====================
   Page Header (Services page)
   ===================== */
.page-hero {
    background: var(--brand-blue-dark);
    padding: 9rem 0 4rem;
    color: var(--brand-white);
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../assets/hero_bg.png') center / cover no-repeat;
    opacity: 0.06;
}

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

.breadcrumb {
    font-size: 0.8rem;
    color: var(--brand-blue-pale);
    margin-bottom: 0.75rem;
}

.breadcrumb a {
    color: var(--brand-blue-pale);
}

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

/* =====================
   Capability Tags
   ===================== */
.cap-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.cap-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--brand-white);
    border: 1px solid var(--brand-blue-pale);
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-blue-dark);
    transition: var(--t-fast);
}

.cap-tag:hover {
    background: var(--brand-blue);
    color: var(--brand-white);
    border-color: var(--brand-blue);
}

/* =====================
   Vision / Mission / Values
   ===================== */
.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.vmv-card {
    background: var(--brand-white);
    border: 1px solid var(--brand-blue-pale);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--t-smooth);
}

.vmv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(45, 90, 114, 0.12);
    border-color: var(--brand-blue-light);
}

.vmv-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: var(--brand-blue-pale);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--brand-blue);
}

.vmv-card h3 {
    font-size: 1.2rem;
    color: var(--brand-blue-dark);
    margin-bottom: 1rem;
}

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

.vmv-list {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.vmv-list li {
    font-size: 0.92rem;
    color: var(--brand-gray-mid);
    line-height: 1.6;
    padding-left: 1.25rem;
    position: relative;
}

.vmv-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-blue);
}

/* Value Chips */
.values-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.value-chip {
    padding: 0.45rem 1.1rem;
    background: var(--brand-blue-pale);
    color: var(--brand-blue-dark);
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.02em;
}

/* =====================
   Services Detail (Alternating)
   ===================== */
.services-detail-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--brand-white);
    border: 1px solid var(--brand-blue-pale);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--t-smooth);
}

.service-detail-card:hover {
    box-shadow: 0 16px 40px rgba(45, 90, 114, 0.1);
    border-color: var(--brand-blue-light);
}

.service-detail-card.reverse {
    direction: rtl;
}

.service-detail-card.reverse>* {
    direction: ltr;
}

.sdc-img {
    height: 100%;
    overflow: hidden;
}

.sdc-img img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    filter: grayscale(60%);
    transition: all 0.6s ease;
}

.service-detail-card:hover .sdc-img img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.sdc-body {
    padding: 2.5rem;
}

.sdc-body h3 {
    font-size: 1.3rem;
    color: var(--brand-blue-dark);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.sdc-body h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--brand-blue);
    border-radius: 2px;
}

.sdc-body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.sdc-body ul li {
    font-size: 0.95rem;
    color: var(--brand-gray-mid);
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.sdc-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-blue);
}

/* =====================
   Responsive
   ===================== */
@media (max-width: 1024px) {

    .brief-grid,
    .why-grid,
    .contact-strip-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .service-detail-card,
    .service-detail-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
}

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

    .mobile-menu-btn {
        display: block;
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

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

    .top-bar-container {
        flex-direction: column;
        gap: 0.4rem;
    }

    .tb-right {
        display: none;
    }

    .brief-accent-card {
        bottom: -1rem;
        right: -0.5rem;
    }
}