/* ============================================================
   MULTIJET — Vishnu Suresh
   Pixel-Perfect Editorial Design System (Reference Image Spec)
   Palette: Dark Navy (#06101E) / Gold (#D4A853) / Cream (#F6F4EF)
   ============================================================ */

:root {
    /* Core Colors */
    --bg-navy: #050c18;
    --bg-navy-card: #0b1524;
    --bg-cream: #f6f4ef;
    --bg-white: #ffffff;

    /* Text Colors */
    --text-dark: #121820;
    --text-muted: #5a6472;
    --text-light: #e4e8ee;
    --text-dim: #94a0b0;

    /* Gold Accent Palette */
    --gold: #d4a853;
    --gold-light: #e3be70;
    --gold-dark: #b88e3a;
    --gold-bg-subtle: #faf6ed;
    --gold-border: rgba(212, 168, 83, 0.35);

    /* Typography */
    --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
    --font-sans:
        "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;

    /* Layout & Spacing */
    --max-width: 1240px;
    --header-height: 72px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Reset & Global Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-cream);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   SITE HEADER & NAVIGATION
   ============================================================ */
.site-header {
    background-color: var(--bg-navy);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.brand-text {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: #ffffff;
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 36px;
}

.main-nav a {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    padding: 8px 0;
    position: relative;
    transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ffffff;
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO SECTIONS (DARK NAVY)
   ============================================================ */
.hero-section {
    background-image: url("images/hero-bg-home.webp");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
    padding: 60px 0 0 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    padding-bottom: 60px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 18px;
}

.hero-subtitle .dot {
    margin: 0 6px;
    color: var(--gold);
}

.hero-role {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 14px;
}

.hero-desc {
    font-size: 15px;
    color: var(--text-dim);
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.hero-desc-lead {
    font-size: 16px;
    color: var(--text-dim);
    max-width: 540px;
    line-height: 1.6;
}

.hero-cta-btns {
    display: flex;
    gap: 16px;
}

.hero-img-frame {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 16 / 10;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   STATS BAR (HOMEPAGE)
   ============================================================ */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background-color: #000c20;
    border-top: 1px solid rgb(255 255 255 / 0%);
    padding: 40px 32px;
}

.stats-bar-footer {
    background-color: transparent;
    border-top: none;
    padding: 40px 0 0 0;
    margin-top: 4px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-left: 20px;
}

.stat-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.12);
}

.stat-card:first-child {
    padding-left: 0;
}

.stat-card:first-child::before {
    display: none;
}

@media (max-width: 1024px) {
    .stat-card {
        padding-left: 0;
    }
    .stat-card::before {
        display: none;
    }
}

.stat-icon {
    width: 32px;
    height: 32px;
    color: var(--gold);
    margin-bottom: 12px;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.4;
}

/* ============================================================
   SELECTED CLIENT FEEDBACK SECTION
   ============================================================ */
.feedback-section {
    background-color: var(--bg-cream);
    padding: 80px 0;
}

.feedback-heading-row {
    display: flex;
    justify-content: center;
}

.section-heading-centered {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 48px;
}

.feedback-carousel-viewport {
    overflow: hidden;
}

.feedback-grid {
    display: flex;
    gap: 24px;
    transition: transform 0.55s ease;
    will-change: transform;
}

.feedback-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
}

.feedback-carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 22px;
}

.feedback-carousel-button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--gold-border);
    border-radius: 50%;
    background-color: var(--bg-white);
    color: var(--gold-deep);
    cursor: pointer;
    font-size: 21px;
    line-height: 1;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.feedback-carousel-button:hover,
.feedback-carousel-button:focus-visible {
    background-color: var(--gold);
    color: var(--bg-navy);
    transform: translateY(-2px);
}

.feedback-carousel-button:focus-visible {
    outline: 2px solid var(--gold-deep);
    outline-offset: 3px;
}

.feedback-card {
    background-color: var(--bg-white);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.feedback-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.feedback-rating-row,
.g-rating-row {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 10px;
}

.feedback-date {
    margin-left: auto;
    color: #000000;
    font-size: 11px;
    letter-spacing: 0;
    white-space: nowrap;
}

.stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
}

.quote-mark-icon {
    font-family: var(--font-serif);
    font-size: 28px;
    color: rgba(212, 168, 83, 0.4);
    line-height: 1;
}

.feedback-quote {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    overflow-wrap: anywhere;
}

.feedback-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: -4px 0 18px;
}

.feedback-highlight {
    border: 1px solid var(--gold-border);
    border-radius: 999px;
    color: var(--gold-deep);
    background-color: rgba(212, 168, 83, 0.08);
    font-size: 11px;
    line-height: 1.3;
    padding: 5px 9px;
}

.feedback-author-row {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.author-highlight {
    color: var(--gold-deep);
    background: linear-gradient(
        180deg,
        rgba(212, 168, 83, 0.12),
        rgba(212, 168, 83, 0.02)
    );
    border-radius: 6px;
    padding: 2px 6px;
    box-shadow: inset 0 0 0 1px rgba(212, 168, 83, 0.14);
}

.author-loc {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ============================================================
   NEED HELP CTA BANNER
   ============================================================ */
.cta-banner-section {
    background-color: var(--bg-cream);
    padding-bottom: 80px;
}

.cta-banner-box {
    background-color: var(--bg-navy);
    border-radius: var(--radius-lg);
    padding: 36px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.cta-icon-circle svg {
    width: 26px;
    height: 26px;
}

.cta-text h3 {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.cta-text p {
    font-size: 14px;
    color: var(--text-dim);
}

.btn-gold-fill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gold);
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.btn-gold-fill:hover {
    background-color: var(--gold-light);
    transform: translateY(-1px);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
}

.btn-outline-light:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: #000000;
}

.btn-outline-gold-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
}

.btn-outline-gold-lg:hover {
    background-color: var(--gold);
    color: #000000;
}

/* ============================================================
   EXPERIENCE PAGE SPECIFICS
   ============================================================ */
.hero-experience {
    background-image: url("images/herobackgound.png");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 40px;
}

.map-graphic-container {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.australia-map-svg {
    width: 100%;
    height: 100%;
    max-width: 480px;
}

.timeline-section {
    background-color: var(--bg-cream);
    padding: 80px 0;
}

.experience-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    align-items: start;
}

.timeline-line {
    position: absolute;
    top: 24px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    width: auto;
    bottom: auto;
    background-color: var(--gold);
    z-index: 1;
}

.exp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 0;
    position: relative;
}

.exp-item:last-child {
    margin-bottom: 0;
}

.exp-left {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.exp-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--gold);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    z-index: 2;
}

.exp-icon-circle svg {
    width: 22px;
    height: 22px;
}

.exp-year {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
}

.exp-body {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
    flex-grow: 1;
    width: 100%;
}

.exp-title {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.exp-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.exp-location {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    color: var(--gold-dark);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
}

.exp-location:hover,
.exp-location:focus-visible {
    color: var(--text-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.exp-location svg {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.qualifications-section {
    background-color: var(--bg-navy);
    color: #ffffff;
    padding: 60px 0;
}

.qualifications-heading {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.qual-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--bg-navy-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 24px;
}

.qual-icon {
    width: 44px;
    height: 44px;
    color: var(--gold);
    flex-shrink: 0;
}

.qual-icon svg {
    width: 100%;
    height: 100%;
}

.qual-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.qual-text h4 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.qual-text p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.4;
}

/* ============================================================
   CLIENT STORIES / PROJECTS PAGE SPECIFICS
   ============================================================ */
.projects-section {
    background-color: var(--bg-cream);
    padding: 60px 0;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 48px;
}

.page-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.page-subtitle {
    font-size: 16px;
    color: var(--text-muted);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.project-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.project-img-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
}

.project-image-trigger {
    cursor: pointer;
}

.project-image-trigger:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: -3px;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.project-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-title {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.project-quote {
    font-size: 13.5px;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 12px 0 16px 0;
    flex-grow: 1;
}

.project-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.pill {
    font-size: 11px;
    font-weight: 500;
    background-color: #f0eadf;
    color: #554838;
    padding: 4px 8px;
    border-radius: 4px;
}

.project-outcome {
    font-size: 12.5px;
    color: var(--text-muted);
    border-top: 1px solid #efeae0;
    padding-top: 12px;
}

.project-client {
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 12px;
}

.project-location {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 12px;
}

.earlier-feedback-section {
    background-color: var(--bg-cream);
    padding: 40px 0 31px 0;
}

.section-header-left {
    margin-bottom: 32px;
}

.section-title-md {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.section-desc-sm {
    font-size: 14px;
    color: var(--text-muted);
}

.reviews-carousel {
    position: relative;
    padding: 0 48px;
    margin-bottom: 40px;
}

.google-reviews-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
}

.google-reviews-grid::-webkit-scrollbar {
    display: none;
}

.g-review-card {
    background-color: var(--bg-white);
    border: 1px solid #efeae0;
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    flex: 0 0 calc((100% - 32px) / 3);
    min-width: 0;
    min-height: 215px;
    scroll-snap-align: start;
}

.reviews-carousel-button {
    position: absolute;
    top: 50%;
    z-index: 1;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(180, 145, 70, 0.45);
    border-radius: 50%;
    color: var(--gold-deep);
    background: var(--bg-white);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.reviews-carousel-button:hover,
.reviews-carousel-button:focus-visible {
    color: var(--white);
    background: var(--gold);
    outline: none;
}

.reviews-carousel-prev {
    left: 0;
}

.reviews-carousel-next {
    right: 0;
}

.reviews-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 18px;
}

.reviews-carousel-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(155, 131, 84, 0.35);
    cursor: pointer;
}

.reviews-carousel-dot.is-active {
    background: var(--gold-deep);
    transform: scale(1.25);
}

.g-review-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.g-card-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.g-rating-row {
    justify-content: space-between;
}

.g-icon {
    font-weight: 800;
    color: #4285f4;
    font-size: 14px;
}

.g-author {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.g-snippet {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 8px 0 12px 0;
    flex-grow: 1;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.g-link {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
}

.view-more-container {
    text-align: center;
     margin-top: 35px;
}

/* ============================================================
   ENQUIRIES / CONTACT PAGE SPECIFICS
   ============================================================ */
.connect-section {
    background-color: var(--bg-cream);
    padding: 0 0 60px 0;
}

.connect-title {
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.connect-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    background-color: var(--gold);
}

/* Full-screen hero intro, same treatment as the homepage .hero-section */
.connect-intro {
    background-image: url(images/contact.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 43vh;
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.connect-intro .wrap {
    /* stop the flex auto-margin from re-centering the wrap; keep text left-aligned */
    width: 100%;
}

.connect-intro .page-title,
.connect-intro .page-subtitle {
    color: #ffffff;
    text-align: left;
    max-width: 560px;
}

@media (max-width: 900px) {
    .connect-intro {
        /* background-image: none;
        background-color: var(--bg-navy);
        min-height: auto;
        padding: 60px 0;
        margin-bottom: 40px; */
        background-image: url(images/contact.webp);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 43vh;
        display: flex;
        align-items: center;
        margin-bottom: 60px;
    }
}

/* 3-up top info cards (Residential Energy / Business / Other Ways) */
.connect-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

@media (max-width: 900px) {
    .connect-cards-row {
        grid-template-columns: 1fr;
    }
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 28px;
    }
    .location-item:nth-child(3) {
        padding-left: 24px;
    }
}

.connect-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.connect-card-heading {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.connect-card-heading .ch-title {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.connect-card-heading .ch-subtitle {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--gold-dark);
}

.connect-card-rows {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.connect-card-rows li {
    font-size: 13.5px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.connect-card-rows a {
    color: var(--text-dark);
    font-weight: 600;
}

.connect-card-rows a:hover {
    color: var(--gold-dark);
}

.ico-plain {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.ico-plain svg {
    width: 100%;
    height: 100%;
}

/* Support Team section */
.team-section-intro {
    margin-bottom: 24px;
}

.team-title {
    font-size: 26px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .locations-title {
        margin-bottom: 28px;
    }
    .locations-grid {
        grid-template-columns: 1fr;
        row-gap: 0;
    }
    .location-item,
    .location-item:nth-child(3) {
        min-height: auto;
        padding: 24px;
        border-top: 1px solid #efeae0;
    }
    .location-item:first-child {
        padding-top: 24px;
        border-top: 0;
    }
}

.team-card {
    background-color: var(--bg-white);
    border: 1px solid #efeae0;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.team-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--gold-bg-subtle);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 16px;
}

.team-name {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.team-role {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 16px;
}

.team-divider {
    border-top: 1px solid #efeae0;
    margin-bottom: 14px;
}

.team-email {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-dark);
    word-break: break-all;
}

.team-email svg {
    width: 15px;
    height: 15px;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.team-email:hover {
    color: var(--gold-dark);
}

.locations-section {
    margin: 8px 0 48px;
    padding: 0 0 36px;
    border-bottom: 1px solid #e4e1dc;
}

.locations-title {
    position: relative;
    width: fit-content;
    margin-bottom: 58px;
    padding-bottom: 14px;
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 500;
    color: var(--text-dark);
}

.locations-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    background-color: var(--gold);
}

.locations-heading-address {
    margin: -38px 0 34px;
    width: 100%;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
    text-align: justify;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.location-item {
    min-height: 180px;
    padding: 28px 24px;
    display: block;
    background-color: var(--bg-white);
    border: 1px solid #efeae0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    color: inherit;
    text-decoration: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.location-item:hover,
.location-item:focus-visible {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    outline: none;
}

.location-item:first-child {
    padding-left: 24px;
}

.location-name {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
}

.location-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

.location-icon svg {
    width: 100%;
    height: 100%;
}

.location-label {
    display: block;
    margin: 0 0 28px 28px;
    color: #6c9fe0;
    font-size: 11px;
    letter-spacing: 0.8px;
}

.location-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
}

.locations-description {
    margin: 34px 0 0;
    width: 100%;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}

.connect-card {
    background-color: var(--bg-white);
    border: 1px solid #efeae0;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.connect-card-contact {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.connect-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--gold-bg-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.connect-card-icon-plain {
    width: 26px;
    height: 26px;
    background: none;
    border-radius: 0;
    color: var(--gold-dark);
    margin-top: 2px;
}

.connect-card-icon svg {
    width: 22px;
    height: 22px;
}

.connect-card-icon-plain svg {
    width: 100%;
    height: 100%;
}

.connect-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.connect-email {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    word-break: normal;
    overflow-wrap: normal;
    white-space: nowrap;
}

@media (max-width: 400px) {
    .connect-email {
        white-space: normal;
        overflow-wrap: break-word;
    }
}

.connect-card-title {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.connect-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.connect-info-list li {
    font-size: 13px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.connect-info-list .ico {
    color: var(--gold-dark);
}

.ico-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 5px;
    background-color: var(--bg-navy);
    color: #ffffff;
    flex-shrink: 0;
}

.ico-badge svg {
    width: 12px;
    height: 12px;
}

.team-sub {
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 12px;
}

.team-reassurance {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-dark);
}

.connect-bottom-banner {
    background-color: var(--bg-navy);
    color: #ffffff;
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.banner-icon {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.banner-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.banner-text p {
    font-size: 12px;
    color: var(--text-dim);
}

.banner-separator {
    display: inline-block;
    margin: 0 8px;
    color: var(--gold);
}

.enquiry-section {
    background-color: var(--bg-cream);
    padding: 0 0 80px 0;
}

.enquiry-header {
    margin-bottom: 32px;
}

.enquiry-title {
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
    margin-bottom: 14px;
}

.enquiry-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background-color: var(--gold);
}

.enquiry-form-card {
    background-color: var(--bg-white);
    color: #000000;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    max-width: 720px;
    margin: 0 auto;
}

.form-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 13.5px;
    color: #454a50;
    margin-bottom: 24px;
    line-height: 1.5;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 600px) {
    .form-group-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 12.5px;
    font-weight: 600;
    color: #000000;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid rgb(22 22 22 / 31%);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-family: var(--font-sans);
    font-size: 14px;
    color: #1e1e1e;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4a853' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 38px;
    cursor: pointer;
}

.form-group select:invalid {
    color: #7a8088;
}

.form-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.form-checkbox-group input {
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
}

.form-checkbox-group label {
    font-size: 12.5px;
    color: var(--text-dim);
}

.btn-submit-full {
    width: 100%;
    padding: 14px;
    margin-top: 8px;
}

/* ============================================================
   GOOGLE REVIEW MODAL POPUP
   ============================================================ */
.g-modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.g-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.g-modal-container {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.g-modal-content {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.g-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
}

.g-modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    font-size: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.g-modal-prev {
    left: -60px;
}
.g-modal-next {
    right: -60px;
}

.g-modal-header {
    margin-bottom: 20px;
}

.g-logo-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.g-logo-multicolor {
    font-weight: 800;
    font-size: 20px;
    color: #4285f4;
}

.g-logo-text {
    font-weight: 600;
    font-size: 15px;
    color: #5f6368;
}

.g-modal-author {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.g-modal-time {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.g-modal-stars {
    margin-bottom: 16px;
}

.g-modal-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 24px;
}

.g-modal-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: -8px;
    margin-bottom: 10px;
}

.g-modal-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}

.g-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #efeae0;
    padding-top: 16px;
}

.g-modal-location {
    font-size: 13px;
    color: var(--text-muted);
}

.g-modal-link {
    font-size: 13px;
    font-weight: 600;
    color: #4285f4;
}

/* ============================================================
   PROJECT IMAGE LIGHTBOX
   ============================================================ */
.project-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(5, 12, 24, 0.92);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.project-lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.project-lightbox-content {
    position: relative;
    width: min(100%, 980px);
    max-height: 100%;
    text-align: center;
}

.project-lightbox-image {
    display: block;
    width: 100%;
    max-height: calc(100vh - 150px);
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.project-lightbox-close,
.project-lightbox-arrow {
    position: absolute;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    background: rgba(5, 12, 24, 0.7);
    cursor: pointer;
}

.project-lightbox-close {
    top: -18px;
    right: -18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
}

.project-lightbox-arrow {
    top: 50%;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 32px;
    line-height: 1;
    transform: translateY(-50%);
}

.project-lightbox-prev {
    left: -62px;
}

.project-lightbox-next {
    right: -62px;
}

.project-lightbox-close:hover,
.project-lightbox-close:focus-visible,
.project-lightbox-arrow:hover,
.project-lightbox-arrow:focus-visible {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-navy);
}

.project-lightbox-caption {
    margin-top: 14px;
    color: #ffffff;
}

.project-lightbox-caption h2 {
    margin-bottom: 4px;
    font-family: var(--font-sans);
    font-size: 18px;
}

.project-lightbox-caption p {
    color: var(--gold-light);
    font-size: 13px;
}

.project-lightbox-caption span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
    background-color: var(--bg-navy);
    color: #ffffff;
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: #ffffff;
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 14px;
}

.footer-bio {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 360px;
}

.footer-copy-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-sub {
    font-size: 13.5px;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 18px 0;
}

.footer-line-dim {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 18px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-list li {
    font-size: 13.5px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-list .ico {
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-list .ico svg {
    width: 18px;
    height: 18px;
    display: block;
}

.footer-list .ico.ico-linkedin {
    width: 20px;
    height: 20px;
    background: var(--gold);
    color: var(--bg-navy);
    font-weight: 800;
    font-size: 10.5px;
    border-radius: 4px;
    font-family: var(--font-sans);
}

.footer-logo .brand-logo {
    border-radius: 0;
    object-fit: contain;
    background: none;
}

.footer-list a:hover {
    color: #ffffff;
}

.footer-offices {
    font-size: 13.5px;
    color: var(--text-dim);
    line-height: 1.5;
    margin-bottom: 16px;
}

.footer-offices .muted {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    text-align: center;
}

.footer-motto {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-motto .footer-dot {
    margin: 0 2px;
}

.footer-powered-link {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: underline;
}

.footer-powered-link:hover {
    color: var(--gold);
}

.footer-privacy-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
}

.footer-privacy-link:hover {
    color: var(--gold);
}

/* ============================================================
   RESPONSIVE DESIGN (MOBILE & TABLET BREAKPOINTS)
   ============================================================ */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .feedback-grid,
    .projects-grid,
    .qualifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feedback-card {
        flex-basis: calc((100% - 24px) / 2);
    }
    .experience-timeline {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 48px;
    }
    .timeline-line {
        display: none;
    }
    .g-review-card {
        flex-basis: calc((100% - 16px) / 2);
    }
    .connect-cards-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--bg-navy);
        padding: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }
    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }
    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 38px;
    }
    .hero-section {
        background-image: url(images/hero-bg-home.webp);
        /* background-image: none; */
        background-color: var(--bg-navy);
        position: relative;
    }

    .hero-experience {
        background-image: url(images/herobackgound.png);
        /* background-image: none; */
        background-color: var(--bg-navy);
        position: relative;
    }
    .hero-section::before,
    .hero-experience::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
            120% 80% at 100% 0%,
            rgba(212, 168, 83, 0.08),
            transparent 60%
        );
        pointer-events: none;
    }
    .cta-banner-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .feedback-grid,
    .projects-grid,
    .qualifications-grid,
    .stats-bar {
        grid-template-columns: 1fr;
    }
    .feedback-card {
        flex-basis: 100%;
    }
    .reviews-carousel {
        padding: 0 42px;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .connect-bottom-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .locations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .location-item {
        min-height: 170px;
        padding: 22px 20px;
    }

    .location-item:first-child {
        padding-left: 20px;
    }

    .location-label {
        margin-left: 28px;
    }

    .banner-left {
        min-width: 0;
    }

    .banner-text {
        min-width: 0;
    }

    .banner-text p {
        line-height: 1.5;
    }

    .banner-right,
    .banner-right .btn {
        width: 100%;
    }

    .banner-right .btn {
        justify-content: center;
        text-align: center;
    }

    .experience-timeline {
        grid-template-columns: 1fr;
        row-gap: 32px;
    }
    .project-lightbox {
        position: fixed;
        inset: 0;
        z-index: 2100;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 70px;
        background: rgba(5, 12, 24, 0.92);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
    }
}

@media (max-width: 576px) {
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .reviews-carousel {
        padding: 0 38px;
    }
    .g-review-card {
        flex-basis: 100%;
    }
    .reviews-carousel-button {
        width: 32px;
        height: 32px;
        font-size: 24px;
    }
    .g-modal-prev {
        left: -10px;
    }
    .g-modal-next {
        right: -10px;
    }

    .locations-section {
        margin-bottom: 36px;
        padding-bottom: 28px;
    }

    .locations-title {
        margin-bottom: 28px;
        font-size: 26px;
    }

    .locations-heading-address {
        margin: -14px 0 24px;
        text-align: left;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .location-item,
    .location-item:first-child {
        min-height: auto;
        padding: 20px;
    }

    .location-label {
        margin-bottom: 18px;
    }

    .connect-bottom-banner {
        padding: 20px;
    }

    .banner-left {
        align-items: flex-start;
    }

    .banner-icon {
        flex: 0 0 32px;
    }
}

/* ============================================================
   SCROLL-REVEAL MOTION (feedback / project / review cards)
   Cards start hidden + shifted down; .in-view (added by
   assets/script.js via IntersectionObserver) fades + slides
   them into place, staggered by --reveal-i (their position
   within the grid).
   ============================================================ */
.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
    transition-delay: calc(var(--reveal-i, 0) * 90ms);
}

.reveal-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-up {
        transition: opacity 0.3s ease;
        transform: none;
    }
}

/* Gentle hover lift to match the motion language elsewhere on
   the cards that didn't already have one. */
.feedback-card,
.project-card {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.feedback-card:hover,
.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

@media (prefers-reduced-motion: reduce) {
    .feedback-card,
    .project-card,
    .g-review-card {
        transition: none;
    }
    .feedback-card:hover,
    .project-card:hover,
    .g-review-card:hover {
        transform: none;
    }
}
