 /*
Theme Name: Damla Real Estate
Theme URI: https://damlarealestate.com
Author: YEWELTECH
Author URI: https://yeweltech.com
Description: Premium real estate theme for Damla Investment & Real Estate – luxury properties in Addis Ababa.
Version: 1.0.0
License: GPL v2 or later
Text Domain: damla
*/


@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;800;900&display=swap');
:root {
  --gold: #00acf9;
  --gold-light: #f25e30;
  --gold-dark: #f25e30;
  --ink: #0D0D0F;
  --ink-soft: #1A1A20;
  --stone: #F5F2ED;
  --stone-mid: #E8E3DA;
  --slate: #6B6860;
  --white: #FFFFFF;
  --accent: #2D6A8F;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); background: var(--white); color: var(--ink); overflow-x: hidden; cursor: none; }

/* ─── CURSOR ─── */
.cursor-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: transform 0.05s; }
.cursor-ring { width: 38px; height: 38px; border: 1px solid rgba(200,169,110,0.55); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: width 0.3s, height 0.3s, border-color 0.3s; }
body.cursor-expand .cursor-ring { width: 56px; height: 56px; border-color: var(--gold); }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--stone); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ════════════════════════════════ NAVBAR ════════════════════════════════ */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.5rem 3rem; display: flex; align-items: center; justify-content: space-between; transition: all 0.5s var(--transition); }
.navbar.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(16px); padding: 1rem 3rem; border-bottom: 1px solid var(--stone-mid); box-shadow: 0 4px 32px rgba(0,0,0,0.06); }
.nav-logo { display: flex; flex-direction: column; text-decoration: none; cursor: none; }
.nav-logo-main { font-family: var(--font-display); font-size: 1.55rem; font-weight: 700; letter-spacing: 0.06em; line-height: 1; color: var(--white); transition: color 0.4s; }
.navbar.scrolled .nav-logo-main { color: var(--ink); }
.nav-logo-main em { color: var(--gold); font-style: normal; }
.nav-logo-sub { font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-top: 3px; font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-link { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; padding: 0.55rem 1.1rem; border-radius: 999px; cursor: none; color: rgba(255,255,255,0.85); transition: all 0.3s; position: relative; }
.navbar.scrolled .nav-link { color: var(--slate); }
.nav-link:hover, .nav-link.active { color: var(--gold); background: rgba(200,169,110,0.1); }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { color: var(--gold-dark); }
.nav-dropdown { position: relative; }
.dropdown-menu { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-8px); min-width: 220px; background: var(--white); border: 1px solid var(--stone-mid); border-radius: 16px; padding: 0.6rem; box-shadow: 0 20px 48px rgba(0,0,0,0.1); opacity: 0; visibility: hidden; transition: all 0.3s var(--transition); z-index: 200; }
.dropdown-menu::before { content: ''; position: absolute; top: -5px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 10px; height: 10px; background: var(--white); border-top: 1px solid var(--stone-mid); border-left: 1px solid var(--stone-mid); }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-item { display: flex; align-items: center; gap: 10px; padding: 0.65rem 1rem; border-radius: 10px; font-size: 0.82rem; color: var(--ink); text-decoration: none; font-weight: 500; transition: all 0.2s; cursor: none; }
.dropdown-item:hover { background: var(--stone); color: var(--gold-dark); transform: translateX(4px); }
.dropdown-item .di-icon { width: 28px; height: 28px; border-radius: 8px; background: var(--stone); display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-icon-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.35); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.8); cursor: none; font-size: 13px; transition: all 0.3s; }
.navbar.scrolled .nav-icon-btn { border-color: var(--stone-mid); color: var(--slate); }
.nav-icon-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.nav-call-btn { background: var(--gold); padding: 0.6rem 1.4rem; border-radius: 999px; font-size: 0.78rem; font-weight: 600; color: var(--white); cursor: none; border: none; letter-spacing: 0.02em; display: flex; align-items: center; gap: 0.5rem; transition: all 0.3s; white-space: nowrap; }
.nav-call-btn:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,169,110,0.4); }

/* ════════════════════════════════ HERO ════════════════════════════════ */
.hero { min-height: 100vh; position: relative; background: var(--ink); overflow: hidden; display: flex; flex-direction: column; }
.hero-swiper { position: absolute; inset: 0; }
.hero-slide { width: 100%; height: 100%; background-size: cover; background-position: center; transform: scale(1.06); transition: transform 8s ease; }
.swiper-slide-active .hero-slide { transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(105deg, rgba(13,13,15,0.82) 0%, rgba(13,13,15,0.55) 45%, rgba(13,13,15,0.3) 100%); }
.hero-accent-line { position: absolute; top: 0; right: 20%; width: 1px; height: 100%; background: linear-gradient(180deg, transparent, rgba(200,169,110,0.25), transparent); z-index: 3; }
.hero-body { position: relative; z-index: 10; min-height: 100vh; display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: center; padding: 9rem 3rem 5rem; max-width: 1380px; margin: 0 auto; width: 100%; }
.hero-eyebrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.8rem; opacity: 0; animation: fadeUp 0.8s var(--transition) 0.3s forwards; }
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow-text { font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.hero-title { font-family: var(--font-display); font-size: clamp(3.5rem, 6vw, 6rem); font-weight: 600; line-height: 1.05; color: var(--white); margin-bottom: 1.8rem; opacity: 0; animation: fadeUp 0.9s var(--transition) 0.5s forwards; }
.hero-title em { display: block; font-style: italic; color: var(--gold-light); font-weight: 400; }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 480px; margin-bottom: 2.5rem; font-weight: 300; opacity: 0; animation: fadeUp 0.9s var(--transition) 0.7s forwards; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.9s var(--transition) 0.9s forwards; }
.btn-primary { background: var(--gold); padding: 0.9rem 2.2rem; border-radius: 999px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.03em; color: var(--white); border: none; cursor: none; display: flex; align-items: center; gap: 0.6rem; transition: all 0.35s; }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(200,169,110,0.45); }
.btn-ghost { background: transparent; padding: 0.9rem 2.2rem; border-radius: 999px; font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.3); cursor: none; display: flex; align-items: center; gap: 0.6rem; transition: all 0.35s; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,169,110,0.08); transform: translateY(-3px); }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.12); opacity: 0; animation: fadeUp 0.9s var(--transition) 1.1s forwards; }
.hero-stat-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--white); line-height: 1; }
.hero-stat-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 4px; font-weight: 500; }
.hero-search-card { background: rgba(255,255,255,0.07); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.15); border-radius: 24px; padding: 2rem; opacity: 0; animation: fadeRight 0.9s var(--transition) 0.8s forwards; }
.search-card-title { font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; color: var(--white); margin-bottom: 1.5rem; }
.search-field { margin-bottom: 1rem; }
.search-field label { display: block; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 6px; font-weight: 500; }
.search-field input, .search-field select { width: 100%; padding: 0.75rem 1rem; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 12px; color: var(--white); font-family: var(--font-body); font-size: 0.85rem; cursor: none; transition: border-color 0.3s; -webkit-appearance: none; }
.search-field input::placeholder { color: rgba(255,255,255,0.4); }
.search-field input:focus, .search-field select:focus { outline: none; border-color: var(--gold); }
.search-field select option { background: var(--ink); color: var(--white); }
.search-btn { width: 100%; padding: 0.9rem; background: var(--gold); border: none; border-radius: 12px; color: var(--white); font-size: 0.85rem; font-weight: 600; cursor: none; margin-top: 0.5rem; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.search-btn:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(200,169,110,0.4); }
.search-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.search-tag { font-size: 0.7rem; color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; padding: 3px 12px; cursor: none; transition: all 0.2s; }
.search-tag:hover { border-color: var(--gold); color: var(--gold); }
.hero-swiper .swiper-button-next, .hero-swiper .swiper-button-prev { width: 44px; height: 44px; background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; color: white; transition: all 0.3s; }
.hero-swiper .swiper-button-next:hover, .hero-swiper .swiper-button-prev:hover { background: var(--gold); border-color: var(--gold); }
.hero-swiper .swiper-button-next::after, .hero-swiper .swiper-button-prev::after { font-size: 14px; }
.hero-swiper .swiper-pagination-bullet { background: rgba(255,255,255,0.5); }
.hero-swiper .swiper-pagination-bullet-active { background: var(--gold); width: 24px; border-radius: 999px; }
.scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 6px; cursor: none; }
.scroll-mouse { width: 22px; height: 34px; border-radius: 11px; border: 1.5px solid rgba(255,255,255,0.4); position: relative; }
.scroll-mouse::after { content: ''; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 3px; height: 6px; border-radius: 2px; background: rgba(255,255,255,0.6); animation: scrollBob 1.8s infinite; }
@keyframes scrollBob { 0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); } 80% { opacity: 0; transform: translateX(-50%) translateY(12px); } }
.scroll-text { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* ════════════════════════════════ FEATURES STRIP ════════════════════════════════ */
.features-strip { background: var(--stone); padding: 2.5rem 3rem; border-bottom: 1px solid var(--stone-mid); }
.features-strip-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-item { display: flex; align-items: center; gap: 1rem; }
.feature-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--white); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gold); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.feature-text strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.feature-text span { font-size: 0.75rem; color: var(--slate); }

/* ════════════════════════════════ SECTION UTILITIES ════════════════════════════════ */
.section-eyebrow { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.section-eyebrow-line { width: 30px; height: 1px; background: var(--gold); }
.section-eyebrow-text { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; }
.section-title { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 600; line-height: 1.1; color: var(--ink); }
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-rule { width: 48px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: 1.2rem 0 1.5rem; }
.reveal { opacity: 0; transform: translateY(40px); }
.reveal.visible { opacity: 1; transform: translateY(0); transition: opacity 0.8s var(--transition), transform 0.8s var(--transition); }

/* ════════════════════════════════ ABOUT ════════════════════════════════ */
.about-section { padding: 7rem 3rem; background: var(--white); overflow: hidden; }
.about-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { width: 100%; height: 560px; object-fit: cover; border-radius: 20px; }
.about-img-badge { position: absolute; bottom: -24px; right: -24px; background: var(--gold); border-radius: 16px; padding: 1.5rem; text-align: center; min-width: 140px; box-shadow: 0 16px 48px rgba(200,169,110,0.4); }
.about-badge-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--white); line-height: 1; }
.about-badge-text { font-size: 0.7rem; color: rgba(255,255,255,0.8); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
.about-img-accent { position: absolute; top: -16px; left: -16px; width: 80px; height: 80px; border-radius: 50%; background: var(--stone); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 0.75rem; font-weight: 600; color: var(--gold-dark); text-align: center; line-height: 1.3; border: 4px solid var(--white); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.about-desc { font-size: 1rem; color: var(--slate); line-height: 1.8; font-weight: 300; margin-bottom: 1rem; }
.about-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2.5rem 0; }
.about-stat { background: var(--stone); border-radius: 16px; padding: 1.5rem 1rem; text-align: center; border: 1px solid var(--stone-mid); transition: all 0.3s; }
.about-stat:hover { border-color: var(--gold-light); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(200,169,110,0.1); }
.about-stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold-dark); }
.about-stat-lbl { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); margin-top: 4px; }
.about-pillars { display: flex; flex-direction: column; gap: 0.75rem; }
.about-pillar { display: flex; align-items: center; gap: 0.75rem; font-size: 0.88rem; color: var(--ink); font-weight: 500; }
.pillar-check { width: 22px; height: 22px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 10px; color: var(--white); }

/* ════════════════════════════════ PROPERTIES ════════════════════════════════ */
.properties-section { padding: 7rem 3rem; background: var(--stone); }
.properties-header { max-width: 1280px; margin: 0 auto; display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1.5rem; }
.properties-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.prop-card { background: var(--white); border-radius: 20px; overflow: hidden; border: 1px solid var(--stone-mid); transition: all 0.4s var(--transition); cursor: none; }
.prop-card:hover { transform: translateY(-8px); border-color: var(--gold-light); box-shadow: 0 24px 56px rgba(0,0,0,0.1); }
.prop-img-wrap { position: relative; height: 230px; overflow: hidden; }
.prop-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--transition); }
.prop-card:hover .prop-img { transform: scale(1.06); }
.prop-badge { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--white); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; }
.prop-badge.new { background: var(--accent); }
.prop-fav { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--slate); transition: all 0.3s; cursor: none; }
.prop-fav:hover { background: var(--white); color: #e63946; }
.prop-body { padding: 1.5rem; }
.prop-location { font-size: 0.7rem; color: var(--gold-dark); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; margin-bottom: 0.4rem; display: flex; align-items: center; gap: 4px; }
.prop-name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--ink); margin-bottom: 0.75rem; line-height: 1.2; }
.prop-meta { display: flex; gap: 1.2rem; margin-bottom: 1.2rem; }
.prop-meta-item { display: flex; align-items: center; gap: 5px; font-size: 0.75rem; color: var(--slate); }
.prop-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1.2rem; border-top: 1px solid var(--stone-mid); }
.prop-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--ink); }
.prop-price span { font-size: 0.75rem; color: var(--slate); font-family: var(--font-body); font-weight: 400; }
.prop-btn { background: var(--stone); border: 1px solid var(--stone-mid); padding: 0.5rem 1.1rem; border-radius: 999px; font-size: 0.75rem; font-weight: 600; color: var(--ink); cursor: none; transition: all 0.3s; }
.prop-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ════════════════════════════════ HOW IT WORKS ════════════════════════════════ */
.process-section { padding: 7rem 3rem; background: var(--ink); position: relative; overflow: hidden; }
.process-bg-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--font-display); font-size: 22vw; font-weight: 700; color: rgba(255,255,255,0.02); white-space: nowrap; pointer-events: none; user-select: none; line-height: 1; }
.process-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.process-header { text-align: center; margin-bottom: 4.5rem; }
.process-header .section-eyebrow { justify-content: center; }
.process-header .section-title { color: var(--white); }
.process-header .section-title em { color: var(--gold-light); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.process-connector { position: absolute; top: 44px; left: calc(25% / 2 + 12px); right: calc(25% / 2 + 12px); height: 1px; background: linear-gradient(90deg, var(--gold), rgba(200,169,110,0.2), var(--gold)); opacity: 0.3; }
.process-step { text-align: center; padding: 2.5rem 1.5rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; transition: all 0.4s; }
.process-step:hover { background: rgba(200,169,110,0.08); border-color: rgba(200,169,110,0.3); transform: translateY(-6px); }
.step-num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: rgba(200,169,110,0.2); line-height: 1; margin-bottom: 1rem; }
.step-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(200,169,110,0.12); border: 1px solid rgba(200,169,110,0.25); display: flex; align-items: center; justify-content: center; font-size: 20px; margin: 0 auto 1.2rem; color: var(--gold); }
.step-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.step-desc { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ════════════════════════════════ GALLERY ════════════════════════════════ */
.gallery-section { padding: 7rem 3rem; background: var(--white); overflow: hidden; }
.gallery-inner { max-width: 1280px; margin: 0 auto; }
.gallery-header { margin-bottom: 3rem; }
.gallery-tabs { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 2rem 0 2.5rem; border-bottom: 1px solid var(--stone-mid); padding-bottom: 1rem; }
.gallery-tab-btn { background: transparent; border: none; padding: 0.6rem 1.6rem; font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.03em; color: var(--slate); cursor: pointer; border-radius: 999px; transition: all 0.3s var(--transition); }
.gallery-tab-btn i { margin-right: 8px; font-size: 0.85rem; }
.gallery-tab-btn:hover { color: var(--gold-dark); background: rgba(200,169,110,0.08); }
.gallery-tab-btn.active { background: var(--gold); color: var(--white); box-shadow: 0 6px 14px rgba(200,169,110,0.3); }

/* Gallery Grid */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; transition: all 0.4s; }
.gallery-item { position: relative; border-radius: 20px; overflow: hidden; cursor: pointer; transition: all 0.4s var(--transition); aspect-ratio: 1 / 1; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; min-height: 520px; }
.gallery-item.hidden { display: none; }
.gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--transition); }
.gallery-item:hover .gallery-img { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13,13,15,0.75) 0%, transparent 60%); display: flex; align-items: flex-end; padding: 1.5rem; opacity: 0; transition: opacity 0.4s var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-info { transform: translateY(20px); transition: transform 0.4s var(--transition); }
.gallery-item:hover .gallery-info { transform: translateY(0); }
.gallery-cat { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.25rem; }
.gallery-title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.25rem; }
.gallery-location { font-size: 0.7rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 4px; }
.gallery-expand { position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; background: rgba(255,255,255,0.2); backdrop-filter: blur(8px); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 14px; opacity: 0; transform: scale(0.8); transition: all 0.3s var(--transition); pointer-events: none; }
.gallery-item:hover .gallery-expand { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(13,13,15,0.96); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.4s var(--transition); cursor: none; }
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-content { max-width: 85vw; max-height: 85vh; position: relative; }
.lightbox-img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: 12px; box-shadow: 0 24px 64px rgba(0,0,0,0.4); }
.lightbox-close { position: absolute; top: -48px; right: 0; width: 42px; height: 42px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 20px; cursor: pointer; transition: all 0.3s; }
.lightbox-close:hover { background: var(--gold); transform: rotate(90deg); }
.lightbox-caption { position: absolute; bottom: -56px; left: 0; color: rgba(255,255,255,0.7); font-size: 0.85rem; font-weight: 500; }

/* Load more */
.gallery-load-more { text-align: center; margin-top: 3rem; }

/* ════════════════════════════════ BLOG ════════════════════════════════ */
.blog-section { padding: 7rem 3rem; background: var(--stone); overflow: hidden; }
.blog-inner { max-width: 1280px; margin: 0 auto; }
.blog-header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3.5rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { background: var(--white); border-radius: 24px; overflow: hidden; border: 1px solid var(--stone-mid); transition: all 0.4s var(--transition); cursor: pointer; }
.blog-card:hover { transform: translateY(-8px); border-color: var(--gold-light); box-shadow: 0 28px 48px rgba(0,0,0,0.12); }
.blog-img-wrap { position: relative; height: 220px; overflow: hidden; }
.blog-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--transition); }
.blog-card:hover .blog-img { transform: scale(1.06); }
.blog-category { position: absolute; top: 16px; left: 16px; background: var(--gold); color: var(--white); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; z-index: 2; }
.blog-date { position: absolute; bottom: 16px; right: 16px; background: rgba(13,13,15,0.7); backdrop-filter: blur(4px); padding: 4px 10px; border-radius: 999px; font-size: 0.65rem; color: var(--white); font-weight: 500; z-index: 2; }
.blog-body { padding: 1.5rem; }
.blog-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; font-size: 0.7rem; color: var(--slate); }
.blog-meta i { margin-right: 4px; font-size: 0.65rem; }
.blog-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; line-height: 1.35; color: var(--ink); margin-bottom: 0.75rem; transition: color 0.3s; }
.blog-card:hover .blog-title { color: var(--gold-dark); }
.blog-excerpt { font-size: 0.82rem; color: var(--slate); line-height: 1.65; margin-bottom: 1.25rem; }
.blog-readmore { display: inline-flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 600; color: var(--gold-dark); text-decoration: none; transition: gap 0.3s; }
.blog-readmore i { font-size: 11px; transition: transform 0.3s; }
.blog-readmore:hover { gap: 12px; }
.blog-readmore:hover i { transform: translateX(4px); }
.blog-pagination { display: flex; justify-content: center; align-items: center; gap: 0.5rem; margin-top: 3.5rem; }
.page-link { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: var(--white); border: 1px solid var(--stone-mid); font-size: 0.85rem; font-weight: 500; color: var(--slate); cursor: pointer; transition: all 0.3s; }
.page-link.active, .page-link:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ════════════════════════════════ TESTIMONIALS ════════════════════════════════ */
.testimonials-section { padding: 7rem 3rem; background: var(--white); }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-header { max-width: 500px; margin-bottom: 3.5rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card { background: var(--stone); border: 1px solid var(--stone-mid); border-radius: 20px; padding: 2rem; transition: all 0.4s; position: relative; }
.testi-card:hover { border-color: var(--gold-light); box-shadow: 0 16px 40px rgba(200,169,110,0.1); transform: translateY(-4px); }
.testi-quote { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--gold-light); margin-bottom: 0.5rem; }
.testi-text { font-size: 0.9rem; color: var(--slate); line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; font-family: var(--font-display); font-weight: 400; font-size: 1rem; }
.testi-footer { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-light); }
.testi-name { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.testi-role { font-size: 0.72rem; color: var(--slate); }
.testi-stars { color: var(--gold); font-size: 11px; margin-top: 2px; }

/* ════════════════════════════════ FLAGSHIP ════════════════════════════════ */
.flagship-section { padding: 7rem 3rem; background: var(--stone); }
.flagship-inner { max-width: 1280px; margin: 0 auto; }
.flagship-header { max-width: 520px; margin-bottom: 3.5rem; }
.flagship-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.5rem; }
.flagship-card { position: relative; border-radius: 20px; overflow: hidden; cursor: none; }
.flagship-card:first-child { grid-row: span 2; }
.flagship-img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; transition: transform 0.7s var(--transition); }
.flagship-card:first-child .flagship-img { min-height: 640px; }
.flagship-card:hover .flagship-img { transform: scale(1.04); }
.flagship-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13,13,15,0.8) 0%, transparent 55%); display: flex; align-items: flex-end; padding: 2rem; }
.flagship-tag { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.4rem; }
.flagship-name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; line-height: 1.1; }
.flagship-card:first-child .flagship-name { font-size: 2.2rem; }
.flagship-desc { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.flagship-link { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.25); color: var(--white); padding: 0.5rem 1.2rem; border-radius: 999px; font-size: 0.75rem; font-weight: 600; cursor: none; transition: all 0.3s; }
.flagship-link:hover { background: var(--gold); border-color: var(--gold); }

/* ════════════════════════════════ CTA ════════════════════════════════ */
.cta-section { position: relative; padding: 8rem 3rem; background: var(--ink); overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background-image: url('assets/gallery/200G+101.jpg'); background-size: cover; background-position: center; background-attachment: fixed; opacity: 0.25; }
.cta-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.cta-left .section-title { color: var(--white); }
.cta-left .section-title em { color: var(--gold-light); }
.cta-desc { font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin: 1.5rem 0 2rem; }
.cta-contact-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.cta-contact-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(200,169,110,0.15); border: 1px solid rgba(200,169,110,0.3); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 14px; flex-shrink: 0; }
.cta-contact-label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.cta-contact-value { font-size: 0.9rem; color: var(--white); font-weight: 500; }
.cta-form { background: rgba(255,255,255,0.05); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 2.5rem; }
.form-title { font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; color: var(--white); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-field { margin-bottom: 0.75rem; }
.form-field label { display: block; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 6px; font-weight: 500; }
.form-field input, .form-field textarea { width: 100%; padding: 0.75rem 1rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; color: var(--white); font-family: var(--font-body); font-size: 0.85rem; transition: border-color 0.3s; cursor: none; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); }

/* ════════════════════════════════ PARTNERS ════════════════════════════════ */
.partners-section { padding: 3rem 3rem; background: var(--white); border-top: 1px solid var(--stone-mid); }
.partners-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.partners-label { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--slate); margin-bottom: 1.5rem; }
.partners-logos { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.partner-logo { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; color: rgba(100,100,100,0.4); text-transform: uppercase; transition: color 0.3s; }
.partner-logo:hover { color: var(--gold-dark); }

/* ════════════════════════════════ FOOTER ════════════════════════════════ */
.footer { background: var(--ink-soft); padding: 5rem 3rem 2.5rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 3rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2.5rem; }
.footer-logo-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.footer-logo-text em { color: var(--gold); font-style: normal; }
.footer-tagline { font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
.footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.75; margin: 1.2rem 0 1.5rem; font-weight: 300; }
.footer-social { display: flex; gap: 0.6rem; }
.social-btn { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 12px; color: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s; }
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: translateY(-3px); }
.footer-col-title { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 1.4rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-link { font-size: 0.82rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: all 0.3s; display: flex; align-items: center; gap: 6px; }
.footer-link::before { content: '–'; color: var(--gold); font-size: 10px; opacity: 0; transition: opacity 0.3s; }
.footer-link:hover { color: var(--white); padding-left: 4px; }
.footer-link:hover::before { opacity: 1; }
.newsletter-desc { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 1rem; line-height: 1.5; }
.newsletter-form { display: flex; border: 1px solid rgba(255,255,255,0.15); border-radius: 999px; overflow: hidden; background: rgba(255,255,255,0.05); }
.newsletter-form input { flex: 1; padding: 0.7rem 1.2rem; background: transparent; border: none; color: var(--white); font-family: var(--font-body); font-size: 0.82rem; cursor: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { outline: none; }
.newsletter-form button { background: var(--gold); border: none; padding: 0 1.2rem; color: var(--white); cursor: pointer; font-size: 13px; transition: background 0.3s; }
.newsletter-form button:hover { background: var(--gold-dark); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-credit { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-credit strong { color: rgba(255,255,255,0.55); }

/* ════════════════════════════════ FLOATING BUTTONS ════════════════════════════════ */
.whatsapp-btn { position: fixed; bottom: 2rem; right: 2rem; z-index: 990; width: 54px; height: 54px; border-radius: 50%; background: #25D366; color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 22px; cursor: none; box-shadow: 0 8px 24px rgba(37,211,102,0.4); animation: waPulse 2.5s infinite; transition: transform 0.3s; }
.whatsapp-btn:hover { transform: scale(1.1); }
@keyframes waPulse { 0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.35); } 50% { box-shadow: 0 0 0 10px rgba(37,211,102,0.12); } }
.call-fab { position: fixed; bottom: 2rem; left: 2rem; z-index: 990; background: var(--gold); padding: 0.8rem 1.6rem; border-radius: 999px; color: var(--white); font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; cursor: pointer; box-shadow: 0 8px 24px rgba(200,169,110,0.4); transition: all 0.3s; }
.call-fab:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* ─── Animations ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-body { grid-template-columns: 1fr; gap: 3rem; padding-top: 8rem; }
  .about-inner, .cta-inner { grid-template-columns: 1fr; gap: 3rem; }
  .properties-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .flagship-grid { grid-template-columns: 1fr; }
  .flagship-card:first-child { grid-row: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .navbar { padding: 1.2rem 1.5rem; }
  .navbar.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .hero-body { padding: 8rem 1.5rem 4rem; }
  .about-section, .properties-section, .process-section, .testimonials-section, .flagship-section, .cta-section, .footer { padding: 5rem 1.5rem; }
  .gallery-section, .blog-section { padding: 5rem 1.5rem; }
  .properties-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .features-strip-inner { grid-template-columns: 1fr; }
  .about-stats-row { grid-template-columns: 1fr 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; gap: 1rem; }
  .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; aspect-ratio: 1/1; min-height: unset; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-header { flex-direction: column; align-items: flex-start; }
  .gallery-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.75rem; }
  .gallery-tab-btn { white-space: nowrap; }
}