/* =========================================================
   PRIMELAND V2
   REAL ESTATE • CONSTRUCTION • INFRASTRUCTURE
========================================================= */

:root {
    --v2-gold: #C99616;
    --v2-gold-light: #e4bb55;
    --v2-dark: #0c0b09;
    --v2-dark-2: #15130f;
    --v2-cream: #f8f6f0;
    --v2-text: #211f1a;
    --v2-muted: #77736a;
    --v2-border: #e6e1d6;
}


/* =========================================================
   GLOBAL
========================================================= */

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--v2-text);
    background: var(--v2-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}


/* =========================================================
   NAVBAR
========================================================= */

.primeland-navbar {
    padding: 16px 0;
    background: #0c0b09;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: .3s ease;
}

.primeland-navbar .container {
    max-width: 1400px;
}

.brand-logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.brand-lockup {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-title {
    font-family: "Playfair Display", serif;
    font-size: 21px;
    font-weight: 600;
    color: #fff;
}

.brand-lockup small {
    margin-top: 5px;
    color: rgba(255,255,255,.58);
    font-size: 8px;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.primeland-navbar .nav-link {
    color: rgba(255,255,255,.78);
    font-size: 12px;
    font-weight: 500;
    padding: 10px 11px !important;
    transition: .25s ease;
}

.primeland-navbar .nav-link:hover,
.primeland-navbar .nav-link.active {
    color: var(--v2-gold-light);
}

.primeland-navbar .dropdown-menu {
    min-width: 235px;
    margin-top: 12px;
    padding: 10px;
    background: #15130f;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 0;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.primeland-navbar .dropdown-item {
    color: #ddd8cc;
    font-size: 12px;
    padding: 11px 12px;
    transition: .2s ease;
}

.primeland-navbar .dropdown-item i {
    width: 22px;
    color: var(--v2-gold-light);
}

.primeland-navbar .dropdown-item:hover {
    color: #fff;
    background: rgba(201,150,22,.12);
}

.nav-quote-btn {
    white-space: nowrap;
}


/* =========================================================
   HERO
========================================================= */

@keyframes heroZoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.12);
    }
}

.v2-hero {
    position: relative;
    min-height: 820px;
    display: flex;
    align-items: center;

    overflow: hidden;
    color: #fff;
}

.v2-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("assets/images/primeland.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    animation: heroZoom 8s ease-in-out infinite;

    z-index: 0;
}

.v2-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7,7,6,.92) 0%,
            rgba(7,7,6,.72) 42%,
            rgba(7,7,6,.25) 100%
        );
}

.v2-hero .container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.v2-eyebrow {
    display: inline-flex;
    gap: 10px;
    align-items: center;

    color: var(--v2-gold-light);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.4px;
}

.v2-eyebrow span {
    color: rgba(255,255,255,.35);
}

.v2-hero h1 {
    max-width: 800px;
    margin: 22px 0;

    font-family: "Playfair Display", serif;
    font-size: clamp(52px, 6vw, 86px);
    line-height: .98;
    font-weight: 500;
}

.v2-hero h1 span {
    color: var(--v2-gold-light);
}

.v2-hero-text {
    max-width: 650px;

    color: rgba(255,255,255,.72);

    font-size: 16px;
    line-height: 1.85;
}

.v2-hero-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
}

.hero-outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 21px;

    color: #fff;
    border: 1px solid rgba(255,255,255,.3);

    font-size: 12px;

    transition: .3s ease;
}

.hero-outline-btn:hover {
    color: #fff;
    border-color: var(--v2-gold);
    background: rgba(201,150,22,.12);
}

.v2-hero-trust {
    display: flex;
    gap: 35px;
    margin-top: 55px;
}

.v2-hero-trust > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.v2-hero-trust i {
    color: var(--v2-gold-light);
    font-size: 21px;
}

.v2-hero-trust span {
    display: flex;
    flex-direction: column;

    color: rgba(255,255,255,.55);

    font-size: 10px;
    line-height: 1.5;
}

.v2-hero-trust strong {
    color: #fff;
}


/* =========================================================
   QUICK SERVICES
========================================================= */

.quick-services {
    position: relative;
    z-index: 5;
    margin-top: -65px;
}

.quick-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    background: #fff;

    box-shadow: 0 25px 70px rgba(0,0,0,.14);
}

.quick-service-card {
    position: relative;

    min-height: 190px;
    padding: 28px 25px;

    display: flex;
    gap: 15px;

    color: var(--v2-text);

    border-right: 1px solid var(--v2-border);

    transition: .3s ease;
}

.quick-service-card:last-child {
    border-right: 0;
}

.quick-service-card:hover {
    color: var(--v2-text);
    transform: translateY(-6px);
}

.quick-icon {
    flex-shrink: 0;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--v2-gold);
    background: rgba(201,150,22,.1);

    font-size: 20px;
}

.quick-service-card span {
    display: block;

    color: var(--v2-gold);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.quick-service-card h4 {
    margin: 6px 0;

    font-family: "Playfair Display", serif;
    font-size: 18px;
}

.quick-service-card p {
    max-width: 200px;

    margin: 0;

    color: var(--v2-muted);

    font-size: 11px;
    line-height: 1.6;
}

.quick-arrow {
    position: absolute;
    right: 22px;
    bottom: 22px;

    color: var(--v2-gold);
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.v2-section {
    padding: 115px 0;
    background: #fff;
}

.v2-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;

    margin-bottom: 45px;
}

.section-label {
    color: var(--v2-gold);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.v2-section-heading h2,
.v2-centered-heading h2,
.v2-dark-section h2,
.v2-water-section h2,
.v2-why-section h2,
.v2-cta h2 {
    margin: 10px 0 0;

    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
}

.v2-section-heading h2 span,
.v2-centered-heading h2 span,
.v2-dark-section h2 span,
.v2-water-section h2 span,
.v2-why-section h2 span,
.v2-cta h2 span {
    color: var(--v2-gold);
}

.v2-text-link {
    color: var(--v2-text);

    font-size: 11px;
    font-weight: 700;
}

.v2-text-link i {
    margin-left: 7px;
    color: var(--v2-gold);
}


/* =========================================================
   PROPERTY CARDS
========================================================= */

.v2-property-card {
    height: 100%;

    background: #fff;

    border: 1px solid var(--v2-border);

    transition: .35s ease;
}

.v2-property-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 50px rgba(0,0,0,.1);
}

.v2-property-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.v2-property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: .6s ease;
}

.v2-property-card:hover .v2-property-image img {
    transform: scale(1.06);
}

.v2-property-badge {
    position: absolute;
    top: 16px;
    left: 16px;

    padding: 7px 10px;

    color: #fff;
    background: var(--v2-gold);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
}

.v2-heart {
    position: absolute;
    top: 15px;
    right: 15px;

    width: 37px;
    height: 37px;

    border: 0;
    border-radius: 50%;

    background: #fff;

    transition: .25s;
}

.v2-heart:hover {
    color: var(--v2-gold);
}

.v2-property-body {
    padding: 25px;
}

.v2-property-body > span {
    color: var(--v2-gold);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.v2-property-body h3 {
    margin: 8px 0;

    font-family: "Playfair Display", serif;
    font-size: 22px;
}

.v2-property-body > p {
    margin: 0;

    color: var(--v2-muted);

    font-size: 11px;
}

.v2-property-body > p i {
    color: var(--v2-gold);
}

.v2-property-meta {
    display: flex;
    gap: 15px;

    margin: 20px 0;
    padding: 14px 0;

    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;

    color: var(--v2-muted);

    font-size: 10px;
}

.v2-property-meta i {
    color: var(--v2-gold);
}

.v2-property-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.v2-property-bottom strong {
    font-size: 18px;
}

.v2-property-bottom a {
    color: var(--v2-gold);

    font-size: 10px;
    font-weight: 700;
}


/* =========================================================
   DARK CONSTRUCTION SECTION
========================================================= */

.v2-dark-section {
    padding: 120px 0;

    background:
        linear-gradient(
            120deg,
            #0d0c0a,
            #17140e
        );

    color: #fff;
}

.v2-dark-section h2 {
    max-width: 650px;
}

.v2-dark-section p {
    max-width: 580px;

    margin: 25px 0;

    color: #aaa69c;

    font-size: 14px;
    line-height: 1.85;
}

.v2-feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 14px;

    margin: 30px 0;
}

.v2-feature-list div {
    color: #ddd;

    font-size: 11px;
}

.v2-feature-list i {
    margin-right: 8px;
    color: var(--v2-gold-light);
}

.v2-image-frame {
    position: relative;
}

.v2-image-frame img {
    width: 100%;
    height: 560px;

    object-fit: cover;
}

.v2-image-tag {
    position: absolute;
    right: 25px;
    bottom: 25px;

    display: flex;
    flex-direction: column;

    padding: 20px 25px;

    color: #fff;
    background: var(--v2-gold);
}

.v2-image-tag strong {
    font-family: "Playfair Display", serif;
    font-size: 27px;
}

.v2-image-tag span {
    font-size: 8px;
    letter-spacing: 2px;
}


/* =========================================================
   INFRASTRUCTURE
========================================================= */

.infrastructure-section {
    background: var(--v2-cream);
}

.v2-centered-heading {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.v2-centered-heading p {
    max-width: 600px;
    margin: 20px auto 0;

    color: var(--v2-muted);

    font-size: 13px;
    line-height: 1.8;
}

.v2-infra-card {
    display: block;

    height: 100%;
    padding: 35px 28px;

    color: var(--v2-text);

    background: #fff;

    border: 1px solid var(--v2-border);

    transition: .35s ease;
}

.v2-infra-card:hover {
    color: var(--v2-text);
    transform: translateY(-7px);

    border-color: var(--v2-gold);

    box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.v2-infra-card > i {
    color: var(--v2-gold);

    font-size: 31px;
}

.v2-infra-card span {
    display: block;

    margin-top: 30px;

    color: var(--v2-gold);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.v2-infra-card h4 {
    margin: 7px 0;

    font-family: "Playfair Display", serif;
    font-size: 20px;
}

.v2-infra-card p {
    min-height: 58px;

    color: var(--v2-muted);

    font-size: 11px;
    line-height: 1.7;
}

.v2-infra-card b {
    color: var(--v2-text);

    font-size: 10px;
}

.v2-infra-card b i {
    margin-left: 5px;
    color: var(--v2-gold);
}


/* =========================================================
   WATER
========================================================= */

.v2-water-section {
    padding: 120px 0;
    background: #fff;
}

.v2-water-section p {
    max-width: 560px;

    margin: 25px 0;

    color: var(--v2-muted);

    font-size: 14px;
    line-height: 1.85;
}

.water-services {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-bottom: 30px;
}

.water-services div {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 13px;

    border: 1px solid var(--v2-border);

    font-size: 10px;
    font-weight: 600;
}

.water-services i {
    color: var(--v2-gold);
    font-size: 18px;
}

.water-visual {
    position: relative;
}

.water-visual img {
    width: 100%;
    height: 520px;

    object-fit: cover;
}

.water-floating-card {
    position: absolute;

    right: -20px;
    bottom: 30px;

    display: flex;
    align-items: center;
    gap: 15px;

    max-width: 330px;

    padding: 20px;

    background: #fff;

    box-shadow: 0 20px 50px rgba(0,0,0,.14);
}

.water-floating-card > i {
    color: var(--v2-gold);
    font-size: 28px;
}

.water-floating-card div {
    display: flex;
    flex-direction: column;
}

.water-floating-card strong {
    font-size: 12px;
}

.water-floating-card span {
    margin-top: 4px;

    color: var(--v2-muted);

    font-size: 9px;
}


/* =========================================================
   WHY
========================================================= */

.v2-why-section {
    padding: 110px 0;
    background: var(--v2-cream);
}

.v2-why-card {
    position: relative;

    height: 100%;
    padding: 35px 28px;

    background: #fff;

    border: 1px solid var(--v2-border);
}

.v2-why-card > span {
    position: absolute;
    top: 20px;
    right: 22px;

    color: #ddd8cc;

    font-family: "Playfair Display", serif;
    font-size: 28px;
}

.v2-why-card > i {
    display: block;

    margin-bottom: 25px;

    color: var(--v2-gold);

    font-size: 28px;
}

.v2-why-card h4 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
}

.v2-why-card p {
    margin: 10px 0 0;

    color: var(--v2-muted);

    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   PROJECTS
========================================================= */

.v2-projects-section {
    padding: 115px 0;
    background: #fff;
}

.project-filter {
    display: flex;
    gap: 8px;

    margin-bottom: 25px;
}

.project-filter button {
    padding: 9px 17px;

    color: var(--v2-muted);
    background: transparent;

    border: 1px solid var(--v2-border);

    font-size: 9px;
    font-weight: 600;

    transition: .25s ease;
}

.project-filter button:hover,
.project-filter button.active {
    color: #fff;
    background: var(--v2-gold);
    border-color: var(--v2-gold);
}

.project-large,
.project-small {
    position: relative;

    display: block;

    overflow: hidden;
}

.project-large {
    height: 560px;
}

.project-small-grid {
    display: grid;
    gap: 25px;
}

.project-small {
    height: 267px;
}

.project-large img,
.project-small img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .6s ease;
}

.project-large:hover img,
.project-small:hover img {
    transform: scale(1.06);
}

.project-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: end;

    padding: 30px;

    background:
        linear-gradient(
            transparent 35%,
            rgba(0,0,0,.82)
        );

    color: #fff;
}

.project-overlay span {
    color: var(--v2-gold-light);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.project-overlay h3,
.project-overlay h4 {
    margin: 7px 0 0;

    font-family: "Playfair Display", serif;
}

.project-overlay h3 {
    font-size: 28px;
}

.project-overlay h4 {
    font-size: 20px;
}


/* =========================================================
   CTA
========================================================= */

.v2-cta {
    padding: 0 0 110px;
    background: #fff;
}

.v2-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    padding: 65px;

    background: var(--v2-dark);
    color: #fff;
}

.v2-cta-box > div:first-child {
    max-width: 700px;
}

.v2-cta-box > div:first-child > span {
    color: var(--v2-gold-light);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.v2-cta h2 {
    margin-top: 12px;
    color: #fff;
}

.v2-cta p {
    max-width: 600px;

    margin: 15px 0 0;

    color: #9d9990;

    font-size: 12px;
    line-height: 1.7;
}

.v2-cta-actions {
    flex-shrink: 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.cta-phone {
    color: #fff;
    font-size: 11px;
}

.cta-phone i {
    margin-right: 6px;
    color: var(--v2-gold-light);
}


/* =========================================================
   FOOTER
========================================================= */

.v2-footer {
    padding: 80px 0 25px;

    color: #fff;
    background: #090806;
}

.v2-footer .footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 20px;
}

.v2-footer .footer-brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.v2-footer .footer-brand h4 {
    margin: 0;

    font-family: "Playfair Display", serif;
}

.v2-footer .footer-brand small {
    color: #77736a;
    font-size: 8px;
}

.v2-footer p {
    max-width: 370px;

    color: #858178;

    font-size: 12px;
    line-height: 1.8;
}

.v2-footer h5 {
    margin-bottom: 20px;

    font-size: 12px;
    font-weight: 600;
}

.v2-footer ul {
    padding: 0;
    margin: 0;

    list-style: none;
}

.v2-footer li {
    margin-bottom: 11px;

    color: #77736a;

    font-size: 11px;
}

.v2-footer li a {
    color: #77736a;
    transition: .25s ease;
}

.v2-footer li a:hover {
    color: var(--v2-gold-light);
}

.footer-contact li {
    display: flex;
    gap: 10px;
}

.footer-contact i {
    width: 17px;
    color: var(--v2-gold);
}

.footer-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 10px;

    color: var(--v2-gold-light);

    font-size: 10px;
    font-weight: 700;
}

.v2-footer .social-links {
    display: flex;
    gap: 8px;
    margin-top: 25px;
}

.v2-footer .social-links a {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #aaa;
    border: 1px solid #292722;

    transition: .25s ease;
}

/* =========================================================
   Consolidated page-specific styles (moved from inline <style> blocks)
   Each section below corresponds to the original page where the
   styles were inline. Keeping them here avoids scattering CSS.
========================================================= */

/* --- Legacy variable aliases (kept for backward compatibility) --- */
:root {
    --gold: var(--v2-gold);
    --gold-light: var(--v2-gold-light);
    --dark: var(--v2-dark);
    --dark-2: var(--v2-dark-2);
    --cream: var(--v2-cream);
    --white: #fff;
    --text: var(--v2-text);
    --muted: var(--v2-muted);
    --border: var(--v2-border);
}

/* --- Navbar / Buttons used across pages --- */
.navbar-brand img { max-height: 48px; width: auto; }
.dropdown-item { padding: 9px 14px; border-radius: 7px; }
.dropdown-item:hover { background: rgba(201,150,22,.1); color: var(--gold); }
.btn-gold { background: var(--gold); color: #fff; border: 1px solid var(--gold); padding: 11px 22px; border-radius: 5px; font-weight: 600; }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: #fff; }

/* --- Generic section utilities used by several pages --- */
.section-padding { padding: 90px 0; }
.section-label { color: var(--gold); font-size: .78rem; letter-spacing: 2.5px; font-weight: 700; text-transform: uppercase; }
.section-title { font-family: "Playfair Display", serif; font-size: clamp(2.2rem, 4vw, 3.6rem); line-height: 1.15; margin-top: 10px; }
.section-text { color: var(--muted); line-height: 1.85; }
.eyebrow { color: var(--gold-light); font-size: .8rem; letter-spacing: 3px; font-weight: 700; text-transform: uppercase; }

/* --- About page --- */
/* Styles moved from about-us.html */
.about-hero { min-height: 65vh; display:flex; align-items:center; position:relative; color:#fff; background: linear-gradient(rgba(17,16,13,.70), rgba(17,16,13,.82)), url("assets/images/primeland.jpeg") center/cover no-repeat; }
.about-hero h1 { font-family: "Playfair Display", serif; font-size: clamp(3rem, 7vw, 5.5rem); line-height:1.02; margin:18px 0 25px; }
.about-hero p { max-width:720px; color: rgba(255,255,255,.78); font-size:1.1rem; line-height:1.8; }
.story-image { min-height:480px; background: linear-gradient(rgba(17,16,13,.15), rgba(17,16,13,.25)), url("assets/images/primeland.jpeg") center/cover no-repeat; }
.story-box { background:#fff; padding:45px; margin-left:-70px; position:relative; box-shadow:0 20px 50px rgba(0,0,0,.08); }
.sector-card { height:100%; background:#fff; border:1px solid var(--border); padding:35px; transition:.3s ease; }
.sector-card:hover { transform: translateY(-6px); box-shadow:0 20px 45px rgba(0,0,0,.08); }
.sector-icon { width:60px; height:60px; background: rgba(201,150,22,.1); color:var(--gold); display:flex; align-items:center; justify-content:center; font-size:1.6rem; margin-bottom:25px; }
.dark-section { background: var(--dark); color:#fff; }
.dark-section .section-text { color: rgba(255,255,255,.64); }
.value-card { border-top:1px solid rgba(255,255,255,.15); padding-top:25px; height:100%; }

/* --- Contact page --- */
/* Styles moved from contact-us.html */
.contact-hero { min-height:58vh; display:flex; align-items:center; color:#fff; background: linear-gradient(rgba(17,16,13,.72), rgba(17,16,13,.82)), url("assets/images/primeland.jpeg") center/cover no-repeat; }
.contact-info-card { background:#fff; border:1px solid var(--border); padding:30px; height:100%; }
.contact-icon { width:55px; height:55px; display:flex; align-items:center; justify-content:center; background: rgba(201,150,22,.1); color:var(--gold); font-size:1.4rem; margin-bottom:20px; }
.form-wrapper { background:#fff; padding:45px; border:1px solid var(--border); box-shadow:0 20px 50px rgba(0,0,0,.06); }
.form-control, .form-select { border:1px solid var(--border); border-radius:4px; padding:13px 15px; min-height:50px; }
.form-control:focus, .form-select:focus { border-color:var(--gold); box-shadow:0 0 0 .2rem rgba(201,150,22,.12); }
.project-type { height:100%; border:1px solid var(--border); background:#fff; padding:28px; transition:.25s ease; }
.project-type:hover { border-color:var(--gold); transform: translateY(-4px); }

/* --- Infrastructure page --- */
/* Styles moved from infrastructure.html */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin:0; font-family: "DM Sans", sans-serif; color:var(--text); background:var(--cream); }
.navbar { background: #11100d; }
.navbar .nav-link { color: rgba(255,255,255,.78); font-size:.92rem; font-weight:500; margin:0 5px; }
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--gold-light); }
.dropdown-menu { background: var(--dark-2); border:1px solid rgba(201,150,22,.25); border-radius:8px; padding:8px; }
.dropdown-item { color: rgba(255,255,255,.8); padding:10px 13px; border-radius:5px; }
.btn-outline-light-custom { color:#fff; border:1px solid rgba(255,255,255,.45); padding:12px 22px; border-radius:4px; font-weight:600; }
.infra-hero { min-height:82vh; display:flex; align-items:center; position:relative; overflow:hidden; background: linear-gradient(90deg, rgba(17,16,13,.94) 0%, rgba(17,16,13,.76) 45%, rgba(17,16,13,.35) 100%), url("assets/images/primeland.jpeg") center/cover no-repeat; }

/* --- Projects page --- */
/* Styles moved from projects.html */
.projects-hero { min-height:70vh; display:flex; align-items:center; position:relative; overflow:hidden; background: linear-gradient(90deg, rgba(17,16,13,.95) 0%, rgba(17,16,13,.82) 50%, rgba(17,16,13,.4) 100%), url("assets/images/primeland.jpeg") center/cover no-repeat; }
.projects-hero::after { content: ""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(17,16,13,.75)); pointer-events:none; }
.hero-content { position:relative; z-index:2; padding:150px 0 90px; max-width:850px; text-align:left; }

/* Projects hero text styles (restored) */
.eyebrow {
    color: var(--gold-light);
    letter-spacing: 3px;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-title {
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 1.04;
    margin-bottom: 25px;
}

.hero-title span { color: var(--gold-light); }

.hero-text {
    color: rgba(255,255,255,.76);
    font-size: 1.06rem;
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 30px;
}

/* --- Services overview & Services page --- */
/* Styles moved from services-overview.html and services.html */
.services-hero { position:relative; color:white; text-align:left; padding: 180px 0 100px; background: linear-gradient(rgba(17,16,13,.72), rgba(17,16,13,.78)), url("assets/images/primeland.jpeg") center/cover no-repeat; }
.services-hero::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(17,16,13,.7)); pointer-events:none; }
.services-hero-content { position:relative; text-align:left; padding: 180px 0 100px; }
.service-card { height:100%; background:#fff; border:1px solid var(--border); padding:35px; transition:.3s ease; position:relative; overflow:hidden; }
.service-card::before { content:""; position:absolute; width:4px; height:0; background:var(--gold); left:0; top:0; transition:.3s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow:0 20px 45px rgba(0,0,0,.09); }
.service-card:hover::before { height:100%; }
.service-card h3 { font-family: "Playfair Display", serif; font-size:1.55rem; margin-bottom:14px; }
.service-card p { color: var(--muted); line-height:1.75; margin-bottom:20px; }
.service-card.dark-service { background:var(--dark-2); border:1px solid rgba(255,255,255,.08); color:white; }
.service-card.dark-service p { color:rgba(255,255,255,.6); }
.service-link { color:var(--gold); text-decoration:none; font-weight:700; font-size:.9rem; }
.service-link i { transition:.2s ease; }
.service-link:hover i, .service-card:hover .service-link i { margin-left:5px; }
.service-group { height:100%; background:#fff; border:1px solid var(--border); padding:38px; position:relative; overflow:hidden; transition:.3s ease; }
.service-group::before { content:""; position:absolute; left:0; top:0; width:100%; height:3px; background:var(--gold); transform:scaleX(0); transform-origin:left; transition:.3s ease; }
.service-group:hover { transform: translateY(-7px); box-shadow:0 20px 50px rgba(0,0,0,.09); }
.service-group:hover::before { transform:scaleX(1); }
.service-group h3 { font-family: "Playfair Display", serif; font-size:1.7rem; margin-bottom:15px; }
.service-group > p { color:var(--muted); line-height:1.75; margin-bottom:25px; }
.service-list { list-style:none; padding:0; margin:0 0 28px; }
.service-list li { color:#555149; padding:9px 0; border-bottom:1px solid var(--border); font-size:.92rem; }
.service-list li:last-child { border-bottom:0; }
.service-list i { color:var(--gold); margin-right:8px; }

/* =========================================================
   PROJECTS (moved from projects.html)
========================================================= */

.project-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 45px;
}

.filter-btn {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 10px 19px;
    border-radius: 3px;
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    transition: .25s ease;
}

.filter-btn:hover,
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; }

.project-card { position: relative; overflow: hidden; min-height: 390px; background: #222; cursor: pointer; }
.project-card img { width:100%; height:100%; min-height:390px; object-fit:cover; display:block; transition: transform .55s ease; }
.project-card:hover img { transform: scale(1.07); }
.project-overlay { position:absolute; inset:0; display:flex; align-items:flex-end; padding:30px; background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,.9) 100%); }
.project-info { width:100%; }
.project-category { color: var(--gold-light); font-size:.7rem; font-weight:700; letter-spacing:2px; text-transform:uppercase; margin-bottom:8px; }
.project-title { color:#fff; font-family:"Playfair Display", serif; font-size:1.65rem; margin-bottom:8px; }
.project-location { color: rgba(255,255,255,.63); font-size:.84rem; }
.project-location i { color: var(--gold-light); margin-right:5px; }
.project-arrow { position:absolute; right:25px; top:25px; width:44px; height:44px; display:flex; align-items:center; justify-content:center; background: rgba(17,16,13,.75); border:1px solid rgba(255,255,255,.2); border-radius:50%; color:#fff; transition:.25s ease; }
.project-card:hover .project-arrow { background: var(--gold); border-color: var(--gold); }

.featured-project { background:#fff; border:1px solid var(--border); }
.featured-image { min-height:500px; height:100%; overflow:hidden; }
.featured-image img { width:100%; height:100%; min-height:500px; object-fit:cover; }
.featured-content { padding:55px; }
.featured-content h3 { font-family:"Playfair Display", serif; font-size:2.4rem; margin-bottom:18px; }
.featured-content p { color: var(--muted); line-height:1.8; }
.project-meta { border-top:1px solid var(--border); margin-top:30px; padding-top:25px; }
.meta-label { color: var(--muted); font-size:.72rem; text-transform:uppercase; letter-spacing:1.5px; margin-bottom:5px; }
.meta-value { font-weight:600; }

.capability { height:100%; padding:35px; border:1px solid rgba(255,255,255,.1); transition:.3s ease; }
.capability:hover { border-color: rgba(201,150,22,.5); transform: translateY(-4px); }
.capability i { color: var(--gold-light); font-size:1.8rem; }
.capability h4 { color:#fff; font-family: "Playfair Display", serif; margin:20px 0 12px; }
.capability p { color: rgba(255,255,255,.55); line-height:1.7; margin:0; }

.btn-dark-custom { background: var(--dark); color:#fff; border:1px solid var(--dark); padding:14px 25px; border-radius:4px; font-weight:700; transition:.25s ease; }
.btn-dark-custom:hover { background:#000; color:#fff; transform: translateY(-2px); }

/* Footer and responsive rules moved */
footer { background:#0c0b09; color:#fff; padding:70px 0 25px; }
footer h5 { font-family:"Playfair Display", serif; margin-bottom:20px; }
footer p, footer li, footer a { color: rgba(255,255,255,.57); line-height:1.8; }
footer a:hover { color: var(--gold-light); }
footer ul { list-style:none; padding:0; margin:0; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); margin-top:50px; padding-top:20px; color: rgba(255,255,255,.38); font-size:.85rem; }



/* Footer logo helper */
.footer-logo { max-height: 50px; width: auto; }
.service-icon, .sector-icon { width:58px; height:58px; display:flex; align-items:center; justify-content:center; background: rgba(201,150,22,.1); color:var(--gold); font-size:1.6rem; margin-bottom:24px; }

/* --- Stats section (infrastructure page) --- */
.stats-section { background:var(--dark-2); border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06); }
.stat { text-align:center; padding:25px; }
.stat-number { font-family:"Playfair Display", serif; font-size:3rem; color:var(--gold-light); font-weight:700; }
.stat-label { color:rgba(255,255,255,.58); font-size:.88rem; text-transform:uppercase; letter-spacing:1.5px; }

/* --- Infra hero overlay --- */
.infra-hero::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg, transparent 65%, rgba(17,16,13,.75)); pointer-events:none; }
.infra-hero .hero-content { padding:150px 0 100px; }

/* --- Feature strip (services-overview) --- */
.feature-strip { background:var(--dark-2); padding:65px 0; }
.feature-box { padding:20px 25px; border-right:1px solid rgba(255,255,255,.08); }
.feature-box:last-child { border-right:0; }
.feature-box i { color:var(--gold-light); font-size:1.7rem; margin-bottom:15px; }
.feature-box h5 { color:#fff; font-family:"Playfair Display", serif; margin-bottom:8px; }
.feature-box p { color:rgba(255,255,255,.55); margin:0; font-size:.9rem; line-height:1.65; }

/* --- Detail cards (services-overview dark section) --- */
.detail-card { border:1px solid rgba(255,255,255,.1); padding:32px; height:100%; transition:.3s ease; }
.detail-card:hover { border-color:rgba(201,150,22,.55); background:rgba(255,255,255,.025); }
.detail-card .number { color:var(--gold-light); font-size:.8rem; font-weight:700; letter-spacing:2px; }
.detail-card h4 { font-family:"Playfair Display", serif; color:#fff; font-size:1.35rem; margin:14px 0; }
.detail-card p { color:rgba(255,255,255,.57); line-height:1.7; margin:0; }

/* --- Process card (services-overview light section) --- */
.process-card { height:100%; background:#fff; border:1px solid var(--border); padding:30px; text-align:center; }
.process-card h4 { font-family:"Playfair Display", serif; font-size:1.3rem; text-align:center; }
.process-card p { color:var(--muted); line-height:1.7; margin-bottom:0; text-align:center; }

/* --- Contact page detailed styles --- */
.contact-hero h1 { font-family:"Playfair Display", serif; font-size:clamp(3rem, 7vw, 5.5rem); line-height:1; margin:18px 0 25px; }
.contact-hero p { max-width:680px; color:rgba(255,255,255,.78); font-size:1.1rem; line-height:1.8; }
.contact-info-card h3 { font-family:"Playfair Display", serif; font-size:1.4rem; }
.contact-info-card p { color:var(--muted); line-height:1.7; margin-bottom:0; }
.contact-info-card a { color:var(--text); text-decoration:none; font-weight:600; }
.contact-info-card a:hover { color:var(--gold); }
textarea.form-control { min-height:150px; resize:vertical; }
.form-label { font-weight:600; font-size:.9rem; margin-bottom:8px; }
.project-type i { color:var(--gold); font-size:1.5rem; }
.project-type h4 { font-family:"Playfair Display", serif; margin-top:15px; }
.project-type p { color:var(--muted); line-height:1.7; margin-bottom:0; }

/* --- About page CTA section with background --- */
.cta-section { background:linear-gradient(rgba(17,16,13,.92), rgba(17,16,13,.92)), url("assets/images/primeland.jpeg") center/cover; color:#fff; }
.cta-section h2 { font-family:"Playfair Display", serif; font-size:clamp(2.3rem, 5vw, 4rem); }
.cta-section p { color:rgba(255,255,255,.7); line-height:1.8; }
.max-w-650 { max-width:650px; }
.max-w-700 { max-width:700px; }

/* --- Value card details (about page) --- */
.value-card span { color:var(--gold); font-weight:700; font-size:.8rem; letter-spacing:2px; }
.value-card h3 { font-family:"Playfair Display", serif; margin-top:12px; }
.value-card p { color:rgba(255,255,255,.6); line-height:1.7; }

/* --- Sector card h3/p (about page) --- */
.sector-card h3 { font-family:"Playfair Display", serif; }
.sector-card p { color:var(--muted); line-height:1.75; }

/* --- Quote box (services page) --- */
.quote-box { max-width:850px; margin:auto; }
.quote-box h2 { font-family:"Playfair Display", serif; font-size:clamp(2.3rem, 5vw, 4rem); }
.quote-box p { color:rgba(255,255,255,.7); line-height:1.8; }

/* --- Generic section utilities --- */
.section { padding:100px 0; }
.section-dark { background:var(--dark); color:#fff; }
.section-dark .section-text { color:rgba(255,255,255,.63); }
.section-heading { font-family:"Playfair Display", serif; font-size:clamp(2.2rem, 4vw, 3.5rem); line-height:1.1; margin-bottom:18px; }
.section-heading span { color:var(--gold); }
.section-text { color:var(--muted); line-height:1.8; max-width:720px; }

/* --- Navbar generic (for pages without primeland-navbar) --- */
.navbar { background:#0c0b09; border-bottom:1px solid rgba(255,255,255,.08); }
.navbar .nav-link { color:rgba(255,255,255,.78); font-size:.92rem; font-weight:500; margin:0 5px; }
.navbar .nav-link:hover, .navbar .nav-link.active { color:var(--gold-light); }
.navbar .btn-gold { margin-top:0; }
.btn-outline-light-custom { color:#fff; border:1px solid rgba(255,255,255,.45); padding:12px 22px; border-radius:4px; font-weight:600; transition:.25s ease; }
.btn-outline-light-custom:hover { background:#fff; color:var(--dark); }

/* --- Service icon shared --- */
.service-icon { width:58px; height:58px; display:flex; align-items:center; justify-content:center; background:rgba(201,150,22,.1); color:var(--gold); font-size:1.6rem; margin-bottom:24px; border-radius:50%; }

/* --- Process number (circular, services page) --- */
.process-number { width:48px; height:48px; border:1px solid rgba(201,150,22,.5); color:var(--gold); display:flex; align-items:center; justify-content:center; border-radius:50%; font-weight:700; margin-bottom:20px; margin-left:auto; margin-right:auto; }
.process-item { text-align:center; }
.process-item h4 { font-family:"Playfair Display", serif; text-align:center; }
.process-item p { color:var(--muted); line-height:1.7; text-align:center; }

/* --- News page styles --- */
.news-heading { background:var(--dark); color:#fff; padding:180px 0 80px; }
.news-heading h1 { font-family:"Playfair Display", serif; font-size:clamp(3rem, 6vw, 5rem); line-height:1.05; margin:18px 0; }
.news-heading h1 span { color:var(--gold); }
.news-section { padding:80px 0; }
.featured-news { display:grid; grid-template-columns:1fr 1fr; background:#fff; border:1px solid var(--border); overflow:hidden; margin-bottom:50px; }
.featured-image { min-height:400px; overflow:hidden; }
.featured-image img { width:100%; height:100%; object-fit:cover; }
.featured-content { padding:45px; display:flex; flex-direction:column; justify-content:center; }
.featured-content span { color:var(--gold); font-size:10px; font-weight:700; letter-spacing:1.5px; }
.featured-content h2 { font-family:"Playfair Display", serif; font-size:2rem; margin:12px 0; }
.featured-content p { color:var(--muted); line-height:1.8; }
.featured-content small { color:var(--muted); font-size:12px; }
.featured-content a { color:var(--gold); font-weight:700; font-size:13px; margin-top:15px; display:inline-flex; align-items:center; gap:6px; }
.news-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:30px; }
.news-grid article { background:#fff; border:1px solid var(--border); overflow:hidden; transition:.3s; }
.news-grid article:hover { transform:translateY(-5px); box-shadow:0 15px 40px rgba(0,0,0,.08); }
.news-grid article img { width:100%; height:220px; object-fit:cover; }
.news-grid article div { padding:25px; }
.news-grid article span { color:var(--gold); font-size:10px; font-weight:700; letter-spacing:1.5px; }
.news-grid article h3 { font-family:"Playfair Display", serif; font-size:1.3rem; margin:10px 0; }
.news-grid article p { color:var(--muted); font-size:13px; line-height:1.7; }
.news-grid article a { color:var(--gold); font-weight:700; font-size:12px; display:inline-flex; align-items:center; gap:5px; }

/* --- Agents page styles --- */
.agents-hero { background:var(--dark); color:#fff; padding:180px 0 80px; text-align:center; }
.agents-hero h1 { font-family:"Playfair Display", serif; font-size:clamp(3rem, 6vw, 5rem); line-height:1.05; margin:18px 0; }
.agents-hero h1 span { color:var(--gold); }
.agents-hero p { color:rgba(255,255,255,.7); max-width:550px; margin:0 auto; line-height:1.8; }
.agents-section { padding:80px 0; }
.agent-card { background:#fff; border:1px solid var(--border); overflow:hidden; transition:.3s; }
.agent-card:hover { transform:translateY(-5px); box-shadow:0 15px 40px rgba(0,0,0,.08); }
.agent-photo { position:relative; height:320px; overflow:hidden; }
.agent-photo img { width:100%; height:100%; object-fit:cover; }
.agent-social { position:absolute; bottom:15px; left:15px; display:flex; gap:8px; opacity:0; transition:.3s; }
.agent-card:hover .agent-social { opacity:1; }
.agent-social a { width:36px; height:36px; display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,.9); color:var(--dark); border-radius:50%; font-size:14px; }
.agent-info { padding:25px; }
.agent-info span { color:var(--gold); font-size:10px; font-weight:700; letter-spacing:1.5px; }
.agent-info h3 { font-family:"Playfair Display", serif; font-size:1.4rem; margin:8px 0; }
.agent-info p { color:var(--muted); font-size:13px; margin-bottom:15px; }
.agent-info a { color:var(--gold); font-weight:700; font-size:12px; display:inline-flex; align-items:center; gap:5px; }

/* End of consolidated page-specific styles */

.v2-footer .social-links a:hover {
    color: #fff;
    background: var(--v2-gold);
    border-color: var(--v2-gold);
}

.v2-footer hr {
    margin: 50px 0 20px;

    border-color: #292722;
}

.v2-footer .footer-bottom {
    display: flex;
    justify-content: space-between;

    color: #5f5c55;

    font-size: 9px;
}


/* =========================================================
   RESPONSIVE — GLOBAL
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

/* =========================================================
   MOBILE FIT & STICKY NAVBAR
   Ensures no horizontal overflow, breaks long words/URLs,
   and makes the navbar sticky across all screen sizes.
========================================================= */

/* Make navbar fixed on top for all screens */
.primeland-navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
}

/* Prevent content from breaking out of the viewport */
html, body {
    overflow-x: hidden;
}

/* Break long words/URLs and allow hyphenation where supported */
body, .container, header, nav, main, section, footer,
h1, h2, h3, h4, h5, h6, p, li, a, span, strong {
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
    white-space: normal;
}

/* Ensure media elements never overflow */
img, picture, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Slightly reduce horizontal padding on small screens */
@media (max-width: 767px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    /* Scale down oversized headings to fit better */
    h1 { font-size: clamp(28px, 6vw, 42px); }
    h2 { font-size: clamp(20px, 5vw, 32px); }
    h3 { font-size: clamp(18px, 4.5vw, 24px); }

    /* Ensure hero sections don't force horizontal scroll */
    .v2-hero, .about-hero, .projects-hero, .services-hero, .infra-hero {
        padding-left: 12px;
        padding-right: 12px;
    }
}



/* =========================================================
   ROAD CONSTRUCTION EQUIPMENT
======================================================== */

.equipment-section {
    background: #fff;
}

.equipment-image-grid {
    position: relative;
    height: 480px;
}

.equipment-img-main {
    width: 70%;
    height: 100%;
    object-fit: cover;
}

.equipment-img-secondary {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 55%;
    height: 60%;
    object-fit: cover;
    border: 5px solid #fff;
}

.equipment-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.equipment-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.equipment-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
}

.equipment-item h5 {
    margin: 0 0 5px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
}

.equipment-item p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   GEOTECHNICAL PROCESSES
======================================================== */

.geotechnical-section {
    background: var(--cream);
}

.geotech-card {
    background: #fff;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: .35s ease;
    height: 100%;
}

.geotech-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
}

.geotech-card-image {
    height: 200px;
    overflow: hidden;
}

.geotech-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.geotech-card:hover .geotech-card-image img {
    transform: scale(1.08);
}

.geotech-card-body {
    padding: 25px;
}

.geotech-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,150,22,.1);
    color: var(--gold);
    font-size: 22px;
    margin-bottom: 15px;
}

.geotech-card-body h4 {
    margin: 0 0 10px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
}

.geotech-card-body p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   TABLET (max-width: 991px)
========================================================= */

@media (max-width: 991px) {

    /* --- Navbar --- */
    .primeland-navbar {
        background: #0c0b09;
        backdrop-filter: none;
    }

    .primeland-navbar .navbar-collapse {
        padding: 20px 0 10px;
    }

    .primeland-navbar .dropdown-menu {
        margin-top: 0;
        border: 0;
        box-shadow: none;
    }

    .nav-quote-btn {
        display: inline-block;
        margin-top: 12px;
    }

    .navbar .btn-gold {
        width: 100%;
        margin-top: 10px;
    }

    /* --- Homepage v2 hero --- */
    .v2-hero {
        min-height: 700px;
    }

    .quick-services {
        margin-top: 0;
        padding-top: 30px;
        background: var(--v2-cream);
    }

    .quick-services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .quick-service-card:nth-child(2) {
        border-right: 0;
    }

    .quick-service-card:nth-child(-n+2) {
        border-bottom: 1px solid var(--v2-border);
    }

    .v2-image-frame img {
        height: 400px;
    }

    .water-floating-card {
        right: 15px;
    }

    .v2-cta-box {
        padding: 40px;
    }

    /* --- Construction page --- */
    .construction-hero {
        min-height: 650px;
    }

    .construction-hero-content {
        padding-top: 50px;
    }

    .construction-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    /* --- Services/Services-overview hero --- */
    .services-hero {
        min-height: 70vh;
    }

    .services-hero .hero-content,
    .services-hero-content {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .services-hero h1,
    .hero-title {
        font-size: 42px;
    }

    /* --- Infrastructure hero --- */
    .infra-hero {
        min-height: 80vh;
    }

    .infra-hero .hero-content {
        padding-top: 120px;
    }

    /* --- Projects hero --- */
    .projects-hero {
        min-height: 70vh;
    }

    .projects-hero .hero-content {
        padding-top: 120px;
    }

    /* --- About hero --- */
    .about-hero {
        min-height: 55vh;
    }

    /* --- Contact hero --- */
    .contact-hero {
        min-height: 50vh;
    }

    /* --- News/Agents hero --- */
    .news-heading,
    .agents-hero {
        padding-top: 140px;
        padding-bottom: 60px;
    }

    /* --- Featured news grid --- */
    .featured-news {
        grid-template-columns: 1fr;
    }

    /* --- Section spacing --- */
    .section-padding,
    .v2-section,
    .v2-dark-section,
    .v2-water-section,
    .v2-why-section,
    .v2-projects-section,
    .section {
        padding: 75px 0;
    }

    /* --- Footer --- */
    .v2-footer .footer-bottom {
        display: block;
    }

    .v2-footer .footer-bottom span {
        display: block;
        margin-bottom: 8px;
    }

    .footer-bottom {
        display: block;
        text-align: center;
    }

    .footer-bottom span {
        display: block;
        margin-bottom: 8px;
    }

    /* --- CTA boxes --- */
    .v2-cta-box,
    .cta-box,
    .team-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 35px 25px;
    }

    .v2-cta-actions,
    .cta-box .btn,
    .team-cta-box .btn {
        margin-top: 25px;
    }

    /* --- Featured content --- */
    .featured-content {
        padding: 30px;
    }

    /* --- Story box --- */
    .story-box {
        margin-left: 0;
        margin-top: -40px;
    }

    /* --- Why section image --- */
    .why-image {
        padding-right: 0;
    }

    .why-image img {
        height: 400px;
    }

}


/* =========================================================
   MOBILE (max-width: 767px)
========================================================= */

@media (max-width: 767px) {

    /* --- Global text fixes on mobile --- */
    p, h1, h2, h3, h4, h5, h6, span, a, div, li, td, th, label, .section-text, .hero-text, .v2-hero-text, .construction-intro-text, .process-intro-text, .featured-content p, .article-body p, .story-box p, .cta-section p, .v2-dark-section p, .construction-hero p, .infra-hero p, .projects-hero p, .about-hero p, .contact-hero p, .agents-hero p, .news-heading p, .equipment-item p, .handling-feature p, .geotech-card-body p, .process-card-body p, .process-item p, .construction-service-card p, .professional-handling p, .construction-tools p {
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
    }

    .nav-quote-btn {
        white-space: normal;
        text-align: center;
    }

    /* Ensure no text container clips on mobile */
    .v2-hero-text,
    .hero-text,
    .section-text,
    .construction-intro-text,
    .process-intro-text,
    .professional-handling p,
    .construction-tools p,
    .about-hero p,
    .contact-hero p,
    .agents-hero p,
    .construction-hero p,
    .infra-hero p,
    .projects-hero p,
    .max-w-650,
    .max-w-700,
    .v2-dark-section h2,
    .v2-dark-section p,
    .v2-centered-heading p,
    .construction-service-card p,
    .featured-content p,
    .story-box p {
        max-width: 100% !important;
        overflow: visible !important;
    }

    /* Hero h1 never clip */
    .v2-hero h1,
    .hero h1,
    .hero-title,
    .construction-hero h1,
    .services-hero h1,
    .infra-hero h1,
    .projects-hero h1,
    .about-hero h1,
    .contact-hero h1,
    .agents-hero h1,
    .news-heading h1,
    .team-hero h1 {
        max-width: 100% !important;
        overflow: visible !important;
    }

    /* Navbar always dark on mobile --- */
    .primeland-navbar,
    .navbar,
    .navbar.navbar-expand-lg {
        background: #0c0b09 !important;
        backdrop-filter: none !important;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .navbar-toggler {
        border-color: rgba(255,255,255,.25);
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar-collapse {
        background: #0c0b09;
        padding: 15px 0 10px;
        margin-top: 5px;
        border-top: 1px solid rgba(255,255,255,.08);
    }

    .navbar .nav-link {
        padding: 10px 15px !important;
    }

    .navbar .btn-gold,
    .navbar .nav-quote-btn {
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }

    /* --- Brand --- */
    .brand-logo {
        width: 38px;
        height: 38px;
    }

    .brand-title {
        font-size: 16px;
    }

    .brand-lockup small {
        font-size: 7px;
    }

    /* --- Homepage v2 hero --- */
    .v2-hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .v2-hero h1 {
        font-size: 42px;
    }

    .v2-hero-text {
        font-size: 14px;
    }

    .v2-hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .v2-hero-trust {
        gap: 15px;
        flex-wrap: wrap;
    }

    .quick-services-grid {
        grid-template-columns: 1fr;
    }

    .quick-service-card {
        border-right: 0;
        border-bottom: 1px solid var(--v2-border);
    }

    .quick-service-card:last-child {
        border-bottom: 0;
    }

    /* --- Section headings --- */
    .v2-section-heading {
        display: block;
    }

    .v2-text-link {
        display: inline-block;
        margin-top: 15px;
    }

    .v2-feature-list {
        grid-template-columns: 1fr;
    }

    .v2-image-frame img,
    .water-visual img {
        height: 300px;
    }

    .water-floating-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: -20px;
        margin-left: 15px;
    }

    .project-filter {
        flex-wrap: wrap;
    }

    .project-large {
        height: 300px;
    }

    .project-small {
        height: 220px;
    }

    .project-card,
    .project-card img {
        min-height: 260px;
    }

    .featured-image,
    .featured-image img {
        min-height: 250px;
    }

    .featured-content {
        padding: 25px;
        overflow: visible;
    }

    .featured-content h2,
    .featured-content h3 {
        font-size: 1.5rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    /* --- Construction page --- */
    .construction-hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .construction-hero h1 {
        font-size: 38px;
    }

    .construction-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .construction-intro,
    .construction-services,
    .construction-process,
    .construction-cta {
        padding: 60px 0;
    }

    .construction-service-card {
        padding: 28px;
        min-height: auto;
    }

    .construction-cta-box {
        padding: 25px 20px;
    }

    .construction-cta-box .gold-btn {
        margin-top: 20px;
    }    /* --- Services/Services-overview hero --- */
    .services-hero {
        min-height: auto;
        padding: 120px 0 50px;
    }

    .services-hero .hero-content,
    .services-hero-content {
        padding: 120px 0 50px;
    }

    .services-hero h1,
    .hero-title {
        font-size: 36px !important;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .services-hero p,
    .hero-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .services-hero .d-flex,
    .services-hero-content .d-flex {
        flex-direction: column;
        align-items: stretch;
        gap: 12px !important;
    }

    .services-hero .btn,
    .services-hero-content .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 12px 20px;
    }

    .service-card {
        padding: 28px;
        overflow: visible;
    }

    .service-group {
        padding: 28px;
        overflow: visible;
    }

    .geotech-card,
    .geotech-card-body,
    .process-card,
    .process-card-body,
    .construction-service-card,
    .construction-tools,
    .professional-handling {
        overflow: visible;
    }

    .dark-section .row {
        gap: 30px;
    }

    /* --- Infrastructure hero --- */
    .infra-hero {
        min-height: auto;
        padding: 120px 0 50px;
    }

    .infra-hero .hero-content {
        padding-top: 0;
    }

    .infra-hero .hero-title {
        font-size: 34px;
    }

    .infra-hero .d-flex {
        flex-direction: column;
        gap: 12px;
    }

    .infra-hero .btn {
        width: 100%;
        text-align: center;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: .75rem;
    }

    /* --- Projects hero --- */
    .projects-hero {
        min-height: auto;
        padding: 120px 0 50px;
    }

    .projects-hero .hero-content {
        padding-top: 0;
    }

    .projects-hero .hero-title {
        font-size: 34px;
    }

    /* --- About hero --- */
    .about-hero {
        min-height: auto;
        padding: 120px 0 50px;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .story-box {
        padding: 25px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .story-image {
        min-height: 300px;
    }

    /* --- Contact hero --- */
    .contact-hero {
        min-height: auto;
        padding: 120px 0 50px;
    }

    .contact-hero h1 {
        font-size: 36px;
    }

    .form-wrapper {
        padding: 25px 20px;
    }

    /* --- News/Agents hero --- */
    .news-heading,
    .agents-hero {
        padding: 120px 0 50px;
    }

    .news-heading h1,
    .agents-hero h1 {
        font-size: 34px;
    }

    .team-hero {
        min-height: auto;
        padding: 120px 0 50px;
    }

    .team-hero-content {
        padding-top: 0;
    }

    .team-hero h1 {
        font-size: 36px;
    }

    /* --- Equipment/infrastructure sections --- */
    .equipment-list,
    .equipment-item,
    .handling-features,
    .handling-feature,
    .tools-list,
    .geotech-card,
    .geotech-card-body,
    .process-card,
    .process-card-body,
    .process-item,
    .construction-cta-box {
        overflow: visible;
    }

    .equipment-image-grid,
    .handling-image-grid,
    .tools-image-grid {
        height: auto;
    }

    .equipment-img-main,
    .equipment-img-secondary,
    .handling-img-main,
    .handling-img-secondary,
    .tools-img-main,
    .tools-img-secondary {
        position: relative;
        width: 100%;
        height: auto;
    }

    .tools-list {
        grid-template-columns: 1fr;
    }

    .feature-strip {
        padding: 40px 0;
    }

    .feature-box {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
        padding: 20px 0;
    }

    .feature-box:last-child {
        border-bottom: 0;
    }

    /* --- Section spacing --- */
    .section-padding,
    .section {
        padding: 60px 0;
    }

    .section-heading-center h2,
    .section-heading h2,
    .section-title {
        font-size: 30px;
    }

    .v2-section,
    .v2-dark-section,
    .v2-water-section,
    .v2-why-section,
    .v2-projects-section {
        padding: 60px 0;
    }

    /* --- CTA boxes --- */
    .v2-cta-box,
    .cta-box,
    .team-cta-box {
        padding: 30px 20px;
    }

    .v2-cta-box h2,
    .cta-box h2,
    .team-cta-box h2 {
        font-size: 28px;
    }

    .v2-cta-actions {
        margin-top: 25px;
    }

    /* --- Footer --- */
    .footer {
        padding: 50px 0 20px;
    }

    .footer-bottom {
        display: block;
        text-align: center;
    }

    .footer-bottom span {
        display: block;
        margin-bottom: 8px;
    }

    /* --- Property images --- */
    .v2-property-image {
        height: 220px;
    }

    .property-image {
        height: 200px;
    }

    .listing-image {
        height: 200px;
    }

    /* --- Utility --- */
    .max-w-650 { max-width: 100%; }
    .max-w-700 { max-width: 100%; }

    /* --- Why section --- */
    .why-section h2 {
        font-size: 32px;
    }

    .why-image img {
        height: 300px;
    }

    .experience-box {
        padding: 18px;
    }

    .experience-box strong {
        font-size: 30px;
    }

    /* --- Detail/process/value cards --- */
    .detail-card,
    .capability,
    .value-card,
    .sector-card,
    .process-card,
    .v2-property-card,
    .v2-infra-card {
        overflow: visible;
    }

    .project-card {
        min-height: auto;
    }

    .project-card img {
        min-height: auto;
        height: 220px;
    }

    /* --- CTA text --- */
    .cta-section h2,
    .construction-cta h2,
    .team-cta-box h2,
    .quote-box h2 {
        font-size: 26px;
    }

}


/* =========================================================
   SMALL MOBILE (max-width: 480px)
========================================================= */

@media (max-width: 480px) {

    .v2-hero h1 {
        font-size: 34px;
    }

    .v2-hero-trust {
        flex-direction: column;
        align-items: flex-start;
    }

    .v2-property-image {
        height: 200px;
    }

    .construction-hero h1,
    .services-hero h1,
    .hero-title,
    .infra-hero .hero-title,
    .projects-hero .hero-title,
    .about-hero h1,
    .contact-hero h1,
    .team-hero h1 {
        font-size: 34px !important;
    }

    .hero-features {
        flex-direction: column;
    }

    .property-image {
        height: 180px;
    }

    .team-photo {
        height: 280px;
    }

    /* Ensure text wraps on smallest screens */
    .construction-service-card h3,
    .construction-intro h2,
    .section-heading-center h2,
    .construction-tools h2,
    .professional-handling h2,
    .construction-process h2 {
        font-size: 24px;
    }

    .equipment-image-grid,
    .handling-image-grid,
    .tools-image-grid {
        height: auto;
    }

    .cta-section h2,
    .construction-cta h2,
    .quote-box h2 {
        font-size: 22px;
    }

}

/* =========================================================
   PRIMELAND CONSTRUCTION PAGE
========================================================= */

.construction-hero {
    position: relative;
    min-height: 760px;

    display: flex;
    align-items: center;

    background:
        url("assets/images/primeland.jpeg")
        center / cover no-repeat;

    color: #fff;
}

.construction-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8,7,5,.94),
            rgba(8,7,5,.68),
            rgba(8,7,5,.22)
        );
}

.construction-hero .container {
    position: relative;
    z-index: 2;
}

.construction-hero-content {
    max-width: 780px;
    padding-top: 70px;
}

.construction-hero h1 {
    margin: 20px 0;

    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.02;
}

.construction-hero h1 span {
    color: var(--v2-gold-light);
}

.construction-hero p {
    max-width: 620px;

    color: rgba(255,255,255,.7);

    font-size: 15px;
    line-height: 1.9;
}

.construction-actions {
    display: flex;
    gap: 14px;
    margin-top: 32px;
}

.construction-outline {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 13px 20px;

    color: #fff;
    border: 1px solid rgba(255,255,255,.3);

    font-size: 11px;
}

.construction-outline:hover {
    color: #fff;
    border-color: var(--v2-gold);
}


/* INTRO */

.construction-intro {
    padding: 105px 0;
    background: #fff;
}

.construction-intro h2 {
    margin-top: 10px;

    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 4vw, 55px);
}

.construction-intro h2 span {
    color: var(--v2-gold);
}

.construction-intro-text {
    max-width: 600px;

    color: var(--v2-muted);

    font-size: 15px;
    line-height: 1.9;
}


/* SERVICES */

.construction-services {
    padding: 110px 0;

    background: var(--v2-cream);
}

.section-heading-center {
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.section-heading-center h2 {
    margin-top: 10px;

    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 4vw, 54px);
}

.section-heading-center h2 span {
    color: var(--v2-gold);
}

.section-heading-center p {
    margin-top: 15px;

    color: var(--v2-muted);

    font-size: 13px;
    line-height: 1.8;
}

.construction-service-card {
    position: relative;

    height: 100%;
    min-height: 300px;

    padding: 40px;

    background: #fff;
    border: 1px solid var(--v2-border);

    transition: .35s ease;
}

.construction-service-card:hover {
    transform: translateY(-7px);

    border-color: var(--v2-gold);

    box-shadow: 0 20px 45px rgba(0,0,0,.08);
}

.construction-service-number {
    position: absolute;
    top: 20px;
    right: 25px;

    color: #ddd8cc;

    font-family: "Playfair Display", serif;
    font-size: 30px;
}

.construction-service-icon {
    color: var(--v2-gold);
    font-size: 35px;
}

.construction-service-card h3 {
    margin: 25px 0 12px;

    font-family: "Playfair Display", serif;
    font-size: 25px;
}

.construction-service-card p {
    max-width: 550px;

    color: var(--v2-muted);

    font-size: 12px;
    line-height: 1.8;
}

.construction-service-card a {
    display: inline-flex;
    gap: 8px;

    margin-top: 15px;

    color: var(--v2-gold);

    font-size: 10px;
    font-weight: 700;
}


/* PROFESSIONAL PROJECT HANDLING */

.professional-handling {
    padding: 110px 0;
    background: #fff;
}

.handling-image-grid {
    position: relative;
    height: 480px;
}

.handling-img-main {
    width: 70%;
    height: 100%;
    object-fit: cover;
}

.handling-img-secondary {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 55%;
    height: 60%;
    object-fit: cover;
    border: 5px solid #fff;
}

.professional-handling h2 {
    margin-top: 10px;
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4vw, 50px);
}

.professional-handling h2 span {
    color: var(--v2-gold);
}

.professional-handling p {
    max-width: 520px;
    margin: 20px 0 25px;
    color: var(--v2-muted);
    font-size: 14px;
    line-height: 1.85;
}

.handling-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.handling-feature {
    display: flex;
    gap: 15px;
    align-items: center;
}

.handling-feature img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    flex-shrink: 0;
}

.handling-feature h5 {
    margin: 0 0 5px;
    font-family: "Playfair Display", serif;
    font-size: 16px;
}

.handling-feature p {
    margin: 0;
    color: var(--v2-muted);
    font-size: 12px;
    line-height: 1.6;
}


/* TOOLS & EQUIPMENT */

.construction-tools {
    padding: 110px 0;
    background: var(--v2-cream);
}

.tools-image-grid {
    position: relative;
    height: 500px;
}

.tools-img-main {
    width: 75%;
    height: 100%;
    object-fit: cover;
}

.tools-img-secondary {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 55%;
    height: 65%;
    object-fit: cover;
    border: 5px solid var(--v2-cream);
}

.construction-tools h2 {
    margin-top: 10px;
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4vw, 50px);
}

.construction-tools h2 span {
    color: var(--v2-gold);
}

.construction-tools p {
    max-width: 520px;
    margin: 20px 0 25px;
    color: var(--v2-muted);
    font-size: 14px;
    line-height: 1.85;
}

.tools-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.tools-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--v2-text);
}

.tools-list i {
    color: var(--v2-gold);
    font-size: 16px;
}


/* PROCESS */

.construction-process {
    padding: 115px 0;
    background: var(--v2-dark);
    color: #fff;
}

.construction-process h2 {
    margin-top: 10px;
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 4vw, 55px);
}

.construction-process h2 span {
    color: var(--v2-gold-light);
}

.process-intro-text {
    max-width: 600px;
    margin: 20px auto 0;
    color: #8d8980;
    font-size: 14px;
    line-height: 1.85;
}

.process-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    overflow: hidden;
    transition: .35s ease;
    text-align: center;
}

.process-card:hover {
    transform: translateY(-7px);
    border-color: var(--v2-gold);
}

.process-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.process-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.process-card:hover .process-card-image img {
    transform: scale(1.08);
}

.process-step {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--v2-gold);
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 700;
}

.process-card-body {
    padding: 25px;
    text-align: center;
}

.process-card-body h4 {
    margin: 0 0 10px;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    color: #fff;
    text-align: center;
}

.process-card-body p {
    margin: 0;
    color: #8d8980;
    font-size: 12px;
    line-height: 1.7;
    text-align: center;
}

.construction-process > .container > .row > .col-lg-5 > p {
    max-width: 500px;

    margin-top: 20px;

    color: #8d8980;

    font-size: 13px;
    line-height: 1.9;
}

.process-list {
    border-top: 1px solid rgba(255,255,255,.12);
}

.process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    padding: 25px 0;

    border-bottom: 1px solid rgba(255,255,255,.12);
}

.process-item > span {
    color: var(--v2-gold-light);

    font-family: "Playfair Display", serif;
    font-size: 25px;
}

.process-item h4 {
    margin: 0;
    text-align: center;

    font-family: "Playfair Display", serif;
    font-size: 20px;
}

.process-item p {
    margin: 6px 0 0;
    text-align: center;

    color: #817d75;

    font-size: 11px;
    line-height: 1.7;
}


/* CTA */

.construction-cta {
    padding: 0 0 110px;

    background: var(--v2-dark);
}

.construction-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;

    padding: 55px;

    background: #18150f;

    border: 1px solid rgba(201,150,22,.2);
}

.construction-cta-box > div {
    max-width: 650px;
}

.construction-cta-box > div > span {
    color: var(--v2-gold-light);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.construction-cta h2 {
    margin: 10px 0 0;

    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 48px);
}

.construction-cta h2 span {
    color: var(--v2-gold-light);
}



/* =========================================
   PRIMELAND REAL ESTATE
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');


/* =========================================
   ROOT
   ========================================= */

:root {
    --gold: #C99616;
    --gold-light: #e0b43a;
    --dark: #11100d;
    --dark-2: #191714;
    --cream: #f8f6f0;
    --white: #ffffff;
    --text: #22201b;
    --muted: #77736a;
    --border: #e7e3da;
}


/* =========================================
   GLOBAL
   ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================
   NAVBAR (v2 duplicate — removed, primary definition at top of file)
   ========================================= */

.brand-logo {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
}

.brand-title {
    display: block;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.brand-name small,
.navbar-brand small {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 9px;
    margin-top: 5px;
    letter-spacing: 0.8px;
}

.navbar-nav {
    gap: 8px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px !important;
    transition: 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-light) !important;
}

.navbar-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    color: white;
    font-size: 13px;
}

.phone-link i {
    color: var(--gold-light);
    margin-right: 5px;
}

.gold-btn {
    background: var(--gold);
    border: 1px solid var(--gold);
    color: white;
    padding: 11px 22px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s ease;
}

.gold-btn:hover {
    background: #ad8212;
    border-color: #ad8212;
    color: white;
    transform: translateY(-2px);
}


/* =========================================
   HERO (v2 page)
   ========================================= */

.hero {
    position: relative;
    min-height: 900px;

    background-image: url("assets/images/primeland.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.83) 0%,
            rgba(0, 0, 0, 0.58) 45%,
            rgba(0, 0, 0, 0.2) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 210px;
    padding-bottom: 80px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--gold-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;

    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(52px, 6vw, 82px);
    line-height: 1.02;
    font-weight: 600;
    max-width: 750px;
}

.hero h1 span {
    display: block;
    color: var(--gold-light);
}

.hero-text {
    max-width: 570px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.8;
    margin: 25px 0 35px;
}


/* =========================================
   HERO FEATURES
   ========================================= */

.hero-features {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.hero-features div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-features i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    background: rgba(201, 150, 22, 0.18);
    border: 1px solid rgba(201, 150, 22, 0.45);

    color: var(--gold-light);
    border-radius: 50%;
}

.hero-features span {
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
}

.hero-features strong {
    display: block;
    color: white;
    font-size: 13px;
}


/* =========================================
   SEARCH
   ========================================= */

.property-search {
    margin-top: 100px;

    background: rgba(255, 255, 255, 0.97);
    color: var(--text);

    padding: 25px 28px;
    border-radius: 8px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.search-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;
}

.search-heading span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.search-heading h4 {
    font-family: 'Playfair Display', serif;
    margin: 3px 0 0;
    font-size: 22px;
}

.search-heading > i {
    font-size: 28px;
    color: var(--gold);
}

.property-search label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 7px;
}

.property-search .form-select,
.property-search .input-group-text {
    height: 50px;
    border-color: var(--border);
    background: white;
}

.property-search .input-group-text {
    color: var(--gold);
}

.property-search .form-select {
    font-size: 13px;
}

.search-btn {
    height: 50px;
    background: var(--gold);
    border: none;
    color: white;
    font-weight: 600;
}

.search-btn:hover {
    background: #ad8212;
    color: white;
}


/* =========================================
   GENERAL SECTIONS
   ========================================= */

.section-padding {
    padding: 100px 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 45px;
}

.section-label {
    display: block;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-heading h2,
.section-heading-center h2 {
    font-family: 'Playfair Display', serif;
    font-size: 43px;
    margin: 0;
}

.view-all {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
}

.view-all i {
    margin-left: 6px;
}


/* =========================================
   PROPERTY CARDS
   ========================================= */

.property-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 7px;
    overflow: hidden;
    transition: 0.35s ease;
}

.property-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.09);
}

.property-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.06);
}

.property-badge {
    position: absolute;
    left: 18px;
    top: 18px;

    background: var(--gold);
    color: white;

    padding: 6px 10px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.favorite {
    position: absolute;
    right: 18px;
    top: 18px;

    width: 38px;
    height: 38px;

    border: none;
    border-radius: 50%;

    background: white;
    color: #555;

    font-size: 16px;
}

.property-body {
    padding: 22px;
}

.property-type {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.property-body h4 {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    margin: 7px 0;
}

.property-body > p {
    color: var(--muted);
    font-size: 13px;
}

.property-body > p i {
    color: var(--gold);
}

.property-details {
    display: flex;
    gap: 15px;

    padding: 15px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    color: var(--muted);
    font-size: 11px;
}

.property-details i {
    color: var(--gold);
}

.property-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 17px;
}

.property-bottom strong {
    font-size: 17px;
}

.property-btn {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
}


/* =========================================
   CATEGORIES
   ========================================= */

.categories-section {
    background: var(--cream);
    padding: 100px 0;
}

.section-heading-center {
    max-width: 650px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading-center p {
    color: var(--muted);
    margin-top: 15px;
    line-height: 1.7;
}

.category-card {
    display: block;
    padding: 32px 25px;

    background: white;
    border: 1px solid var(--border);

    color: var(--text);

    transition: 0.3s ease;
}

.category-card:hover {
    background: var(--dark);
    color: white;
    transform: translateY(-5px);
}

.category-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gold);
    background: rgba(201, 150, 22, 0.12);

    font-size: 24px;
    margin-bottom: 25px;
}

.category-card h4 {
    font-family: 'Playfair Display', serif;
}

.category-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.category-card span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
}


/* =========================================
   WHY SECTION
   ========================================= */

.why-section {
    padding: 110px 0;
}

.why-image {
    position: relative;
    padding-right: 30px;
}

.why-image img {
    width: 100%;
    height: 580px;
    object-fit: cover;
}

.experience-box {
    position: absolute;
    right: 0;
    bottom: 35px;

    background: var(--gold);
    color: white;

    padding: 25px;

    display: flex;
    align-items: center;
    gap: 12px;
}

.experience-box strong {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
}

.experience-box span {
    font-size: 11px;
    line-height: 1.4;
}

.why-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 45px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.why-section h2 span {
    color: var(--gold);
}

.large-text {
    color: var(--muted);
    line-height: 1.8;
}

.why-list {
    margin: 30px 0;
}

.why-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.why-item > i {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(201, 150, 22, 0.12);
    color: var(--gold);
}

.why-item h5 {
    font-size: 16px;
    margin-bottom: 5px;
}

.why-item p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}


/* =========================================
   CTA
   ========================================= */

.cta-section {
    padding: 0 0 100px;
}

.cta-box {
    background: var(--dark);
    color: white;

    padding: 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.cta-box span {
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.cta-box h2 {
    max-width: 600px;
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin: 10px 0 0;
}


/* =========================================
   FOOTER
   ========================================= */

.footer {
    background: #0d0c0a;
    color: white;
    padding: 80px 0 25px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 7px;
}

.footer-brand h4 {
    font-family: 'Playfair Display', serif;
    margin: 0;
}

.footer-brand small {
    color: #777;
    font-size: 9px;
}

.footer p {
    color: #85827b;
    font-size: 13px;
    line-height: 1.8;
    max-width: 350px;
}

.footer h5 {
    font-size: 14px;
    margin-bottom: 22px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer li {
    margin-bottom: 12px;
    color: #85827b;
    font-size: 13px;
}

.footer li a {
    color: #85827b;
    transition: 0.3s;
}

.footer li a:hover {
    color: var(--gold);
}

.contact-list i {
    color: var(--gold);
    width: 22px;
}

.social-links {
    display: flex;
    gap: 9px;
    margin-top: 25px;
}

.social-links a {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #292722;
    color: #aaa;

    transition: 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

.footer hr {
    border-color: #292722;
    margin: 50px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 11px;
}




/* =========================================
   INNER PAGE NAVBAR
   ========================================= */

.inner-navbar {
    background: #11100d;
    padding: 15px 0;
}


/* =========================================
   PROPERTIES PAGE
   ========================================= */

.properties-hero {
    background: #11100d;
    color: white;
    padding: 180px 0 100px;
}

.properties-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 65px;
    max-width: 700px;
}

.properties-hero h1 span {
    color: var(--gold);
}

.properties-hero p {
    color: #aaa;
    max-width: 550px;
    line-height: 1.8;
}

.property-filter {
    margin-top: -45px;
    position: relative;
    z-index: 2;
}

.filter-box {
    background: white;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,.1);
}

.filter-box label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 7px;
}

.filter-box .form-select {
    height: 48px;
    border-color: #ddd;
    font-size: 13px;
}

.listing-section {
    padding: 100px 0;
}

.listing-top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.listing-top h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
}

.sort-select {
    width: 180px;
    height: 42px;
    font-size: 12px;
}

.listing-card {
    background: white;
    border: 1px solid #e6e2d9;
    transition: .3s;
}

.listing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.listing-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.listing-card:hover img {
    transform: scale(1.05);
}

.listing-image > span {
    position: absolute;
    top: 15px;
    left: 15px;

    background: var(--gold);
    color: white;

    padding: 6px 9px;
    font-size: 9px;
    font-weight: 700;
}

.listing-image button {
    position: absolute;
    right: 15px;
    top: 15px;

    width: 36px;
    height: 36px;

    border: none;
    border-radius: 50%;

    background: white;
}

.listing-body {
    padding: 22px;
}

.listing-body small {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.listing-body h4 {
    font-family: 'Playfair Display', serif;
    margin: 7px 0;
}

.listing-body p {
    color: #777;
    font-size: 12px;
}

.listing-body p i {
    color: var(--gold);
}

.listing-info {
    display: flex;
    gap: 20px;
    border-top: 1px solid #eee;
    padding: 14px 0;
    color: #777;
    font-size: 11px;
}

.listing-info i {
    color: var(--gold);
}

.listing-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.listing-price strong {
    font-size: 17px;
}

.listing-price a {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
}


/* =========================================
   ABOUT PAGE
   ========================================= */

.about-intro {
    padding: 180px 0 100px;
}

.about-intro h1 {
    font-family: 'Playfair Display', serif;
    font-size: 55px;
    line-height: 1.1;
}

.about-intro h1 span {
    color: var(--gold);
}

.about-intro p {
    color: #777;
    line-height: 1.8;
    max-width: 550px;
}

.about-photo {
    position: relative;
}

.about-photo img {
    height: 580px;
    width: 100%;
    object-fit: cover;
}

.about-stat {
    position: absolute;
    bottom: 30px;
    left: -30px;

    background: var(--gold);
    color: white;

    padding: 25px;
}

.about-stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 40px;
}

.about-stat span {
    font-size: 11px;
}

.about-numbers {
    background: #11100d;
    color: white;
    padding: 60px 0;
}

.about-numbers strong {
    display: block;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 42px;
}

.about-numbers span {
    color: #aaa;
    font-size: 12px;
}

.mission-section {
    padding: 100px 0;
}

.mission-box {
    padding: 60px;
    min-height: 390px;
}

.mission-box.dark {
    background: #11100d;
    color: white;
}

.mission-box.gold {
    background: var(--gold);
    color: white;
}

.mission-box i {
    font-size: 35px;
    margin-bottom: 25px;
}

.mission-box > span {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.mission-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    margin: 15px 0;
}

.mission-box p {
    max-width: 450px;
    line-height: 1.8;
    opacity: .8;
}

.about-values {
    background: #f8f6f0;
    padding: 100px 0;
}

.about-values h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
}

.value-card {
    background: white;
    padding: 40px;
    height: 100%;
}

.value-card i {
    font-size: 30px;
    color: var(--gold);
}

.value-card h4 {
    font-family: 'Playfair Display', serif;
    margin: 20px 0 10px;
}

.value-card p {
    color: #777;
    line-height: 1.7;
    font-size: 13px;
}


/* =========================================
   AGENTS PAGE
   ========================================= */

.agents-hero {
    background: #11100d;
    color: white;
    padding: 180px 0 110px;
}

.agents-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 62px;
}

.agents-hero h1 span {
    color: var(--gold);
}

.agents-hero p {
    color: #aaa;
}

.agents-section {
    padding: 100px 0;
}

.agent-card {
    border: 1px solid #e5e1d8;
    background: white;
}

.agent-photo {
    height: 390px;
    position: relative;
    overflow: hidden;
}

.agent-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-social {
    position: absolute;
    bottom: 20px;
    left: 20px;

    display: flex;
    gap: 7px;
}

.agent-social a {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: white;
    color: var(--gold);
}

.agent-info {
    padding: 25px;
}

.agent-info > span {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.agent-info h3 {
    font-family: 'Playfair Display', serif;
    margin: 7px 0;
}

.agent-info p {
    color: #777;
    font-size: 12px;
}

.agent-info > a {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
}


/* =========================================
   NEWS PAGE
   ========================================= */

.news-heading {
    background: #11100d;
    color: white;
    padding: 180px 0 100px;
}

.news-heading h1 {
    font-family: 'Playfair Display', serif;
    font-size: 62px;
    max-width: 700px;
}

.news-heading h1 span {
    color: var(--gold);
}

.news-section {
    padding: 100px 0;
}

.featured-news {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: #f8f6f0;
}

.featured-image {
    min-height: 450px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    padding: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content > span,
.news-grid article span {
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.featured-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    margin: 15px 0;
}

.featured-content p {
    color: #777;
    line-height: 1.8;
}

.featured-content small {
    color: #999;
    margin: 10px 0 20px;
}

.featured-content a,
.news-grid a {
    color: var(--gold);
    font-weight: 700;
    font-size: 12px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.news-grid article {
    border: 1px solid #e6e2da;
}

.news-grid article img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-grid article > div {
    padding: 25px;
}

.news-grid h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin: 10px 0;
}

.news-grid p {
    color: #777;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================
   CONTACT PAGE
   ========================================= */

.contact-page {
    background: #f8f6f0;
    padding: 180px 0 100px;
    min-height: 100vh;
}

.contact-wrapper {
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.contact-info {
    background: #11100d;
    color: white;
    padding: 65px;
}

.contact-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
}

.contact-info h1 span {
    color: var(--gold);
}

.contact-info > p {
    color: #aaa;
    line-height: 1.8;
    margin: 20px 0 45px;
}

.contact-details > div {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-details i {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(201,150,22,.15);
    color: var(--gold);
}

.contact-details small {
    display: block;
    color: #777;
    font-size: 9px;
    letter-spacing: 1px;
}

.contact-details strong {
    font-size: 13px;
}

.contact-form {
    background: white;
    padding: 65px;
}

.contact-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 30px;
}

.contact-form label {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 7px;
}

.contact-form .form-control,
.contact-form .form-select {
    border-color: #e3dfd6;
    border-radius: 2px;
    padding: 13px;
    font-size: 13px;
}

.contact-form textarea {
    resize: none;
}






/* =====================================================
   PRIMELAND — AGENTS / TEAM PAGE
===================================================== */


/* =====================================================
   HERO
===================================================== */

.team-hero {
    position: relative;
    min-height: 500px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(10, 10, 10, .88),
            rgba(10, 10, 10, .62),
            rgba(10, 10, 10, .25)
        ),
        url("assets/images/primeland.jpeg")
        center / cover no-repeat;
}


.team-hero-content {
    position: relative;
    z-index: 2;

    color: #fff;

    padding-top: 150px;
    padding-bottom: 80px;
}


.team-hero .section-label {
    color: var(--gold);
}


.team-hero h1 {
    font-family: 'Playfair Display', serif;

    font-size: clamp(45px, 6vw, 72px);

    line-height: 1.05;

    max-width: 780px;

    margin: 15px 0 20px;
}


.team-hero h1 span {
    color: var(--gold);
}


.team-hero p {
    max-width: 650px;

    color: rgba(255,255,255,.78);

    font-size: 16px;

    line-height: 1.8;
}



/* =====================================================
   INTRO
===================================================== */

.team-intro {
    padding: 100px 0 60px;
}


.team-intro h2 {
    font-family: 'Playfair Display', serif;

    font-size: 42px;

    line-height: 1.15;
}


.team-intro h2 span {
    color: var(--gold);
}


.team-intro p {
    color: #777;

    line-height: 1.8;

    max-width: 680px;

    margin: 20px auto 0;
}



/* =====================================================
   TEAM SECTION
===================================================== */

.team-section {
    padding: 40px 0 100px;

    background: #f8f6f0;
}


.team-card {
    height: 100%;

    background: #fff;

    border: 1px solid #e8e3d9;

    transition: .35s ease;

    overflow: hidden;
}


.team-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.10);
}



/* =====================================================
   TEAM IMAGE
===================================================== */

.team-photo {
    height: 370px;

    position: relative;

    overflow: hidden;
}


.team-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .5s ease;
}


.team-card:hover .team-photo img {
    transform: scale(1.04);
}



/* =====================================================
   SPECIALTY BADGE
===================================================== */

.team-specialty {
    position: absolute;

    top: 18px;
    left: 18px;

    background: var(--gold);

    color: #fff;

    padding: 8px 12px;

    font-size: 9px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}



/* =====================================================
   SOCIAL LINKS
===================================================== */

.team-social {
    position: absolute;

    bottom: 18px;
    left: 18px;

    display: flex;

    gap: 7px;
}


.team-social a {
    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff;

    color: var(--gold);

    text-decoration: none;

    transition: .25s ease;
}


.team-social a:hover {
    background: var(--gold);

    color: #fff;
}



/* =====================================================
   TEAM INFORMATION
===================================================== */

.team-info {
    padding: 27px;
}


.team-role {
    color: var(--gold);

    text-transform: uppercase;

    letter-spacing: 1.2px;

    font-size: 9px;

    font-weight: 700;
}


.team-info h3 {
    font-family: 'Playfair Display', serif;

    font-size: 25px;

    margin: 7px 0 8px;
}


.team-info p {
    color: #777;

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 20px;
}


.team-contact {
    color: var(--gold);

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;
}


.team-contact i {
    margin-left: 5px;
}



/* =====================================================
   EXPERTISE
===================================================== */

.expertise-section {
    padding: 100px 0;
}


.expertise-heading {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}


.expertise-heading h2 {
    font-family: 'Playfair Display', serif;

    font-size: 42px;

    margin-top: 12px;
}


.expertise-heading h2 span {
    color: var(--gold);
}


.expertise-heading p {
    color: #777;

    line-height: 1.8;
}



/* =====================================================
   EXPERTISE CARDS
===================================================== */

.expertise-card {
    height: 100%;

    padding: 35px;

    border: 1px solid #e8e3d9;

    background: #fff;

    transition: .3s ease;
}


.expertise-card:hover {
    border-color: var(--gold);

    transform: translateY(-5px);
}


.expertise-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f8f6f0;

    color: var(--gold);

    font-size: 25px;

    margin-bottom: 22px;
}


.expertise-card h4 {
    font-family: 'Playfair Display', serif;

    font-size: 22px;

    margin-bottom: 12px;
}


.expertise-card p {
    color: #777;

    font-size: 13px;

    line-height: 1.8;

    margin: 0;
}



/* =====================================================
   CTA
===================================================== */

.team-cta {
    padding: 0 0 100px;
}


.team-cta-box {
    background: #11100d;

    color: #fff;

    padding: 55px 60px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.team-cta-box small {
    color: var(--gold);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.team-cta-box h2 {
    font-family: 'Playfair Display', serif;

    font-size: 38px;

    margin: 8px 0 0;
}


.team-cta-box h2 span {
    color: var(--gold);
}



