/* ===== Holly Civil - Stylesheet ===== */

/* --- CSS Custom Properties --- */
:root {
    --primary: #12224F;        /* navy */
    --primary-dark: #0C1836;
    --primary-light: #24407E;
    --accent: #F5C518;         /* yellow */
    --accent-dark: #DDAF09;
    --accent-soft: #FFE484;
    --text-dark: #16203A;
    --text-body: #47506A;
    --text-light: #F5F7FB;
    --text-muted: #8A93A8;
    --bg-white: #ffffff;
    --bg-light: #F4F6FB;
    --bg-dark: #12224F;
    --border-light: rgba(18,34,79,0.10);
    --shadow-sm: 0 2px 10px rgba(18,34,79,0.08);
    --shadow-md: 0 6px 20px rgba(18,34,79,0.12);
    --shadow-lg: 0 14px 40px rgba(18,34,79,0.18);
    --radius: 2px;
    --radius-lg: 2px;
    --nav-height: 112px;
    --container: 1200px;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--text-body); background: var(--bg-white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--primary); line-height: 1.18; }

/* --- Layout helpers --- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section--alt { background: var(--bg-light); }
.section--dark { background: var(--primary); }
.section-header { text-align: center; max-width: 760px; margin: 0 auto 52px; }
.section-tag { display: inline-block; font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--accent-dark); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.section-tag--light { color: var(--accent); }
.section-title { font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.section-title--light { color: var(--text-light); }
.section-subtitle { font-size: 17px; color: var(--text-muted); }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 13px 26px; border-radius: 2px; font-family: var(--font-heading); font-size: .95rem; font-weight: 700; cursor: pointer; transition: all .22s; border: 2px solid transparent; text-align: center; }
.btn__ic { flex: none; width: 28px; height: 28px; }
.btn--accent { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.btn--accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--cta { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn--cta:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); }
.btn--cta .btn__ic { color: var(--accent); }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { background: rgba(255,255,255,.18); color: #fff; border-color: #fff; }
.btn--ghost .btn__ic { color: var(--accent); }
.btn--white-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--white-outline:hover { background: #fff; color: var(--primary); }
.btn--lg { padding: 15px 32px; font-size: 1rem; }
.btn--full { width: 100%; }

/* --- Preview banner --- */
.preview-banner { background: var(--primary-dark); color: #fff; text-align: center; font-size: .88rem; padding: 9px 16px; }
.preview-banner a { color: var(--accent); font-weight: 700; }

/* ===== NAVBAR ===== */
.navbar { position: sticky; top: 0; left: 0; right: 0; z-index: 1000; background: #fff; height: var(--nav-height); display: flex; align-items: center; box-shadow: var(--shadow-sm); transition: box-shadow .3s, height .3s; }
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; gap: 20px; }
.navbar__logo-img { max-height: 88px; max-width: 320px; width: auto; }
.navbar__menu { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.navbar__menu li a { color: var(--primary); font-family: var(--font-heading); font-size: .93rem; font-weight: 600; position: relative; }
.navbar__menu li a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 3px; background: var(--accent); transition: width .25s; }
.navbar__menu li a:hover, .navbar__menu li a.active { color: var(--primary); }
.navbar__menu li a:hover::after, .navbar__menu li a.active::after { width: 100%; }
.navbar__cta { padding-left: 24px; padding-right: 24px; white-space: nowrap; }
.navbar__hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.navbar__hamburger span { display: block; width: 26px; height: 3px; background: var(--primary); margin: 5px 0; border-radius: 3px; transition: .3s; }

/* ===== MOBILE MENU ===== */
.mobile-menu { position: fixed; inset: 0; background: var(--primary-dark); z-index: 2000; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; transform: translateX(100%); transition: transform .35s ease; }
.mobile-menu.active { transform: translateX(0); }
.mobile-menu__close { position: absolute; top: 22px; right: 26px; background: none; border: none; color: #fff; font-size: 34px; cursor: pointer; line-height: 1; }
.mobile-menu__list { text-align: center; margin-bottom: 20px; }
.mobile-menu__list li { margin: 14px 0; }
.mobile-menu__list li a { color: #fff; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; }
.mobile-menu__list li a:hover { color: var(--accent); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 640px; display: flex; align-items: center; padding: 90px 0; overflow: hidden; }
.hero__hl { color: var(--accent); }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background-size: cover; background-position: center; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(12,24,54,.02) 0%, rgba(12,24,54,.72) 45%, rgba(12,24,54,0) 100%); }
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; color: #fff; }
.hero__eyebrow, .hero h1, .hero__sub, .hero__cta, .hero__badges { max-width: 640px; }
.hero__eyebrow { display: inline-block; background: var(--accent); color: var(--primary); font-family: var(--font-heading); font-weight: 700; font-size: 1.0rem; letter-spacing: 1.5px; text-transform: uppercase; padding: 7px 16px; border-radius: 2px; margin-bottom: 20px; }
.hero h1 { color: #fff; font-size: 3.1rem; font-weight: 900; margin-bottom: 20px; }
.hero__sub { font-size: 1.12rem; color: rgba(255,255,255,.92); max-width: 640px; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 22px; }
.hero__badges li { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: .95rem; color: #fff; }
.hero__badges i { color: var(--accent); font-size: 28px; }

/* ===== STAT BAR ===== */
.statbar { background: var(--accent); padding: 34px 0; }
.statbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: var(--container); margin: 0 auto; padding: 0 24px; text-align: center; }
.stat__num { display: block; font-family: var(--font-heading); font-size: 2.7rem; font-weight: 900; color: var(--primary); line-height: 1; }
.stat__label { display: block; margin-top: 6px; font-weight: 600; font-size: .9rem; color: var(--primary-dark); }

/* ===== INTRO ===== */
.intro__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: stretch; }
.intro__text p { margin-bottom: 16px; }
.intro__text .btn { margin-top: 8px; }
.intro__media { position: relative; display: flex; }
.intro__media img { width: 100%; height: 100%; object-fit: cover; min-height: 460px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.intro__badge { position: absolute; left: 18px; bottom: 18px; background: var(--primary); color: #fff; padding: 10px 18px; border-radius: 2px; font-weight: 600; font-size: .9rem; box-shadow: var(--shadow-md); }
.intro__badge i { color: var(--accent); margin-right: 6px; }

/* ===== SERVICES ===== */
.services__intro, .sectors__intro, .why__intro, .areas__intro { max-width: 940px; margin: -20px auto 30px; text-align: center; }
.services__intro p, .sectors__intro p, .why__intro p, .areas__intro p { margin-bottom: 18px; color: var(--text-body); }
.services__intro .btn { margin-top: 6px; }
.why__banner { max-width: 1000px; margin: 0 auto 48px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.why__banner img { width: 100%; display: block; }
.why__banner figcaption { background: var(--primary); color: rgba(255,255,255,.88); font-size: .9rem; text-align: center; padding: 12px 18px; }
.services__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 32px; text-align: left; max-width: 760px; margin: 0 auto 22px; }
.services__list li { position: relative; padding-left: 28px; font-weight: 500; color: var(--text-dark); }
.services__list li::before { content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; top: 1px; color: var(--accent-dark); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s; display: flex; flex-direction: column; position: relative; }
.service-card::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; z-index: 3; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { transform: scaleX(1); }
.service-card__img { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.service-card__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,24,54,.45), rgba(12,24,54,0) 55%); opacity: .55; transition: opacity .35s; }
.service-card:hover .service-card__img::after { opacity: .18; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card__img img { transform: scale(1.08); }
.service-card__body { padding: 22px 22px 26px; }
.service-card__body h3 { font-size: 1.12rem; margin-bottom: 12px; position: relative; padding-bottom: 11px; }
.service-card__body h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; background: var(--accent); border-radius: 2px; transition: width .3s ease; }
.service-card:hover .service-card__body h3::after { width: 62px; }
.service-card__body p { font-size: .93rem; color: var(--text-body); }

/* ===== THE HOLLY CIVIL DIFFERENCE ===== */
.section-subtitle--light { color: rgba(255,255,255,.78); }
.difference__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 4px; }
.difference-card { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius-lg); padding: 32px 26px; transition: transform .3s cubic-bezier(.4,0,.2,1), background .3s, border-color .3s; }
.difference-card:hover { transform: translateY(-8px); background: rgba(255,255,255,.08); border-color: rgba(245,197,24,.55); }
.difference-card__ic { display: inline-flex; align-items: center; justify-content: center; width: 62px; height: 62px; border-radius: 2px; background: var(--accent); color: var(--primary); font-size: 1.55rem; margin-bottom: 20px; }
.difference-card h3 { color: #fff; font-size: 1.18rem; margin-bottom: 12px; }
.difference-card p { color: rgba(255,255,255,.76); font-size: .93rem; }
.difference__banner { margin: 40px 0 0; border-radius: var(--radius); overflow: hidden; }
.difference__banner img { display: block; width: 100%; height: auto; }

/* ===== SECTORS ===== */
.sectors__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.sector-card { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 34px 28px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .25s; }
.sector-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.sector-card i { font-size: 2.2rem; color: var(--accent-dark); margin-bottom: 16px; }
.sector-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.sector-card p { font-size: .95rem; }

/* ===== ABOUT ===== */
.about__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: stretch; }
.about__media { display: flex; }
.about__media img { width: 100%; height: 100%; object-fit: cover; min-height: 460px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about__text p { margin-bottom: 16px; }
.about__list { margin: 20px 0 26px; display: grid; gap: 12px; }
.about__list li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--text-dark); }
.about__list i { color: #fff; background: var(--accent-dark); width: 24px; height: 24px; border-radius: 2px; display: inline-flex; align-items: center; justify-content: center; font-size: .7rem; flex: none; }

/* ===== WHY ===== */
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why__banner { margin: 40px 0 0; border-radius: var(--radius); overflow: hidden; }
.why__banner img { display: block; width: 100%; height: auto; }
.why-card { background: #fff; border: 1px solid var(--border-light); border-top: 4px solid var(--accent); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .25s; }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.why-card i { font-size: 1.8rem; color: var(--primary); margin-bottom: 14px; }
.why-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.why-card p { font-size: .93rem; }

/* ===== PROCESS ===== */
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { text-align: center; padding: 10px; }
.process-step__num { display: inline-flex; align-items: center; justify-content: center; width: 62px; height: 62px; border-radius: 2px; background: var(--accent); color: var(--primary); font-family: var(--font-heading); font-size: 1.6rem; font-weight: 900; margin-bottom: 18px; }
.process-step h3 { color: #fff; font-size: 1.12rem; margin-bottom: 10px; }
.process-step p { color: rgba(255,255,255,.78); font-size: .93rem; }

/* ===== GALLERY ===== */
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px; }
.gallery__item { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item--wide { grid-column: span 2; }

/* ===== CTA BANNER ===== */
.cta-banner { position: relative; padding: 84px 24px; overflow: hidden; text-align: center; }
.cta-banner__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center bottom; background-size: cover; background-position: center bottom; }
.cta-banner__overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(12,24,54,.90), rgba(12,24,54,.66)); }
.cta-banner__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; color: #fff; }
.cta-banner h2 { color: #fff; font-size: 2.3rem; font-weight: 800; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.9); font-size: 1.08rem; margin-bottom: 26px; }
.cta-banner__buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ===== FAQ ===== */
.faq__list { max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq__item summary { cursor: pointer; padding: 20px 24px; font-family: var(--font-heading); font-weight: 600; font-size: 1.02rem; color: var(--primary); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 1.5rem; color: var(--accent-dark); flex: none; transition: transform .25s; }
.faq__item[open] summary::after { content: '\2212'; }
.faq__answer { padding: 0 24px 20px; }
.faq__answer p { color: var(--text-body); }

/* ===== AREAS ===== */
.areas__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.areas__col h3 { font-size: 1.08rem; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--accent); display: inline-block; }
.areas__col ul { display: grid; gap: 8px; }
.areas__col li { position: relative; padding-left: 22px; font-size: .95rem; color: var(--text-body); }
.areas__col li::before { content: '\f3c5'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--accent-dark); font-size: .8rem; }

/* ===== CONTACT ===== */
.contact__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 50px; align-items: center; }
.contact__info > p { margin-bottom: 24px; }
.contact__details { display: grid; gap: 18px; }
.contact__details li { display: flex; align-items: center; gap: 16px; }
.contact__details i { font-size: 1.1rem; color: var(--primary); background: var(--accent-soft); width: 46px; height: 46px; border-radius: 2px; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.contact__details span { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); font-weight: 600; }
.contact__details a, .contact__details div { color: var(--text-dark); font-weight: 600; }
.contact__form-wrap { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 32px; }
.contact__form h3 { font-size: 1.3rem; margin-bottom: 20px; }
.contact__form input, .contact__form select, .contact__form textarea { width: 100%; padding: 13px 16px; margin-bottom: 14px; border: 1px solid var(--border-light); border-radius: 2px; font-family: var(--font-body); font-size: .95rem; color: var(--text-dark); background: var(--bg-light); transition: border-color .2s, box-shadow .2s; }
.contact__form input:focus, .contact__form select:focus, .contact__form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(245,197,24,.25); background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { text-align: center; font-size: .85rem; color: var(--text-muted); margin-top: 12px; }
.form-success { background: #e8f6ec; border: 1px solid #b6e0c2; color: #1c7a3a; padding: 14px 18px; border-radius: 2px; text-align: center; font-weight: 600; margin-top: 8px; }

/* ============================================================
   CONTACT FORM 7 - matches the .contact__form card styling.
   Selectors deliberately do NOT depend on the .wpcf7 wrapper div -
   newer CF7 versions render the fields differently, so we style by
   the .contact__form-wrap card + CF7's own field classes to stay robust.
   ============================================================ */
.contact__form-wrap .wpcf7-form p { margin: 0; padding: 0; }
.contact__form-wrap .wpcf7-form br { display: none; }
.contact__form-wrap .wpcf7-form-control-wrap { display: block; margin-bottom: 14px; }
.contact__form-wrap .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; align-items: start; }
.contact__form-wrap input[type="text"],
.contact__form-wrap input[type="tel"],
.contact__form-wrap input[type="email"],
.contact__form-wrap input[type="url"],
.contact__form-wrap input[type="number"],
.contact__form-wrap textarea,
.contact__form-wrap select {
    width: 100%; padding: 13px 16px; margin: 0;
    border: 1px solid var(--border-light); border-radius: 2px;
    font-family: var(--font-body); font-size: .95rem; color: var(--text-dark);
    background: var(--bg-light); transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box; -webkit-appearance: none; appearance: none;
}
.contact__form-wrap .wpcf7-submit { width: 100%; margin-top: 4px; }
.contact__form-wrap .form-note { margin-top: 12px; }
.contact__form-wrap input:focus,
.contact__form-wrap textarea:focus,
.contact__form-wrap select:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(245,197,24,.25); background: #fff;
}
.contact__form-wrap .wpcf7-not-valid { border-color: #d9534f !important; }
.contact__form-wrap .wpcf7-not-valid-tip { display: block; font-size: .8rem; color: #d9534f; margin: -10px 0 12px; }
.contact__form-wrap .wpcf7-spinner { display: block; margin: 8px auto 0; }
.contact__form-wrap .wpcf7-response-output {
    margin: 14px 0 0 !important; padding: 12px 16px !important;
    border-radius: 2px; text-align: center; font-weight: 600; font-size: .92rem;
    border: 1px solid #b6e0c2 !important; background: #e8f6ec; color: #1c7a3a;
}
.contact__form-wrap form.invalid .wpcf7-response-output,
.contact__form-wrap form.failed .wpcf7-response-output {
    border-color: #f0c7c5 !important; background: #fdecea; color: #b02a25;
}
@media (max-width: 768px) {
    .contact__form-wrap .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ===== FOOTER ===== */
.footer { background: var(--primary-dark); color: rgba(255,255,255,.72); padding: 60px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.footer__logo { font-family: var(--font-heading); font-weight: 900; font-size: 1.6rem; color: #fff; letter-spacing: 1px; }
.footer__tag { color: var(--accent); font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin: 4px 0 14px; }
.footer__col p { font-size: .92rem; margin-bottom: 10px; }
.footer__licence { color: #fff; font-weight: 600; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer__col ul { display: grid; gap: 9px; }
.footer__col ul a { color: rgba(255,255,255,.72); font-size: .92rem; }
.footer__col ul a:hover { color: var(--accent); }
.footer__contact li { display: flex; align-items: center; gap: 10px; font-size: .92rem; margin-bottom: 9px; }
.footer__contact i { color: var(--accent); width: 16px; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding: 20px 24px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; max-width: var(--container); margin-left: auto; margin-right: auto; font-size: .84rem; }
.footer__bar a { color: var(--accent); }

/* ===== MOBILE CALL BAR ===== */
.mobile-callbar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1500; background: var(--accent); color: var(--primary); text-align: center; padding: 14px; font-family: var(--font-heading); font-weight: 700; gap: 8px; align-items: center; justify-content: center; box-shadow: 0 -4px 16px rgba(0,0,0,.15); }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .gallery__grid { grid-template-columns: repeat(2, 1fr); }
    .areas__cols { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .process__grid { grid-template-columns: repeat(2, 1fr); }
    .difference__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .navbar__menu { display: none; }
    .navbar__hamburger { display: block; }
    .navbar__cta { display: none; }
    .intro__inner, .about__inner, .contact__inner { grid-template-columns: 1fr; gap: 36px; }
    .about__media { order: -1; }
}
@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .section-title { font-size: 28px; }
    .hero { padding: 60px 20px; min-height: auto; }
    .hero h1 { font-size: 2.1rem; }
    .hero__sub { font-size: 1rem; }
    .statbar__grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
    .stat__num { font-size: 2.1rem; }
    .services__grid, .sectors__grid, .why__grid, .difference__grid { grid-template-columns: 1fr; }
    .services__list { grid-template-columns: 1fr; }
    .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
    .gallery__item--wide { grid-column: span 2; }
    .areas__cols { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; gap: 26px; }
    .form-row { grid-template-columns: 1fr; }
    .cta-banner h2 { font-size: 1.7rem; }
    html { scroll-padding-top: 96px; }
    .navbar { height: 96px; }
    .navbar__logo-img { max-height: 84px; max-width: 260px; }
    body { padding-bottom: 56px; }
    .mobile-callbar { display: flex; }
}
