/* ==========================================================================
   Estcoll Investments — Brand Stylesheet
   Palette: Deep Navy #0C203C | Steel Blue #405063 | Slate Gray #758293
            Silver Gray #A5ACB7 | Light Gray #E1E2E6
   ========================================================================== */

/* ---------- Variables ---------- */
:root {
    --navy: #0C203C;
    --steel: #405063;
    --slate: #758293;
    --silver: #A5ACB7;
    --light: #E1E2E6;
    --white: #FFFFFF;

    --font-head: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 1px 3px rgba(12, 32, 60, 0.08);
    --shadow-md: 0 4px 12px rgba(12, 32, 60, 0.10);
    --shadow-lg: 0 12px 32px rgba(12, 32, 60, 0.14);

    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;

    --transition: 0.25s ease;
    --max-width: 1200px;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

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

.section { padding: 80px 0; }
.section--tight { padding-bottom: 30px; }
.section--tight-top { padding-top: 30px; }
.section--light { background: var(--white); }
.section--gray { background: var(--light); }
.section--navy { background: var(--navy); color: var(--white); }

.section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
}
.section__eyebrow {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 12px;
}
.section__eyebrow--light { color: var(--silver); }
.section__title {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--navy);
}
.section__title--light { color: var(--white); }
.section__desc {
    margin-top: 14px;
    font-size: 17px;
    color: var(--slate);
}
.section__cta {
    text-align: center;
    margin-top: 40px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn--primary { background: var(--navy); color: var(--white); }
.btn--primary:hover { background: var(--steel); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--accent { background: var(--steel); color: var(--white); }
.btn--accent:hover { background: var(--navy); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; border-color: var(--slate); color: var(--navy); }
.btn--outline:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }
.btn--outline-light { background: transparent; border-color: var(--silver); color: var(--white); }
.btn--outline-light:hover { border-color: var(--white); background: var(--white); color: var(--navy); }
.btn--sm { padding: 8px 18px; font-size: 13px; }
.btn--lg { padding: 15px 36px; font-size: 16px; }
.btn--block { width: 100%; }

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--navy);
    color: var(--silver);
    font-size: 13px;
    padding: 8px 0;
}
.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar__left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.top-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--silver);
    transition: var(--transition);
}
a.top-bar__item:hover { color: var(--white); }
.top-bar__item--hours { display: none; }

/* ---------- Header ---------- */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--light);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 20px;
}

/* ---------- Logo ---------- */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 100%;
}
.logo__img {
    height: 100%;
    max-height: 68px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    display: block;
}
.logo__img--footer {
    max-height: 56px;
    max-width: 280px;
}

/* ---------- Navigation ---------- */
.nav { display: flex; align-items: center; gap: 4px; }
.nav__list {
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav__link {
    display: block;
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 14px;
    color: var(--steel);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}
.nav__link:hover { color: var(--navy); background: var(--light); }
.nav__link--active { color: var(--navy); font-weight: 600; }
.nav__link--active::after {
    content: '';
    display: block;
    height: 2px;
    background: var(--steel);
    margin-top: 4px;
    border-radius: 1px;
}
.nav__cta { margin-left: 12px; }
.nav__toggle { display: none; color: var(--navy); padding: 6px; }
.nav__close { display: none; color: var(--navy); padding: 6px; position: absolute; top: 16px; right: 16px; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.hero__overlay {
    background: rgba(12, 32, 60, 0.88);
    width: 100%;
    padding: 80px 0;
}
.hero__content { max-width: 640px; }
.hero__badge {
    display: inline-block;
    background: rgba(165, 172, 183, 0.2);
    border: 1px solid var(--silver);
    color: var(--silver);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
}
.hero__title {
    font-family: var(--font-head);
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
}
.hero__subtitle {
    font-size: 18px;
    color: var(--silver);
    margin-bottom: 32px;
    max-width: 540px;
}
.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.hero__stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.hero__stat { display: flex; flex-direction: column; }
.hero__stat-num {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.hero__stat-label {
    font-size: 13px;
    color: var(--silver);
    margin-top: 6px;
}

/* ---------- Page Hero ---------- */
.page-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.page-hero__overlay {
    background: rgba(12, 32, 60, 0.85);
    width: 100%;
    padding: 60px 0;
}
.page-hero__title {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}
.page-hero__subtitle {
    font-size: 17px;
    color: var(--silver);
    max-width: 600px;
}

/* ---------- Service Cards ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--light);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    border-color: var(--silver);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.service-card__icon {
    width: 64px;
    height: 64px;
    background: var(--light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-card:hover .service-card__icon {
    background: var(--navy);
    color: var(--white);
}
.service-card__title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.service-card__desc {
    font-size: 14px;
    color: var(--slate);
    margin-bottom: 16px;
    flex-grow: 1;
}
.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    color: var(--steel);
    transition: var(--transition);
}
.service-card:hover .service-card__link { color: var(--navy); gap: 10px; }
.service-card--detailed { padding: 28px 24px; }

/* ---------- Why Choose Us ---------- */
.why-choose {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.why-choose__lead {
    font-size: 17px;
    color: var(--silver);
    margin: 20px 0 30px;
}
.why-choose__features { display: flex; flex-direction: column; gap: 20px; }
.why-choose__feature { display: flex; gap: 14px; align-items: flex-start; }
.why-choose__check {
    width: 36px;
    height: 36px;
    background: var(--steel);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}
.why-choose__feature h4 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.why-choose__feature p { font-size: 14px; color: var(--silver); }
.why-choose__image { position: relative; }
.why-choose__image img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.why-choose__badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 24px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.why-choose__badge-num {
    display: block;
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}
.why-choose__badge-text {
    display: block;
    font-size: 12px;
    color: var(--slate);
    font-weight: 600;
    margin-top: 4px;
}

/* ---------- Property Cards ---------- */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}
.property-card {
    background: var(--white);
    border: 1px solid var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.property-card:hover {
    border-color: var(--silver);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.property-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.property-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.property-card:hover .property-card__image img { transform: scale(1.05); }
.property-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--navy);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}
.property-card__badge--land { background: var(--steel); }
.property-card__badge--house { background: var(--navy); }
.property-card__badge--commercial { background: var(--slate); }
.property-card__verified {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--white);
    color: var(--navy);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: var(--shadow-sm);
}
.property-card__body { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.property-card__title {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.property-card__location {
    font-size: 13px;
    color: var(--slate);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
}
.property-card__description {
    font-size: 14px;
    color: var(--slate);
    margin-bottom: 14px;
    flex-grow: 1;
}
.property-card__specs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--steel);
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.property-card__divider { width: 1px; height: 12px; background: var(--silver); }
.property-card__spec {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 8px;
}
.property-card__spec-label { font-size: 11px; color: var(--slate); text-transform: uppercase; letter-spacing: 0.5px; }
.property-card__spec-value { font-size: 13px; color: var(--navy); font-weight: 600; }
.property-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}
.property-card__feature {
    font-size: 11px;
    background: var(--light);
    color: var(--steel);
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 500;
}
.property-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--light);
    margin-top: auto;
}
.property-card__price {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
}

/* ---------- Project Cards ---------- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}
.projects-grid--gallery { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.project-card {
    background: var(--white);
    border: 1px solid var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.project-card:hover {
    border-color: var(--silver);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.project-card__image {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.project-card:hover .project-card__image img { transform: scale(1.05); }
.project-card__category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--navy);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}
.project-card__body { padding: 20px; }
.project-card__title {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.project-card__location {
    font-size: 13px;
    color: var(--slate);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}
.project-card__desc { font-size: 14px; color: var(--slate); }
.project-card__meta {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--light);
}
.project-card__duration {
    font-size: 13px;
    color: var(--steel);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--light);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--silver); }
.testimonial-card__stars {
    display: flex;
    gap: 2px;
    color: #F59E0B;
    margin-bottom: 16px;
}
.testimonial-card__text {
    font-size: 15px;
    color: var(--steel);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}
.testimonial-card__author h4 {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
}
.testimonial-card__author p { font-size: 13px; color: var(--slate); }

/* ---------- CTA Banner ---------- */
.cta-banner {
    background: var(--navy);
    padding: 60px 0;
}
.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.cta-banner__content h2 {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.cta-banner__content p { font-size: 16px; color: var(--silver); }
.cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
    background: var(--navy);
    color: var(--silver);
    padding: 60px 0 0;
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(165, 172, 183, 0.2);
}
.footer__col--brand { max-width: 320px; }
.footer__about {
    font-size: 14px;
    color: var(--silver);
    margin: 20px 0;
    line-height: 1.7;
}
.footer__social { display: flex; gap: 10px; }
.footer__social-link {
    width: 38px;
    height: 38px;
    background: rgba(165, 172, 183, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver);
    transition: var(--transition);
}
.footer__social-link:hover { background: var(--steel); color: var(--white); transform: translateY(-2px); }
.footer__heading {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer__links li { margin-bottom: 10px; }
.footer__links a {
    font-size: 14px;
    color: var(--silver);
    transition: var(--transition);
}
.footer__links a:hover { color: var(--white); padding-left: 4px; }
.footer__contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--silver);
}
.footer__contact a:hover { color: var(--white); }
.footer__contact svg { color: var(--steel); flex-shrink: 0; margin-top: 2px; }
.footer__registration {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(165, 172, 183, 0.15);
    font-size: 13px;
}
.footer__registration p { margin-bottom: 4px; color: var(--silver); }
.footer__registration strong { color: var(--white); }
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 13px;
    color: var(--slate);
    flex-wrap: wrap;
    gap: 10px;
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { color: var(--slate); transition: var(--transition); }
.footer__legal a:hover { color: var(--white); }

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 99;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5); }
.whatsapp-float__tooltip {
    position: absolute;
    right: 66px;
    background: var(--navy);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; right: 70px; }

/* ---------- Scroll Top ---------- */
.scroll-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 98;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--steel); transform: translateY(-2px); }

/* ---------- About Grid ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-grid__image img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.about-grid__content p {
    font-size: 16px;
    color: var(--slate);
    margin-bottom: 16px;
}
.about-grid__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}
.about-detail {
    background: var(--light);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
}
.about-detail__label {
    display: block;
    font-size: 12px;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.about-detail__value {
    display: block;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
}

/* ---------- Mission/Vision ---------- */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.mv-card {
    background: var(--white);
    border: 1px solid var(--light);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    transition: var(--transition);
}
.mv-card:hover { box-shadow: var(--shadow-md); border-color: var(--silver); }
.mv-card__icon {
    width: 64px;
    height: 64px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.mv-card h3 {
    font-family: var(--font-head);
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}
.mv-card p { font-size: 15px; color: var(--slate); }

/* ---------- Leadership ---------- */
.leadership { max-width: 500px; margin: 0 auto; }
.leadership__card {
    background: var(--white);
    border: 1px solid var(--light);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
}
.leadership__card:hover { box-shadow: var(--shadow-md); }
.leadership__avatar {
    width: 80px;
    height: 80px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 28px;
    margin: 0 auto 20px;
}
.leadership__name {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.leadership__role {
    font-size: 14px;
    color: var(--steel);
    font-weight: 600;
    margin-bottom: 16px;
}
.leadership__bio { font-size: 15px; color: var(--slate); }

/* ---------- Trust Section ---------- */
.trust-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}
.trust-section__lead {
    font-size: 17px;
    color: var(--silver);
    margin: 20px 0 30px;
}
.trust-section__items { display: flex; flex-direction: column; gap: 20px; }
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-item svg { color: var(--steel); flex-shrink: 0; margin-top: 2px; }
.trust-item h4 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.trust-item p { font-size: 14px; color: var(--silver); }
.trust-section__card {
    background: rgba(165, 172, 183, 0.1);
    border: 1px solid rgba(165, 172, 183, 0.2);
    border-radius: var(--radius);
    padding: 28px 24px;
}
.trust-section__card h3 {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(165, 172, 183, 0.2);
}
.trust-section__dl { display: grid; gap: 14px; }
.trust-section__dl dt {
    font-size: 12px;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.trust-section__dl dd {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

/* ---------- Check List ---------- */
.check-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }

/* ---------- Generator Gallery ---------- */
.generator-gallery {
    margin-top: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.generator-gallery img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* ---------- Showcase Image ---------- */
.showcase-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.showcase-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--slate);
}
.check-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--steel);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
}

/* ---------- Process Steps ---------- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}
.process-step {
    text-align: center;
    padding: 28px 20px;
    position: relative;
}
.process-step__num {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 20px;
    margin: 0 auto 16px;
}
.process-step h3 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.process-step p { font-size: 14px; color: var(--slate); }

/* ---------- Packages ---------- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}
.package-card {
    background: var(--white);
    border: 1px solid var(--light);
    border-radius: var(--radius);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}
.package-card:hover { border-color: var(--silver); box-shadow: var(--shadow-md); }
.package-card--featured {
    border-color: var(--navy);
    border-width: 2px;
    box-shadow: var(--shadow-lg);
}
.package-card__tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}
.package-card__name {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.package-card__desc { font-size: 14px; color: var(--slate); margin-bottom: 20px; }
.package-card__features { flex-grow: 1; margin-bottom: 24px; }
.package-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--steel);
    margin-bottom: 10px;
}
.package-card__features li::before {
    content: '';
    width: 18px;
    height: 18px;
    background: var(--light);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230C203C' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

/* ---------- Trust Banner ---------- */
.trust-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}
.trust-banner__item svg { color: var(--steel); margin-bottom: 12px; }
.trust-banner__item h4 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.trust-banner__item p { font-size: 14px; color: var(--silver); }

/* ---------- Contact ---------- */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.contact-card {
    background: var(--white);
    border: 1px solid var(--light);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}
.contact-card:hover { border-color: var(--silver); box-shadow: var(--shadow-md); }
.contact-card__icon {
    width: 56px;
    height: 56px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    margin: 0 auto 16px;
}
.contact-card h3 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.contact-card p { font-size: 14px; color: var(--slate); margin-bottom: 10px; }
.contact-card__link {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    color: var(--steel);
    transition: var(--transition);
}
.contact-card__link:hover { color: var(--navy); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-form-wrap__desc { font-size: 15px; color: var(--slate); margin-bottom: 24px; }
.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 400px;
    border: 1px solid var(--light);
}
.contact-map iframe { display: block; min-height: 400px; }

/* ---------- Forms ---------- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row--3 { grid-template-columns: repeat(3, 1fr); }
.form-row--2 { grid-template-columns: 1fr 1fr; }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; }
.form-group label {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid var(--silver);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-size: 15px;
    color: var(--navy);
    background: var(--white);
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(12, 32, 60, 0.1);
}
.form-group textarea { resize: vertical; }
.form-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    display: none;
}
.form-message.success { display: block; background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; }
.form-message.error { display: block; background: #FFEBEE; color: #C62828; border: 1px solid #FFCDD2; }

/* ---------- Quote Form ---------- */
.quote-form {
    background: var(--white);
    border: 1px solid var(--light);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}
.quote-form__section { margin-bottom: 32px; }
.quote-form__heading {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light);
}
.quote-services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
}
.quote-service {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid var(--silver);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    font-weight: 500;
    color: var(--steel);
}
.quote-service:hover { border-color: var(--navy); background: var(--light); }
.quote-service input { display: none; }
.quote-service__box {
    width: 22px;
    height: 22px;
    border: 2px solid var(--silver);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    transition: var(--transition);
}
.quote-service__box svg { opacity: 0; transition: var(--transition); }
.quote-service input:checked ~ .quote-service__box {
    background: var(--navy);
    border-color: var(--navy);
}
.quote-service input:checked ~ .quote-service__box svg { opacity: 1; }
.quote-service:has(input:checked) {
    border-color: var(--navy);
    background: var(--light);
    color: var(--navy);
    font-weight: 600;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--light);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: var(--silver); }
.faq-item__question {
    width: 100%;
    text-align: left;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition);
}
.faq-item__question:hover { background: var(--light); }
.faq-item__icon { color: var(--steel); transition: transform var(--transition); flex-shrink: 0; }
.faq-item__question[aria-expanded="true"] .faq-item__icon { transform: rotate(180deg); }
.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item__answer p {
    padding: 0 22px 18px;
    font-size: 15px;
    color: var(--slate);
    line-height: 1.7;
}

/* ---------- Filter Bar ---------- */
.filter-bar {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    flex-wrap: wrap;
    background: var(--light);
    border-radius: var(--radius);
    padding: 20px 24px;
}
.filter-bar__group { flex: 1; min-width: 160px; }
.filter-bar__label {
    display: block;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}
.filter-bar__select,
.filter-bar__input {
    width: 100%;
    border: 1px solid var(--silver);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 14px;
    color: var(--navy);
    background: var(--white);
    transition: var(--transition);
}
.filter-bar__select:focus,
.filter-bar__input:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(12, 32, 60, 0.1);
}
.filter-results {
    margin-top: 16px;
    font-size: 14px;
    color: var(--slate);
}
.filter-results span { font-weight: 700; color: var(--navy); }
.no-results {
    text-align: center;
    padding: 60px 20px;
    font-size: 16px;
    color: var(--slate);
}

/* ---------- Gallery Filters ---------- */
.gallery-filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.gallery-filter {
    padding: 8px 22px;
    border: 1px solid var(--silver);
    border-radius: 30px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    color: var(--steel);
    transition: var(--transition);
}
.gallery-filter:hover { border-color: var(--navy); color: var(--navy); }
.gallery-filter--active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablet */
@media (max-width: 968px) {
    .hero__title { font-size: 36px; }
    .page-hero__title { font-size: 30px; }
    .section__title { font-size: 28px; }
    .why-choose,
    .about-grid,
    .trust-section,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .why-choose__image,
    .about-grid__image { order: -1; }
    .why-choose__image img,
    .about-grid__image img { height: 320px; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer__col--brand { grid-column: 1 / -1; max-width: none; }
    .form-row--3 { grid-template-columns: 1fr 1fr; }
    .quote-form { padding: 28px 24px; }
}

/* Mobile */
@media (max-width: 768px) {
    .section { padding: 60px 0; }

    /* Nav becomes mobile menu */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 24px 24px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 200;
    }
    .nav.open { right: 0; }
    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
    }
    .nav__item { width: 100%; }
    .nav__link {
        display: block;
        width: 100%;
        padding: 14px 12px;
        border-bottom: 1px solid var(--light);
    }
    .nav__link--active::after { display: none; }
    .nav__cta { margin: 16px 0 0; width: 100%; }
    .nav__toggle { display: block; }
    .nav__close { display: block; }

    /* Overlay for mobile menu */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(12, 32, 60, 0.5);
        z-index: 150;
    }
    .nav-overlay.open { display: block; }

    .top-bar__item--hours { display: none; }
    .top-bar__right { display: none; }

    .hero { min-height: 500px; }
    .hero__overlay { padding: 60px 0; }
    .hero__title { font-size: 30px; }
    .hero__subtitle { font-size: 16px; }
    .hero__stats { gap: 24px; }
    .hero__stat-num { font-size: 28px; }
    .hero__actions .btn { flex: 1; min-width: 140px; }

    .page-hero { min-height: 260px; }
    .page-hero__overlay { padding: 40px 0; }
    .page-hero__title { font-size: 26px; }
    .page-hero__subtitle { font-size: 15px; }

    .section__title { font-size: 24px; }
    .section__desc { font-size: 15px; }

    .cta-banner__inner { flex-direction: column; text-align: center; }
    .cta-banner__content h2 { font-size: 24px; }
    .cta-banner__actions { width: 100%; }
    .cta-banner__actions .btn { flex: 1; }

    .footer__grid { grid-template-columns: 1fr; gap: 30px; }
    .footer__bottom { flex-direction: column; text-align: center; }
    .footer__legal { flex-wrap: wrap; justify-content: center; }

    .form-row,
    .form-row--2,
    .form-row--3 { grid-template-columns: 1fr; }

    .quote-services { grid-template-columns: 1fr; }

    .filter-bar { flex-direction: column; align-items: stretch; }
    .filter-bar__group { min-width: 100%; }

    .generator-gallery img { height: 220px; }
    .showcase-image img { height: 280px; }

    .gallery-filters { gap: 8px; }
    .gallery-filter { padding: 6px 16px; font-size: 13px; }

    .whatsapp-float { width: 50px; height: 50px; bottom: 16px; right: 16px; }
    .whatsapp-float__tooltip { display: none; }
    .scroll-top { bottom: 16px; left: 16px; width: 40px; height: 40px; }
}

/* Small mobile */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero__title { font-size: 26px; }
    .hero__stats { gap: 20px; }
    .hero__stat-num { font-size: 24px; }
    .section { padding: 50px 0; }
    .section__title { font-size: 22px; }
    .services-grid,
    .properties-grid,
    .projects-grid,
    .testimonials-grid { grid-template-columns: 1fr; }
    .logo__img { max-height: 52px; max-width: 200px; }
    .quote-form { padding: 20px 16px; }
    .about-grid__details { grid-template-columns: 1fr; }
}
