/* ============================================================
   Expert Construction — Design System
   Premium roofing website CSS
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
    --navy-dark: #0C1B33;
    --navy: #132744;
    --green: #E8713A;
    --green-light: #F09860;
    --green-dark: #C45A28;
    --cream: #F7F5F2;
    --cream-dark: #EDE9E3;
    --white: #ffffff;
    --text-dark: #111827;
    --text-muted: #5A6577;
    --text-light: #8896A8;
    --border: #E2E6EC;
    --border-light: #F0F2F5;
    --shadow-sm: 0 1px 3px rgba(12,27,51,0.06);
    --shadow-md: 0 4px 16px rgba(12,27,51,0.08);
    --shadow-lg: 0 8px 32px rgba(12,27,51,0.1);
    --shadow-xl: 0 16px 48px rgba(12,27,51,0.14);
    --shadow-green: 0 4px 14px rgba(232,113,58,0.4);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --container-max: 1280px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
}

/* ── Container ── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container { padding: 0 32px; }
}

/* ── Section ── */
.section {
    padding: 80px 0;
}
.section--cream {
    background: var(--cream);
}
.section--navy {
    background: var(--navy-dark);
    color: var(--white);
}

/* ── Section Headers ── */
.hm-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green);
    margin-bottom: 12px;
}

.hm-section-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.hm-section-title strong {
    color: var(--green-dark);
}

.section--navy .hm-section-title {
    color: var(--white);
}

.hm-section-sub {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.7;
}

.hm-section-head {
    text-align: center;
    margin-bottom: 48px;
}
.hm-section-head .hm-section-sub {
    margin: 0 auto;
}

/* ── Buttons ── */
.hm-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-green);
    text-decoration: none;
    white-space: nowrap;
}
.hm-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,113,58,0.55);
    background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%);
}

.hm-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all var(--transition-base);
    backdrop-filter: blur(4px);
    text-decoration: none;
    white-space: nowrap;
}
.hm-btn-ghost:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

.hm-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: var(--green-dark);
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-md);
    border: 2px solid var(--green);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}
.hm-btn-outline:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
}

/* ================================================================
   TOP BAR
   ================================================================ */
.topbar {
    background: var(--navy-dark);
    padding: 8px 0;
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}
.topbar__link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
    transition: color var(--transition-fast);
}
.topbar__link:hover {
    color: var(--green);
}
.topbar__link svg {
    flex-shrink: 0;
}

/* ================================================================
   HEADER / NAV
   ================================================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 2px solid var(--border);
    transition: box-shadow var(--transition-base);
}
.header--scrolled {
    box-shadow: var(--shadow-md);
}
.header__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 10px 0;
}

/* Logo */
.header__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.header__logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green) 0%, var(--navy-dark) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}
.header__logo-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}
.header__logo-text {
    display: flex;
    flex-direction: column;
}
.header__logo-name {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.1;
}
.header__logo-slogan {
    font-size: 11px;
    color: var(--green-dark);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Desktop Nav */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}
@media (min-width: 1024px) {
    .nav-desktop { display: flex; }
}
.nav-desktop__link {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-dark);
    transition: all var(--transition-fast);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}
.nav-desktop__link:hover,
.nav-desktop__link--active {
    background: var(--cream);
    color: var(--green-dark);
}

/* Mega Dropdown Menu */
.nav-desktop__item {
    position: relative;
    display: inline-block;
}
.dropdown-chevron {
    font-size: 8px;
    margin-left: 6px;
    transition: transform var(--transition-fast);
    display: inline-block;
}
.nav-desktop__item:hover .dropdown-chevron {
    transform: rotate(180deg);
}
.mega-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 680px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    padding: 24px;
}
.mega-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: transparent transparent var(--white) transparent;
}
.nav-desktop__item:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.mega-dropdown__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.mega-dropdown__header-icon {
    font-size: 16px;
}
.mega-dropdown__header-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
}
.mega-dropdown__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.mega-dropdown__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    border: 1px solid transparent;
}
.mega-dropdown__item:hover {
    background: #F0F4FA;
    border-color: rgba(232,113,58,0.1);
}
.mega-dropdown__icon-box {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.mega-dropdown__info {
    flex: 1;
    text-align: left;
}
.mega-dropdown__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-dark);
}
.mega-dropdown__subtitle {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
    font-weight: 500;
}
.mega-dropdown__arrow {
    color: var(--text-muted);
    font-size: 16px;
    opacity: 0;
    transition: all 0.2s ease;
}
.mega-dropdown__item:hover .mega-dropdown__arrow {
    opacity: 1;
    transform: translateX(4px);
    color: var(--green);
}
.mega-dropdown__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.mega-dropdown__footer-left {
    display: flex;
    align-items: center;
    gap: 6px;
}
.mega-dropdown__footer-check {
    color: var(--green);
    font-size: 14px;
}
.mega-dropdown__footer-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-dark);
}
.mega-dropdown__footer-btn {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    background: var(--green);
    border-radius: 6px;
    text-decoration: none;
    transition: background var(--transition-fast);
}
.mega-dropdown__footer-btn:hover {
    background: var(--green-dark);
}

/* Header CTA */
.header__cta {
    margin-left: auto;
    padding: 10px 20px;
    font-size: 14px;
}
@media (min-width: 1024px) {
    .header__cta { margin-left: 12px; }
}

/* Mobile Toggle */
.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: none;
    background: transparent;
    margin-left: auto;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}
.mobile-toggle:hover {
    background-color: var(--border-light);
}
@media (min-width: 1024px) {
    .mobile-toggle { display: none; }
}
.mobile-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
}
.mobile-toggle__bar:nth-child(1) { top: 13px; }
.mobile-toggle__bar:nth-child(2) { top: 19px; }
.mobile-toggle__bar:nth-child(3) { top: 25px; }

.mobile-toggle--open .mobile-toggle__bar:nth-child(1) {
    top: 19px;
    transform: rotate(45deg);
    background: var(--green);
}
.mobile-toggle--open .mobile-toggle__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.mobile-toggle--open .mobile-toggle__bar:nth-child(3) {
    top: 19px;
    transform: rotate(-45deg);
    background: var(--green);
}

/* Mobile Nav */
.nav-mobile {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
    background: var(--white);
    border-top: 1px solid var(--border);
}
@media (min-width: 1024px) {
    .nav-mobile { display: none !important; }
}
.nav-mobile--open {
    max-height: 500px;
}
.nav-mobile__link {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-light);
    transition: background var(--transition-fast);
}
.nav-mobile__link:hover {
    background: var(--cream);
}
.nav-mobile__cta {
    margin: 16px 20px;
    text-align: center;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hm-hero {
    position: relative;
    overflow: hidden;
    background: var(--navy-dark);
    min-height: 600px;
}
.hm-hero__canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hm-hero__canvas::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(12,27,51,0.92) 0%,
        rgba(19,39,68,0.85) 40%,
        rgba(12,27,51,0.75) 100%);
    z-index: 2;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hm-hero__grid {
    position: absolute;
    inset: 0;
    z-index: 3;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hm-hero__accent {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,113,58,0.15) 0%, transparent 70%);
    z-index: 2;
}
.hm-hero__inner {
    position: relative;
    z-index: 10;
    padding: 60px 0 80px;
}
.hm-hero__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
@media (min-width: 1024px) {
    .hm-hero__layout {
        grid-template-columns: 1fr 420px;
        gap: 60px;
    }
    .hm-hero__inner {
        padding: 80px 0 100px;
    }
}

/* Hero Left */
.hm-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(232,113,58,0.15);
    border: 1px solid rgba(232,113,58,0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-light);
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}
.hm-hero__label-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hm-hero__h1 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.hm-hero__desc {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 540px;
}

.hm-hero__checklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
}
.hm-hero__check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.hm-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

/* Hero Stats */
.hm-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
@media (max-width: 600px) {
    .hm-hero__stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
.hm-hero__stat {
    text-align: center;
}
.hm-hero__stat-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.hm-hero__stat-num span {
    color: var(--green);
}
.hm-hero__stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Quote Form */
.hm-hero__form-wrap {
    background: linear-gradient(145deg, rgba(19,39,68,0.95), rgba(12,27,51,0.98));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(232,113,58,0.2);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hm-hero__form-header {
    text-align: center;
    margin-bottom: 20px;
}
.hm-hero__form-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.hm-hero__form-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.quote-form__group {
    position: relative;
}
.quote-form__input,
.quote-form__select,
.quote-form__textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 14px;
    font-family: var(--font-sans);
    transition: all var(--transition-fast);
    outline: none;
}
.quote-form__input::placeholder,
.quote-form__textarea::placeholder {
    color: rgba(255,255,255,0.4);
}
.quote-form__input:focus,
.quote-form__select:focus,
.quote-form__textarea:focus {
    border-color: var(--green);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(232,113,58,0.15);
}
.quote-form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' fill-opacity='0.5' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.quote-form__select option {
    background: var(--navy-dark);
    color: var(--white);
}
.quote-form__textarea {
    min-height: 80px;
    resize: vertical;
}
.quote-form__submit {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    margin-top: 4px;
}
.quote-form__error {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}
.quote-form__success {
    text-align: center;
    padding: 20px;
    color: var(--green-light);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.5;
}

.hm-hero__form-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.hm-hero__form-badge {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

/* Hero Wave */
.hm-hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 10;
    line-height: 0;
}
.hm-hero__wave svg {
    width: 100%;
    height: 56px;
}

/* ================================================================
   TRUST BAR
   ================================================================ */
.hm-trust {
    padding: 32px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
.hm-trust__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    align-items: center;
}
.hm-trust__item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}
.hm-trust__icon {
    font-size: 28px;
    line-height: 1;
}
.hm-trust__info {
    display: flex;
    flex-direction: column;
}
.hm-trust__info strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-dark);
}
.hm-trust__info span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ================================================================
   SERVICES SECTION
   ================================================================ */

/* Services Showcase (2 images + heading) */
.hm-services__showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
    align-items: center;
}
@media (min-width: 768px) {
    .hm-services__showcase {
        grid-template-columns: 1fr 2fr 1fr;
        gap: 32px;
    }
}

.hm-services__visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
    aspect-ratio: 1;
}
.hm-services__visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.hm-services__visual:hover .hm-services__visual-img {
    transform: scale(1.05);
}
.hm-services__visual-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    box-shadow: var(--shadow-md);
}

.hm-services__intro {
    text-align: center;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .hm-services__visual--left,
    .hm-services__visual--right {
        display: none;
    }
}

/* Service Cards Grid */
.hm-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.hm-service-card {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    text-decoration: none;
    cursor: pointer;
}
.hm-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green);
}
.hm-service-card__icon {
    font-size: 36px;
    margin-bottom: 16px;
    line-height: 1;
}
.hm-service-card__title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 10px;
}
.hm-service-card__desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}
.hm-service-card__link {
    font-size: 14px;
    font-weight: 700;
    color: var(--green-dark);
    transition: color var(--transition-fast);
}
.hm-service-card:hover .hm-service-card__link {
    color: var(--green);
}

.hm-services__cta {
    text-align: center;
}

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.hm-about {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
@media (min-width: 768px) {
    .hm-about {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.hm-about__text {
    order: 2;
}
@media (min-width: 768px) {
    .hm-about__text { order: 1; }
}

.hm-about__desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.hm-about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}
.hm-about__highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--cream);
    border-radius: var(--radius-sm);
}
.hm-about__highlight-icon {
    font-size: 24px;
    line-height: 1;
}
.hm-about__highlight-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-dark);
}

.hm-about__image-wrap {
    order: 1;
    position: relative;
}
@media (min-width: 768px) {
    .hm-about__image-wrap { order: 2; }
}
.hm-about__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hm-about__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.hm-about__badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.hm-about__badge-num {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}
.hm-about__badge-label {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ================================================================
   PROCESS / HOW IT WORKS
   ================================================================ */
.hm-process__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    counter-reset: step-counter;
}
.hm-process__step {
    position: relative;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform var(--transition-base);
    border: 1px solid var(--border);
}
.hm-process__step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.hm-process__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 16px;
    box-shadow: var(--shadow-green);
}
.hm-process__title {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 10px;
}
.hm-process__desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ================================================================
   FAQ SECTION
   ================================================================ */
.hm-faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hm-faq__item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}
.hm-faq__item--open {
    border-color: var(--green);
}
.hm-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy-dark);
    text-align: left;
    cursor: pointer;
    transition: background var(--transition-fast);
    gap: 16px;
}
.hm-faq__question:hover {
    background: var(--cream);
}
.hm-faq__chevron {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-base);
    color: var(--green);
}
.hm-faq__item--open .hm-faq__chevron {
    transform: rotate(180deg);
}
.hm-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
    padding: 0 24px;
}
.hm-faq__item--open .hm-faq__answer {
    max-height: 300px;
    padding: 0 24px 20px;
}
.hm-faq__answer p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.hm-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.hm-testimonial-card {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}
.hm-testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--green);
}
.hm-testimonial-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}
.hm-testimonial-card__star {
    color: #fbbf24;
    font-size: 18px;
}
.hm-testimonial-card__text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.hm-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hm-testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
}
.hm-testimonial-card__info strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-dark);
}
.hm-testimonial-card__info span {
    font-size: 13px;
    color: var(--text-light);
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.hm-cta {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--green-dark) 100%);
    overflow: hidden;
}
.hm-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,113,58,0.2) 0%, transparent 70%);
}
.hm-cta__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.hm-cta__title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}
.hm-cta__desc {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    line-height: 1.6;
}
.hm-cta__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr 2fr;
    gap: 32px;
    margin-bottom: 48px;
}
@media (max-width: 1200px) {
    .footer__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 580px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }
}
.footer__col-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}
.footer__about-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer__social {
    display: flex;
    gap: 10px;
}
.footer__social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: all var(--transition-fast);
}
.footer__social-link:hover {
    background: var(--green);
    transform: translateY(-2px);
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__link {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer__link::before {
    content: '→';
    font-size: 12px;
    color: var(--green);
    transition: transform var(--transition-fast);
}
.footer__link:hover {
    color: var(--green);
}
.footer__link:hover::before {
    transform: translateX(3px);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
}
.footer__contact-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer__map iframe {
    filter: grayscale(1) sepia(0.3) hue-rotate(75deg) saturate(1.2) contrast(1.1) brightness(0.8);
    transition: filter var(--transition-slow);
}
.footer__map iframe:hover {
    filter: none;
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.animate-on-scroll.visible .hm-service-card:nth-child(1),
.animate-on-scroll.visible .hm-process__step:nth-child(1),
.animate-on-scroll.visible .hm-testimonial-card:nth-child(1) { transition-delay: 0.05s; }
.animate-on-scroll.visible .hm-service-card:nth-child(2),
.animate-on-scroll.visible .hm-process__step:nth-child(2),
.animate-on-scroll.visible .hm-testimonial-card:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll.visible .hm-service-card:nth-child(3),
.animate-on-scroll.visible .hm-process__step:nth-child(3),
.animate-on-scroll.visible .hm-testimonial-card:nth-child(3) { transition-delay: 0.15s; }
.animate-on-scroll.visible .hm-service-card:nth-child(4),
.animate-on-scroll.visible .hm-process__step:nth-child(4) { transition-delay: 0.2s; }

/* ================================================================
   UTILITIES
   ================================================================ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }

/* ================================================================
   RESPONSIVE OVERRIDES
   ================================================================ */
@media (max-width: 767px) {
    .section { padding: 48px 0; }

    .hm-hero__stats {
        gap: 12px;
    }
    .hm-hero__stat-num {
        font-size: 24px;
    }

    .hm-services__grid {
        grid-template-columns: 1fr;
    }

    .hm-about__highlights {
        grid-template-columns: 1fr;
    }

    .hm-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .hm-cta__actions {
        flex-direction: column;
        align-items: center;
    }

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


/* ================================================================
   PAGE HERO BANNERS (Inner Pages)
   ================================================================ */
.page-hero {
    position: relative;
    padding: 80px 0 60px;
    text-align: center;
    overflow: hidden;
}
.page-hero--compact {
    padding: 40px 0 30px;
}
.page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.page-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}
.page-hero__inner {
    position: relative;
    z-index: 10;
}
.page-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.15;
}
.page-hero__desc {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}
.breadcrumb a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition-fast);
}
.breadcrumb a:hover {
    color: var(--green-light);
}
.breadcrumb__sep {
    color: rgba(255,255,255,0.3);
}
.breadcrumb__current {
    color: var(--green-light);
    font-weight: 500;
}

/* ================================================================
   ABOUT PAGE — VALUES GRID
   ================================================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-base);
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green);
}
.value-card__icon {
    font-size: 40px;
    margin-bottom: 16px;
    line-height: 1;
}
.value-card__title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 10px;
}
.value-card__desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ================================================================
   ABOUT PAGE — TEAM GRID
   ================================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-base);
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green);
}
.team-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-green);
}
.team-card__initial {
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
}
.team-card__name {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 4px;
}
.team-card__role {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 12px;
}
.team-card__bio {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    text-align: center;
}
.stats-bar__num {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}
.stats-bar__label {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}

/* ================================================================
   SERVICES PAGE — FULL GRID
   ================================================================ */
.services-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}
.service-full-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    text-decoration: none;
}
.service-full-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green);
}
.service-full-card__icon-wrap {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-full-card__icon {
    font-size: 32px;
    line-height: 1;
}
.service-full-card__content {
    flex: 1;
}
.service-full-card__title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 8px;
}
.service-full-card__desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}
.service-full-card__link {
    font-size: 14px;
    font-weight: 700;
    color: var(--green-dark);
}
.service-full-card:hover .service-full-card__link {
    color: var(--green);
}

@media (max-width: 767px) {
    .services-full-grid {
        grid-template-columns: 1fr;
    }
    .service-full-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ================================================================
   SERVICE DETAIL PAGE
   ================================================================ */
.service-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 768px) {
    .service-detail {
        grid-template-columns: 2fr 1fr;
        gap: 48px;
    }
}
.service-detail__icon-large {
    font-size: 64px;
    line-height: 1;
    margin-bottom: 20px;
}
.service-detail__body {
    margin-bottom: 32px;
}
.service-detail__body p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}
.service-detail__features {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-bottom: 32px;
}
.service-detail__features h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 16px;
}
.service-detail__features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.service-detail__features li {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.5;
}
.service-detail__cta-box {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    border-radius: var(--radius-md);
    padding: 32px;
    color: var(--white);
}
.service-detail__cta-box h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}
.service-detail__cta-box p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

/* ================================================================
   SIDEBAR CARDS
   ================================================================ */
.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 20px;
}
.sidebar-card--green {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border: none;
}
.sidebar-card__title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 16px;
}
.sidebar-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sidebar-card__link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}
.sidebar-card__link:hover {
    background: var(--cream);
    color: var(--green-dark);
}

/* ================================================================
   PROJECTS PAGE
   ================================================================ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 28px;
}
@media (max-width: 767px) {
    .projects-grid { grid-template-columns: 1fr; }
}
.project-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}
.project-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--green);
}
.project-card__image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.project-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
}
.project-card__content {
    padding: 24px;
}
.project-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.project-card__tag {
    background: var(--cream);
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
}
.project-card__location {
    font-size: 13px;
    color: var(--text-muted);
}
.project-card__title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 10px;
}
.project-card__desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}
.project-card__details {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}
.project-card__detail-label {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.project-card__detail-value {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-dark);
}

/* Project expandable */
.project-card__expandable {}
.project-card__toggle {
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-dark);
    cursor: pointer;
    transition: all var(--transition-fast);
    width: 100%;
}
.project-card__toggle:hover {
    background: var(--cream);
}
.project-card__expand-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.project-card__expandable.open .project-card__expand-content {
    max-height: 600px;
}
.project-card__expandable.open .project-card__toggle {
    border-color: var(--green);
    color: var(--green);
}
.project-card__section {
    padding: 16px 0 0;
}
.project-card__section h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 6px;
}
.project-card__section p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ================================================================
   BLOG PAGE
   ================================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}
@media (max-width: 767px) {
    .blog-grid { grid-template-columns: 1fr; }
}
.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    transition: all var(--transition-base);
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green);
}
.blog-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.blog-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-card__content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-muted);
}
.blog-card__category {
    background: var(--cream);
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
}
.blog-card__title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}
.blog-card__excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}
.blog-card__link {
    font-size: 14px;
    font-weight: 700;
    color: var(--green-dark);
}
.blog-card:hover .blog-card__link {
    color: var(--green);
}

/* ================================================================
   BLOG DETAIL PAGE
   ================================================================ */
.blog-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 768px) {
    .blog-detail {
        grid-template-columns: 2fr 1fr;
        gap: 48px;
    }
}
.blog-detail__header {
    margin-bottom: 32px;
}
.blog-detail__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-muted);
}
.blog-detail__title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.blog-detail__excerpt {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
    border-left: 4px solid var(--green);
    padding-left: 20px;
}

/* Prose (article body) */
.prose {
    color: var(--text-dark);
    line-height: 1.8;
}
.prose h2 {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 600;
    color: var(--navy-dark);
    margin: 32px 0 16px;
}
.prose h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--navy-dark);
    margin: 24px 0 12px;
}
.prose h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-dark);
    margin: 20px 0 8px;
}
.prose p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
}
.prose ul, .prose ol {
    margin: 16px 0;
    padding-left: 24px;
}
.prose li {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--text-muted);
    line-height: 1.7;
}
.prose strong {
    color: var(--navy-dark);
}

/* Share */
.blog-detail__share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    margin-top: 32px;
}
.blog-detail__share-links {
    display: flex;
    gap: 8px;
}

/* ================================================================
   FAQ PAGE LAYOUT
   ================================================================ */
.faq-page-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 768px) {
    .faq-page-layout {
        grid-template-columns: 2fr 1fr;
        gap: 48px;
    }
}
.faq-page-layout .hm-faq__list {
    max-width: none;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 768px) {
    .contact-layout {
        grid-template-columns: 1.3fr 1fr;
        gap: 48px;
    }
}

.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 600px) {
    .contact-form__row { grid-template-columns: 1fr; }
}
.contact-form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.contact-form__group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-dark);
}
.contact-form__input,
.contact-form__textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-size: 15px;
    font-family: var(--font-sans);
    transition: all var(--transition-fast);
    outline: none;
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
    color: var(--text-light);
}
.contact-form__input:focus,
.contact-form__textarea:focus {
    border-color: var(--green);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(232,113,58,0.15);
}
.contact-form__textarea {
    min-height: 120px;
    resize: vertical;
}
.contact-form__submit {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    margin-top: 4px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-info__card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-info__icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}
.contact-info__card h3 {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 4px;
}
.contact-info__card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}
.contact-info__card a {
    color: var(--green-dark);
    font-weight: 500;
}
.contact-info__card a:hover {
    color: var(--green);
}
.contact-info__map {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
}

/* ================================================================
   PREMIUM CONTACT PAGE DESIGN (roofingexpert.co.nz/contact-us/)
   ================================================================ */
.ct-hero {
    position: relative;
    overflow: hidden;
    background: var(--navy-dark);
    min-height: 620px;
    padding: 40px 0 60px;
}
.ct-hero__canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.ct-hero__canvas::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(12,27,51,0.95) 0%,
        rgba(19,39,68,0.88) 50%,
        rgba(12,27,51,0.80) 100%);
    z-index: 2;
}
.ct-hero__grid {
    position: absolute;
    inset: 0;
    z-index: 3;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}
.ct-hero__accent {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,113,58,0.15) 0%, transparent 70%);
    z-index: 2;
}
.ct-hero__inner {
    position: relative;
    z-index: 10;
}
.ct-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 32px;
}
.ct-hero__breadcrumb a {
    color: rgba(255,255,255,0.75);
    transition: color var(--transition-fast);
}
.ct-hero__breadcrumb a:hover {
    color: var(--green-light);
}
.ct-hero__breadcrumb em {
    color: var(--green-light);
    font-style: normal;
    font-weight: 500;
}
.ct-hero__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
@media (min-width: 1024px) {
    .ct-hero__layout {
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
    }
}
.ct-hero__left {}
.ct-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(232,113,58,0.15);
    border: 1px solid rgba(232,113,58,0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-light);
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}
.ct-hero__label-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
.ct-hero__h1 {
    font-family: var(--font-serif);
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.ct-hero__h1 em {
    color: var(--green);
    font-style: normal;
}
.ct-hero__desc {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 580px;
}
.ct-hero__quick-contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}
.ct-hero__qc {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
    text-decoration: none;
    transition: transform var(--transition-fast);
}
.ct-hero__qc:hover {
    transform: translateX(4px);
}
.ct-hero__qc-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid rgba(255,255,255,0.15);
}
.ct-hero__qc strong {
    display: block;
    font-size: 18px;
    font-family: var(--font-serif);
}
.ct-hero__qc span {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}
.ct-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.ct-hero__badge {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.06);
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Card Section */
.ct-hero__card {
    background: linear-gradient(145deg, rgba(19,39,68,0.96), rgba(12,27,51,0.98));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(232,113,58,0.25);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-xl);
}
.ct-hero__card-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-align: center;
}
.ct-hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ct-hero__stat {
    text-align: center;
}
.ct-hero__stat-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.ct-hero__stat-num span {
    color: var(--green);
}
.ct-hero__stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
    font-weight: 500;
}
.ct-hero__card-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.ct-hero__card-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-md);
    text-decoration: none;
    box-shadow: var(--shadow-green);
    transition: all var(--transition-base);
}
.ct-hero__card-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,113,58,0.55);
}
.ct-hero__card-btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.25);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-base);
}
.ct-hero__card-btn-outline:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}
.ct-hero__hours-mini {
    text-align: center;
}
.ct-hero__hours-title {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 600;
}
.ct-hero__hours-mini p:not(.ct-hero__hours-title) {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2px;
}
.ct-hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 10;
    line-height: 0;
}
.ct-hero__wave svg {
    width: 100%;
    height: 56px;
}

/* Trust Indicator */
.ct-trust {
    padding: 24px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
.ct-trust__inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.ct-trust__item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ct-trust__icon {
    font-size: 24px;
    line-height: 1;
}
.ct-trust__info {
    display: flex;
    flex-direction: column;
}
.ct-trust__info strong {
    font-size: 14px;
    color: var(--navy-dark);
}
.ct-trust__info span {
    font-size: 12px;
    color: var(--text-muted);
}
@media (max-width: 768px) {
    .ct-trust__inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .ct-trust__inner {
        grid-template-columns: 1fr;
    }
}

/* Contact Methods */
.ct-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}
.ct-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green);
    margin-bottom: 12px;
}
.ct-section-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.ct-section-title strong {
    color: var(--green-dark);
}
.ct-section-sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}
.ct-methods__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.ct-method-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    transition: all var(--transition-base);
}
.ct-method-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green);
}
.ct-method-card--highlight {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    border: none;
    color: var(--white);
}
.ct-method-card--highlight .ct-method-card__title,
.ct-method-card--highlight .ct-method-card__primary,
.ct-method-card--highlight .ct-method-card__secondary {
    color: var(--white);
}
.ct-method-card__icon {
    font-size: 36px;
    margin-bottom: 16px;
    line-height: 1;
}
.ct-method-card__title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 12px;
}
.ct-method-card__primary {
    font-size: 16px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 6px;
    word-break: break-all;
}
.ct-method-card__secondary {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex: 1;
}
.ct-method-card__btn {
    font-size: 14px;
    font-weight: 700;
    color: var(--green-dark);
    transition: color var(--transition-fast);
}
.ct-method-card:hover .ct-method-card__btn {
    color: var(--green);
}
.ct-method-card--highlight .ct-method-card__btn {
    color: var(--white);
    opacity: 0.9;
}
.ct-method-card--highlight:hover .ct-method-card__btn {
    opacity: 1;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Stats Bar */
.ct-stats {
    background: var(--navy-dark);
    padding: 48px 0;
}
.ct-stats__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    text-align: center;
}
.ct-stat-item__num {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}
.ct-stat-item__num em {
    color: var(--green);
    font-style: normal;
}
.ct-stat-item__label {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Layout Form + Sidebar */
.ct-contact__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 1024px) {
    .ct-contact__layout {
        grid-template-columns: 1.4fr 1fr;
        gap: 48px;
    }
}
.ct-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}
.ct-form-header {}
.ct-form-card {
    margin-top: 24px;
}
.ct-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ================================================================
   PREMIUM MAP SECTION STYLING (Contact Page)
   ================================================================ */
.map-section {
    position: relative;
    height: 450px;
    background: var(--navy-dark);
    margin-top: 60px;
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
}
.map-section__container {
    width: 100%;
    height: 100%;
    position: relative;
}
.map-section__iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.85) sepia(0.3) hue-rotate(75deg) saturate(1.3) contrast(1.1) brightness(0.9);
    transition: filter var(--transition-slow);
}
.map-section__iframe:hover {
    filter: none;
}
.map-section__card {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 10;
    background: rgba(19, 39, 68, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(232, 113, 58, 0.35);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 380px;
    box-shadow: var(--shadow-xl);
    color: var(--white);
}
.map-section__title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.map-section__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
}
@media (max-width: 768px) {
    .map-section {
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        margin-top: 40px;
    }
    .map-section__iframe {
        height: 320px;
    }
    .map-section__card {
        position: static;
        max-width: none;
        border-radius: 0;
        border-left: none;
        border-right: none;
        padding: 32px 20px;
    }
}

/* ================================================================
   FAQ CATEGORIES STYLING
   ================================================================ */
.faq-tabs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faq-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    border: 1px solid transparent;
    background: transparent;
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.faq-tab:hover {
    background: var(--cream);
    color: var(--green-dark);
}
.faq-tab--active {
    background: var(--cream);
    color: var(--green-dark);
    border-color: var(--green);
    box-shadow: var(--shadow-sm);
}
.faq-tab__icon {
    font-size: 16px;
    line-height: 1;
}

.faq-item__cat-badge {
    align-self: flex-start;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--green-dark);
    background: var(--cream);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
}
.faq-item__q-text {
    font-size: 16px;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .faq-page-layout {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 32px;
        align-items: start;
    }
    .faq-page__sidebar--left {
        order: 1;
    }
    .faq-page__main {
        order: 2;
    }
}
@media (max-width: 767px) {
    .faq-page-layout {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }
    .faq-tabs {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 8px;
    }
}

/* ================================================================
   ABOUT PAGE ENHANCEMENTS (ab-hero, ab-trust, ab-story, etc.)
   ================================================================ */
.ab-hero {
    position: relative;
    overflow: hidden;
    background: var(--navy-dark);
    min-height: 600px;
    padding: 40px 0 60px;
}
.ab-hero__canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.ab-hero__canvas::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(12,27,51,0.95) 0%,
        rgba(19,39,68,0.88) 50%,
        rgba(12,27,51,0.80) 100%);
    z-index: 2;
}
.ab-hero__grid {
    position: absolute;
    inset: 0;
    z-index: 3;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}
.ab-hero__accent {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,113,58,0.15) 0%, transparent 70%);
    z-index: 2;
}
.ab-hero__inner {
    position: relative;
    z-index: 10;
}
.ab-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 32px;
}
.ab-hero__breadcrumb a {
    color: rgba(255,255,255,0.75);
    transition: color var(--transition-fast);
}
.ab-hero__breadcrumb a:hover {
    color: var(--green-light);
}
.ab-hero__breadcrumb em {
    color: var(--green-light);
    font-style: normal;
    font-weight: 500;
}
.ab-hero__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
@media (min-width: 1024px) {
    .ab-hero__layout {
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
    }
}
.ab-hero__left {}
.ab-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(232,113,58,0.15);
    border: 1px solid rgba(232,113,58,0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-light);
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}
.ab-hero__label-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
.ab-hero__h1 {
    font-family: var(--font-serif);
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.ab-hero__h1 em {
    color: var(--green);
    font-style: normal;
}
.ab-hero__desc {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 580px;
}
.ab-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}
.ab-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.ab-hero__badge {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.06);
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Card Block */
.ab-hero__card {
    background: linear-gradient(145deg, rgba(19,39,68,0.96), rgba(12,27,51,0.98));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(232,113,58,0.25);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-xl);
}
.ab-hero__card-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-align: center;
}
.ab-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.ab-hero__stat {
    text-align: center;
}
.ab-hero__stat-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.ab-hero__stat-num span {
    color: var(--green);
}
.ab-hero__stat-label {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    font-weight: 500;
}
.ab-hero__checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.ab-hero__check-item {
    font-size: 13px;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
}
.ab-hero__cta-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    text-decoration: none;
    transition: all var(--transition-base);
}
.ab-hero__cta-card:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--green);
}
.ab-hero__cta-card-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}
.ab-hero__cta-card-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}
.ab-hero__cta-card-arrow {
    color: var(--green-light);
    font-weight: bold;
    font-size: 18px;
}
.ab-hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 10;
    line-height: 0;
}
.ab-hero__wave svg {
    width: 100%;
    height: 56px;
}

/* Trust Bar */
.ab-trust {
    padding: 24px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
.ab-trust__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}
.ab-trust__item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ab-trust__icon {
    font-size: 28px;
    line-height: 1;
}
.ab-trust__info {
    display: flex;
    flex-direction: column;
}
.ab-trust__info strong {
    font-size: 14px;
    color: var(--navy-dark);
}
.ab-trust__info span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Story grid */
.ab-story {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
@media (min-width: 1024px) {
    .ab-story {
        grid-template-columns: 1.2fr 1fr;
        gap: 64px;
    }
}
.ab-story__text {}
.ab-story__title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}
.ab-story__title strong {
    color: var(--green-dark);
}
.ab-story__para {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}
.ab-story__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
    margin-top: 24px;
}
.ab-story__list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}
.ab-story__list-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}
.ab-story__visual {
    position: relative;
}
.ab-story__image-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}
.ab-story__image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ab-story__badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.ab-story__badge-num {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}
.ab-story__badge-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Credentials Grid */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.credential-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    transition: all var(--transition-base);
}
.credential-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green);
}
.credential-card__icon {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 16px;
}
.credential-card h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 10px;
}
.credential-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Enhanced Team Cards */
.team-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.team-card-enhanced {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}
.team-card-enhanced:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green);
}
.team-card-enhanced__avatar {
    height: 160px;
    background: linear-gradient(135deg, var(--green-dark), var(--navy-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-card-enhanced__initial {
    font-family: var(--font-serif);
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    opacity: 0.9;
}
.team-card-enhanced__content {
    padding: 24px;
    flex: 1;
}
.team-card-enhanced__role {
    font-size: 12px;
    font-weight: 700;
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}
.team-card-enhanced__name {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 12px;
}
.team-card-enhanced__bio {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ================================================================
   COMPREHENSIVE MOBILE RESPONSIVE OVERRIDES
   ================================================================ */

/* ── Tablet (max 1024px) ── */
@media (max-width: 1023px) {
    .hm-hero__layout {
        grid-template-columns: 1fr;
    }
    .hm-hero__form-wrap {
        max-width: 500px;
        margin: 0 auto;
    }
    .ct-hero__layout {
        grid-template-columns: 1fr;
    }
    .ct-hero__card {
        max-width: 500px;
        margin: 0 auto;
    }
    .ab-hero__layout {
        grid-template-columns: 1fr;
    }
    .ab-hero__card {
        max-width: 500px;
        margin: 0 auto;
    }
    .ab-story {
        grid-template-columns: 1fr;
    }
    .service-layout {
        grid-template-columns: 1fr !important;
    }
}

/* ── Mobile (max 767px) ── */
@media (max-width: 767px) {
    /* Section spacing */
    .section {
        padding: 48px 0;
    }

    /* Topbar */
    .topbar {
        display: none;
    }

    /* Header */
    .header__inner {
        padding: 8px 0;
    }
    .header__logo-icon {
        width: 40px;
        height: 40px;
    }
    .header__logo-icon svg {
        width: 22px;
        height: 22px;
    }
    .header__logo-name {
        font-size: 15px;
    }
    .header__logo-slogan {
        font-size: 10px;
    }
    .header__cta {
        display: none;
    }

    /* Hero Section */
    .hm-hero {
        min-height: auto;
    }
    .hm-hero__inner {
        padding: 40px 0 60px;
    }
    .hm-hero__h1 {
        font-size: clamp(26px, 7vw, 36px);
    }
    .hm-hero__desc {
        font-size: 15px;
    }
    .hm-hero__checklist {
        margin-bottom: 20px;
    }
    .hm-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hm-hero__actions .hm-btn-primary,
    .hm-hero__actions .hm-btn-ghost {
        justify-content: center;
        text-align: center;
    }
    .hm-hero__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .hm-hero__stat-num {
        font-size: 24px;
    }
    .hm-hero__stat-label {
        font-size: 10px;
    }
    .hm-hero__form-wrap {
        padding: 20px 16px;
    }

    /* Trust Bar */
    .hm-trust__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .hm-trust__item {
        gap: 8px;
    }
    .hm-trust__icon {
        font-size: 22px;
    }
    .hm-trust__info strong {
        font-size: 13px;
    }
    .hm-trust__info span {
        font-size: 11px;
    }

    /* Section Headings */
    .hm-section-title {
        font-size: clamp(22px, 6vw, 32px);
    }
    .hm-section-sub {
        font-size: 15px;
    }
    .hm-section-head {
        margin-bottom: 32px;
    }

    /* Services Grid */
    .hm-services__grid {
        grid-template-columns: 1fr;
    }
    .hm-service-card {
        padding: 20px 18px;
    }

    /* About Section */
    .hm-about__highlights {
        grid-template-columns: 1fr;
    }
    .hm-about__badge {
        bottom: -12px;
        left: -8px;
        padding: 12px 18px;
    }
    .hm-about__badge-num {
        font-size: 28px;
    }

    /* Process Grid */
    .hm-process__grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .hm-testimonials__grid {
        grid-template-columns: 1fr;
    }
    .hm-testimonial-card {
        padding: 20px;
    }

    /* FAQ */
    .hm-faq__question {
        padding: 14px 16px;
        font-size: 14px;
    }
    .hm-faq__answer {
        padding: 0 16px;
    }
    .hm-faq__item--open .hm-faq__answer {
        padding: 0 16px 16px;
    }

    /* CTA */
    .hm-cta {
        padding: 48px 0;
    }
    .hm-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hm-cta__actions .hm-btn-primary,
    .hm-cta__actions .hm-btn-ghost {
        justify-content: center;
        text-align: center;
    }

    /* Footer */
    .footer {
        padding: 40px 0 0;
    }
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer__col-title {
        font-size: 16px;
        margin-bottom: 14px;
    }
    .footer__map iframe {
        height: 180px !important;
    }

    /* Page Hero Banners */
    .page-hero {
        padding: 48px 0 36px;
    }
    .page-hero__title {
        font-size: clamp(24px, 7vw, 36px);
    }
    .page-hero__desc {
        font-size: 14px;
    }
    .breadcrumb {
        font-size: 12px;
        flex-wrap: wrap;
    }

    /* Services Full Grid */
    .services-full-grid {
        grid-template-columns: 1fr;
    }
    .service-full-card {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Blog Grid */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Blog Detail */
    .blog-detail {
        grid-template-columns: 1fr;
    }
    .blog-detail__title {
        font-size: clamp(22px, 6vw, 30px);
    }

    /* Projects Grid */
    .projects-grid {
        grid-template-columns: 1fr;
    }

    /* Values & Team */
    .values-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .credentials-grid {
        grid-template-columns: 1fr;
    }
    .team-grid-enhanced {
        grid-template-columns: 1fr;
    }

    /* Stats Bar */
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Contact Page Hero */
    .ct-hero {
        min-height: auto;
        padding: 32px 0 48px;
    }
    .ct-hero__h1 {
        font-size: clamp(26px, 7vw, 36px);
    }
    .ct-hero__desc {
        font-size: 14px;
    }
    .ct-hero__qc-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .ct-hero__qc strong {
        font-size: 15px;
    }
    .ct-hero__card {
        padding: 24px 16px;
    }
    .ct-hero__stat-num {
        font-size: 24px;
    }

    /* Contact Methods */
    .ct-methods__grid {
        grid-template-columns: 1fr;
    }

    /* Contact Form */
    .ct-form-wrap {
        padding: 24px 16px;
    }
    .contact-form-wrap {
        padding: 24px 16px;
    }
    .contact-form__row {
        grid-template-columns: 1fr;
    }

    /* Contact Stats */
    .ct-stats__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .ct-stat-item__num {
        font-size: 28px;
    }

    /* Map Section */
    .map-section {
        height: auto;
        margin-top: 32px;
    }
    .map-section__iframe {
        height: 260px;
    }
    .map-section__card {
        position: static;
        max-width: none;
        border-radius: 0;
        padding: 24px 16px;
    }

    /* About Hero */
    .ab-hero {
        min-height: auto;
        padding: 32px 0 48px;
    }
    .ab-hero__h1 {
        font-size: clamp(26px, 7vw, 36px);
    }
    .ab-hero__desc {
        font-size: 14px;
    }
    .ab-hero__card {
        padding: 24px 16px;
    }
    .ab-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .ab-hero__actions .hm-btn-primary,
    .ab-hero__actions .hm-btn-ghost {
        justify-content: center;
        text-align: center;
    }

    /* About Story */
    .ab-story__title {
        font-size: clamp(22px, 6vw, 30px);
    }
    .ab-story__badge {
        bottom: -12px;
        left: -8px;
        padding: 12px 18px;
    }
    .ab-story__badge-num {
        font-size: 26px;
    }
    .ab-story__list {
        grid-template-columns: 1fr;
    }

    /* About Trust */
    .ab-trust__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    /* FAQ Page Layout */
    .faq-page-layout {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .faq-tabs {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 6px;
    }
    .faq-tab {
        padding: 10px 12px;
        font-size: 13px;
    }

    /* Service Detail Page */
    .service-hero {
        padding: 48px 0 36px;
    }
    .service-hero__title {
        font-size: clamp(24px, 7vw, 34px);
    }
    .service-hero__desc {
        font-size: 15px;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .benefit-card {
        padding: 20px;
    }
    .included-grid {
        grid-template-columns: 1fr;
    }
    .service-cta {
        padding: 24px 16px;
    }

    /* Buttons */
    .hm-btn-primary {
        padding: 12px 24px;
        font-size: 14px;
    }
    .hm-btn-ghost {
        padding: 12px 20px;
        font-size: 14px;
    }
    .hm-btn-outline {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ── Small Mobile (max 480px) ── */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hm-hero__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .hm-hero__stat-num {
        font-size: 20px;
    }

    .hm-trust__inner {
        grid-template-columns: 1fr;
    }

    .ct-hero__stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .ct-hero__stat-num {
        font-size: 22px;
    }
    .ct-hero__breadcrumb {
        font-size: 12px;
        flex-wrap: wrap;
    }

    .ab-hero__stats {
        gap: 12px;
    }
    .ab-hero__stat-num {
        font-size: 24px;
    }
    .ab-hero__breadcrumb {
        font-size: 12px;
        flex-wrap: wrap;
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .stats-bar__num {
        font-size: clamp(26px, 6vw, 36px);
    }

    .ct-stats__inner {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .ct-stat-item__num {
        font-size: 24px;
    }

    .ab-trust__inner {
        grid-template-columns: 1fr;
    }

    .ct-trust__inner {
        grid-template-columns: 1fr;
    }

    .footer__social {
        justify-content: flex-start;
    }

    .timeline-step {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .timeline-step__num {
        margin: 0 auto;
    }

    .sidebar-services-list .sidebar-service-link {
        font-size: 13px;
        padding: 10px 12px;
    }
}
