/* =============================================
   المحيط للسفر والسياحة — Global Stylesheet
   almohit-sa.com
   ============================================= */

/* ── Variables ── */
:root {
  --ink:        #0b1729;
  --deep:       #0d1f3c;
  --royal:      #1a3561;
  --ocean:      #1e4d8c;
  --mid:        #2a6ab5;
  --sky:        #5a9fd4;
  --gold:       #c9922a;
  --gold-light: #e8b84b;
  --gold-pale:  #f5d98a;
  --cream:      #f4ede0;
  --white:      #ffffff;
  --muted:      rgba(255,255,255,0.96);
  --muted2:     rgba(255,255,255,0.85);
  --wa-green:   #25d366;
  --wa-dark:    #128c7e;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Tajawal', sans-serif;
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  direction: rtl;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-pale); }
ul, ol { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }
p { line-height: 1.75; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.55); }
  50%     { box-shadow: 0 4px 32px rgba(37,211,102,0.9), 0 0 0 8px rgba(37,211,102,0.15); }
}
@keyframes phonePulse {
  0%,100% { box-shadow: 0 4px 20px rgba(42,106,181,0.55); }
  50%     { box-shadow: 0 4px 32px rgba(42,106,181,0.9), 0 0 0 8px rgba(42,106,181,0.15); }
}

/* ── Section helpers ── */
.section-wrap {
  position: relative; z-index: 10;
  width: 100%; max-width: 1100px;
  margin: 3rem auto 0; padding: 0 1.5rem;
  animation: fadeUp 0.8s ease both;
}
.section-heading { text-align: center; margin-bottom: 1.5rem; }
.section-label {
  font-size: 0.85rem; letter-spacing: 0.2em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 0.4rem;
}
.section-title { font-size: clamp(1.3rem,3vw,1.8rem); font-weight: 700; color: var(--white); }
.section-divider {
  width: 50px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  margin: 0.7rem auto 0;
}

/* ── Gold gradient text ── */
.gold-text {
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn-wa {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-dark));
  color: white; border-radius: 50px;
  padding: 0.75rem 1.8rem; font-size: 0.95rem; font-weight: 700;
  font-family: 'Tajawal', sans-serif;
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-wa:hover { transform: scale(1.04); box-shadow: 0 6px 26px rgba(37,211,102,0.55); color: white; }
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--ink); border-radius: 50px;
  padding: 0.75rem 1.8rem; font-size: 0.95rem; font-weight: 700;
  font-family: 'Tajawal', sans-serif;
  box-shadow: 0 4px 18px rgba(201,146,42,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-gold:hover { transform: scale(1.04); box-shadow: 0 6px 26px rgba(201,146,42,0.55); color: var(--ink); }

/* ── Gold card border ── */
.gold-card {
  background: #0f2444;
  border: 1px solid rgba(201,146,42,0.2);
  border-radius: 16px;
  transition: border-color 0.3s, transform 0.3s;
}
.gold-card:hover { border-color: rgba(201,146,42,0.5); transform: translateY(-4px); }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 0.3rem 0.6rem;
  align-items: center; font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  padding: 1rem 1.5rem 0;
  max-width: 1100px; margin: 0 auto;
}
.breadcrumb a { color: var(--sky); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(160deg, var(--deep), var(--royal));
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(201,146,42,0.15);
}
.page-hero h1 { font-size: clamp(1.6rem,4vw,2.4rem); margin-bottom: 0.6rem; }
.page-hero p  { font-size: 1rem; color: var(--muted2); max-width: 640px; margin: 0 auto; }

/* ── NAP Block ── */
.nap-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,146,42,0.15);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.9;
  text-align: center;
}
.nap-block strong { color: var(--gold-light); }

/* ── Feature list ── */
.feature-list { display: flex; flex-direction: column; gap: 0.5rem; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.93rem; color: rgba(255,255,255,0.9); line-height: 1.6;
}
.feature-list li::before {
  content: '◆'; color: var(--gold); font-size: 0.6rem;
  margin-top: 0.3rem; flex-shrink: 0;
}

/* ── FAQ ── */
.faq-item {
  background: #0f2444;
  border: 1px solid rgba(201,146,42,0.2);
  border-radius: 14px;
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(201,146,42,0.45); }
.faq-q {
  width: 100%; background: none; border: none;
  color: var(--white); font-family: 'Tajawal', sans-serif;
  font-size: 1rem; font-weight: 700;
  text-align: right; padding: 1.1rem 1.4rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-icon { color: var(--gold-light); font-size: 1.3rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none; padding: 0 1.4rem 1.1rem;
  font-size: 0.91rem; color: rgba(255,255,255,0.82); line-height: 1.75;
  border-top: 1px solid rgba(201,146,42,0.1);
}
.faq-item.open .faq-a { display: block; }

/* ── Site Header / Nav ── */
.site-header {
  position: sticky; top: 0; z-index: 9000;
  background: rgba(11,23,41,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,146,42,0.12);
  padding: 0.75rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem;
}
.site-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--gold-light); text-decoration: none;
}
.site-logo span { color: var(--sky); font-size: 0.75rem; display: block; letter-spacing: 0.15em; }
.site-nav { display: flex; flex-wrap: wrap; gap: 0.3rem 1rem; align-items: center; }
.site-nav a {
  font-size: 0.88rem; font-weight: 600;
  color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s;
}
.site-nav a:hover, .site-nav a.active { color: var(--gold-light); }
.site-nav .nav-cta {
  background: linear-gradient(135deg, var(--wa-green), var(--wa-dark));
  color: white; border-radius: 50px;
  padding: 0.35rem 1rem; font-size: 0.82rem;
}
.site-nav .nav-cta:hover { color: white; opacity: 0.9; }

/* ── Footer ── */
.site-footer {
  position: relative; z-index: 10;
  text-align: center;
  padding: 2.5rem 1.5rem 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--gold-light); letter-spacing: 0.08em; margin-bottom: 0.5rem;
}
.footer-seo-text {
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
  line-height: 1.65; max-width: 600px; margin: 0 auto 1rem;
}
.footer-links {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem;
  justify-content: center; margin: 0.8rem 0;
}
.footer-links a { font-size: 0.86rem; color: rgba(255,255,255,0.65); }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-top: 1rem; }
.footer-copy a { color: var(--gold-light); }

/* ── Floating Buttons ── */
.float-btns {
  position: fixed; bottom: 2rem; left: 1.5rem;
  z-index: 999999;
  display: flex; flex-direction: column; gap: 0.65rem; align-items: center;
}
.wa-float-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.55);
  animation: waPulse 2.5s ease-in-out infinite;
  text-decoration: none;
}
.phone-float-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--mid), var(--royal));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(42,106,181,0.55);
  animation: phonePulse 2.5s ease-in-out infinite;
  text-decoration: none; color: white;
}

/* ── Article / Blog ── */
.article-body { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }
.article-body h2 {
  font-size: clamp(1.2rem,2.5vw,1.5rem);
  color: var(--gold-light); margin: 2rem 0 0.8rem;
  border-right: 3px solid var(--gold); padding-right: 0.75rem;
}
.article-body h3 {
  font-size: 1.05rem; color: var(--sky);
  margin: 1.4rem 0 0.5rem;
}
.article-body p { color: rgba(255,255,255,0.88); margin-bottom: 1rem; line-height: 1.85; }
.article-body ul { margin: 0.5rem 0 1rem 0; }
.article-body ul li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.93rem; color: rgba(255,255,255,0.85); line-height: 1.6;
  margin-bottom: 0.4rem;
}
.article-body ul li::before { content: '◆'; color: var(--gold); font-size: 0.6rem; margin-top: 0.3rem; flex-shrink: 0; }
.article-body table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.9rem; }
.article-body th {
  background: rgba(201,146,42,0.15); color: var(--gold-light);
  padding: 0.6rem 0.8rem; text-align: right; font-weight: 700;
  border: 1px solid rgba(201,146,42,0.2);
}
.article-body td {
  padding: 0.55rem 0.8rem; color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.06);
}
.article-body tr:nth-child(even) td { background: rgba(255,255,255,0.03); }

.article-meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.article-meta span { display: flex; align-items: center; gap: 0.3rem; }

.article-cta-box {
  background: linear-gradient(135deg, rgba(201,146,42,0.1), rgba(42,106,181,0.1));
  border: 1px solid rgba(201,146,42,0.3);
  border-radius: 16px; padding: 1.5rem;
  text-align: center; margin: 2rem 0;
}
.article-cta-box h3 { color: var(--gold-light); margin-bottom: 0.5rem; font-size: 1.1rem; }
.article-cta-box p  { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-bottom: 1rem; }

/* ── Blog Index Cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}
.blog-card {
  background: #0f2444;
  border: 1px solid rgba(201,146,42,0.18);
  border-radius: 16px; padding: 1.4rem;
  transition: border-color 0.3s, transform 0.3s;
  text-decoration: none; display: flex; flex-direction: column; gap: 0.5rem;
}
.blog-card:hover { border-color: rgba(201,146,42,0.5); transform: translateY(-4px); }
.blog-card-label { font-size: 0.7rem; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; }
.blog-card-title { font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1.4; }
.blog-card-excerpt { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.6; flex: 1; }
.blog-card-read { font-size: 0.82rem; color: var(--sky); font-weight: 600; margin-top: 0.3rem; }

/* ── Price Badge ── */
.price-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 900;
}
.price-badge small { font-size: 0.75rem; -webkit-text-fill-color: rgba(255,255,255,0.55); }

/* ── Steps ── */
.steps { display: flex; flex-direction: column; gap: 1rem; counter-reset: step; }
.step {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,146,42,0.12);
  border-radius: 12px; padding: 1rem 1.2rem;
}
.step-num {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--ink); font-weight: 900; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}
.step-content h3 { font-size: 0.95rem; color: var(--white); margin-bottom: 0.2rem; }
.step-content p  { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* ── Responsive ── */
@media (max-width: 600px) {
  .site-header { padding: 0.6rem 1rem; }
  .site-nav { gap: 0.3rem 0.7rem; }
  .page-hero { padding: 2rem 1rem 1.8rem; }
  .float-btns { bottom: 1.2rem; left: 1rem; }
}
@media (min-width: 1025px) {
  .section-wrap { padding: 0 2rem; }
}
