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

:root {
  --navy:      #0f2044;
  --navy-light:#162d5e;
  --gold:      #c8963e;
  --gold-light:#e6b96a;
  --white:     #ffffff;
  --off-white: #f5f6f8;
  --gray:      #6b7280;
  --gray-light:#e5e7eb;
  --text:      #1a1a2e;
  --radius:    10px;
  --shadow:    0 4px 24px rgba(15,32,68,.10);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  direction: rtl;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── Typography ────────────────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.3; color: var(--navy); }
h1 { font-size: clamp(1.8rem,4vw,2.8rem); }
h2 { font-size: clamp(1.4rem,3vw,2rem); }
h3 { font-size: clamp(1.1rem,2vw,1.4rem); }

.section-label { color: var(--gold); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: .4rem; }
.section-title { margin-bottom: .5rem; }
.section-sub   { color: var(--gray); max-width: 550px; }
.text-center   { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ─── Buttons ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.6rem; border-radius: var(--radius);
  font-size: .9rem; font-weight: 600; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition);
}
.btn-primary   { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-light); }
.btn-gold      { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover{ background: var(--gold-light); }
.btn-outline   { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-whatsapp  { background: #25D366; color: var(--white); border-color: #25D366; }
.btn-whatsapp:hover { background: #1db954; }
.btn-sm { padding: .45rem 1rem; font-size: .82rem; }
.btn-lg { padding: .9rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ─── Layout Helpers ────────────────────────────────────────────────── */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* ─── Badges ────────────────────────────────────────────────────────── */
.badge { display: inline-block; padding: .25rem .75rem; border-radius: 50px; font-size: .75rem; font-weight: 600; }
.badge-rent  { background: #dbeafe; color: #1d4ed8; }
.badge-sale  { background: #dcfce7; color: #15803d; }
.badge-both  { background: #fef3c7; color: #b45309; }
.badge-gold  { background: var(--gold); color: var(--white); }
.badge-navy  { background: var(--navy); color: var(--white); }

/* ─── Navbar ────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(15,32,68,.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
.navbar.scrolled { background: var(--navy); box-shadow: 0 2px 20px rgba(0,0,0,.2); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.navbar-logo { color: var(--white); font-size: 1.3rem; font-weight: 800; letter-spacing: -.3px; display: flex; align-items: center; gap: .55rem; }
.navbar-logo-img { height: 42px; width: auto; max-width: 52px; object-fit: contain; display: block; flex-shrink: 0; }
.navbar-logo-text { font-size: 1.25rem; font-weight: 800; color: var(--white); line-height: 1; }
.navbar-logo-accent { color: var(--gold); }
.navbar-logo span { color: var(--gold); }
.navbar-nav { display: flex; align-items: center; gap: .25rem; }
.navbar-nav a { color: rgba(255,255,255,.85); padding: .5rem .9rem; border-radius: 6px; font-size: .9rem; font-weight: 500; transition: var(--transition); }
.navbar-nav a:hover, .navbar-nav a.active { color: var(--white); background: rgba(255,255,255,.1); }
.navbar-cta { margin-right: .5rem; display: flex; align-items: center; gap: .5rem; }
.navbar-toggle { display: none; background: none; border: none; cursor: pointer; padding: .4rem; }
.navbar-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; transition: var(--transition); }

/* ─── Hero / Slider ─────────────────────────────────────────────────── */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,32,68,.75) 0%, rgba(15,32,68,.4) 100%); }
.hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 2rem; color: var(--white); }
.hero-content h1 { color: var(--white); font-size: clamp(2rem,5vw,3.5rem); text-shadow: 0 2px 12px rgba(0,0,0,.3); margin-bottom: .75rem; }
.hero-content p  { font-size: clamp(.95rem,2vw,1.15rem); color: rgba(255,255,255,.88); max-width: 600px; margin-bottom: 2rem; }
.hero-dots { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); display: flex; gap: .5rem; }
.hero-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.5); cursor: pointer; transition: var(--transition); }
.hero-dots span.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ─── Search Bar ────────────────────────────────────────────────────── */
.search-bar {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  max-width: 900px; width: 100%;
}
.search-field { flex: 1; min-width: 140px; }
.search-field label { font-size: .75rem; color: var(--gray); font-weight: 600; display: block; margin-bottom: .2rem; }
.search-field select, .search-field input {
  width: 100%; border: none; outline: none; font-size: .9rem;
  color: var(--text); background: transparent; font-family: inherit;
}
.search-divider { width: 1px; height: 36px; background: var(--gray-light); }

@media (max-width: 640px) {
  .search-bar { padding: 0; gap: 0; border-radius: 14px; }
  .search-field { flex: none; width: 100%; padding: .9rem 1.1rem; border-bottom: 1px solid var(--gray-light); }
  .search-field:last-of-type { border-bottom: none; }
  .search-field label { font-size: .7rem; color: var(--navy); font-weight: 700; margin-bottom: .3rem; }
  .search-field select, .search-field input { font-size: .95rem; color: var(--text); }
  .search-bar .btn-gold { margin: .9rem 1.1rem; width: calc(100% - 2.2rem); padding: .75rem; border-radius: 10px; font-size: 1rem; }
  .search-divider { display: none; }
}

/* ─── Stats Bar ─────────────────────────────────────────────────────── */
.stats-bar { background: var(--navy); color: var(--white); padding: 2.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); text-align: center; gap: 1rem; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--gold); }
.stat-label  { font-size: .9rem; color: rgba(255,255,255,.75); margin-top: .25rem; }

/* ─── Property Card ─────────────────────────────────────────────────── */
.property-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.property-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(15,32,68,.15); }
.property-card-img { position: relative; height: 220px; overflow: hidden; }
.property-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.property-card:hover .property-card-img img { transform: scale(1.04); }
.property-card-badges { position: absolute; top: .75rem; right: .75rem; display: flex; flex-direction: column; gap: .35rem; }
.property-card-fav { position: absolute; top: .75rem; left: .75rem; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; font-size: 1rem; transition: var(--transition); }
.property-card-fav:hover { background: var(--white); transform: scale(1.1); }
.property-card-body { padding: 1.1rem 1.25rem; }
.property-card-title { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.property-card-location { color: var(--gray); font-size: .83rem; display: flex; align-items: center; gap: .3rem; margin-bottom: .75rem; }
.property-card-meta { display: flex; gap: 1rem; color: var(--gray); font-size: .8rem; margin-bottom: .85rem; }
.property-card-meta span { display: flex; align-items: center; gap: .25rem; }
.property-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: .75rem; border-top: 1px solid var(--gray-light); }
.property-price { font-size: 1.15rem; font-weight: 800; color: var(--navy); }
.property-price small { font-size: .72rem; font-weight: 400; color: var(--gray); }
.property-rating { display: flex; align-items: center; gap: .3rem; font-size: .82rem; color: var(--gold); }

/* ─── Village Cards ─────────────────────────────────────────────────── */
.village-card { position: relative; border-radius: var(--radius); overflow: hidden; height: 200px; cursor: pointer; }
.village-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.village-card:hover img { transform: scale(1.06); }
.village-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,32,68,.85) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem; color: var(--white); }
.village-card-name { font-weight: 700; font-size: 1rem; }
.village-card-count { font-size: .8rem; color: rgba(255,255,255,.75); }

/* ─── Testimonials ──────────────────────────────────────────────────── */
.testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 1.75rem;
  box-shadow: var(--shadow); border: 1px solid var(--gray-light);
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: .75rem; }
.testimonial-text  { color: var(--gray); font-size: .92rem; line-height: 1.8; margin-bottom: 1rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.testimonial-name   { font-weight: 700; font-size: .9rem; }
.testimonial-location { font-size: .78rem; color: var(--gray); }

/* ─── FAQ Accordion ─────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-question {
  width: 100%; text-align: right; background: none; border: none;
  padding: 1.1rem 0; font-size: .95rem; font-weight: 600; color: var(--text);
  cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: inherit;
}
.faq-question:hover { color: var(--navy); }
.faq-icon { font-size: 1.2rem; color: var(--gold); transition: transform var(--transition); flex-shrink: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-answer-inner { padding-bottom: 1rem; color: var(--gray); font-size: .9rem; line-height: 1.8; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-item.open .faq-answer { max-height: 500px; }

/* ─── Forms ─────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.1rem; }
.form-label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; }
.form-control {
  width: 100%; padding: .7rem 1rem; border: 1.5px solid var(--gray-light);
  border-radius: var(--radius); font-size: .9rem; color: var(--text);
  background: var(--white); font-family: inherit; outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(15,32,68,.08); }
.form-control::placeholder { color: #aaa; }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { cursor: pointer; }
.form-error { color: #dc2626; font-size: .8rem; margin-top: .3rem; }
.form-success { background: #dcfce7; color: #166534; padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1rem; font-size: .9rem; }

/* ─── Page Hero (inner pages) ───────────────────────────────────────── */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 7rem 0 3rem; color: var(--white); text-align: center; }
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,.75); }
.breadcrumb   { display: flex; align-items: center; justify-content: center; gap: .5rem; font-size: .83rem; color: rgba(255,255,255,.6); margin-bottom: .75rem; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,.4); }

/* ─── Filter Sidebar ────────────────────────────────────────────────── */
.filter-sidebar { background: var(--white); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); border: 1px solid var(--gray-light); }
.filter-title  { font-size: 1rem; font-weight: 700; padding-bottom: .75rem; border-bottom: 2px solid var(--navy); margin-bottom: 1.25rem; display: flex; align-items: center; justify-content: space-between; }
.filter-reset  { font-size: .8rem; color: var(--gold); cursor: pointer; font-weight: 600; }
.filter-section { margin-bottom: 1.4rem; }
.filter-label  { font-size: .8rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: .6rem; display: block; }

/* Range Slider */
.range-slider { position: relative; padding: .5rem 0; }
.range-slider input[type=range] { width: 100%; accent-color: var(--navy); }
.range-values { display: flex; justify-content: space-between; font-size: .8rem; color: var(--gray); margin-top: .3rem; }

/* Checkbox filters */
.filter-checkbox { display: flex; align-items: center; gap: .6rem; padding: .3rem 0; cursor: pointer; font-size: .88rem; }
.filter-checkbox input { accent-color: var(--navy); width: 16px; height: 16px; cursor: pointer; }

/* Type pills */
.type-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.type-pill { padding: .35rem .9rem; border: 1.5px solid var(--gray-light); border-radius: 50px; font-size: .82rem; cursor: pointer; transition: var(--transition); }
.type-pill.active, .type-pill:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }

/* ─── Property Detail ───────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: 1.8fr 1fr; grid-template-rows: 1fr 1fr; gap: .5rem; height: 480px; border-radius: var(--radius); overflow: hidden; }
.gallery-main { grid-row: span 2; }
.gallery-main img, .gallery-thumb img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: filter .2s; }
.gallery-thumb img:hover, .gallery-main img:hover { filter: brightness(.85); }
.gallery-more { position: relative; }
.gallery-more-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1rem; font-weight: 700; cursor: pointer; }

.detail-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1rem 0; }
.detail-meta-item { display: flex; align-items: center; gap: .5rem; background: var(--off-white); padding: .5rem 1rem; border-radius: 8px; font-size: .88rem; font-weight: 600; }
.detail-meta-item span:first-child { color: var(--gold); font-size: 1.1rem; }

.amenity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .75rem; }
.amenity-item { display: flex; align-items: center; gap: .6rem; padding: .65rem 1rem; background: var(--off-white); border-radius: 8px; font-size: .85rem; }
.amenity-item span:first-child { color: var(--gold); }

/* Booking Card */
.booking-card { background: var(--white); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); border: 1px solid var(--gray-light); position: sticky; top: 90px; }
.booking-price { font-size: 2rem; font-weight: 800; color: var(--navy); }
.booking-price small { font-size: .85rem; font-weight: 400; color: var(--gray); }
.booking-summary { background: var(--off-white); border-radius: 8px; padding: 1rem; margin: 1rem 0; }
.booking-summary-row { display: flex; justify-content: space-between; font-size: .88rem; padding: .3rem 0; }
.booking-summary-row.total { font-weight: 700; border-top: 1px solid var(--gray-light); padding-top: .6rem; margin-top: .3rem; font-size: .95rem; }

/* Calendar */
.calendar-wrap { border: 1px solid var(--gray-light); border-radius: var(--radius); overflow: hidden; }
.calendar-header { background: var(--navy); color: var(--white); padding: .75rem 1rem; display: flex; align-items: center; justify-content: space-between; font-weight: 600; font-size: .9rem; }
.calendar-header button { background: none; border: none; color: var(--white); cursor: pointer; font-size: 1rem; padding: .25rem .5rem; border-radius: 4px; transition: background .2s; }
.calendar-header button:hover { background: rgba(255,255,255,.2); }
.calendar-days-header { display: grid; grid-template-columns: repeat(7,1fr); text-align: center; background: var(--off-white); }
.calendar-days-header span { padding: .4rem; font-size: .75rem; font-weight: 700; color: var(--gray); }
.calendar-days { display: grid; grid-template-columns: repeat(7,1fr); }
.calendar-day { padding: .5rem; text-align: center; font-size: .82rem; cursor: pointer; border-radius: 4px; margin: 2px; transition: var(--transition); }
.calendar-day:hover:not(.blocked):not(.past) { background: var(--navy); color: var(--white); }
.calendar-day.blocked { background: #fee2e2; color: #991b1b; cursor: not-allowed; text-decoration: line-through; }
.calendar-day.past { color: #d1d5db; cursor: default; }
.calendar-day.today { font-weight: 700; color: var(--gold); }
.calendar-day.selected { background: var(--navy); color: var(--white); }
.calendar-day.in-range { background: #dbeafe; }
.calendar-legend { display: flex; gap: 1rem; font-size: .78rem; padding: .75rem 1rem; border-top: 1px solid var(--gray-light); flex-wrap: wrap; }
.calendar-legend span { display: flex; align-items: center; gap: .4rem; }
.legend-dot { width: 12px; height: 12px; border-radius: 3px; }

/* ─── Contact Page ──────────────────────────────────────────────────── */
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-icon { width: 44px; height: 44px; background: var(--navy); color: var(--white); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-info-label { font-size: .8rem; color: var(--gray); margin-bottom: .2rem; }
.contact-info-value { font-weight: 600; font-size: .95rem; }

/* ─── Footer ────────────────────────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 3rem; }
.footer-col { display: flex; flex-direction: column; }
.footer-logo { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: .75rem; }
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: .88rem; line-height: 1.8; color: rgba(255,255,255,.65); margin-bottom: 1.25rem; }
.footer-col-title { color: var(--gold); font-size: .78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1.1rem; padding-bottom: .6rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.footer-links li a { font-size: .88rem; color: rgba(255,255,255,.7); transition: color var(--transition); display: flex; align-items: center; gap: .4rem; }
.footer-links li a::before { content: '›'; color: var(--gold); font-size: 1rem; }
.footer-links li a:hover { color: var(--white); }
.footer-social { display: flex; gap: .6rem; }
.footer-social-icon { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .2s, opacity .2s; opacity: .9; flex-shrink: 0; }
.footer-social-icon:hover { opacity: 1; transform: translateY(-2px); }
.footer-contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .85rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: .65rem; font-size: .88rem; color: rgba(255,255,255,.7); }
.footer-contact-icon { font-size: 1.05rem; line-height: 1; flex-shrink: 0; margin-top: .05rem; }
.footer-contact-list a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.25rem 0; display: flex; align-items: center; justify-content: space-between; font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-bottom-links { display: flex; gap: .75rem; align-items: center; }
.footer-bottom-links a { color: rgba(255,255,255,.45); transition: color var(--transition); font-size: .82rem; }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-bottom-links span { color: rgba(255,255,255,.25); }
/* ─── Navbar social icons ──────────────────────────────────────────── */
.navbar-social-icons { display: flex; gap: .35rem; align-items: center; margin-left: .75rem; }
.nav-social-link { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; transition: background var(--transition), transform .15s; color: rgba(255,255,255,.85); }
.nav-social-link:hover { background: var(--gold); color: var(--white); transform: translateY(-1px); }
.navbar.scrolled .nav-social-link { background: rgba(15,32,68,.1); color: var(--navy); }
.navbar.scrolled .nav-social-link:hover { background: var(--gold); color: var(--white); }

/* ─── Alerts ────────────────────────────────────────────────────────── */
.alert { padding: .9rem 1.25rem; border-radius: var(--radius); font-size: .88rem; margin-bottom: 1rem; }
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* ─── No Image Placeholder ──────────────────────────────────────────── */
.no-img { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); font-size: 2rem; }

/* ─── Property Detail Grid ──────────────────────────────────────────── */
.property-detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: start; }

/* ─── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .navbar-social-icons { display: none; }
  .property-detail-grid { grid-template-columns: 1fr 300px; gap: 1.5rem; }
}

@media (max-width: 768px) {
  .navbar-nav, .navbar-cta { display: none; }
  .navbar-toggle { display: block; }
  .navbar-nav.open { display: flex; flex-direction: column; align-items: stretch; position: fixed; top: 70px; right: 0; left: 0; background: var(--navy); padding: 1rem; border-top: 1px solid rgba(255,255,255,.1); z-index: 999; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; height: auto; grid-template-rows: 260px; }
  .gallery-grid > *:not(:first-child) { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .search-bar { flex-direction: column; }
  .search-divider { display: none; }
  /* Property detail: booking card comes first on mobile */
  .property-detail-grid { grid-template-columns: 1fr; }
  .property-detail-grid > div:last-child { order: -1; }
}

@media (max-width: 640px) {
  .search-bar { padding: 0; gap: 0; border-radius: 14px; }
  .search-field { flex: none; width: 100%; padding: .85rem 1.1rem; border-bottom: 1px solid var(--gray-light); }
  .search-field:last-of-type { border-bottom: none; }
  .search-field label { font-size: .7rem; color: var(--navy); font-weight: 700; margin-bottom: .3rem; }
  .search-field select, .search-field input { font-size: .95rem; }
  .search-bar .btn-gold { margin: .85rem 1.1rem; width: calc(100% - 2.2rem); padding: .75rem; border-radius: 10px; font-size: 1rem; }
  .search-divider { display: none; }
}

@media (max-width: 768px) {
  .booking-card { position: static; margin-bottom: 1.5rem; }
  .amenity-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}

@media (max-width: 480px) {
  .section { padding: 3rem 0; }
  h1 { font-size: 1.6rem; }
  .detail-meta { flex-wrap: wrap; gap: .5rem; }
  .booking-card { border-radius: 12px; padding: 1.25rem; }
  .amenity-grid { grid-template-columns: 1fr 1fr; }
}
