/* =============================================
   SUNSNOW — Main Stylesheet
   ============================================= */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

body {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-size: 0.95rem;
  color: #1e2a4a;
  background: #fff;
  direction: rtl;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- UTILITIES ---------- */
.gold { color: #e8a020; }
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #e8a020;
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.65rem 1.6rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .1s;
}
.btn-gold:hover { opacity: .88; transform: translateY(-1px); }

.link-gold {
  color: #e8a020;
  font-weight: 700;
  font-size: 0.82rem;
}
.link-gold:hover { text-decoration: underline; }

/* Section shared */
.section { padding: 4.5rem 0; }

.section__head { text-align: center; margin-bottom: 2.5rem; }

.section__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1e2a4a;
  margin-bottom: 0.6rem;
}

.section__divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.section__divider span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ccc;
  display: inline-block;
}
.section__divider span.active {
  width: 26px;
  border-radius: 4px;
  background: #e8a020;
}

/* ---------- TOP BAR ---------- */
.topbar {
  background: #1e2a4a;
  color: #fff;
  font-size: 0.78rem;
  padding: 0.45rem 0;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.topbar__social { display: flex; gap: 0.4rem; }
.topbar__social a,
.topbar__contact span,
.topbar__location span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #fff;
}
.topbar__social a {
  width: 26px; height: 26px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 5px;
  justify-content: center;
  font-size: 0.75rem;
  transition: color .2s, border-color .2s;
}
.topbar__social a:hover { color: #e8a020; border-color: #e8a020; }
.topbar__contact { display: flex; gap: 1.2rem; }
.topbar__contact span i,
.topbar__location span i { color: #e8a020; }

/* ---------- NAVBAR ---------- */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  position: relative;
  z-index: 100;
  padding: 0.9rem 0;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1e2a4a;
}
.navbar__logo-text { letter-spacing: -0.5px; }
.navbar__links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.nav-link {
  color: #1e2a4a;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.3rem 0.9rem;
  position: relative;
  transition: color .2s;
}
.nav-link:hover { color: #e8a020; }
.nav-link--active {
  color: #e8a020;
  font-weight: 700;
}
.nav-link--active::after {
  content: '';
  position: absolute;
  bottom: -4px; right: 0.9rem; left: 0.9rem;
  height: 2px;
  background: #e8a020;
  border-radius: 2px;
}
.btn-login {
  background: #e8a020;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.5rem 1.3rem;
  border-radius: 8px;
  transition: opacity .2s;
}
.btn-login:hover { opacity: .88; }

/* Floating avatar */
.navbar__avatar {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.navbar__avatar img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- HERO ---------- */
.hero {
  background: #1e2a4a;
  color: #fff;
  padding: 5rem 0 6.5rem;
  text-align: center;
  position: relative;
}
.hero__content { max-width: 680px; margin: 0 auto; }
.hero__title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.55;
  margin-bottom: 1rem;
}
.hero__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,.8);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.hero__chat {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  transition: transform .2s;
}
.hero__chat:hover { transform: scale(1.1); }

/* ---------- SEARCH ---------- */
.search-wrap {
  position: relative;
  z-index: 50;
  padding-bottom: 2rem;
}
.search-wrap__inner {
  position: relative;
  display: flex;
  justify-content: center;
}
.search-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 28px rgba(0,0,0,.12);
  padding: 1.4rem 1.8rem;
  margin-top: -3rem;
  width: 100%;
  max-width: 860px;
}
.search-box__fields {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
}
.search-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.search-field label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #888;
}
.search-field input,
.search-field select {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  font-size: 0.88rem;
  color: #1e2a4a;
  outline: none;
  background: #fff;
  transition: border-color .2s;
}
.search-field input:focus,
.search-field select:focus { border-color: #e8a020; }
.search-box__btn {
  background: #e8a020;
  color: #fff;
  border-radius: 8px;
  padding: 0.65rem 1rem;
  font-size: 1rem;
  flex-shrink: 0;
  transition: opacity .2s;
}
.search-box__btn:hover { opacity: .85; }

/* Side avatar */
.search-wrap__avatar {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(calc(-50% + 1.5rem));
  width: 90px; height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.search-wrap__avatar img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- DESTINATIONS ---------- */
.destinations { background: #f7f8fc; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.dest-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.dest-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}
.dest-card__img-wrap { position: relative; }
.dest-card__img-wrap img {
  width: 100%; height: 205px;
  object-fit: cover; display: block;
}
.badge {
  position: absolute;
  bottom: 0.7rem; right: 0.7rem;
  padding: 0.22rem 0.65rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1.5px solid currentColor;
  background: rgba(255,255,255,.92);
}
.badge--gold  { color: #e8a020; }
.badge--green { color: #2ecc71; }
.badge--blue  { color: #3498db; }

.dest-card__body { padding: 1rem 1.1rem; }
.dest-card__body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e2a4a;
  margin-bottom: 0.4rem;
}
.dest-card__body p {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.7;
  margin-bottom: 0.7rem;
}
.dest-card__meta {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.82rem;
  color: #aaa;
}

/* Pagination dots */
.dots-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ccc;
  transition: background .2s;
}
.dot--active {
  background: #e8a020;
  width: 26px;
  border-radius: 5px;
}

/* ---------- WHY US ---------- */
.why-us { background: #fff; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-bottom: 2.5rem;
}
.why-card {
  text-align: center;
  padding: 1.8rem 1rem;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  transition: box-shadow .2s, transform .2s;
}
.why-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  transform: translateY(-3px);
}
.why-card__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
  color: #fff;
}
.why-card__icon--purple { background: #9b59b6; }
.why-card__icon--blue   { background: #3498db; }
.why-card__icon--green  { background: #2ecc71; }
.why-card__icon--orange { background: #e8a020; }

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e2a4a;
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.why-card__stat {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
}
.why-card__num {
  font-size: 1.1rem;
  font-weight: 800;
  color: #e8a020;
}
.why-card__unit {
  font-size: 0.75rem;
  color: #aaa;
}

/* Stats bar */
.stats-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #e8a020;
  border-radius: 12px;
  padding: 1.4rem 2rem;
  gap: 1rem;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  color: #fff;
  text-align: center;
}
.stat__icon { font-size: 1.5rem; }
.stat__num  { font-size: 1.4rem; font-weight: 800; line-height: 1; }
.stat__lbl  { font-size: 0.78rem; opacity: .9; }

/* ---------- GALLERY ---------- */
.gallery { background: #f7f8fc; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: block;
}
.gallery-item img {
  width: 100%; height: 225px;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 0.8rem;
}
.gallery-item__overlay span {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: #fff; }

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.test-grid--sm {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 1.4rem;
}
.test-card {
  background: #f7f8fc;
  border-radius: 12px;
  padding: 1.4rem;
  transition: box-shadow .2s;
}
.test-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.test-card__stars {
  color: #e8a020;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 0.7rem;
}
.test-card__stars--sm {
  font-size: 0.72rem;
  margin-bottom: 0;
  letter-spacing: 1px;
}
.test-card__text {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.test-card__author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.test-card__author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.test-card--sm .test-card__author img {
  width: 38px; height: 38px;
}
.test-card__author strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1e2a4a;
}
.test-card__author span {
  font-size: 0.72rem;
  color: #aaa;
}
.test-card--sm { padding: 1rem; }

/* ---------- CONTACT ---------- */
.contact { background: #f7f8fc; }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.form-row label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1e2a4a;
}
.form-row input,
.form-row textarea {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
  color: #1e2a4a;
  background: #fff;
  outline: none;
  resize: none;
  transition: border-color .2s;
}
.form-row input:focus,
.form-row textarea:focus { border-color: #e8a020; }
.form-row textarea { min-height: 110px; }

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.contact__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #1e2a4a;
}
.contact__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.contact__icon--gold {
  background: #e8a020;
  color: #fff;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #1e2a4a;
  color: #fff;
  padding: 3rem 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 2rem;
}
.footer__map-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,.6);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.footer__map-label i { color: #e8a020; }

.footer__col-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #e8a020;
  margin-bottom: 1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col a {
  font-size: 0.82rem;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.footer__col a:hover { color: #e8a020; }

.footer__brand { text-align: center; }
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.6rem;
}
.footer__tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
}
.footer__social {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.footer__social a {
  width: 30px; height: 30px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #fff;
  transition: color .2s, border-color .2s;
}
.footer__social a:hover { color: #e8a020; border-color: #e8a020; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  padding: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,.45);
}


