  :root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dim: #8a6d2f;
    --dark: #0D0D0D;
    --dark2: #161616;
    --dark3: #1E1E1E;
    --dark4: #262626;
    --text: #F0EDE8;
    --text-muted: #9A9590;
    --white: #FFFFFF;
    --border: rgba(201,168,76,0.2);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Tajawal', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ===== NAVBAR ===== */
  nav {
    position: fixed;
    top: 0; right: 0; left: 0;
    z-index: 1000;
    padding: 1.2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s, backdrop-filter 0.4s;
  }
  nav.scrolled {
    background: rgba(13,13,13,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    font-family: 'Amiri', serif;
    font-size: 1.7rem;
    color: var(--gold);
    letter-spacing: 2px;
  }
  .nav-logo span { color: var(--text); font-size: 1rem; display: block; font-family: 'Tajawal', sans-serif; font-weight: 300; letter-spacing: 6px; margin-top: -4px; }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; font-weight: 400; transition: color 0.2s; position: relative; }
  .nav-links a::after { content: ''; position: absolute; bottom: -4px; right: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta { background: var(--gold); color: var(--dark); padding: 0.6rem 1.8rem; border: none; font-family: 'Tajawal', sans-serif; font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: background 0.2s; }
  .nav-cta:hover { background: var(--gold-light); }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1208 50%, #0a0a0a 100%);
  }
  .hero-pattern {
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(201,168,76,0.04) 60px, rgba(201,168,76,0.04) 61px),
      repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(201,168,76,0.04) 60px, rgba(201,168,76,0.04) 61px);
  }
  .hero-glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
    top: 50%; left: 20%;
    transform: translate(-50%, -50%);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 4rem;
    max-width: 750px;
  }
  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid var(--border);
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 2rem;
    animation: fadeUp 0.8s ease both;
  }
  .hero-tag::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
  .hero h1 {
    font-family: 'Amiri', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.15;
    font-weight: 700;
    color: var(--white);
    animation: fadeUp 0.8s 0.15s ease both;
  }
  .hero h1 .gold { color: var(--gold); }
  .hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 1.5rem 0 2.5rem;
    font-weight: 300;
    max-width: 560px;
    animation: fadeUp 0.8s 0.3s ease both;
  }
  .hero-btns { display: flex; gap: 1rem; animation: fadeUp 0.8s 0.45s ease both; }
  .btn-primary { background: var(--gold); color: var(--dark); padding: 1rem 2.5rem; border: none; font-family: 'Tajawal', sans-serif; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.2s; }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-outline { background: transparent; color: var(--text); padding: 1rem 2.5rem; border: 1px solid rgba(240,237,232,0.25); font-family: 'Tajawal', sans-serif; font-size: 1rem; font-weight: 400; cursor: pointer; transition: all 0.2s; }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
  .hero-stats {
    position: absolute;
    bottom: 3rem; left: 4rem;
    right: 4rem;
    display: flex;
    gap: 3rem;
    z-index: 2;
    animation: fadeUp 0.8s 0.6s ease both;
  }
  .stat { border-right: 1px solid var(--border); padding-right: 2rem; }
  .stat:first-child { border: none; padding: 0; }
  .stat-num { font-family: 'Amiri', serif; font-size: 2.2rem; color: var(--gold); }
  .stat-label { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 1px; }

  /* ===== SEARCH BAR ===== */
  .search-section {
    background: var(--dark2);
    padding: 2.5rem 4rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .search-bar {
    display: flex;
    gap: 0;
    background: var(--dark3);
    border: 1px solid var(--border);
    overflow: hidden;
  }
  .search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    border-left: 1px solid var(--border);
  }
  .search-field:last-of-type { border: none; }
  .search-field label { font-size: 0.75rem; color: var(--gold); letter-spacing: 2px; display: block; margin-bottom: 2px; }
  .search-field select, .search-field input {
    background: transparent;
    border: none;
    color: var(--text);
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    outline: none;
    width: 100%;
  }
  .search-field select option { background: var(--dark3); color: var(--text); }
  .search-btn {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 1rem 2.5rem;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
  }
  .search-btn:hover { background: var(--gold-light); }

  /* ===== SECTIONS COMMON ===== */
  section { padding: 6rem 4rem; }
  .section-header { text-align: center; margin-bottom: 4rem; }
  .section-tag { font-size: 0.75rem; letter-spacing: 4px; color: var(--gold); margin-bottom: 1rem; display: block; }
  .section-title { font-family: 'Amiri', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 1rem; }
  .section-sub { color: var(--text-muted); font-size: 1rem; font-weight: 300; max-width: 500px; margin: 0 auto; line-height: 1.8; }
  .divider { width: 60px; height: 2px; background: var(--gold); margin: 1.5rem auto; }

  /* ===== PROPERTIES ===== */
  .properties { background: var(--dark); }
  .filter-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
  }
  .filter-tab {
    padding: 0.6rem 1.8rem;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    font-family: 'Tajawal', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
  }
  .filter-tab.active, .filter-tab:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); font-weight: 700; }

  .props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
  }

  .prop-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
  }
  .prop-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
  .prop-img {
    height: 220px;
    position: relative;
    overflow: hidden;
  }
  .prop-img-inner {
    width: 100%; height: 100%;
    transition: transform 0.5s;
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem;
  }
  .prop-card:hover .prop-img-inner { transform: scale(1.06); }

  /* Property image backgrounds */
  .bg-villa { background: linear-gradient(135deg, #1a2a1a, #2a3a1a); }
  .bg-apt { background: linear-gradient(135deg, #1a1a2a, #2a1a3a); }
  .bg-office { background: linear-gradient(135deg, #2a1a1a, #1a2a2a); }
  .bg-chalet { background: linear-gradient(135deg, #1a2a2a, #2a2a1a); }
  .bg-shop { background: linear-gradient(135deg, #2a2a1a, #1a1a2a); }
  .bg-land { background: linear-gradient(135deg, #1a1a1a, #2a1a2a); }

  .prop-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.9rem;
    letter-spacing: 1px;
  }
  .prop-badge.rent { background: #2a7a4a; color: #fff; }
  .prop-fav {
    position: absolute;
    top: 1rem; left: 1rem;
    width: 36px; height: 36px;
    background: rgba(13,13,13,0.7);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-muted);
    transition: all 0.2s;
  }
  .prop-fav:hover, .prop-fav.active { color: #e74c3c; border-color: #e74c3c; }

  .prop-body { padding: 1.5rem; }
  .prop-type { font-size: 0.75rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 0.5rem; }
  .prop-name { font-family: 'Amiri', serif; font-size: 1.3rem; color: var(--white); margin-bottom: 0.4rem; }
  .prop-loc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.4rem; }
  .prop-specs { display: flex; gap: 1.2rem; padding: 1rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 1rem; }
  .spec { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.4rem; }
  .spec span { color: var(--text); font-weight: 500; }
  .prop-footer { display: flex; align-items: center; justify-content: space-between; }
  .prop-price { font-family: 'Amiri', serif; font-size: 1.5rem; color: var(--gold); }
  .prop-price small { font-family: 'Tajawal', sans-serif; font-size: 0.75rem; color: var(--text-muted); display: block; }
  .prop-btn { background: transparent; border: 1px solid var(--border); color: var(--text-muted); padding: 0.5rem 1.2rem; font-family: 'Tajawal', sans-serif; font-size: 0.85rem; cursor: pointer; transition: all 0.2s; }
  .prop-btn:hover { border-color: var(--gold); color: var(--gold); }

  /* ===== WHY US ===== */
  .why { background: var(--dark2); }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .why-visual {
    position: relative;
    height: 500px;
  }
  .why-main-img {
    position: absolute;
    top: 0; right: 0;
    width: 75%; height: 80%;
    background: linear-gradient(135deg, #1a2a1a, #0a1a0a);
    display: flex; align-items: center; justify-content: center;
    font-size: 8rem;
    border: 1px solid var(--border);
  }
  .why-accent-img {
    position: absolute;
    bottom: 0; left: 0;
    width: 55%; height: 55%;
    background: linear-gradient(135deg, #1a1a2a, #0a0a1a);
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem;
    border: 1px solid var(--border);
  }
  .why-badge-years {
    position: absolute;
    top: 50%; left: 15%;
    transform: translateY(-50%);
    background: var(--gold);
    color: var(--dark);
    padding: 1.5rem;
    text-align: center;
    z-index: 2;
  }
  .why-badge-years .num { font-family: 'Amiri', serif; font-size: 3rem; font-weight: 700; line-height: 1; }
  .why-badge-years .txt { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; }

  .why-features { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
  .why-feat { display: flex; gap: 1.2rem; align-items: flex-start; }
  .feat-icon {
    width: 48px; height: 48px; min-width: 48px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
  }
  .feat-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
  .feat-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

  /* ===== NEIGHBORHOODS ===== */
  .neighborhoods { background: var(--dark); }
  .areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .area-card {
    position: relative;
    height: 260px;
    overflow: hidden;
    cursor: pointer;
  }
  .area-card:first-child { grid-column: span 2; height: 300px; }
  .area-bg {
    position: absolute; inset: 0;
    transition: transform 0.5s;
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem;
  }
  .area-card:hover .area-bg { transform: scale(1.08); }
  .area-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  }
  .area-info { position: absolute; bottom: 1.5rem; right: 1.5rem; }
  .area-name { font-family: 'Amiri', serif; font-size: 1.4rem; color: var(--white); }
  .area-count { font-size: 0.8rem; color: var(--gold); }

  /* area bg colors */
  .area-zamalek { background: linear-gradient(135deg, #0a1a2a, #1a2a3a); }
  .area-new-cairo { background: linear-gradient(135deg, #1a1a0a, #2a2a1a); }
  .area-6oct { background: linear-gradient(135deg, #1a0a1a, #2a1a2a); }
  .area-sahel { background: linear-gradient(135deg, #0a2a1a, #1a3a2a); }
  .area-maadi { background: linear-gradient(135deg, #2a1a0a, #3a2a1a); }

  /* ===== TEAM ===== */
  .team { background: var(--dark2); }
  .team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 2rem; }
  .team-card {
    text-align: center;
    padding: 2rem 1rem;
    border: 1px solid var(--border);
    transition: border-color 0.2s, transform 0.2s;
    background: var(--dark3);
  }
  .team-card:hover { border-color: var(--gold); transform: translateY(-4px); }
  .team-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    border: 2px solid var(--border);
  }
  .team-name { font-family: 'Amiri', serif; font-size: 1.1rem; color: var(--white); margin-bottom: 0.3rem; }
  .team-role { font-size: 0.8rem; color: var(--gold); letter-spacing: 1px; margin-bottom: 0.8rem; }
  .team-phone { font-size: 0.85rem; color: var(--text-muted); }

  /* ===== TESTIMONIALS ===== */
  .testimonials { background: var(--dark); }
  .testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }
  .testi-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    padding: 2rem;
    position: relative;
  }
  .testi-card::before {
    content: '"';
    font-family: 'Amiri', serif;
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.15;
    position: absolute;
    top: -1rem; right: 1.5rem;
    line-height: 1;
  }
  .testi-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; font-weight: 300; }
  .testi-author { display: flex; align-items: center; gap: 1rem; }
  .testi-av { width: 44px; height: 44px; border-radius: 50%; background: var(--dark4); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
  .testi-name { font-weight: 700; color: var(--white); font-size: 0.95rem; }
  .testi-loc { font-size: 0.8rem; color: var(--text-muted); }
  .stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; }

  /* ===== CTA ===== */
  .cta-section {
    background: var(--dark2);
    padding: 6rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-glow {
    position: absolute;
    width: 500px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(201,168,76,0.1) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }
  .cta-section h2 { font-family: 'Amiri', serif; font-size: clamp(2rem, 4vw, 3.5rem); color: var(--white); margin-bottom: 1rem; position: relative; }
  .cta-section p { color: var(--text-muted); font-size: 1rem; margin-bottom: 2.5rem; position: relative; font-weight: 300; }
  .cta-btns { display: flex; gap: 1rem; justify-content: center; position: relative; }

  /* ===== CONTACT ===== */
  .contact { background: var(--dark); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
  .contact-info h3 { font-family: 'Amiri', serif; font-size: 2rem; color: var(--white); margin-bottom: 1rem; }
  .contact-info p { color: var(--text-muted); line-height: 1.8; font-weight: 300; margin-bottom: 2rem; }
  .contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
  .contact-item { display: flex; align-items: center; gap: 1rem; }
  .contact-icon { width: 44px; height: 44px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--gold); min-width: 44px; }
  .contact-text strong { color: var(--white); font-size: 0.9rem; display: block; }
  .contact-text span { color: var(--text-muted); font-size: 0.85rem; }

  .contact-form { display: flex; flex-direction: column; gap: 1rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group label { display: block; font-size: 0.8rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 0.5rem; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background: var(--dark2);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    padding: 0.9rem 1rem;
    outline: none;
    transition: border-color 0.2s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
  .form-group select option { background: var(--dark2); }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-submit {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 1rem;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
  }
  .form-submit:hover { background: var(--gold-light); }

  /* ===== FOOTER ===== */
  footer {
    background: #080808;
    padding: 4rem 4rem 2rem;
    border-top: 1px solid var(--border);
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
  .footer-brand p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.8; font-weight: 300; margin-top: 1rem; max-width: 280px; }
  .footer-col h4 { font-size: 0.8rem; color: var(--gold); letter-spacing: 3px; margin-bottom: 1.2rem; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.7rem; }
  .footer-col ul li a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--gold); }
  .footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
  .footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }
  .social-links { display: flex; gap: 0.8rem; }
  .social-link { width: 36px; height: 36px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); text-decoration: none; transition: all 0.2s; font-size: 0.9rem; }
  .social-link:hover { border-color: var(--gold); color: var(--gold); }

  /* ===== MODAL ===== */
  .modal-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }
  .modal-overlay.open { display: flex; }
  .modal {
    background: var(--dark2);
    border: 1px solid var(--border);
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    animation: fadeUp 0.3s ease;
  }
  .modal-close {
    position: absolute;
    top: 1rem; left: 1rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    width: 36px; height: 36px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
  }
  .modal-close:hover { border-color: var(--gold); color: var(--gold); }
  .modal-img { width: 100%; height: 250px; display: flex; align-items: center; justify-content: center; font-size: 7rem; margin-bottom: 1.5rem; border: 1px solid var(--border); }
  .modal-title { font-family: 'Amiri', serif; font-size: 2rem; color: var(--white); margin-bottom: 0.5rem; }
  .modal-loc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
  .modal-price-big { font-family: 'Amiri', serif; font-size: 2.5rem; color: var(--gold); margin-bottom: 1.5rem; }
  .modal-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
  .modal-spec { background: var(--dark3); padding: 1rem; text-align: center; border: 1px solid var(--border); }
  .modal-spec .ms-val { font-size: 1.3rem; font-weight: 700; color: var(--white); }
  .modal-spec .ms-key { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.3rem; }
  .modal-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 1.5rem; }
  .modal-actions { display: flex; gap: 1rem; }
  .modal-actions .btn-primary { flex: 1; }
  .modal-actions .btn-outline { flex: 1; }

  /* ===== TOAST ===== */
  .toast {
    position: fixed;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--gold);
    color: var(--dark);
    padding: 0.9rem 2rem;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    z-index: 3000;
    transition: transform 0.3s;
    border-radius: 2px;
  }
  .toast.show { transform: translateX(-50%) translateY(0); }

  /* ===== SCROLL TO TOP ===== */
  .scroll-top {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 44px; height: 44px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 999;
  }
  .scroll-top.visible { opacity: 1; }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ===== MOBILE NAV ===== */
  .menu-toggle { display: none; background: transparent; border: 1px solid var(--border); color: var(--text); padding: 0.5rem 0.8rem; cursor: pointer; font-size: 1.1rem; }

  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; right: 0; left: 0; background: var(--dark); padding: 1.5rem; gap: 1.2rem; border-bottom: 1px solid var(--border); }
    .menu-toggle { display: block; }
    section { padding: 4rem 1.5rem; }
    .hero-content { padding: 0 1.5rem; }
    .hero-stats { left: 1.5rem; right: 1.5rem; gap: 1.5rem; flex-wrap: wrap; }
    .search-section { padding: 1.5rem; }
    .search-bar { flex-direction: column; }
    .search-field { border-left: none; border-bottom: 1px solid var(--border); }
    .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .why-visual { height: 300px; }
    .areas-grid { grid-template-columns: 1fr 1fr; }
    .area-card:first-child { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
  }