@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap");
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--off);
  color: var(--ink);
  font:
    16px/1.7 Inter,
    Arial,
    sans-serif;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
h1,
h2,
h3,
h4 {
  font-family: Poppins, Arial, sans-serif;
  line-height: 1.12;
  margin: 0 0 18px;
}
h1 {
  font-size: clamp(3rem, 7vw, 7.1rem);
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(2rem, 4.4vw, 4.6rem);
  letter-spacing: -0.045em;
}
h3 {
  font-size: 1.35rem;
}
.container {
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
}
.section {
  padding: 110px 0;
}
.eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}
.eyebrow:before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}
.lead {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--muted);
  max-width: 720px;
}
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.3s;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 15px 36px rgba(11, 110, 153, 0.28);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(11, 110, 153, 0.36);
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}
.btn-soft {
  background: rgba(11, 110, 153, 0.1);
  color: var(--primary);
}
.nav {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1000;
}
.nav-inner {
  width: min(calc(100% - 32px), 1320px);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  background: rgba(7, 27, 36, 0.46);
  backdrop-filter: blur(18px);
  color: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.brand-logo{
    width:70px;
    height:70px;
    object-fit:contain;
    filter:none;
}

.brand-text{
    display:flex;
    flex-direction:column;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 23px;
  font-size: 0.91rem;
  font-weight: 600;
}
.nav-links a {
  opacity: 0.85;
}
.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: #8de9f7;
}
.nav-actions {
  display: flex;
  gap: 9px;
  align-items: center;
}
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.menu-btn {
  display: none;
}
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: end;
  color: #fff;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(1, 18, 26, 0.84),
      rgba(2, 24, 33, 0.36) 55%,
      rgba(2, 24, 33, 0.16)
    ),
    linear-gradient(0deg, rgba(3, 18, 25, 0.78), transparent 48%);
  z-index: -1;
}
.hero-content {
  padding: 170px 0 90px;
  max-width: 920px;
}
.hero p {
  max-width: 650px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero-meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 66px;
}
.hero-meta b {
  display: block;
  font-family: Poppins;
  font-size: 1.45rem;
}
.hero-meta span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.page-hero {
  min-height: 62vh;
}
.page-hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.35s;
}
.card:hover {
  transform: translateY(-8px);
}
.media-card {
  position: relative;
  min-height: 440px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.media-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(1, 22, 30, 0.88), transparent 65%);
  z-index: -1;
}
.media-card small {
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #aeeff6;
}
.media-card h3 {
  font-size: 1.7rem;
}
.tour-card img {
  height: 255px;
  width: 100%;
  object-fit: cover;
}
.card-body {
  padding: 25px;
}
.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 15px 0;
}
.tag {
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(42, 157, 143, 0.1);
  color: var(--emerald);
  font-size: 0.77rem;
  font-weight: 700;
}
.split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: center;
}
.split-media {
  min-height: 600px;
  border-radius: 38px;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: var(--shadow);
}
.floating-note {
  position: absolute;
  right: -35px;
  bottom: 42px;
  width: 230px;
  padding: 22px;
  border-radius: 20px;
  background: var(--surface);
  backdrop-filter: blur(18px);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-radius: 26px;
  overflow: hidden;
  background: var(--line);
}
.stat {
  padding: 38px 24px;
  background: var(--white);
  text-align: center;
}
.stat strong {
  display: block;
  font-family: Poppins;
  font-size: 2.5rem;
  color: var(--primary);
}
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.timeline:before {
  content: "";
  position: absolute;
  top: 25px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: var(--line);
}
.step {
  position: relative;
  text-align: center;
}
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--primary);
  font-weight: 800;
}
.feature {
  padding: 26px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(11, 110, 153, 0.15),
    rgba(42, 157, 143, 0.18)
  );
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.dark-section {
  background: #071c26;
  color: #fff;
}
.dark-section .lead {
  color: #a9bbc2;
}
.quote {
  font-family: Poppins;
  font-size: clamp(1.7rem, 3.2vw, 3.4rem);
  line-height: 1.25;
  letter-spacing: -0.035em;
}
.testimonial {
  padding: 30px;
}
.stars {
  color: #f2b84b;
  letter-spacing: 0.15em;
}
.masonry {
  columns: 3 280px;
  column-gap: 18px;
}
.masonry img {
  width: 100%;
  margin: 0 0 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.masonry img:hover {
  transform: scale(0.985);
  filter: brightness(0.85);
}
.form {
  background: var(--white);
  padding: 32px;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
.field label {
  font-weight: 700;
  font-size: 0.9rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 13px;
  border: 1px solid var(--line);
  background: var(--off);
  color: var(--ink);
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(0, 184, 217, 0.1);
}
.booking-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
}
.booking-summary {
  position: sticky;
  top: 110px;
  height: max-content;
}
.price {
  font-size: 2.5rem;
  font-family: Poppins;
  font-weight: 800;
  color: var(--primary);
}
.accordion-item {
  border-bottom: 1px solid var(--line);
}
.accordion-btn {
  width: 100%;
  border: 0;
  background: none;
  color: var(--ink);
  padding: 23px 0;
  display: flex;
  justify-content: space-between;
  text-align: left;
  font-weight: 750;
  cursor: pointer;
}
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s;
  color: var(--muted);
}
.accordion-item.open .accordion-panel {
  max-height: 260px;
  padding-bottom: 20px;
}
.footer {
  background: #04131b;
  color: #d7e4e8;
  padding: 76px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 35px;
}
.footer h4 {
  color: #fff;
}
.footer a {
  display: block;
  color: #9fb2ba;
  margin: 8px 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--emerald));
  z-index: 1200;
  width: 0;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 30px;
}
.lightbox.open {
  display: grid;
}
.lightbox img {
  max-height: 88vh;
  border-radius: 20px;
}
.badge {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}
.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
}
.table th,
.table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.notice {
  padding: 18px;
  border-left: 4px solid var(--secondary);
  background: rgba(0, 184, 217, 0.08);
  border-radius: 12px;
}
.center {
  text-align: center;
}
.mt {
  margin-top: 32px;
}
.mb {
  margin-bottom: 38px;
}
[dir="rtl"] body {
  text-align: right;
}
[dir="rtl"] .eyebrow:before {
  order: 2;
}
[dir="rtl"] .accordion-btn {
  text-align: right;
}
[dir="rtl"] .floating-note {
  right: auto;
  left: -35px;
}

 .floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 999;
    }
    .floating-buttons a {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: #25d366;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 22px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      transition: background 0.3s;
    }
    .floating-buttons a.instagram {
      background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    }
    .floating-buttons a.facebook {
      background: linear-gradient(45deg, #2764ff, #2764ff, #2764ff, #2764ff, #2764ff);
    }

    .glass-social-dock {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* التأثير الزجاجي */
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 50px;
      padding: 5px;
      height: 60px; /* الارتفاع الافتراضي */
      overflow: hidden;
      transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }

  .glass-social-dock:hover {
      height: 240px; /* الارتفاع عند التمدد */
      background: rgba(255, 255, 255, 0.25);
  }

  .glass-btn {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #333; /* لون الأيقونات */
      font-size: 22px;
      text-decoration: none;
      margin-bottom: 8px;
      transition: transform 0.3s, color 0.3s;
      flex-shrink: 0;
  }

  /* ترتيب الأيقونة الرئيسية لتكون في الأسفل دائماً */
  .main-icon {
      order: 10;
      margin-bottom: 0;
      background: linear-gradient(135deg, #ff416c, #ff4b2b);
      color: white;
      cursor: pointer;
  }

  .glass-btn:hover {
      transform: scale(1.15);
  }

  /* ألوان الأيقونات عند الوقوف عليها */
  .whatsapp:hover { color: #25d366; }
  .instagram:hover { color: #e1306c; }
  .facebook:hover { color: #1877f2; }



/* ================= TEAM ================= */

.section-heading.center{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.team-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    transition:.45s;
}

.team-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 70px rgba(0,0,0,.12);
}

.team-card img{
    width:100%;
    height:380px;
    object-fit:cover;
    transition:.6s;
}

.team-card:hover img{
    transform:scale(1.08);
}

.team-info{
    padding:30px;
}

.team-info h3{
    margin-bottom:6px;
    font-size:28px;
}

.team-info span{
    color:#0B6E99;
    font-weight:600;
    display:block;
    margin-bottom:18px;
}

.team-info p{
    color:#666;
    line-height:1.8;
}

.team-social{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.team-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f5f5f5;
    color:#0B6E99;
    transition:.3s;
    text-decoration:none;
}

.team-social a:hover{
    background:#0B6E99;
    color:#fff;
    transform:translateY(-4px);
}
  





/* ===== Luxury Brand ===== */

.brand{
    display:flex;
    align-items:center;
    gap:16px;
    text-decoration:none;
}
 
.brand-logo{
    width:60px;
    height:60px;
    object-fit:contain;
}

.brand-text{
    display:flex;
    flex-direction:column;
    line-height:1;
}

.brand-title{
    font-family:Poppins,sans-serif;
    font-size:28px;
    font-weight:700;
    color:#fff;
    letter-spacing:2px;
}

.brand-subtitle{
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:5px;
    color:rgba(255,255,255,.75);
    margin-top:6px;
}

.nav.scrolled .brand-title{
    color:#111;
}

.nav.scrolled .brand-subtitle{
    color:#666;
}

.brand:hover .brand-logo{
    transform:scale(1.05);
    transition:.3s;
}

/* =========================
   Footer Brand
========================= */

.footer-brand-block{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    width:100%;
}

.footer-brand{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:16px;
    width:100%;
    margin:0 auto 24px;
}

.footer-logo{
    width:70px;
    height:70px;
    object-fit:contain;
    display:block;
    margin:0 auto;
    flex:none;
    filter:none;
}

.footer-brand-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
    line-height:1;
}

.footer-brand-title{
    font-family:"Poppins",sans-serif;
    font-size:30px;
    font-weight:700;
    color:#fff;
    letter-spacing:1px;
    white-space:nowrap;
}

.footer-brand-subtitle{
    margin-top:8px;
    font-family:"Inter",sans-serif;
    font-size:11px;
    font-weight:500;
    line-height:1;
    letter-spacing:5px;
    text-transform:uppercase;
    color:rgba(255,255,255,.72);
    white-space:nowrap;
}

.footer-description{
    max-width:390px;
    margin:0;
    color:#9fb2ba;
    font-size:16px;
    line-height:1.8;
}
.footer-grid > div:first-child{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

/* ================= BLOG SPECIFIC STYLES ================= */

/* أدوات البحث والفلاتر */
.blog-controls {
    align-items: center;
    background: #fff;
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.blog-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.blog-filters .btn {
    padding: 8px 18px;
    font-size: 0.9rem;
}
.blog-search-box {
    position: relative;
    width: 100%;
    max-width: 350px;
}
.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
}
.blog-search-input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--off);
    font-size: 0.95rem;
    transition: 0.3s;
}
.blog-search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11, 110, 153, 0.1);
    outline: none;
}

/* المقالة المميزة - Featured Article */
.featured-article {
    overflow: hidden;
}
.featured-img {
    background-size: cover;
    background-position: center;
    min-height: 400px;
    height: 100%;
}
.featured-content {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.featured-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin: 15px 0;
}
.featured-content h2 a {
    transition: 0.3s;
}
.featured-content h2 a:hover {
    color: var(--primary);
}
.author-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.author-meta strong {
    display: block;
    font-size: 1rem;
    color: var(--ink);
}
.author-meta span {
    font-size: 0.85rem;
    color: var(--muted);
}

/* بطاقات المدونة العادية */
.blog-card {
    display: flex;
    flex-direction: column;
}
.blog-card-img-wrapper {
    overflow: hidden;
    display: block;
}
.blog-card-img {
    height: 240px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-img {
    transform: scale(1.08);
}
.blog-card h3 {
    margin: 10px 0 15px;
    font-size: 1.4rem;
    line-height: 1.4;
}
.blog-card h3 a {
    transition: color 0.3s;
}
.blog-card:hover h3 a {
    color: var(--primary);
}
.blog-card p {
    color: var(--muted);
    margin-bottom: 25px;
    flex-grow: 1;
}
.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--line);
    padding-top: 15px;
    margin-top: auto;
}
.blog-footer .date {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 600;
}
.blog-footer .read-more {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}
.blog-footer .read-more:hover {
    gap: 12px; /* تأثير حركة السهم */
}

/* ترقيم الصفحات - Pagination */
.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 10px;
}
.page-num {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: var(--ink);
    background: transparent;
    transition: 0.3s;
}
.page-num:hover, .page-num.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 5px 15px rgba(11, 110, 153, 0.2);
}
.page-next {
    font-weight: 700;
    color: var(--primary);
    padding: 10px 15px;
    margin-left: 10px;
}

/* التجاوب مع الجوال (Responsive) */
@media (max-width: 992px) {
    .featured-article .split {
        grid-template-columns: 1fr;
    }
    .featured-img {
        min-height: 280px;
    }
}
@media (max-width: 768px) {
    .blog-controls {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 20px;
    }
    .blog-search-box {
        max-width: 100%;
    }
    .pagination-area {
        flex-direction: column-reverse;
        gap: 20px;
    }
}

/* ================= ARTICLE DETAILS STYLES ================= */

/* هيدر المقال */
.article-hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.article-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.2;
}
.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.article-meta .meta-info {
    text-align: left;
}
.article-meta strong {
    display: block;
    font-size: 1.1rem;
    color: #fff;
}
.article-meta span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* حاوية المقال (ضيقة لتسهيل القراءة) */
.article-wrapper {
    max-width: 820px;
    margin: -80px auto 0; /* لرفع المقال قليلاً فوق الخلفية إذا أردت، أو اتركه 0 */
    background: #fff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
}

/* تنسيق النصوص داخل المقال */
.article-body p {
    font-size: 1.15rem;
    color: #4a5a60;
    margin-bottom: 24px;
    line-height: 1.9;
}
.article-body h2 {
    font-size: 2rem;
    margin: 45px 0 20px;
    color: var(--ink);
}
.article-body ul {
    margin-bottom: 30px;
    padding-left: 20px;
}
.article-body li {
    font-size: 1.15rem;
    color: #4a5a60;
    margin-bottom: 12px;
    line-height: 1.8;
}
.article-body img {
    border-radius: 16px;
    margin: 40px 0 15px;
    width: 100%;
}
.image-caption {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 40px;
    font-style: italic;
}
.article-body blockquote {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--primary);
    margin: 50px 0;
    padding: 30px 40px;
    background: rgba(11, 110, 153, 0.05);
    border-left: 5px solid var(--primary);
    border-radius: 0 20px 20px 0;
    font-weight: 600;
}

/* أزرار المشاركة */
.article-share {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    border-top: 1px solid var(--line);
    margin-top: 50px;
}
.article-share strong {
    font-size: 1.1rem;
}
.social-links {
    display: flex;
    gap: 12px;
}
.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.1rem;
    transition: 0.3s;
}
.share-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #1DA1F2; }
.share-btn.whatsapp { background: #25D366; }
.share-btn.link { background: #7b8b93; }

/* تجاوب الجوال للمقال */
@media (max-width: 768px) {
    .article-wrapper {
        padding: 30px 20px;
        margin-top: 0;
        border-radius: 20px;
    }
    .article-body p, .article-body li {
        font-size: 1.05rem;
    }
    .article-body h2 {
        font-size: 1.6rem;
    }
    .article-body blockquote {
        font-size: 1.3rem;
        padding: 20px;
    }
    .article-share {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =====================================
   PREMIUM ITINERARY
===================================== */

.itinerary-section{
  margin-top:70px;
}

.itinerary-heading{
  margin-bottom:38px;
}

.itinerary-heading h3{
  margin-bottom:12px;
  font-size:clamp(2rem,4vw,3.4rem);
}

.itinerary-heading p{
  max-width:720px;
  margin:0;
  color:var(--muted);
  font-size:1.05rem;
}

.itinerary-list{
  display:grid;
  gap:20px;
}

.itinerary-day{
  overflow:hidden;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:26px;
  box-shadow:0 18px 50px rgba(4,33,45,.07);
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.itinerary-day:hover{
  transform:translateY(-3px);
  border-color:rgba(11,110,153,.3);
  box-shadow:0 26px 65px rgba(4,33,45,.11);
}

.itinerary-day.active{
  border-color:rgba(11,110,153,.35);
}

.itinerary-toggle{
  width:100%;
  padding:20px 24px;
  display:grid;
  grid-template-columns:76px 1fr 48px;
  gap:20px;
  align-items:center;
  border:0;
  background:transparent;
  color:var(--ink);
  text-align:left;
  cursor:pointer;
}

.itinerary-day-number{
  width:70px;
  height:70px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  border-radius:20px;
  color:#fff;
  background:
    linear-gradient(135deg,var(--primary),var(--secondary));
  box-shadow:0 14px 30px rgba(11,110,153,.25);
}

.itinerary-day-number small{
  font-size:.66rem;
  line-height:1;
  letter-spacing:.14em;
  text-transform:uppercase;
  opacity:.8;
}

.itinerary-day-number strong{
  margin-top:5px;
  font-family:Poppins,sans-serif;
  font-size:1.5rem;
  line-height:1;
}

.itinerary-title span{
  display:block;
  margin-bottom:5px;
  color:var(--primary);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.itinerary-title h4{
  margin:0;
  font-size:clamp(1.05rem,2vw,1.45rem);
}

.itinerary-icon{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  justify-self:end;
  border-radius:50%;
  background:rgba(11,110,153,.08);
  color:var(--primary);
  transition:
    transform .35s ease,
    background .35s ease,
    color .35s ease;
}

.itinerary-day.active .itinerary-icon{
  transform:rotate(45deg);
  background:var(--primary);
  color:#fff;
}

.itinerary-content{
  display:grid;
  grid-template-columns:minmax(280px,.9fr) minmax(0,1.1fr);
  gap:34px;
  max-height:0;
  padding:0 24px;
  overflow:hidden;
  opacity:0;
  transition:
    max-height .65s cubic-bezier(.22,1,.36,1),
    opacity .35s ease,
    padding .45s ease;
}

.itinerary-day.active .itinerary-content{
  max-height:800px;
  padding:0 24px 26px;
  opacity:1;
}

.itinerary-image{
  position:relative;
  min-height:300px;
  overflow:hidden;
  border-radius:22px;
  background:#dce7eb;
}

.itinerary-image img{
  width:100%;
  height:100%;
  min-height:300px;
  object-fit:cover;
  transition:transform .8s cubic-bezier(.22,1,.36,1);
}

.itinerary-day:hover .itinerary-image img{
  transform:scale(1.045);
}

.itinerary-image:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    0deg,
    rgba(2,19,27,.58),
    transparent 48%
  );
  pointer-events:none;
}

.itinerary-location{
  position:absolute;
  left:18px;
  bottom:18px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 13px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:999px;
  background:rgba(4,24,32,.42);
  backdrop-filter:blur(12px);
  color:#fff;
  font-size:.78rem;
  font-weight:700;
}

.itinerary-details{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:10px 5px;
}

.itinerary-details > p{
  margin:0 0 24px;
  color:var(--muted);
  font-size:1rem;
  line-height:1.8;
}

.itinerary-highlights{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin:0;
  padding:0;
  list-style:none;
}

.itinerary-highlights li{
  display:flex;
  align-items:center;
  gap:10px;
  padding:13px 14px;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--off);
  color:var(--ink);
  font-size:.86rem;
  font-weight:600;
}

.itinerary-highlights i{
  width:20px;
  color:var(--primary);
  text-align:center;
}


/* =========================================
   Luxury Premium Slider Styles
========================================= */
.luxury-slider-section {
  padding: 80px 0;
  background-color: var(--off, #f8f9fa); /* نفس لون خلفيتك */
  overflow: hidden;
}

.luxury-header {
  text-align: center;
  margin-bottom: 50px;
}

.luxury-carousel {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px; /* لترك مساحة صغيرة في الجوال */
}

/* Track & Scrolling */
.carousel-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  padding-bottom: 20px;
}
.carousel-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Individual Slide */
.carousel-slide {
  flex: 0 0 calc(85% - 30px); /* يظهر جزء من الصورة التالية/السابقة */
  scroll-snap-align: center;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: grab;
}
.carousel-slide:active {
  cursor: grabbing;
}

/* Desktop Width Adjustment */
@media (min-width: 1024px) {
  .carousel-slide {
    flex: 0 0 calc(70% - 30px);
  }
}

/* Image with Ken Burns effect */
.slide-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* مقاس سينمائي */
  overflow: hidden;
}

.slide-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide:hover .slide-image-wrapper img {
  transform: scale(1.05); /* تقريب ناعم عند التمرير */
}

/* Gradient Overlay for Text Readability */
.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

/* Text Content over Image */
.slide-content {
  position: absolute;
  bottom: 40px;
  left: 50px;
  color: white;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.2s;
}

/* تفعيل النص فقط للشريحة النشطة (سيتم برمجتها عبر JS) */
.carousel-slide.active-slide .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.slide-content h3 {
  font-family: 'Poppins', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  margin: 0 0 10px 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slide-content p {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: white;
  color: #0B6E99; /* لون الهوية الخاص بك */
  transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: 4%; }
.next-btn { right: 4%; }

/* اخفاء الأزرار في الجوال والاعتماد على السحب (Swipe) */
@media (max-width: 768px) {
  .carousel-btn { display: none; }
  .carousel-slide { flex: 0 0 calc(95% - 20px); }
  .slide-content { left: 20px; bottom: 20px; }
  .slide-image-wrapper { aspect-ratio: 4 / 5; /* مقاس طولي للجوال */ }
}

/* Progress Bar (Aman Resorts style) */
.carousel-progress {
  width: 200px;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  margin: 30px auto 0;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #0B6E99;
  width: 0%;
  transition: width 0.3s ease;
}

/* =====================================
   PREMIUM WEBSITE PRELOADER
===================================== */

body.preloader-active{
  overflow:hidden;
}

.site-preloader{
  position:fixed;
  inset:0;
  z-index:99999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:
    radial-gradient(
      circle at center,
      rgba(11,110,153,.22),
      transparent 46%
    ),
    linear-gradient(
      145deg,
      #03131c 0%,
      #062937 50%,
      #03131c 100%
    );
  opacity:1;
  visibility:visible;
  transition:
    opacity .9s ease,
    visibility .9s ease;
}

.site-preloader.is-hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

.preloader-content{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.preloader-logo-wrap{
  position:relative;
  width:150px;
  height:150px;
  display:grid;
  place-items:center;
  margin-bottom:28px;
}

.preloader-ring{
  position:absolute;
  inset:0;
  border:1px solid rgba(255,255,255,.16);
  border-top-color:#52d7ea;
  border-right-color:#2a9d8f;
  border-radius:50%;
  animation:preloaderSpin 2s linear infinite;
}

.preloader-ring::before{
  content:"";
  position:absolute;
  inset:11px;
  border:1px solid rgba(255,255,255,.1);
  border-bottom-color:#ead7a4;
  border-radius:50%;
  animation:preloaderSpinReverse 3s linear infinite;
}

.preloader-logo{
  position:relative;
  z-index:2;
  width:105px;
  height:105px;
  object-fit:contain;
  filter:none;
  animation:preloaderLogoPulse 2s ease-in-out infinite;
}

.preloader-brand{
  display:flex;
  flex-direction:column;
  line-height:1;
  animation:preloaderReveal 1.1s ease both;
}

.preloader-title{
  font-family:"Poppins",sans-serif;
  font-size:clamp(2rem,6vw,3.5rem);
  font-weight:700;
  letter-spacing:3px;
  color:#fff;
}

.preloader-subtitle{
  margin-top:10px;
  font-family:"Inter",sans-serif;
  font-size:.72rem;
  font-weight:600;
  letter-spacing:7px;
  color:rgba(255,255,255,.68);
  text-transform:uppercase;
}

.preloader-line{
  width:min(270px,70vw);
  height:2px;
  margin-top:30px;
  overflow:hidden;
  border-radius:999px;
  background:rgba(255,255,255,.12);
}

.preloader-line span{
  display:block;
  width:100%;
  height:100%;
  border-radius:inherit;
  transform:translateX(-100%);
  background:linear-gradient(
    90deg,
    #0b6e99,
    #00b8d9,
    #2a9d8f
  );
  animation:preloaderProgress 5s linear forwards;
}

.preloader-message{
  margin:16px 0 0;
  color:rgba(255,255,255,.62);
  font-size:.78rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}

@keyframes preloaderSpin{
  to{
    transform:rotate(360deg);
  }
}

@keyframes preloaderSpinReverse{
  to{
    transform:rotate(-360deg);
  }
}

@keyframes preloaderLogoPulse{
  0%,
  100%{
    transform:scale(1);
    filter:drop-shadow(0 10px 24px rgba(0,184,217,.2));
  }

  50%{
    transform:scale(1.06);
    filter:drop-shadow(0 16px 36px rgba(0,184,217,.5));
  }
}

@keyframes preloaderReveal{
  from{
    opacity:0;
    transform:translateY(18px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes preloaderProgress{
  from{
    transform:translateX(-100%);
  }

  to{
    transform:translateX(0);
  }
}

/* تنسيق خاص بالعنوان الرئيسي فقط */
.hero-title {
  font-family: 'Cinzel', serif; /* اسم الخط الذي استدعيناه من جوجل */
  font-weight: 700; /* سماكة الخط */
  /* يمكنك إضافة المزيد من التنسيقات هنا مثل الحجم واللون إذا أردت */
}



.edu-vic-wa-nt-hand {
  font-family: "Edu VIC WA NT Hand", cursive;
  font-optical-sizing: auto;
  font-weight: 400; /* يمكنك تغيير الرقم إلى 500، 600، أو 700 حسب السماكة المطلوبة */
  font-style: normal;
}

.bubblegum-sans-regular {
  font-family: "Bubblegum Sans", sans-serif !important;
  font-weight: 400 !important;
  font-size: 70px !important;
  font-style: normal !important;
  text-align: center !important;
}



/*==========================
 FOOTER HERO
==========================*/

.footer-hero{

    position:relative;

    background:url("../assets/logos/-5195154001740553321_121.jpg") center center/cover no-repeat;

    padding:120px 0 40px;

    overflow:hidden;

}

.footer-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.82)
    );

}

.footer-content{

    position:relative;

    z-index:2;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:60px;

}

.footer-grid h4{

    color:#fff;

    margin-bottom:20px;

}

.footer-grid a{

    display:block;

    color:#d6d6d6;

    margin-bottom:12px;

    transition:.3s;

}

.footer-grid a:hover{

    color:#fff;

    transform:translateX(8px);

}

.footer-description{

    color:#ddd;

    margin-top:20px;

    line-height:1.8;

}

.footer-bottom{

    margin-top:70px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.15);

    display:flex;

    justify-content:space-between;

    color:#ddd;

    flex-wrap:wrap;

}

.footer-logo{

    width:75px;

}

.footer-brand{

    display:flex;

    align-items:center;

    gap:18px;

}

.footer-brand-title{

    font-size:30px;

    color:#fff;

    font-weight:700;

}

.footer-brand-subtitle{

    color:#dcdcdc;

    letter-spacing:4px;

    text-transform:uppercase;

    font-size:13px;

}

@media(max-width:900px){

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.footer-brand{

justify-content:center;

}

.footer-bottom{

justify-content:center;

gap:10px;

}

}
.footer-hero{
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
}

.comic-neue-light {
  font-family: "Comic Neue", cursive;
  font-weight: 300;
  font-style: normal;
}

.comic-neue-regular {
  font-family: "Comic Neue", cursive;
  font-weight: 400;
  font-style: normal;
}

.comic-neue-bold {
  font-family: "Comic Neue", cursive;
  font-weight: 700;
  font-style: normal;
}

.comic-neue-light-italic {
  font-family: "Comic Neue", cursive;
  font-weight: 300;
  font-style: italic;
}

.comic-neue-regular-italic {
  font-family: "Comic Neue", cursive;
  font-weight: 400;
  font-style: italic;
}

.comic-neue-bold-italic {
  font-family: "Comic Neue", cursive;
  font-weight: 700;
  font-style: italic;
}

.success-message{

margin-top:20px;

padding:16px;

background:#e7fff0;

border:1px solid #22c55e;

color:#15803d;

border-radius:14px;

font-weight:600;

animation:fadeIn .4s;

}

.error-message{

margin-top:20px;

padding:16px;

background:#fff1f2;

border:1px solid #ef4444;

color:#dc2626;

border-radius:14px;

font-weight:600;

animation:fadeIn .4s;

}

@keyframes fadeIn{

from{

opacity:0;

transform:translateY(15px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/* ==========================
   Contact Form
========================== */

.contact-card{

    max-width:750px;

    margin:auto;

    background:#fff;

    border-radius:24px;

    padding:45px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.contact-text{

    color:#777;

    margin-bottom:35px;

    line-height:1.8;

}

.field{

    margin-bottom:22px;

}

.field label{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:10px;

    font-weight:600;

    color:#222;

}

.field label i{

    color:#0B6E99;

    width:20px;

}

.field input,

.field textarea{

    width:100%;

    padding:16px 18px;

    border:1px solid #ddd;

    border-radius:14px;

    font-size:15px;

    transition:.3s;

    background:#fafafa;

}

.field input:focus,

.field textarea:focus{

    border-color:#0B6E99;

    outline:none;

    background:#fff;

    box-shadow:0 0 0 4px rgba(11,110,153,.12);

}

#sendBtn{

    width:100%;

    padding:18px;

    font-size:17px;

    margin-top:10px;

}

#sendBtn i{

    margin-right:8px;

}

#result{

    margin-top:20px;

}


