/*
Theme Name: Borehole Drillers Africa
Theme URI: https://boreholedrillers.africa
Author: Borehole Drillers Africa
Author URI: https://boreholedrillers.africa
Description: Professional WordPress theme for Borehole Drillers Africa — Kenya's leading borehole drilling and water solutions company.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bda
Tags: business, one-column, custom-menu, custom-logo, featured-images, theme-options
*/

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
    --bda-black: #0a0a0a;
    --bda-deep: #0f1923;
    --bda-navy: #112233;
    --bda-orange: #e85d04;
    --bda-amber: #f77f00;
    --bda-gold: #d4a017;
    --bda-cream: #f5f0e8;
    --bda-white: #fff;
    --bda-grey: #8a9bb0;
    --bda-light: #e8edf3;
    --bda-earth: #6b4c2a;
    --bda-blue: #1a6fb5;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--bda-deep);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bda-white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul, ol {
    list-style: none;
}

/* =============================================
   TOPBAR
   ============================================= */
.bda-topbar {
    background: var(--bda-deep);
    color: var(--bda-grey);
    font-size: 12px;
    padding: 8px 0;
    letter-spacing: 0.05em;
}

.bda-topbar .bda-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.bda-topbar a {
    color: var(--bda-amber);
}

.bda-topbar span {
    margin: 0 10px;
    opacity: 0.4;
}

/* =============================================
   NAVBAR
   ============================================= */
.bda-nav {
    background: var(--bda-white);
    border-bottom: 3px solid var(--bda-orange);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.bda-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.bda-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: var(--bda-deep);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.bda-logo .bda-icon {
    width: 42px;
    height: 42px;
    background: var(--bda-orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.bda-logo small {
    font-size: 10px;
    font-weight: 400;
    color: var(--bda-grey);
    display: block;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* WordPress nav menu */
.bda-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
    align-items: center;
}

.bda-menu li a {
    font-size: 13px;
    font-weight: 500;
    color: var(--bda-deep);
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.2s;
    letter-spacing: 0.02em;
    display: block;
    white-space: nowrap;
}

.bda-menu li a:hover,
.bda-menu li.current-menu-item a,
.bda-menu li.current_page_item a {
    background: var(--bda-cream);
    color: var(--bda-orange);
}

.bda-menu li a.bda-cta,
.bda-menu li.bda-cta-item a {
    background: var(--bda-orange);
    color: #fff !important;
    font-weight: 700;
    padding: 10px 22px;
}

.bda-menu li a.bda-cta:hover,
.bda-menu li.bda-cta-item a:hover {
    background: var(--bda-amber);
}

.bda-hamburger {
    display: none;
    cursor: pointer;
    font-size: 28px;
    color: var(--bda-deep);
    background: none;
    border: none;
    padding: 8px;
    line-height: 1;
}

/* =============================================
   LAYOUT
   ============================================= */
.bda-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
.bda-lbl {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.bda-lbl-amber { background: rgba(247,127,0,0.12); color: var(--bda-amber); }
.bda-lbl-white { background: rgba(255,255,255,0.15); color: #fff; }
.bda-lbl-orange { background: rgba(232,93,4,0.12); color: var(--bda-orange); }

.bda-disp {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.bda-hl { color: var(--bda-orange); }

.bda-sub {
    font-size: 15px;
    color: var(--bda-grey);
    line-height: 1.7;
    max-width: 640px;
}

/* =============================================
   BUTTONS
   ============================================= */
.bda-btn {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.bda-btn-orange { background: var(--bda-orange); color: #fff; }
.bda-btn-orange:hover { background: var(--bda-amber); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,93,4,0.3); }

.bda-btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.bda-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.05); }

.bda-btn-white { background: #fff; color: var(--bda-deep); }
.bda-btn-white:hover { background: var(--bda-cream); }

.bda-btn-group {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* =============================================
   HERO
   ============================================= */
.bda-hero {
    background: linear-gradient(160deg, var(--bda-deep) 0%, #162a3e 50%, #1a3550 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.bda-hero::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232,93,4,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bda-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.bda-hero .bda-disp {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.8rem);
}

.bda-hero .bda-sub {
    color: rgba(255,255,255,0.7);
}

.bda-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.bda-stat-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 16px 12px;
    text-align: center;
}

.bda-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--bda-amber);
}

.bda-stat-label {
    font-size: 10px;
    color: var(--bda-grey);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.bda-hero-visual {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.bda-hero-visual .bda-big-icon {
    font-size: 120px;
    opacity: 0.15;
}

.bda-hero-visual p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin-top: 16px;
}

/* =============================================
   SECTIONS
   ============================================= */
.bda-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.bda-section-header .bda-sub {
    margin: 0 auto;
}

/* Services */
.bda-services-section {
    padding: 80px 0;
    background: var(--bda-cream);
}

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

.bda-svc-card {
    background: #fff;
    border-radius: 14px;
    padding: 32px 24px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.bda-svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bda-orange);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.bda-svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

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

.bda-svc-icon {
    width: 56px;
    height: 56px;
    background: rgba(232,93,4,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.bda-svc-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--bda-deep);
}

.bda-svc-card p {
    font-size: 14px;
    color: var(--bda-grey);
    line-height: 1.7;
}

.bda-svc-card ul {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
}

.bda-svc-card ul li {
    font-size: 13px;
    color: var(--bda-grey);
    padding: 4px 0 4px 20px;
    position: relative;
}

.bda-svc-card ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--bda-orange);
    font-weight: 700;
}

/* Why Us */
.bda-why-section {
    padding: 80px 0;
    background: var(--bda-deep);
    color: #fff;
}

.bda-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.bda-why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s;
}

.bda-why-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.bda-why-card .bda-why-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.bda-why-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--bda-amber);
}

.bda-why-card p {
    font-size: 13px;
    color: var(--bda-grey);
    line-height: 1.7;
}

/* Process */
.bda-process-section {
    padding: 80px 0;
    background: var(--bda-cream);
}

.bda-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 48px;
    counter-reset: step;
}

.bda-step {
    background: #fff;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    counter-increment: step;
    border: 1px solid rgba(0,0,0,0.06);
}

.bda-step::before {
    content: counter(step);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--bda-orange);
    display: block;
    margin-bottom: 12px;
}

.bda-step h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.bda-step p {
    font-size: 13px;
    color: var(--bda-grey);
}

/* Offices */
.bda-offices-section {
    padding: 80px 0;
    background: var(--bda-deep);
}

.bda-offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.bda-off-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 24px;
    transition: all 0.3s;
}

.bda-off-card:hover {
    background: rgba(255,255,255,0.08);
}

.bda-off-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--bda-amber);
    margin-bottom: 8px;
}

.bda-off-card p {
    font-size: 13px;
    color: var(--bda-grey);
    line-height: 1.7;
}

/* CTA Banner */
.bda-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bda-orange) 0%, var(--bda-amber) 100%);
    text-align: center;
    color: #fff;
}

.bda-cta-section .bda-disp {
    color: #fff;
    margin-bottom: 10px;
}

.bda-cta-section p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 24px;
}

/* About */
.bda-about-section {
    padding: 80px 0;
}

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

.bda-about-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 24px 0 12px;
    color: var(--bda-deep);
}

.bda-about-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Values */
.bda-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.bda-value-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.bda-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.bda-value-icon { font-size: 36px; margin-bottom: 12px; }

.bda-value-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.bda-value-card p {
    font-size: 13px;
    color: var(--bda-grey);
}

/* Credentials */
.bda-creds-section {
    padding: 80px 0;
    background: #fff;
}

.bda-creds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.bda-cred-card {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.bda-cred-icon { font-size: 32px; flex-shrink: 0; }

.bda-cred-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--bda-deep);
}

.bda-cred-card p {
    font-size: 13px;
    color: var(--bda-grey);
    line-height: 1.6;
}

/* Projects */
.bda-projects-section {
    padding: 80px 0;
    background: var(--bda-cream);
}

.bda-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.bda-proj-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.bda-proj-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.bda-proj-img {
    height: 200px;
    background: linear-gradient(135deg, var(--bda-deep), var(--bda-navy));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: rgba(255,255,255,0.15);
}

.bda-proj-content {
    padding: 24px;
}

.bda-proj-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.bda-proj-content p {
    font-size: 13px;
    color: var(--bda-grey);
    line-height: 1.7;
    margin-bottom: 12px;
}

.bda-proj-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--bda-orange);
    font-weight: 600;
    flex-wrap: wrap;
}

/* Page Header */
.bda-page-header {
    background: linear-gradient(160deg, var(--bda-deep) 0%, #1a3550 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.bda-page-header .bda-disp {
    color: #fff;
    margin-bottom: 8px;
}

.bda-page-header p {
    color: var(--bda-grey);
    font-size: 15px;
}

/* FAQ */
.bda-faq-section {
    padding: 80px 0;
    background: var(--bda-cream);
}

.bda-faq-list {
    max-width: 800px;
    margin: 48px auto 0;
}

.bda-faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
}

.bda-faq-q {
    padding: 18px 24px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--bda-deep);
    transition: color 0.2s;
    gap: 12px;
}

.bda-faq-q:hover {
    color: var(--bda-orange);
}

.bda-faq-q .bda-faq-toggle {
    font-size: 20px;
    color: var(--bda-orange);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.bda-faq-item.bda-open .bda-faq-toggle {
    transform: rotate(45deg);
}

.bda-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 24px;
    font-size: 14px;
    color: var(--bda-grey);
    line-height: 1.8;
}

.bda-faq-item.bda-open .bda-faq-a {
    max-height: 500px;
    padding: 0 24px 20px;
}

/* Contact */
.bda-contact-section {
    padding: 80px 0;
}

.bda-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
}

.bda-contact-info-card {
    background: var(--bda-deep);
    border-radius: 16px;
    padding: 36px;
    color: #fff;
}

.bda-contact-info-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--bda-amber);
}

.bda-contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.bda-contact-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.bda-contact-item h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.bda-contact-item p {
    font-size: 13px;
    color: var(--bda-grey);
    line-height: 1.6;
}

.bda-contact-item a {
    color: var(--bda-amber);
}

/* Quote */
.bda-quote-section {
    padding: 80px 0;
    background: var(--bda-cream);
}

.bda-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 48px;
}

.bda-quote-benefits {
    padding: 20px 0;
}

.bda-benefit-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.bda-benefit-icon { font-size: 28px; flex-shrink: 0; }

.bda-benefit-item h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.bda-benefit-item p {
    font-size: 13px;
    color: var(--bda-grey);
    line-height: 1.6;
}

/* Forms */
.bda-form {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    border: 1px solid rgba(0,0,0,0.06);
}

.bda-form h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.bda-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.bda-form-group {
    margin-bottom: 16px;
}

.bda-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--bda-deep);
    margin-bottom: 6px;
}

.bda-form-group input,
.bda-form-group select,
.bda-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--bda-deep);
    transition: border-color 0.2s;
    background: #fafafa;
    -webkit-appearance: none;
}

.bda-form-group input:focus,
.bda-form-group select:focus,
.bda-form-group textarea:focus {
    outline: none;
    border-color: var(--bda-orange);
    background: #fff;
}

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

/* Footer */
.bda-footer {
    background: var(--bda-black);
    color: var(--bda-grey);
    padding: 60px 0 0;
}

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

.bda-footer h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.bda-footer p {
    font-size: 13px;
    line-height: 1.7;
}

.bda-footer ul li {
    margin-bottom: 8px;
}

.bda-footer ul li a {
    font-size: 13px;
    color: var(--bda-grey);
    transition: color 0.2s;
}

.bda-footer ul li a:hover {
    color: var(--bda-amber);
}

.bda-footer-brand {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
}

.bda-footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    margin-top: 20px;
}

/* =============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================= */
@media (max-width: 1024px) {
    .bda-hero-grid {
        gap: 40px;
    }

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

    .bda-about-grid {
        gap: 40px;
    }

    .bda-contact-grid,
    .bda-quote-grid {
        gap: 30px;
    }
}

/* =============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================= */
@media (max-width: 768px) {
    /* Topbar */
    .bda-topbar .bda-inner {
        flex-direction: column;
        text-align: center;
        gap: 4px;
        font-size: 11px;
    }

    .bda-topbar span {
        margin: 0 6px;
    }

    /* Nav */
    .bda-nav-inner {
        padding: 0 16px;
        height: 64px;
    }

    .bda-logo {
        font-size: 18px;
    }

    .bda-logo .bda-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .bda-hamburger {
        display: block;
    }

    .bda-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        gap: 4px;
        z-index: 999;
    }

    .bda-menu.bda-menu-open {
        display: flex;
    }

    .bda-menu li a {
        padding: 12px 16px;
        font-size: 15px;
    }

    /* Container */
    .bda-container {
        padding: 0 16px;
    }

    /* Hero */
    .bda-hero {
        padding: 50px 0 40px;
    }

    .bda-hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bda-hero-visual {
        display: none;
    }

    .bda-hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .bda-stat-box {
        padding: 12px 8px;
    }

    .bda-stat-num {
        font-size: 1.4rem;
    }

    .bda-stat-label {
        font-size: 9px;
    }

    /* Sections */
    .bda-services-section,
    .bda-why-section,
    .bda-process-section,
    .bda-offices-section,
    .bda-about-section,
    .bda-projects-section,
    .bda-faq-section,
    .bda-contact-section,
    .bda-quote-section,
    .bda-creds-section {
        padding: 50px 0;
    }

    .bda-section-header {
        margin-bottom: 36px;
    }

    /* Grids → single column */
    .bda-services-grid,
    .bda-why-grid,
    .bda-offices-grid,
    .bda-projects-grid,
    .bda-creds-grid {
        grid-template-columns: 1fr;
    }

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

    .bda-values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bda-about-grid,
    .bda-contact-grid,
    .bda-quote-grid {
        grid-template-columns: 1fr;
    }

    .bda-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    /* Forms */
    .bda-form-row {
        grid-template-columns: 1fr;
    }

    .bda-form {
        padding: 24px 16px;
    }

    .bda-contact-info-card {
        padding: 24px 16px;
    }

    /* Page Header */
    .bda-page-header {
        padding: 40px 0;
    }

    /* CTA */
    .bda-cta-section {
        padding: 40px 0;
    }

    /* Footer */
    .bda-footer {
        padding: 40px 0 0;
    }
}

/* =============================================
   RESPONSIVE — SMALL PHONE (max 480px)
   ============================================= */
@media (max-width: 480px) {
    .bda-hero-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .bda-stat-box {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 12px 16px;
    }

    .bda-stat-num {
        font-size: 1.5rem;
    }

    .bda-stat-label {
        margin-top: 0;
    }

    .bda-btn-group {
        flex-direction: column;
    }

    .bda-btn-group .bda-btn {
        text-align: center;
        width: 100%;
    }

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

    .bda-values-grid {
        grid-template-columns: 1fr;
    }

    .bda-proj-meta {
        flex-direction: column;
        gap: 4px;
    }

    .bda-disp {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .bda-hero .bda-disp {
        font-size: clamp(1.6rem, 7vw, 2.4rem);
    }

    .bda-topbar {
        display: none;
    }
}

/* =============================================
   WORDPRESS ADMIN BAR FIX
   ============================================= */
.admin-bar .bda-nav {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .bda-nav {
        top: 46px;
    }
}
