:root{
  --cm-gold:#c4b37c;
  --cm-slate:#363f4d;

  --cm-bg:#ffffff;
  --cm-muted:#6b7280;
  --cm-border:#e5e7eb;
  --cm-soft:#f7f8fb;
}

.cm-body{
  font-family:"Inter",sans-serif;
  color: var(--cm-slate);
}

/* Scrollbar */
::-webkit-scrollbar{ width:8px; }
::-webkit-scrollbar-track{ background:transparent; }
::-webkit-scrollbar-thumb{
  background-color:#cbd5e1;
  border-radius:20px;
}

/* Iconify strokes */
.iconify path,.iconify circle,.iconify line,.iconify polyline,.iconify rect{
  stroke-width:1.5 !important;
}

/* Text helpers */
.cm-text{ color: var(--cm-slate); }
.cm-muted{ color: var(--cm-muted); }
.cm-accent{ color: var(--cm-gold); }

/* Logo */
.logo-svg{
  height:auto; width:auto;
  max-height:50px; max-width:150px;
}

/* Nav */
.cm-nav{
  background: #363f4d;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229,231,235,.85);
}
.cm-nav-links .cm-link{
  color: rgba(255, 255, 255, 0.78);
  transition: color .2s ease;
}
.cm-link:hover{ color: var(--cm-gold); }
.cm-icon-btn{ color: var(--cm-slate); }

.cm-mobile-menu{
  display:none;
  border-top: 1px solid rgba(229,231,235,.85);
  background: #363f4d;
}
.cm-mobile-menu.open{ display:block; }
.cm-mobile-link{ padding:10px 0; }

/* Buttons */
.cm-btn{ transition: all .25s ease; }
.cm-btn-primary{
  background: var(--cm-slate);
  color: var(--cm-gold);
}
.cm-btn-primary:hover{
  filter: brightness(1.08);
  box-shadow: 0 16px 36px rgba(54,63,77,.18);
  transform: translateY(-1px);
}
.cm-btn-outline{
  border-color: rgba(54,63,77,.18);
  color: rgba(54,63,77,.9);
}
.cm-btn-outline:hover{
  border-color: rgba(196,179,124,.55);
  background: var(--cm-soft);
}

.cm-btn-appoi { transition: all .25s ease; }

.cm-btn-primary-appoi {
  background: var(--cm-gold);
  color: var(--cm-slate);
}

.cm-btn-primary-appoi:hover{
  filter: brightness(1.08);
  box-shadow: 0 16px 36px rgba(54,63,77,.18);
  transform: translateY(-1px);
}


/* Badge */
.cm-badge{
  background: var(--cm-slate);
  color: var(--cm-gold);
  border: 1px solid rgba(196,179,124,.35);
}

/* Hero */
.cm-hero{ position: relative; }
.cm-hero-bg{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 380px at 20% 15%, rgba(196,179,124,.22), transparent 60%),
    radial-gradient(900px 380px at 85% 25%, rgba(54,63,77,.16), transparent 55%),
    linear-gradient(180deg, rgba(247,248,251,1), rgba(255,255,255,1));
  z-index:0;
}
.cm-hero-title{ color: var(--cm-gold); }
.cm-hero-subtitle{ color: rgba(54,63,77,.92); }

.cm-inline-check{ display:flex; align-items:center; gap:10px; }

/* Hero media */
.cm-hero-media{
  position:relative;
  border-radius: 24px;
  overflow:hidden;
  border:1px solid rgba(229,231,235,.9);
  background:#f1f5f9;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}
.cm-hero-img{
  width:100%; height: 520px;
  object-fit: cover;
  transition: transform .7s ease;
  opacity:.97;
}
.cm-hero-media:hover .cm-hero-img{ transform: scale(1.04); }

.cm-card-glass{
  position:absolute;
  left:18px; right:18px; bottom:18px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border:1px solid rgba(229,231,235,.85);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.cm-float-badges{
  position:absolute;
  left:-10px;
  top: 18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.cm-mini-badge{
  display:flex;
  align-items:center;
  gap:10px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(229,231,235,.85);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 13px;
  color: rgba(54,63,77,.9);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
}

/* Sections */
.cm-section-soft{ background: var(--cm-soft); }

/* Cards */
.cm-card{
  background:#fff;
  border:1px solid rgba(229,231,235,.9);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cm-card:hover{
  transform: translateY(-2px);
  border-color: rgba(196,179,124,.55);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}
.cm-card-icon{
  width: 44px; height: 44px;
  border-radius: 14px;
  background: rgba(196,179,124,.18);
  color: var(--cm-slate);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 14px;
}

.cm-hover-card{
  transition: all .25s ease;
}
.cm-hover-card:hover{
  border-color: rgba(196,179,124,.55);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

/* About split card */
.cm-split-card{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(229,231,235,.9);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.10);
}
.cm-split-card-top{
  background: linear-gradient(180deg, #2f3744, #242b35);
  padding: 26px;
}
.cm-split-card-bottom{
  background:#fff;
  padding: 22px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}
.cm-pill{
  border: 1px solid rgba(54,63,77,.14);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 700;
  font-size: 13px;
  color: rgba(54,63,77,.85);
  background: rgba(247,248,251,.9);
}

/* Icon box */
.cm-icon-box{
  background: rgba(196,179,124,.16);
  color: var(--cm-slate);
  border-radius: .9rem;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* CTA strip */
.cm-cta-strip{
  margin-top: 32px;
  border-radius: 20px;
  padding: 18px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  background: linear-gradient(90deg, #2f3744, #242b35);
  border: 1px solid rgba(196,179,124,.30);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
}

/* Process step cards */
.cm-step-card{
  background:#fff;
  border:1px solid rgba(229,231,235,.9);
  border-radius: 18px;
  padding: 18px;
  position: relative;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}
.cm-step-badge{
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--cm-gold);
  color: var(--cm-slate);
  font-weight: 900;
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 12px;
  box-shadow: 0 12px 24px rgba(196,179,124,.28);
}

/* Gallery overlay */
.cm-img-overlay{
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(54,63,77,.55));
}
.cm-tag{
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: rgba(54,63,77,.72);
  padding: 6px 10px;
  border-radius: 999px;
}

/* Packages */
.cm-price-card{
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(229,231,235,.9);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.08);
  background:#fff;
  transition: transform .25s ease;
}
.cm-price-card:hover{ transform: translateY(-2px); }
.cm-price-head{
  padding: 22px;
  background: linear-gradient(180deg, #2f3744, #242b35);
  border-bottom: 1px solid rgba(196,179,124,.25);
}
.cm-price-body{ padding: 22px; }
.cm-list{
  list-style:none;
  padding:0; margin:0;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.cm-list li{
  position:relative;
  padding-left: 24px;
  color: rgba(54,63,77,.85);
  font-weight: 600;
  font-size: 14px;
}
.cm-list li::before{
  content:"";
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(196,179,124,.95);
  position:absolute;
  left: 0; top: 6px;
}
.cm-price-featured{
  border-color: rgba(196,179,124,.55);
  transform: translateY(-3px);
}

/* Awards cards (preserved + tuned) */
.award-card{
  flex:0 0 auto;
  width: 160px;
  height: 110px;
  background: #fff;
  border: 1px solid rgba(229,231,235,.9);
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}
.award-card img{
  max-height:100%;
  max-width:100%;
  object-fit:contain;
  filter: grayscale(10%);
  transition: all .3s ease;
}
.award-card:hover img{ filter: grayscale(0%); transform: scale(1.05); }

/* Awards animation */
@keyframes awards-slide{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
.animate-awards-slide{ animation: awards-slide 35s linear infinite; }

/* Video card */
.cm-video-card{
  background: var(--cm-soft);
  border: 1px solid rgba(229,231,235,.9);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

/* FAQ (Rebuilt) */
.cm-faq-section{
  padding: 96px 0;
  background: #ffffff;
  border-top: 1px solid rgba(229,231,235,.9);
}

.cm-container{
  max-width: 72rem;   /* قريب من max-w-6xl */
  margin: 0 auto;
  padding: 0 24px;
}

.cm-faq-head{
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}

.cm-faq-title{
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
  color: #363f4d;
  margin: 0 0 10px;
}

.cm-faq-subtitle{
  font-size: 16px;
  line-height: 1.8;
  color: rgba(54,63,77,.72);
  margin: 0;
}

.cm-faq-grid{
  display: grid;
  gap: 14px;
}

@media (min-width: 1024px){
  .cm-faq-grid{
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.cm-faq-item{
  border: 1px solid rgba(229,231,235,.95);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.cm-faq-item:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.cm-faq-btn{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.cm-faq-q{
  font-size: 16px;
  font-weight: 900;
  color: #363f4d;
  line-height: 1.35;
}

.cm-faq-icon{
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  position: relative;
  background: rgba(54,63,77,.08);
  border: 1px solid rgba(54,63,77,.12);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

/* plus sign */
.cm-faq-icon::before,
.cm-faq-icon::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width: 16px;
  height: 2px;
  background: #363f4d;
  transform: translate(-50%, -50%);
  border-radius: 99px;
}
.cm-faq-icon::after{
  width: 2px;
  height: 16px;
}

/* panel */
.cm-faq-panel{
  padding: 0 22px 22px;
}

.cm-faq-a{
  padding: 14px 16px; /* ⬅️ مساحة مريحة حول النص */
  border-radius: 16px;
  background: rgba(196,179,124,.10);
  border: 1px solid rgba(196,179,124,.25);
  color: rgba(54,63,77,.85);
  font-size: 15px;
  line-height: 1.9;
}

/* active state */
.cm-faq-item.is-open{
  border-color: rgba(196,179,124,.65);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.cm-faq-item.is-open .cm-faq-icon{
  background: rgba(196,179,124,.18);
  border-color: rgba(196,179,124,.55);
  transform: rotate(45deg);
}


/* Booking block */
.cm-book-wrap{
  border-radius: 1.5rem;
  overflow:hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.20);
}
.cm-book-left{
  background: linear-gradient(180deg, #2f3744, #242b35);
}
.cm-input{
  width:100%;
  padding: 12px 14px;
  background:#f8fafc;
  border: 1px solid rgba(54,63,77,.18);
  border-radius: 10px;
  font-size: 14px;
  color: rgba(54,63,77,.92);
  outline:none;
  transition: all .2s ease;
}
.cm-input:focus{
  background:#fff;
  border-color: rgba(196,179,124,.65);
  box-shadow: 0 0 0 3px rgba(196,179,124,.22);
}

/* Footer icon chip */
.cm-icon-chip{
  background: rgba(196,179,124,.20);
  color: var(--cm-slate);
}

/* Responsive hero image height */
@media (max-width: 640px){
  .cm-hero-img{ height: 420px; }
}

/* Footer (Centered Simple) */
.cm-footer{
  background: #363f4d;
  border-top: 1px solid rgba(229,231,235,.9);
  padding: 56px 0 44px;
}

.cm-footer-inner{
  max-width: 72rem; /* قريب من max-w-6xl */
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cm-footer-logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.cm-footer-logo-img{
  width: 160px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.cm-footer-desc{
  max-width: 720px;
  font-size: 14px;
  line-height: 1.8;
  color: rgb(255, 255, 255);
  margin: 0;
}

.cm-footer-social{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
}

.cm-social-link{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(54,63,77,.06);
  border: 1px solid #c4b37c;
  color: #c4b37c;
  transition: all .2s ease;
}

.cm-social-link:hover{
  background: #c4b37c;
  border-color: rgb(255, 255, 255);
  color: #ffffff;
  transform: translateY(-1px);
}

/* 24/7 Availability Box */
.cm-availability-box{
  border: 1px solid rgba(196,179,124,.25);
  background: rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 16px 16px;
}

.cm-availability-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.cm-availability-row:last-child{
  border-bottom:none;
}

.cm-availability-label{
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 600;
}

.cm-availability-value{
  color: var(--cm-gold);
  font-size: 14px;
  font-weight: 800;
  background: rgba(196,179,124,.14);
  border: 1px solid rgba(196,179,124,.35);
  padding: 6px 10px;
  border-radius: 999px;
}

/* Book Contact layout */
.cm-book-contact{
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.cm-contact-item{
  display:flex;
  align-items:center;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}

.cm-contact-icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(196,179,124,.14);
  border: 1px solid rgba(196,179,124,.28);
  color: #ffffff;
}

.cm-contact-label{
  margin:0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.60);
  font-weight: 700;
}

.cm-contact-value{
  margin:0;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,.92);
}

/* Form Divider */
.cm-form-divider{
  position: relative;
  text-align: center;
  margin: 18px 0 14px;
}

.cm-form-divider span{
  font-size: 12px;
  font-weight: 600;
  color: rgba(54,63,77,.55);
  background: #ffffff;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.cm-form-divider::before{
  content:"";
  position:absolute;
  top:50%;
  left:0;
  width:100%;
  height:1px;
  background: rgba(54,63,77,.18);
  transform: translateY(-50%);
}

/* WhatsApp Button */
.cm-btn-whatsapp{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  background: rgba(37, 211, 102, 0.12);
  color: #1f7a46;
  border: 1px solid rgba(37, 211, 102, 0.35);
  transition: all .25s ease;
  text-decoration: none;
}

.cm-btn-whatsapp:hover{
  background: rgba(37, 211, 102, 0.18);
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.18);
}

