:root{
  --ao-ink:#14151A;
  --ao-ink-2:#1E2027;
  --ao-gold:#C9A23B;
  --ao-gold-light:#E4C878;
  --ao-bg:#F7F6F3;
  --ao-white:#FFFFFF;
  --ao-text-muted:#6B6D76;
  --ao-radius:14px;
}

body{
  background:var(--ao-bg);
  font-family:'Tajawal','Segoe UI',sans-serif;
  color:var(--ao-ink);
}

a{ text-decoration:none; }

/* ---------- Navbar ---------- */
.ao-navbar{
  background:var(--ao-ink);
  padding:14px 0;
}
.ao-navbar .navbar-brand img{ height:84px; }
.ao-navbar .nav-link{
  color:#EDEDED !important;
  font-weight:500;
}
.ao-navbar .nav-link:hover{ color:var(--ao-gold) !important; }
.ao-btn-gold{
  background:var(--ao-gold);
  color:var(--ao-ink) !important;
  border-radius:30px;
  padding:8px 22px;
  font-weight:700;
  border:none;
}
.ao-btn-gold:hover{ background:var(--ao-gold-light); color:var(--ao-ink) !important; }

.ao-btn-outline-gold{
  border:1.5px solid var(--ao-gold);
  color:var(--ao-gold);
  border-radius:30px;
  padding:8px 22px;
  font-weight:700;
  background:transparent;
}
.ao-btn-outline-gold:hover{ background:var(--ao-gold); color:var(--ao-ink); }

/* ---------- Hero ---------- */
.ao-hero{
  background:linear-gradient(180deg, var(--ao-ink) 0%, var(--ao-ink-2) 100%);
  padding:30px 0 110px;
  color:#fff;
}
.ao-hero-text{
  text-align:center;
  padding:0 0 24px;
}
.ao-hero-text h1{
  font-weight:800;
  font-size:2.4rem;
  margin-bottom:10px;
}
.ao-hero-text p{ color:#C9CAD1; margin-bottom:0; }

/* ---------- Hero Slider ---------- */
.ao-hero-slider{
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,.35);
}
.ao-hero-slider .carousel-item{
  height:420px;
  position:relative;
}
.ao-hero-slider .carousel-item img{
  width:100%; height:100%; object-fit:cover;
}
.ao-hero-slider .ao-slide-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(20,21,26,0) 30%, rgba(20,21,26,.85) 100%);
  display:flex; align-items:flex-end;
  padding:30px;
}
.ao-hero-slider .ao-slide-caption h3{
  color:#fff; font-weight:800; font-size:1.6rem; margin-bottom:4px;
}
.ao-hero-slider .ao-slide-caption .ao-slide-price{
  color:var(--ao-gold-light); font-weight:700; font-size:1.1rem;
}
.ao-hero-slider .carousel-indicators [data-bs-target]{
  width:9px; height:9px; border-radius:50%; background:var(--ao-gold);
  opacity:.5; margin:0 4px;
}
.ao-hero-slider .carousel-indicators .active{ opacity:1; }
.ao-hero-slider .carousel-control-prev, .ao-hero-slider .carousel-control-next{ width:6%; }
@media (max-width: 767px){
  .ao-hero-slider .carousel-item{ height:260px; }
}

.ao-search-card{
  background:#fff;
  border-radius:20px;
  box-shadow:0 20px 40px rgba(0,0,0,.25);
  padding:22px;
  margin-top:-70px;
}
.ao-search-card .form-label{ font-weight:600; font-size:.85rem; color:var(--ao-text-muted); }
.ao-search-card .form-control, .ao-search-card .form-select{
  border-radius:12px;
  padding:10px 14px;
  border:1px solid #E5E4E0;
}

/* ---------- Category Pills ---------- */
.ao-category-pill{
  display:flex; flex-direction:column; align-items:center; gap:8px;
  color:var(--ao-ink);
}
.ao-category-icon{
  width:64px; height:64px; border-radius:18px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.7rem;
  transition:.2s;
}
.ao-category-pill:hover .ao-category-icon{ transform:translateY(-3px); }
.ao-category-label{
  font-weight:600; font-size:.85rem; text-align:center;
}

/* ---------- Popular Destinations ---------- */
.ao-city-card{
  display:block;
  position:relative;
  border-radius:14px;
  overflow:hidden;
  height:130px;
  box-shadow:0 6px 18px rgba(20,21,26,.08);
  transition:.25s;
}
.ao-city-card:hover{ transform:translateY(-3px); box-shadow:0 12px 26px rgba(20,21,26,.15); }
.ao-city-card img{
  width:100%; height:100%; object-fit:cover;
}
.ao-city-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(20,21,26,0) 40%, rgba(20,21,26,.75) 100%);
  display:flex; align-items:flex-end; justify-content:center;
  padding-bottom:10px;
}
.ao-city-overlay span{
  color:#fff; font-weight:700; font-size:.95rem;
}
@media (max-width: 575px){
  .ao-city-card{ height:100px; }
  .ao-city-overlay span{ font-size:.82rem; }
}

/* ---------- Section titles ---------- */
.ao-section-title{
  font-weight:800;
  font-size:1.5rem;
  margin-bottom:22px;
  position:relative;
  display:inline-block;
}
.ao-section-title::after{
  content:'';
  display:block;
  width:50px;
  height:3px;
  background:var(--ao-gold);
  margin-top:8px;
  border-radius:3px;
}

/* ---------- Hotel Card ---------- */
.ao-hotel-card{
  background:#fff;
  border-radius:var(--ao-radius);
  overflow:hidden;
  box-shadow:0 6px 20px rgba(20,21,26,.06);
  transition:.25s;
  height:100%;
}
.ao-hotel-card:hover{ transform:translateY(-4px); box-shadow:0 14px 30px rgba(20,21,26,.12); }
.ao-hotel-card .ao-img-wrap{ position:relative; height:190px; overflow:hidden; }
.ao-hotel-card .ao-img-wrap img{ width:100%; height:100%; object-fit:cover; }
.ao-hotel-card .ao-fav-btn{
  position:absolute; top:10px; inset-inline-end:10px;
  background:rgba(20,21,26,.55); border:none; color:#fff;
  width:34px; height:34px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.ao-hotel-card .ao-fav-btn.active{ color:#E14B4B; }
.ao-hotel-card .ao-body{ padding:16px; }
.ao-hotel-card .ao-city{ color:var(--ao-text-muted); font-size:.85rem; }
.ao-hotel-card .ao-name{ font-weight:700; font-size:1.05rem; margin:4px 0; }
.ao-badge-gold{
  background:rgba(201,162,59,.12);
  color:#9c7d24;
  border-radius:8px;
  font-size:.75rem;
  padding:3px 8px;
  font-weight:700;
}
.ao-rating{
  background:var(--ao-ink);
  color:var(--ao-gold);
  border-radius:8px;
  padding:2px 8px;
  font-weight:700;
  font-size:.85rem;
}
.ao-price{ font-weight:800; font-size:1.15rem; color:var(--ao-ink); }
.ao-price small{ font-weight:500; font-size:.75rem; color:var(--ao-text-muted); }

/* ---------- Buttons general ---------- */
.btn-ao-primary{
  background:var(--ao-ink);
  color:#fff;
  border-radius:12px;
  padding:11px 20px;
  font-weight:700;
  border:none;
}
.btn-ao-primary:hover{ background:#000; color:var(--ao-gold); }

/* ---------- Footer ---------- */
.ao-footer{
  background:var(--ao-ink);
  color:#B9BAC2;
  padding:50px 0 20px;
  margin-top:60px;
}
.ao-footer h6{ color:#fff; font-weight:700; margin-bottom:16px; }
.ao-footer a{ color:#B9BAC2; display:block; margin-bottom:8px; }
.ao-footer a:hover{ color:var(--ao-gold); }
.ao-footer .ao-bottom{
  border-top:1px solid #2B2D36;
  margin-top:30px;
  padding-top:18px;
  font-size:.85rem;
  color:#8B8C96;
}

/* ---------- Auth pages ---------- */
.ao-auth-wrap{
  min-height:80vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 15px;
}
.ao-auth-card{
  background:#fff;
  border-radius:20px;
  box-shadow:0 20px 50px rgba(20,21,26,.1);
  padding:36px;
  max-width:440px;
  width:100%;
}

/* ---------- Hotel details ---------- */
.ao-gallery-main{ border-radius:16px; overflow:hidden; height:420px; }
.ao-gallery-main img{ width:100%; height:100%; object-fit:cover; }
.ao-gallery-thumbs img{
  height:90px; width:100%; object-fit:cover; border-radius:10px; cursor:pointer;
}
.ao-amenity-chip{
  background:#fff; border:1px solid #EDEBE5; border-radius:10px;
  padding:10px 12px; font-size:.9rem; display:flex; align-items:center; gap:8px;
}
.ao-sticky-book{
  background:#fff; border-radius:16px; box-shadow:0 10px 30px rgba(20,21,26,.08);
  padding:22px; position:sticky; top:20px;
}

/* ---------- Booking / status badges ---------- */
.badge-status{ border-radius:8px; padding:5px 10px; font-weight:700; font-size:.78rem; }
.badge-pending{ background:#FFF3CD; color:#8A6D00; }
.badge-confirmed{ background:#D9F2E3; color:#0F7A42; }
.badge-cancelled{ background:#FBD9D9; color:#B42318; }
.badge-completed{ background:#E7E6FB; color:#4A3AA8; }

/* ---------- Simple content page ---------- */
.ao-content-page{
  background:#fff; border-radius:16px; padding:36px;
  box-shadow:0 6px 20px rgba(20,21,26,.06);
  line-height:2.1;
}

@media (max-width: 767px){
  .ao-hero h1{ font-size:1.6rem; }
  .ao-search-card{ margin-top:-40px; }
  .ao-gallery-main{ height:260px; }
}

/* ---------- تحسينات احترافية إضافية: هيرو + شريط ثقة + كرت الجناح ---------- */
.ao-hero-eyebrow{
  display:inline-block;
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.03em;
  color:var(--ao-gold-light);
  background:rgba(201,162,59,.12);
  border:1px solid rgba(201,162,59,.3);
  padding:6px 14px;
  border-radius:999px;
  margin-bottom:14px;
}

.ao-trust-bar{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  justify-content:center;
  background:var(--ao-white);
  border:1px solid rgba(20,21,26,.06);
  border-radius:var(--ao-radius);
  padding:16px 20px;
  margin-top:-28px;
  position:relative;
  z-index:2;
  box-shadow:0 10px 24px rgba(20,21,26,.06);
}
.ao-trust-item{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:600;
  font-size:.92rem;
  color:var(--ao-ink-2);
}
.ao-trust-ic{ font-size:1.1rem; }
@media (max-width:768px){
  .ao-trust-bar{ margin-top:14px; }
}

.ao-suite-badge{
  position:absolute;
  bottom:10px;
  inset-inline-start:10px;
  background:rgba(20,21,26,.72);
  color:#fff;
  font-size:.75rem;
  font-weight:600;
  padding:5px 12px;
  border-radius:999px;
  backdrop-filter:blur(2px);
}

.ao-mini-cta{
  font-size:.78rem;
  font-weight:700;
  padding:6px 14px;
  border-radius:999px;
}

/* ---------- صفحة البحث/الأجنحة: هيرو بحث + كرت فلاتر + حالة فارغة ---------- */
.ao-search-hero{
  background:linear-gradient(135deg, var(--ao-ink) 0%, var(--ao-ink-2) 100%);
  padding:40px 0 56px;
  color:#fff;
}
.ao-search-hero h1{
  font-size:1.6rem;
  font-weight:800;
  margin-bottom:20px;
  text-align:center;
}
.ao-search-bar{
  display:flex;
  gap:10px;
  background:#fff;
  border-radius:16px;
  padding:8px;
  box-shadow:0 16px 34px rgba(0,0,0,.25);
  flex-wrap:wrap;
}
.ao-search-field{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:12px;
  background:var(--ao-bg);
}
.ao-search-field input,
.ao-search-field select{
  border:none;
  background:transparent;
  outline:none;
  font-family:inherit;
  font-size:.95rem;
  width:100%;
  color:var(--ao-ink);
}
.ao-search-ic{ font-size:1rem; opacity:.7; }
.ao-search-btn{
  border:none;
  background:var(--ao-gold);
  color:var(--ao-ink);
  font-weight:800;
  padding:10px 28px;
  border-radius:12px;
  transition:background .15s;
}
.ao-search-btn:hover{ background:var(--ao-gold-light); }
@media (max-width:768px){
  .ao-search-bar{ flex-direction:column; }
  .ao-search-btn{ width:100%; }
}

.ao-filter-card{
  background:#fff;
  border-radius:var(--ao-radius);
  padding:20px;
  box-shadow:0 4px 14px rgba(20,21,26,.05);
  position:sticky;
  top:16px;
}

.ao-empty{
  background:#fff;
  border-radius:var(--ao-radius);
  padding:56px 20px;
  text-align:center;
  color:var(--ao-text-muted);
}
.ao-empty .ic{ font-size:2.4rem; margin-bottom:12px; opacity:.6; }

/* ---------- الصفحة الرئيسية: إحصائيات + خطوات الحجز + آراء الزبائن + دعوة المُلّاك ---------- */
.ao-search-card-lift{ margin-top:-40px; position:relative; z-index:3; }

.ao-stats-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:#fff;
  border-radius:var(--ao-radius);
  padding:22px 28px;
  margin-top:24px;
  box-shadow:0 4px 14px rgba(20,21,26,.05);
  flex-wrap:wrap;
  gap:16px;
}
.ao-stat{ text-align:center; flex:1; min-width:120px; }
.ao-stat-num{ font-size:1.6rem; font-weight:800; color:var(--ao-ink); }
.ao-stat-label{ font-size:.82rem; color:var(--ao-text-muted); margin-top:2px; }
.ao-stat-divider{ width:1px; height:40px; background:#eee; }
@media (max-width:768px){ .ao-stat-divider{ display:none; } }

.ao-step-card{
  background:#fff;
  border-radius:var(--ao-radius);
  padding:28px 22px;
  text-align:center;
  height:100%;
  position:relative;
  box-shadow:0 4px 14px rgba(20,21,26,.05);
  transition:transform .15s, box-shadow .15s;
}
.ao-step-card:hover{ transform:translateY(-4px); box-shadow:0 14px 30px rgba(20,21,26,.1); }
.ao-step-num{
  position:absolute;
  top:14px;
  inset-inline-end:14px;
  width:26px;
  height:26px;
  border-radius:50%;
  background:var(--ao-ink);
  color:var(--ao-gold-light);
  font-size:.78rem;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
}
.ao-step-ic{ font-size:2.2rem; margin-bottom:12px; }
.ao-step-card h5{ font-weight:800; margin-bottom:8px; }
.ao-step-card p{ color:var(--ao-text-muted); font-size:.9rem; margin:0; }

.ao-testimonial-card{
  background:#fff;
  border-radius:var(--ao-radius);
  padding:24px;
  height:100%;
  box-shadow:0 4px 14px rgba(20,21,26,.05);
}
.ao-testimonial-stars{ font-size:.85rem; margin-bottom:10px; }
.ao-testimonial-text{ color:var(--ao-ink-2); font-style:italic; min-height:64px; }
.ao-testimonial-author{ display:flex; align-items:center; gap:10px; margin-top:14px; }
.ao-testimonial-avatar{
  width:38px; height:38px; border-radius:50%;
  background:var(--ao-gold); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-weight:700;
}

.ao-owner-cta{
  background:linear-gradient(135deg, var(--ao-ink) 0%, var(--ao-ink-2) 100%);
  border-radius:20px;
  padding:40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
  color:#fff;
}
.ao-owner-cta-text h3{ font-weight:800; margin-bottom:8px; }
.ao-owner-cta-text p{ color:rgba(255,255,255,.75); margin:0; max-width:480px; }
.ao-owner-cta-btn{
  background:var(--ao-gold);
  color:var(--ao-ink) !important;
  font-weight:800;
  border:none;
  white-space:nowrap;
}
.ao-owner-cta-btn:hover{ background:var(--ao-gold-light); }

/* ============================================================
   الصفحة الرئيسية — تصميم جديد كلياً (هيرو كامل الشاشة + سبوتلايت + قسم داكن)
   ============================================================ */

.ao-fh-hero{
  position:relative;
  min-height:640px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  overflow:hidden;
  color:#fff;
}
.ao-fh-hero-bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.05);
}
.ao-fh-hero-scrim{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(10,11,15,.55) 0%, rgba(10,11,15,.75) 55%, rgba(10,11,15,.95) 100%);
}
.ao-fh-hero-content{ position:relative; z-index:2; padding:80px 0 30px; }
.ao-fh-eyebrow{
  display:inline-block;
  letter-spacing:.15em;
  font-size:.75rem;
  font-weight:800;
  color:var(--ao-gold-light);
  border:1px solid rgba(228,200,120,.4);
  padding:6px 16px;
  border-radius:999px;
  margin-bottom:18px;
}
.ao-fh-hero-content h1{
  font-size:2.6rem;
  font-weight:800;
  line-height:1.25;
  margin-bottom:32px;
  max-width:640px;
}
@media (max-width:768px){ .ao-fh-hero-content h1{ font-size:1.8rem; } }

.ao-fh-search{
  background:#fff;
  border-radius:18px;
  display:flex;
  align-items:stretch;
  padding:6px;
  box-shadow:0 20px 40px rgba(0,0,0,.35);
  max-width:780px;
  flex-wrap:wrap;
}
.ao-fh-search-field{
  flex:1;
  min-width:140px;
  padding:10px 16px;
  display:flex;
  flex-direction:column;
  gap:2px;
}
.ao-fh-search-field label{ font-size:.72rem; font-weight:700; color:var(--ao-text-muted); }
.ao-fh-search-field select,
.ao-fh-search-field input{
  border:none; outline:none; background:transparent;
  font-family:inherit; font-size:.92rem; color:var(--ao-ink); padding:0;
}
.ao-fh-search-sep{ width:1px; background:#eee; margin:8px 0; }
.ao-fh-search-btn{
  border:none;
  background:var(--ao-gold);
  color:var(--ao-ink);
  font-size:1.1rem;
  width:52px;
  border-radius:14px;
  margin:2px;
  flex-shrink:0;
  transition:background .15s;
}
.ao-fh-search-btn:hover{ background:var(--ao-gold-light); }
@media (max-width:768px){
  .ao-fh-search{ flex-direction:column; }
  .ao-fh-search-sep{ display:none; }
  .ao-fh-search-btn{ width:100%; height:44px; }
}

.ao-fh-stats{
  display:flex;
  gap:28px;
  margin-top:28px;
  font-size:.9rem;
  color:rgba(255,255,255,.85);
  flex-wrap:wrap;
}
.ao-fh-stats strong{ color:#fff; font-weight:800; }

.ao-fh-cats{
  position:relative;
  z-index:2;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  padding-bottom:36px;
  margin-top:20px;
}
.ao-fh-cat-pill{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.25);
  color:#fff;
  padding:8px 18px;
  border-radius:999px;
  font-size:.85rem;
  font-weight:600;
  text-decoration:none;
  backdrop-filter:blur(4px);
  transition:background .15s;
}
.ao-fh-cat-pill:hover{ background:rgba(255,255,255,.25); color:#fff; }

.ao-fh-section{ padding:56px 0; }
.ao-fh-section-head{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  margin-bottom:24px;
}
.ao-fh-section-head h2{ font-size:1.5rem; font-weight:800; margin:0; }
.ao-fh-section-head a{ color:var(--ao-gold); font-weight:700; font-size:.9rem; text-decoration:none; }
.ao-fh-section-head-light h2{ color:#fff; }

.ao-fh-spotlight{
  position:relative;
  display:block;
  border-radius:20px;
  overflow:hidden;
  height:420px;
  text-decoration:none;
  color:#fff;
}
.ao-fh-spotlight img{ width:100%; height:100%; object-fit:cover; transition:transform .3s; }
.ao-fh-spotlight:hover img{ transform:scale(1.04); }
.ao-fh-spotlight-info{
  position:absolute; left:0; right:0; bottom:0;
  padding:28px;
  background:linear-gradient(180deg, transparent 0%, rgba(10,11,15,.85) 100%);
}
.ao-fh-spotlight-tag{ font-size:.78rem; opacity:.85; margin-bottom:4px; }
.ao-fh-spotlight-info h3{ font-size:1.5rem; font-weight:800; margin-bottom:8px; }
.ao-fh-spotlight-price{ font-weight:800; font-size:1.1rem; color:var(--ao-gold-light); }
.ao-fh-spotlight-price small{ font-weight:500; opacity:.85; color:#fff; }

.ao-fh-side-list{ display:flex; flex-direction:column; gap:12px; height:420px; }
.ao-fh-side-item{
  display:flex;
  align-items:center;
  gap:12px;
  background:#fff;
  border-radius:14px;
  padding:10px;
  box-shadow:0 4px 14px rgba(20,21,26,.06);
  text-decoration:none;
  color:var(--ao-ink);
  flex:1;
  transition:transform .15s;
}
.ao-fh-side-item:hover{ transform:translateX(-2px); }
.ao-fh-side-item img{ width:64px; height:64px; object-fit:cover; border-radius:10px; flex-shrink:0; }
.ao-fh-side-info{ flex:1; min-width:0; }
.ao-fh-side-price{ font-weight:800; color:var(--ao-gold); white-space:nowrap; }

.ao-fh-dark-section{ background:var(--ao-ink); }

.ao-fh-why-title{ font-size:1.7rem; font-weight:800; margin-bottom:28px; }
.ao-fh-why-item{ display:flex; gap:16px; margin-bottom:22px; }
.ao-fh-why-item span{ font-size:1.6rem; }
.ao-fh-why-item strong{ display:block; margin-bottom:4px; }
.ao-fh-why-item p{ color:var(--ao-text-muted); margin:0; font-size:.9rem; }

.ao-fh-quote{
  background:#fff;
  border-radius:16px;
  padding:26px;
  box-shadow:0 4px 14px rgba(20,21,26,.06);
  margin-bottom:18px;
}
.ao-fh-quote-stars{ margin-bottom:10px; font-size:.85rem; }
.ao-fh-quote p{ font-style:italic; color:var(--ao-ink-2); }
.ao-fh-quote-author{ font-weight:700; margin-top:10px; font-size:.9rem; }

.ao-fh-owner-band{
  background:linear-gradient(120deg, #1b1d24 0%, var(--ao-ink) 100%);
  border-radius:22px;
  padding:44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
  color:#fff;
}
.ao-fh-owner-band h3{ font-weight:800; margin-bottom:8px; }
.ao-fh-owner-band p{ color:rgba(255,255,255,.7); margin:0; max-width:460px; }
.ao-fh-owner-btn{
  background:var(--ao-gold);
  color:var(--ao-ink);
  font-weight:800;
  padding:14px 30px;
  border-radius:12px;
  text-decoration:none;
  white-space:nowrap;
  transition:background .15s;
}
.ao-fh-owner-btn:hover{ background:var(--ao-gold-light); color:var(--ao-ink); }
