/* ============================================================
   Construction Page Styles
   ============================================================ */

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

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
    --brand-orange: #fa611e;
    --brand-orange-light: #fff3ee;
    --brand-orange-hover: #e0521a;
    --text-dark: #1a1a1a;
    --text-muted: #666;
    --text-body: #444;
    --border-light: #e8e8e8;
    --bg-gray: #f5f5f5;
    --sidebar-border: #e0e0e0;
}

/* ── Construction Header: orange Login (matches homepage pattern) ── */
.construction-page-header .construction-header-auth:not([hidden]) {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.construction-page-header .construction-header-auth[hidden] {
    display: none !important;
}

.construction-page-header .construction-header-auth a {
    color: #000 !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}

.construction-page-header .construction-header-auth a:hover {
    color: var(--brand-orange-hover) !important;
}

.construction-page-header .construction-header-auth a i {
    color: #000 !important;
    margin-right: 5px;
    font-size: 15px;
}

.construction-page-header .construction-header-auth-link,
.construction-page-header .construction-header-auth-link i {
    color: var(--brand-orange) !important;
}

.construction-page-header .construction-header-auth-link:hover,
.construction-page-header .construction-header-auth-link:hover i {
    color: var(--brand-orange-hover) !important;
}

@media (max-width: 991px) {
    .construction-page-header .city-top-bar__right #construction-header-auth-guest,
    .construction-page-header .city-top-bar__right #construction-header-auth-user {
        display: none !important;
    }
    .city-page-header .city-top-bar__right {
        gap: 44px;
    }
}

/* ── Page Wrapper ───────────────────────────────────────────── */
.construction-page {
    background: #fff;
    min-height: 100vh;
    padding-bottom: 40px;
    font-family: 'Inter', sans-serif;
}

/* ── Page title + breadcrumb (title first, crumbs under) ── */
.construction-page-header-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
}

.construction-page-header-block .construction-page-title {
    margin: 28px 0 12px;
}

.construction-page-header-block .construction-breadcrumb {
    margin: 0 0 12px;
}

.construction-breadcrumb-bar {
    background: #fff;
    border-bottom: none;
    padding: 0 0 12px;
    margin-bottom: 24px;
}

.construction-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 13px;
    color: var(--text-muted);
}

.construction-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
    font-size: 14px;
}

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

.construction-breadcrumb .sep {
    color: #ccc;
    margin: 0 2px;
}

.construction-breadcrumb .current {
    color: var(--brand-orange);
    font-weight: 500;
    font-size: 14px;
}

/* ── Page Title ─────────────────────────────────────────────── */
.construction-page-title {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 28px 0 12px;
    line-height: 1.3;
    letter-spacing: 0.2px;
}

/* ── Layout: 2-column ───────────────────────────────────────── */
.construction-layout {
    display: grid;
    grid-template-columns: 1fr 344px;
    gap: 28px;
    align-items: start;
}

/* ── Featured Project Card ──────────────────────────────────── */
.featured-project-card {
    background: #fff;
    border: 1px solid var(--brand-orange);
    border-radius: 6px;
    padding: 24px;
    margin-bottom: 28px;
}

.featured-project-title {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0 0 8px;
    letter-spacing: 0.2px;
}

.featured-project-title-bar {
    width: 120px;
    height: 2px;
    background: var(--brand-orange);
    border-radius: 2px;
    margin-bottom: 20px;
}

.other-construction-subtitle-bar {
    width: 40px;
    height: 2px;
    background: var(--brand-orange);
    border-radius: 2px;
    margin-bottom: 20px;
}

/* ── Featured Project Body: image + details ─────────────────── */
.featured-project-body {
    display: grid;
    grid-template-columns: 452px 1fr;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 20px;
    border: 1px solid var(--border-light, #e8e8e8);
}

/* ── Image ──────────────────────────────────────────────────── */
.featured-project-image-wrap {
    position: relative;
    border-radius: 6px;
    align-self: stretch;
    width: 100%;
    /* height is driven by the right-column content */
}

.featured-project-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 6px;
}

.construction-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--brand-orange);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    padding: 5px 12px;
    border-radius: 4px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* ── Project Details ────────────────────────────────────────── */
.featured-project-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 85%;
    padding-block: 24px;
}

.project-overview-heading {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
}

.project-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--brand-orange);
    margin: 0;
    font-weight: 500;
}

.project-description {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.65;
    margin: 0;
}

/* ── Stats Grid ─────────────────────────────────────────────── */
.project-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    margin-top: 4px;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.stat-icon {
    width: 32px;
    height: 32px;
    background: var(--brand-orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    padding: 6px;
}

.stat-icon img {
    width: auto;
    height: auto;
    max-width: 18px;
    max-height: 20px;
    display: block;
}

.stat-item strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.stat-item p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    margin: 2px 0 0;
    line-height: 1.45;
}

/* ── Status Box ─────────────────────────────────────────────── */
.project-status-box {
    border-radius: 6px;
    padding: 16px 20px;
    border: 1px solid var(--sidebar-border);
}

.status-label {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 6px;
}

.project-status-box p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #706D6D;
    line-height: 1.65;
    margin: 0;
}
.megaphone-custom {
  color: #ff6f20; /* The vibrant orange shade */
  font-size: 3rem; /* Adjust size to fit your layout */

  transform: rotate(-30deg);
  display: inline-block; /* Required for transform to work on <i> tags */
}
/* ── Other Construction Section ─────────────────────────────── */
.other-construction-section {
    background: #fff;
    border: 1px solid var(--brand-orange);
    border-radius: 6px;
    padding: 24px;
}

.other-construction-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0 0 4px;
}

.other-construction-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #6B7280;
    margin: 0 0 6px;
}

/* ── Accordion ──────────────────────────────────────────────── */
.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: none;
    background: transparent;
    overflow: visible;
}

.accordion-item {
    border: 1px solid var(--border-light);
    border-radius: 6px;
    overflow: hidden;
}

.accordion-trigger {
    width: 100%;
    background: #fff;
    border: none;
    padding: 16px 20px;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.accordion-trigger:hover {
    background: var(--brand-orange-light);
    color: var(--brand-orange);
}

.accordion-trigger.active {
    background: var(--brand-orange-light);
    color: var(--brand-orange);
}

.accordion-arrow {
    font-size: 12px;
    color: var(--text-muted);
    transition: transform 0.25s ease;
}

.accordion-trigger.active .accordion-arrow {
    transform: rotate(90deg);
    color: var(--brand-orange);
}

.accordion-body {
    display: none;
    padding: 14px 20px 16px;
    background: #fafafa;
    border-top: 1px solid var(--border-light);
}

.accordion-body.open {
    display: block;
}

.accordion-body p {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.65;
    margin: 0;
}

.accordion-body.markdown-content p + p {
    margin-top: 12px;
}

.accordion-body.markdown-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.construction-markdown-content {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.65;
}

.construction-markdown-content p {
    margin: 0;
}

.construction-markdown-content p + p {
    margin-top: 12px;
}

.construction-markdown-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.construction-markdown-content ul,
.construction-markdown-content ol {
    margin: 12px 0 0;
    padding-left: 1.25rem;
}

.construction-markdown-content li + li {
    margin-top: 6px;
}

/* ── Sidebar ────────────────────────────────────────────────── */
.construction-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 20px;
}

.sidebar-cta-card {
    background: #fff;
    border: 1px solid var(--sidebar-border);
    border-radius: 6px;
    padding: 18px 16px;
}

.sidebar-cta-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px;
    line-height: 1.3;
}

.sidebar-cta-desc {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0 0 14px;
}

.sidebar-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 8px 16px;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    border: 1px solid transparent;
}

.sidebar-cta-btn--primary {
    background: var(--brand-orange);
    color: #fff;
    border-color: var(--brand-orange);
}

.sidebar-cta-btn--primary:hover {
    background: var(--brand-orange-hover);
    border-color: var(--brand-orange-hover);
    color: #fff;
}

.sidebar-cta-btn--outline {
    background: #fff;
    color: var(--brand-orange);
    border-color: var(--brand-orange);
}

.sidebar-cta-btn--outline:hover {
    background: var(--brand-orange-light);
    color: var(--brand-orange);
}

.sidebar-cta-btn--dark {
    color: #333;
    border-color: #333;
}

.sidebar-cta-btn--dark:hover {
    background: #f0f0f0;
    color: #111;
}

/* ============================================================
   NON-FEATURED LAYOUT
   ============================================================ */

/* Become Featured Card */
.nf-become-card {
    background: #fff;
    border: 0.5px solid #F06428;
    border-radius: 6px;
    padding: 24px;
    margin-bottom: 16px;
}

.nf-become-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0 20px;
    line-height: 1.35;
}

/* Body: image left, pitch right */
.nf-become-body {
    display: grid;
    grid-template-columns: 540px 1fr;
    gap: 28px;
    align-items: stretch;
}

/* Placeholder image with overlay */
.nf-image-wrap {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    min-height: 260px;
}

.nf-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 6px;
}

.nf-image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
}

.nf-image-overlay::before {
    content: '';
    position: absolute;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35%;
    height: 35%;
    border: 2.5px dashed var(--brand-orange);
    border-radius: 6px;
}

.nf-overlay-icon {
    position: relative;
    z-index: 1;
    font-size: 36px;
    color: var(--brand-orange);
    margin-bottom: 4px;
    line-height: 1;
}

.nf-overlay-label {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.nf-overlay-sub {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #777;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 1;
}

/* Right pitch panel */
.nf-pitch {
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: start;
}

.nf-pitch-heading {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
}

.nf-pitch-bar {
    width: 48px;
    height: 2px;
    background: var(--brand-orange);
    border-radius: 2px;
    margin-top: 10px;
}

.nf-pitch-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.65;
    margin: 34px 0 0;
}

/* Checklist */
.nf-checklist {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nf-checklist__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: var(--text-body);
}

.nf-check-icon {
    display: flex;
    line-height: 1;
    flex-shrink: 0;
}

.nf-check-icon img {
    display: block;
}

/* Advertise button */
.nf-advertise-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 34px;
    padding: 10px 22px;
    border: 1.5px solid var(--brand-orange);
    border-radius: 5px;
    background: #fff;
    color: var(--brand-orange);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}

.nf-advertise-btn:hover {
    background: var(--brand-orange);
    color: #fff;
}

/* No Projects Notice */
.nf-empty-notice {
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 16px 20px;
    margin-top: 34px;
}

.nf-empty-notice__title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 4px;
}

.nf-empty-notice__sub {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
}

/* ── Advertising cards (non-featured sticky sidebar) ────────── */
.nf-adv-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nf-adv-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nf-adv-card__title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.nf-adv-card__desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.nf-adv-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
}

.nf-adv-checklist li {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 7px;
    line-height: 1.4;
}

.nf-adv-checklist li img {
    flex-shrink: 0;
    display: block;
}

.nf-adv-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--brand-orange);
    border-radius: 5px;
    background: #fff;
    color: var(--brand-orange);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-sizing: border-box;
    margin-top: auto;
    appearance: none;
    -webkit-appearance: none;
}

.nf-adv-card__btn:hover {
    background: var(--brand-orange);
    color: #fff;
}

/* ============================================================
   HOMEPAGE-STYLE FOOTER
   ============================================================ */
.new-homepage-footer {
    position: relative;
    padding: 40px 0 30px;
    font-family: 'Poppins', sans-serif;
    background: #fff;
    border-top: 1px solid #e8e8e8;
    margin-top: 40px;
}

.new-homepage-footer a {
    color: #222;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 14px;
}

.new-homepage-footer a:hover {
    color: #f26b50;
}

.footer-logo-col {
    text-align: center;
}

.footer-brand-logo,
.new-homepage-footer .hoa-brand-logo {
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.new-homepage-footer .hoa-brand-hoa,
.new-homepage-footer .hoa-brand-name {
    font-size: 22px;
}

.new-homepage-footer .hoa-brand-sub {
    font-size: 9px;
}

.new-homepage-footer .hoa-brand-home-icon {
    width: 36px;
    height: 32px;
    display: block;
    flex-shrink: 0;
}

.footer-brand-icon {
    width: 46px;
    height: 46px;
    background: #fff0eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1.5px solid #f26b50;
}

.footer-logo-col .footer-tagline {
    font-size: 16px !important;
    color: #444;
    line-height: 1.1 !important;
    margin-bottom: 0;
    text-align: center;
}

.footer-logo-col .footer-tagline a {
    font-size: 12px;
    color: #333;
}

.footer-logo-col .footer-tagline a:hover {
    color: #f26b50;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}

.footer-social-icons a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #f26b50;
    transition: background 0.2s, color 0.2s;
}

.footer-social-icons a:hover {
    background: #f26b50;
    color: #fff;
}

.footer-col-title {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 14px;
    font-family: 'Inter', sans-serif;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-list li {
    margin-bottom: 8px;
}

.footer-link-list li a {
    font-size: 13px;
    color: #333;
}

.footer-link-list li a:hover {
    color: #f26b50;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #333;
}

.footer-contact-item i,
.footer-contact-item .footer-contact-icon {
    color: #f26b50;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item .footer-contact-icon {
    display: block;
    object-fit: contain;
}

.footer-contact-address {
    display: block;
    line-height: 1.45;
}

@media (min-width: 992px) {
    .new-homepage-footer .footer-columns-row {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: flex-start;
        margin-left: 0;
        margin-right: 0;
    }

    .new-homepage-footer .footer-columns-row > [class*="col-"] {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
        padding-left: 0;
        padding-right: 0;
    }

    .footer-logo-col {
        text-align: left;
        width: 240px;
        flex: 0 0 240px;
        flex-shrink: 0;
    }

    .footer-brand-logo,
    .new-homepage-footer .hoa-brand-logo {
        justify-content: flex-start !important;
    }

    .footer-logo-col .footer-tagline {
        text-align: left;
    }

    .footer-social-icons {
        justify-content: flex-start;
    }

    .footer-nav-group {
        display: flex;
        flex: 1 1 auto;
        flex-wrap: nowrap;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 48px;
        padding-left: 48px;
        padding-right: 0;
        min-width: 0;
    }

    .footer-nav-group > [class*="col-"] {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
        padding-left: 0;
        padding-right: 0;
    }

    .footer-company-col {
        width: 150px;
        flex-shrink: 0;
    }

    .footer-explore-col {
        width: 165px;
        flex-shrink: 0;
    }

    .footer-contact-col {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }
}

.footer-bottom-bar {
    border-top: 1px solid #ddd;
    margin-top: 30px;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-bar p {
    font-size: 12px;
    color: #555;
    margin: 0;
}

.footer-bottom-bar a {
    font-size: 12px;
    color: #555;
}

.footer-bottom-bar a:hover {
    color: #f26b50;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-links__sep {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5px;
    height: 21px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #000;
    user-select: none;
    flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE – TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .construction-layout {
        grid-template-columns: 1fr 260px;
        gap: 20px;
    }

    .featured-project-body {
        grid-template-columns: 260px 1fr;
    }

    .nf-become-body {
        grid-template-columns: 260px 1fr;
        gap: 20px;
    }
}

/* ============================================================
   RESPONSIVE – MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
    /* Footer bottom bar */
    .footer-bottom-bar {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    /* Layout stacks vertically on mobile */
    .construction-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .construction-sidebar {
        position: static;
        margin-top: 20px;
    }

    /* Page title */
    .construction-page-title {
        font-size: 22px;
        margin: 20px 0 10px;
    }

    /* Featured project body: stack image on top */
    .featured-project-body {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* On mobile the wrap needs an explicit height since the img is absolute */
    .featured-project-image-wrap {
        height: 220px;
    }

    /* Stats grid: 1 column on small screens */
    .project-stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .featured-project-card {
        padding: 16px;
    }

    .other-construction-section {
        padding: 16px;
    }

    .sidebar-cta-card {
        padding: 14px 12px;
    }

    /* Non-featured: stack on mobile */
    .nf-become-body {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .nf-image-wrap {
        min-height: 240px;
    }

    /* Overlay box: expand to fit content on mobile */
    .nf-image-overlay {
        gap: 4px;
    }

    .nf-image-overlay::before {
        width: 35%;
        height: 35%;
    }

    .nf-overlay-icon {
        font-size: 28px;
        margin-bottom: 2px;
    }

    .nf-overlay-label {
        font-size: 12px;
    }

    .nf-overlay-sub {
        font-size: 10px;
    }

    .nf-become-card {
        padding: 16px;
    }
}

/* ============================================================
   RESPONSIVE – SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
    .construction-page-title {
        font-size: 18px;
    }

    .featured-project-title {
        font-size: 18px;
    }

    .construction-breadcrumb {
        font-size: 11px;
    }

    .featured-project-image-wrap {
        height: 180px;
    }

    .accordion-trigger {
        font-size: 13px;
        padding: 14px 14px;
    }

    /* Overlay on very small screens */
    .nf-image-wrap {
        min-height: 220px;
    }

    .nf-image-overlay::before {
        width: 45%;
        height: 43%;
    }

    .nf-overlay-icon {
        font-size: 24px;
    }

    .nf-overlay-label {
        font-size: 14px;
    }

    .nf-overlay-sub {
        font-size: 11px;
    }
}

/* ============================================================
   FOOTER MOBILE LAYOUT (all screens < 768px)
   Logo full-width → Company + Explore 2-col → Get in Touch full-width
   ============================================================ */
@media (max-width: 767px) {
    .new-homepage-footer .footer-columns-row {
        display: flex;
        flex-wrap: wrap;
        margin-left: 0;
        margin-right: 0;
    }

    /* Logo — full width, centered */
    .new-homepage-footer .footer-logo-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        text-align: center;
        margin-bottom: 28px;
    }

    .new-homepage-footer .footer-brand-logo,
    .new-homepage-footer .hoa-brand-logo {
        justify-content: center !important;
    }

    .new-homepage-footer .footer-logo-col .footer-tagline {
        text-align: center;
    }

    .new-homepage-footer .footer-social-icons {
        justify-content: center;
    }

    /* Company col — left 50% */
    .new-homepage-footer .footer-nav-group {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        padding-left: 0;
    }

    .new-homepage-footer .footer-nav-group > div:nth-child(1) {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding-right: 10px;
        margin-bottom: 24px;
    }

    /* Explore col — right 50% */
    .new-homepage-footer .footer-nav-group > div:nth-child(2) {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding-left: 10px;
        margin-bottom: 24px;
    }

    /* Get in Touch — full width */
    .new-homepage-footer .footer-nav-group > div:nth-child(3) {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 0;
    }

    .footer-contact-address {
        white-space: normal;
    }
}
