/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #1a1a2e;
    --color-gold: #b08d57;
    --color-gold-light: #c9a96e;
    --color-dark: #0f0f1a;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    --color-bg: #ffffff;
    --color-bg-warm: #f9f7f4;
    --color-bg-light: #f5f5f5;
    --color-border: rgba(0, 0, 0, 0.08);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --max-width: 1280px;
    --section-padding: 120px;
    --section-padding-mobile: 64px;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background: var(--color-bg);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-primary);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 15px;
}

.btn-primary {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: #2a2a45;
    border-color: #2a2a45;
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #ffffff;
}

.btn-white {
    background: #ffffff;
    color: var(--color-primary);
    border-color: #ffffff;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
}

.btn-outline-white {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.btn-gold {
    background: var(--color-gold);
    color: #ffffff;
    border-color: var(--color-gold);
}

.btn-gold:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
}

/* ========== SECTION LABELS ========== */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.section-label.light {
    color: var(--color-gold-light);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 17px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.section-cta {
    text-align: center;
    margin-top: 56px;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled,
.navbar.navbar-solid {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 1px 0 var(--color-border);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo img {
    height: 44px;
    width: auto;
    transition: filter 0.3s ease;
}

.navbar:not(.scrolled):not(.navbar-solid) .nav-logo img {
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.navbar.scrolled .nav-links a,
.navbar-solid .nav-links a {
    color: var(--color-text);
}

.navbar.scrolled .nav-links a:hover,
.navbar-solid .nav-links a:hover {
    color: var(--color-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.navbar.scrolled .nav-phone,
.navbar-solid .nav-phone {
    color: var(--color-text);
}

.navbar:not(.scrolled):not(.navbar-solid) .btn-primary {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.navbar:not(.scrolled):not(.navbar-solid) .btn-primary:hover {
    background: rgba(255, 255, 255, 0.25);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-toggle span,
.navbar-solid .nav-toggle span {
    background: var(--color-primary);
}

/* ========== NAV DROPDOWN ========== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a .nav-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 5px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover > a .nav-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1001;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 8px);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text) !important;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.nav-dropdown-menu a::after {
    display: none !important;
}

.nav-dropdown-menu a:hover {
    background: var(--color-bg-warm);
    color: var(--color-gold) !important;
}

/* --- Nested Sub-Dropdown (e.g. Our Team > Steve, Dylan) --- */
.nav-sub-dropdown {
    position: relative;
}
.nav-sub-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.nav-arrow-right {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(-45deg);
    flex-shrink: 0;
}
.nav-sub-dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 180px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateX(4px);
    z-index: 1002;
}
.nav-sub-dropdown:hover > .nav-sub-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.nav-sub-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text) !important;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}
.nav-sub-dropdown-menu a::after {
    display: none !important;
}
.nav-sub-dropdown-menu a:hover {
    background: var(--color-bg-warm);
    color: var(--color-gold) !important;
}

/* --- Agent Profile Page --- */
.agent-profile {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: start;
}
.agent-profile-sidebar {
    position: sticky;
    top: 120px;
}
.agent-profile-photo {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 3/4;
    object-fit: cover;
    margin-bottom: 24px;
}
.agent-profile-info h3 {
    font-size: 20px;
    margin-bottom: 4px;
}
.agent-profile-info a {
    padding: 10px;
}
.agent-profile-title {
    color: var(--color-gold);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.agent-profile-contact {
    font-size: 15px;
    color: var(--color-text-light);
}
.agent-profile-contact a {
    color: var(--color-text);
    text-decoration: none;
}
.agent-profile-contact a:hover {
    color: var(--color-gold);
}
.agent-specializations {
    margin-bottom: 48px;
}
.agent-specializations h2 {
    font-size: 24px;
    margin-bottom: 20px;
}
.agent-specializations ul {
    list-style: none;
    padding: 0;
}
.agent-specializations li {
    position: relative;
    padding: 12px 0 12px 28px;
    border-bottom: 1px solid var(--color-border, #eee);
    font-size: 15px;
    color: var(--color-text);
}
.agent-specializations li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
}
.agent-bio-full h2 {
    font-size: 24px;
    margin-bottom: 20px;
}
.agent-bio-full p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero.hero-short {
    min-height: 50vh;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.85) 0%, rgba(26, 26, 46, 0.6) 50%, rgba(15, 15, 26, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    padding-top: 80px;
}

.hero-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.05;
    margin-bottom: 24px;
    max-width: 750px;
}

.hero-sub {
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll-indicator span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ========== BREADCRUMBS ========== */
.breadcrumbs {
    background: var(--color-bg-light);
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.breadcrumbs ol {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    font-size: 13px;
}

.breadcrumbs li::after {
    content: '/';
    margin-left: 8px;
    color: var(--color-text-muted);
}

.breadcrumbs li:last-child::after {
    display: none;
}

.breadcrumbs a {
    color: var(--color-gold);
}

.breadcrumbs a:hover {
    color: var(--color-primary);
}

.breadcrumbs li:last-child span {
    color: var(--color-text-light);
}

/* ========== SERVICES ========== */
.services {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    display: flex;
    flex-direction: column;
    padding: 40px 32px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    transition: all 0.4s ease;
    text-decoration: none;
    position: relative;
}

.service-card:hover {
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.service-card.featured {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured .service-link {
    color: #ffffff;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.7);
}

.service-card.featured .service-icon {
    color: var(--color-gold);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--color-gold);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.featured-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    background: rgba(176, 141, 87, 0.15);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
    width: fit-content;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.service-card.featured h3 {
    color: #ffffff;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
    flex: 1;
}

.service-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gold);
    transition: gap 0.3s ease;
}

.service-card:hover .service-link {
    color: var(--color-gold);
}

/* ========== LAND DEVELOPMENT ========== */
.land-dev {
    background: var(--color-bg-warm);
}

.land-dev-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.land-dev-image {
    position: relative;
    overflow: hidden;
}

.land-dev-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.land-dev-content {
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.land-dev-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.land-dev-lead {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.land-dev-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.land-dev-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    min-width: 48px;
}

.land-dev-feature h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-primary);
}

.land-dev-feature p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ========== SELLERS CTA ========== */
.sellers-cta {
    padding: var(--section-padding) 0;
    background: var(--color-primary);
}

.sellers-cta-alt {
    padding: var(--section-padding) 0;
    background: var(--color-bg-warm);
}

.sellers-cta-alt .sellers-content h2 {
    color: var(--color-primary);
}

.sellers-cta-alt .sellers-content p {
    color: var(--color-text-light);
}

.sellers-cta-alt .check-list li {
    color: var(--color-text);
}

.sellers-cta-alt .section-label.light {
    color: var(--color-gold);
}

.sellers-cta-alt .btn-white {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

.sellers-cta-alt .btn-white:hover {
    background: #2a2a45;
    border-color: #2a2a45;
}

.sellers-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sellers-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.sellers-content p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
}

.check-list {
    list-style: none;
    margin-bottom: 36px;
}

.check-list li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.check-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 700;
}

/* ========== SELLERS IMAGE ========== */
.sellers-image {
    position: relative;
}

.sellers-image img {
    width: 100%;
    border-radius: 8px;
}

.sellers-stat {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--color-gold);
    color: #ffffff;
    padding: 28px 32px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.9;
}

/* ========== PROPERTIES FOR SALE ========== */
.properties {
    padding: var(--section-padding) 0;
    background: var(--color-bg-warm);
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.property-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.property-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.property-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
}

.property-details {
    padding: 24px;
}

.property-price {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    margin-bottom: 4px;
}

.property-details h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.property-address {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.property-meta {
    display: flex;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.property-meta span {
    font-size: 13px;
    color: var(--color-text-light);
}

/* ========== RENTALS ========== */
.rentals {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.rentals-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.rentals-header h2 {
    font-size: 42px;
}

.rentals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    min-height: auto;
}

.rental-card {
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.rental-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.rental-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.rental-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.rental-card:hover .rental-card-image img {
    transform: scale(1.05);
}

.rental-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.rental-type {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.rental-card-body h3 {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.rental-featured .rental-card-body h3 {
    font-size: 22px;
}

.rental-card-body .rental-location {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.rental-card-body .rental-details {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.rental-card-body .rental-details span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.rental-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.rental-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
}

.rental-card-footer .btn {
    font-size: 13px;
}

/* ========== COMMERCIAL ========== */
.commercial {
    padding: var(--section-padding) 0;
    background: var(--color-bg-warm);
}

.commercial-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.commercial-image img {
    width: 100%;
    border-radius: 8px;
}

.commercial-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.commercial-content > p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.commercial-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.comm-type {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.comm-type svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.comm-type span {
    font-size: 14px;
    font-weight: 500;
}

/* ========== TRUST / WHY US ========== */
.trust {
    padding: var(--section-padding) 0;
    background: var(--color-primary);
    color: #ffffff;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.trust-main h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.trust-main p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.trust-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.trust-stat {
    text-align: center;
    padding: 28px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-values {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}

.trust-value {
    text-align: center;
}

.trust-value img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.trust-value h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.trust-value p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
}

/* ========== FINAL CTA ========== */
.final-cta {
    padding: 100px 0;
    background: var(--color-bg-warm);
    text-align: center;
}

.cta-content {
    max-width: 640px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-white {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

.cta-buttons .btn-white:hover {
    background: #2a2a45;
}

.cta-buttons .btn-outline-white {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.cta-buttons .btn-outline-white:hover {
    background: var(--color-primary);
    color: #ffffff;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.65);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-gold);
    color: #ffffff;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--color-gold);
}

.footer-address,
.footer-phone {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.footer-phone a {
    color: var(--color-gold-light);
}

.footer-phone strong {
    color: rgba(255, 255, 255, 0.7);
}

.footer-directions {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-gold);
    transition: opacity 0.3s ease;
}

.footer-directions:hover {
    opacity: 0.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* ========== INNER PAGE HERO ========== */
.page-hero {
    padding: 160px 0 80px;
    background: var(--color-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.88) 0%, rgba(26, 26, 46, 0.75) 50%, rgba(15, 15, 26, 0.85) 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== CONTENT SECTIONS (inner pages) ========== */
.content-section {
    padding: var(--section-padding) 0;
}

.content-section.bg-warm {
    background: var(--color-bg-warm);
}

.content-section.bg-light {
    background: var(--color-bg-light);
}

.content-section.bg-dark {
    background: var(--color-primary);
    color: #ffffff;
}

.content-section.bg-dark h2,
.content-section.bg-dark h3,
.content-section.bg-dark h4 {
    color: #ffffff;
}

.content-section.bg-dark p {
    color: rgba(255, 255, 255, 0.7);
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.content-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.content-image img {
    width: 100%;
    border-radius: 8px;
}

/* ========== ARCHIVE GRID (agents, vendors, etc.) ========== */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.archive-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ========== AGENT CARD ========== */
.agent-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.agent-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.agent-image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.agent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.agent-card:hover .agent-image img {
    transform: scale(1.05);
}

.agent-info {
    padding: 24px;
}

.agent-info h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.agent-info h3 a {
    color: var(--color-primary);
}

.agent-info h3 a:hover {
    color: var(--color-gold);
}

.agent-title {
    display: block;
    font-size: 14px;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.agent-contact {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gold);
}

.card-link:hover {
    color: var(--color-primary);
}

/* ========== VENDOR CARD ========== */
.vendor-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 32px;
    border: 1px solid var(--color-border);
    transition: all 0.4s ease;
}

.vendor-card:hover {
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.vendor-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.vendor-card h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.vendor-card h3 a {
    color: var(--color-primary);
}

.vendor-card h3 a:hover {
    color: var(--color-gold);
}

.vendor-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.vendor-website {
    display: inline-block;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

/* ========== TESTIMONIAL CARD ========== */
.testimonial-card {
    background: var(--color-bg-warm);
    border-radius: 8px;
    padding: 32px;
    border: 1px solid var(--color-border);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.testimonial-card blockquote {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-attribution {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.testimonial-author {
    font-style: normal;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
}

.testimonial-location {
    font-style: italic;
    font-size: 13px;
    color: var(--color-text-light);
    margin: 0;
}

/* ========== CONTACT FORM ========== */
.contact-form {
    max-width: 640px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background: #ffffff;
    color: var(--color-text);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
}

.form-group textarea {
    min-height: 160px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* ========== DETAIL PAGE ========== */
.detail-content {
    padding: var(--section-padding) 0;
}

.detail-header {
    max-width: 800px;
    margin: 0 auto 48px;
}

.detail-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.detail-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-light);
}

.detail-body h2 {
    margin-bottom: 16px;
}

.detail-body p {
    margin-bottom: 34px;
}

.detail-body img {
    border-radius: 8px;
    margin: 32px 0;
}

.detail-sidebar {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}

/* ========== CITY / NEIGHBORHOOD CARDS ========== */
.city-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 300px;
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.city-card:hover img {
    transform: scale(1.05);
}

.city-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
}

.city-overlay h3 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 4px;
}

.city-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero h1 {
        font-size: 52px;
    }

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

    .land-dev-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .land-dev-image {
        height: 400px;
    }

    .land-dev-content {
        padding: 48px 40px;
    }

    .sellers-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

    .commercial-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .trust-values {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

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

    .archive-grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .content-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .detail-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }

    .container {
        padding: 0 24px;
    }

    .nav-links, .nav-actions {
        display: none;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

    .nav-links.open a {
        color: var(--color-text) !important;
        font-size: 16px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .section-header h2,
    .land-dev-content h2,
    .sellers-content h2,
    .commercial-content h2,
    .trust-main h2,
    .rentals-header h2 {
        font-size: 30px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

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

    .land-dev-content {
        padding: 32px 24px;
    }

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

    .rentals-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

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

    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        padding: 0 0 0 16px;
        min-width: auto;
        background: transparent;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-links.open .nav-dropdown-menu a {
        padding: 8px 0;
        font-size: 15px;
    }

    .nav-sub-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        padding: 0 0 0 16px;
        min-width: auto;
        background: transparent;
        border-radius: 0;
    }
    .nav-arrow-right {
        display: none;
    }

    .agent-profile {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .agent-profile-sidebar {
        position: static;
        text-align: center;
    }
    .agent-profile-photo {
        max-width: 280px;
        margin: 0 auto 24px;
    }

    .commercial-types {
        grid-template-columns: 1fr;
    }

    .trust-values {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-stats {
        grid-template-columns: 1fr 1fr;
    }

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

    .sellers-stat {
        right: 16px;
        bottom: -16px;
    }

    .archive-grid,
    .archive-grid-4 {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

    .testimonials-list {
        grid-template-columns: 1fr;
    }
}

/* ========== TESTIMONIALS PAGE ========== */
.testimonials-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 32px;
}

.testimonial-card-full {
    background: var(--color-bg-warm);
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-left: 4px solid var(--color-gold);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-card-full blockquote {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0 0 16px;
    font-style: italic;
}

.testimonial-card-full .testimonial-attribution {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.testimonial-card-full .testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
}

.testimonial-card-full .testimonial-location {
    font-style: italic;
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
}

/* ========== RESOURCE LIST VIEW (City Detail) ========== */
.resources-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.resource-group-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-gold);
}

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

.resource-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 12px;
}

.resource-list li:last-child {
    border-bottom: none;
}

.resource-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
}

.resource-info {
    font-size: 13px;
    color: var(--color-text-light);
    white-space: nowrap;
}
