/* ============================================
   Morris Properties — Premium Real Estate
   Stylesheet
   Brand: Deep Navy #1E2A3D | Luxury Gold #B79A63
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --navy: #1E2A3D;
    --gold: #B79A63;
    --white: #F9F8F5;
    --charcoal: #2D3748;
    --beige: #E8E1D3;
    --white-pure: #FFFFFF;
    --navy-light: #2A3A52;
    --gold-light: #C9B285;
    --gold-dark: #A08550;
    --text-muted: #6B7280;
    --border: #E5E0D5;
    --shadow-sm: 0 2px 8px rgba(30, 42, 61, 0.06);
    --shadow-md: 0 6px 24px rgba(30, 42, 61, 0.10);
    --shadow-lg: 0 16px 48px rgba(30, 42, 61, 0.14);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 4px;
    --radius-lg: 10px;
    --container: 1200px;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--charcoal);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.25;
    font-weight: 600;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: var(--radius);
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn i {
    font-size: 1rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white-pure);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: var(--white-pure);
    color: var(--navy);
    border-color: var(--white-pure);
}

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

.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-full {
    width: 100%;
}

/* ---------- Section Header ---------- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    position: relative;
    padding-left: 28px;
}

.section-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
    background: var(--navy);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.82rem;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(249, 248, 245, 0.8);
    transition: color var(--transition);
}

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

.topbar-link i {
    color: var(--gold);
    font-size: 0.85rem;
}

.topbar-divider {
    width: 1px;
    height: 14px;
    background: rgba(249, 248, 245, 0.2);
}

.topbar-text {
    color: rgba(249, 248, 245, 0.7);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background: var(--white-pure);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 100%;
    max-height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-logo-img {
    max-height: 56px;
}

/* Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: color var(--transition);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--navy);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.nav-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    z-index: 1001;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--navy);
    transition: all var(--transition);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=80');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 42, 61, 0.82);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 24px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.hero-text {
    max-width: 680px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero-eyebrow-line {
    width: 32px;
    height: 2px;
    background: var(--gold);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white-pure);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title em {
    color: var(--gold);
    font-style: italic;
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.12rem;
    color: rgba(249, 248, 245, 0.85);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 580px;
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(249, 248, 245, 0.7);
    letter-spacing: 0.05em;
}

/* ============================================
   PROPERTIES SECTION
   ============================================ */
.properties-section {
    padding: 96px 0;
    background: var(--white);
}

/* Filters */
.property-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--charcoal);
    background: var(--white-pure);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--navy);
}

.filter-btn.active {
    background: var(--navy);
    color: var(--white-pure);
    border-color: var(--navy);
}

/* Grid */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

/* Card */
.property-card {
    background: var(--white-pure);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--border);
}

.property-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.property-card-link {
    display: block;
}

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

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

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

.property-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius);
    color: var(--white-pure);
    background: var(--navy);
}

.property-tag-featured { background: var(--navy); }
.property-tag-premium { background: var(--gold); color: var(--navy); }
.property-tag-new { background: #2D8659; }
.property-tag-exclusive { background: var(--charcoal); }

.property-status {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: var(--radius);
    color: var(--white-pure);
    background: rgba(30, 42, 61, 0.75);
    backdrop-filter: blur(4px);
}

.property-card-body {
    padding: 24px;
}

.property-card-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 10px;
}

.property-card-location i {
    font-size: 0.85rem;
}

.property-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.property-card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.property-card-specs {
    display: flex;
    gap: 20px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.property-spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--charcoal);
    font-weight: 500;
}

.property-spec i {
    color: var(--gold);
    font-size: 0.9rem;
}

.property-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.property-card-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
}

.property-card-cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.property-card:hover .property-card-cta {
    gap: 10px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 96px 0;
    background: var(--beige);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-text {
    font-size: 1.02rem;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 36px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--gold);
    border-radius: var(--radius);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* About Visual */
.about-visual {
    position: relative;
}

.about-visual-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 5;
}

.about-visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-visual-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--white-pure);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-visual-badge-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--navy);
    border-radius: var(--radius);
    font-size: 1.3rem;
}

.about-visual-badge-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
}

.about-visual-badge-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 72px 0;
    background: var(--navy);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-text h2 {
    color: var(--white-pure);
    font-size: 2rem;
    margin-bottom: 8px;
}

.cta-text p {
    color: rgba(249, 248, 245, 0.8);
    font-size: 1.02rem;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 96px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-content: start;
}

.contact-card {
    background: var(--white-pure);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--beige);
    color: var(--navy);
    border-radius: var(--radius);
    font-size: 1.2rem;
}

.contact-card-body h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.contact-card-body p {
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-card-body span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--white-pure);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form-wrap h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-form-intro {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--charcoal);
    transition: border-color var(--transition), box-shadow var(--transition);
    font-size: 0.92rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(183, 154, 99, 0.12);
}

.form-group textarea {
    resize: vertical;
}

.form-success {
    display: none;
    margin-top: 20px;
    padding: 16px 20px;
    background: #E8F5E9;
    border: 1px solid #A5D6A7;
    border-radius: var(--radius);
    color: #2E7D32;
    font-size: 0.9rem;
    align-items: center;
    gap: 10px;
}

.form-success.show {
    display: flex;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy);
    color: rgba(249, 248, 245, 0.8);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: rgba(249, 248, 245, 0.65);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    color: var(--white);
    transition: all var(--transition);
    font-size: 1rem;
}

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

.footer-heading {
    color: var(--white-pure);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(249, 248, 245, 0.65);
    transition: color var(--transition);
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.88rem;
    color: rgba(249, 248, 245, 0.65);
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: rgba(249, 248, 245, 0.65);
    transition: color var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.82rem;
    color: rgba(249, 248, 245, 0.5);
    flex-wrap: wrap;
    gap: 8px;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white-pure);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition);
    animation: pulse-ring 2s ease-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-ring {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.3); }
    70% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--white-pure);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

/* ============================================
   PROPERTY DETAIL PAGE
   ============================================ */
.breadcrumb-bar {
    background: var(--beige);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--navy);
    transition: color var(--transition);
}

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

.breadcrumb i {
    font-size: 0.65rem;
    color: var(--gold);
}

.breadcrumb span {
    color: var(--charcoal);
    font-weight: 500;
}

.property-detail {
    padding: 56px 0 80px;
}

.property-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.property-detail-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.property-detail-type,
.property-detail-status {
    padding: 5px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: var(--radius);
}

.property-detail-type {
    background: var(--beige);
    color: var(--navy);
}

.property-detail-status {
    background: #E8F5E9;
    color: #2E7D32;
}

.property-detail-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.property-detail-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 500;
}

.property-detail-header-right {
    text-align: right;
}

.property-detail-price-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.property-detail-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
}

/* Gallery */
.property-gallery {
    margin-bottom: 48px;
}

.gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
    aspect-ratio: 16 / 9;
    box-shadow: var(--shadow-md);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-thumb {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color var(--transition);
}

.gallery-thumb.active {
    border-color: var(--gold);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.gallery-thumb:hover img {
    transform: scale(1.05);
}

/* Detail Body */
.property-detail-body {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

/* Key Specs */
.property-key-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 28px;
    background: var(--beige);
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}

.key-spec {
    display: flex;
    align-items: center;
    gap: 14px;
}

.key-spec-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--gold);
    border-radius: var(--radius);
    font-size: 1.05rem;
    flex-shrink: 0;
}

.key-spec-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.key-spec-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Property Blocks */
.property-section-block {
    margin-bottom: 40px;
}

.property-block-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.property-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--charcoal);
}

/* Features Grid */
.property-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.property-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--white-pure);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--charcoal);
    transition: all var(--transition);
}

.property-feature-item:hover {
    border-color: var(--gold);
    background: var(--beige);
}

.property-feature-item i {
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Sidebar / Agent Card */
.agent-card {
    background: var(--white-pure);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: sticky;
    top: 130px;
}

.agent-card-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.agent-card-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.agent-card-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.agent-card-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 24px;
}

.agent-card-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.agent-card-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.agent-card-info-item i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--beige);
    color: var(--navy);
    border-radius: var(--radius);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.agent-card-info-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.agent-card-info-value {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy);
}

/* ============================================
   RELATED PROPERTIES
   ============================================ */
.related-section {
    padding: 80px 0;
    background: var(--beige);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.6rem; }
    .section-title { font-size: 2rem; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .about-visual-card {
        aspect-ratio: 16 / 10;
    }

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

    .agent-card {
        position: static;
    }

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

    .footer-col-brand {
        grid-column: 1 / -1;
    }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 80px;
    }

    .container {
        padding: 0 20px;
    }

    /* Topbar */
    .topbar-link-hide {
        display: none;
    }

    .topbar-left, .topbar-right {
        gap: 16px;
    }

    /* Navbar */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white-pure);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 80px 28px 28px;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
        transition: right 0.35s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .nav-link {
        display: block;
        padding: 16px 0;
        font-size: 1rem;
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta-li {
        border-bottom: none !important;
        margin-top: 16px;
        width: 100%;
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }

    .nav-logo-img {
        max-height: 52px;
    }

    /* Hero */
    .hero {
        min-height: 540px;
    }

    .hero-content {
        padding: 56px 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 32px;
        flex-wrap: wrap;
    }

    .hero-stat-num {
        font-size: 1.6rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    /* Sections */
    .properties-section,
    .about-section,
    .contact-section {
        padding: 64px 0;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Property Grid */
    .property-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* About */
    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-visual-badge {
        bottom: -16px;
        left: 50%;
        transform: translateX(-50%);
        padding: 16px 22px;
    }

    /* CTA */
    .cta-banner {
        padding: 56px 0;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .cta-text h2 {
        font-size: 1.6rem;
    }

    .cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-cards {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .contact-form-wrap {
        padding: 28px 24px;
    }

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

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    /* Property Detail */
    .property-detail-title {
        font-size: 1.6rem;
    }

    .property-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .property-detail-header-right {
        text-align: left;
    }

    .property-detail-price {
        font-size: 1.6rem;
    }

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

    .property-key-specs {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 20px;
    }

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

    /* Floats */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        bottom: 80px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE
   ============================================ */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .hero-stat-num {
        font-size: 1.4rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .property-card-body {
        padding: 20px;
    }

    .property-card-specs {
        gap: 14px;
        flex-wrap: wrap;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

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

    .section-title {
        font-size: 1.5rem;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 0.82rem;
    }

    .nav-logo-img {
        max-height: 44px;
    }
}
