/* ============= VARIABLES ============= */
:root {
  --gold: #C9943C;
  --gold-light: #E8B86D;
  --gold-dark: #9A6E20;
  --navy: #0D2137;
  --navy-light: #1A3A5C;
  --cream: #FDF6E3;
  --white: #FFFFFF;
  --dark: #1C1C1C;
  --gray: #6B7280;
  --light-gray: #F3F4F6;
  --border: #E5E7EB;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.2);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

/* ============= RESET ============= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--dark); background: var(--white); overflow-x: hidden; line-height: 1.6; }
[dir="rtl"] body { font-family: 'Cairo', sans-serif; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

/* ============= TYPOGRAPHY ============= */
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; line-height: 1.2; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4 { font-family: 'Cairo', sans-serif; font-weight: 700; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--navy); margin-bottom: 0.5rem; }
.section-subtitle { font-size: 1rem; color: var(--gray); margin-bottom: 2.5rem; }
.gold-line { width: 60px; height: 3px; background: var(--gold); margin: 0.75rem 0 1.5rem; }
.text-center .gold-line { margin: 0.75rem auto 1.5rem; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.bg-navy { background: var(--navy); }
.bg-cream { background: var(--cream); }
.text-center { text-align: center; }

/* ============= BUTTONS ============= */
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--white);
  padding: 0.75rem 1.75rem; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; border: 2px solid var(--gold);
  cursor: pointer; transition: all var(--transition); white-space: nowrap; font-family: inherit;
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,148,60,0.4); }
.btn-outline-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--gold);
  padding: 0.75rem 1.75rem; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; border: 2px solid var(--gold);
  cursor: pointer; transition: all var(--transition); font-family: inherit;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--white); color: var(--navy);
  padding: 0.75rem 1.75rem; border-radius: 50px;
  font-weight: 600; border: 2px solid var(--white);
  cursor: pointer; transition: all var(--transition); font-family: inherit;
}
.btn-white:hover { background: transparent; color: var(--white); transform: translateY(-2px); }

/* ============= NAVBAR ============= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 1rem 0;
  transition: all var(--transition);
}
.navbar.scrolled { background: var(--navy); padding: 0.6rem 0; box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; gap: 1rem;
}
.navbar-logo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.navbar-logo img { height: 56px; width: auto; object-fit: contain; border-radius: 0; }
.navbar-logo-text { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--white); line-height: 1.1; }
.navbar-logo-text span { display: block; font-size: 0.65rem; font-family: 'Poppins', sans-serif; font-weight: 300; letter-spacing: 2px; color: var(--gold-light); text-transform: uppercase; }
.navbar-nav { display: flex; align-items: center; gap: 0; flex-grow: 1; justify-content: center; }
.nav-link { color: rgba(255,255,255,0.9); font-size: 0.82rem; font-weight: 500; padding: 0.5rem 0.5rem; border-radius: 6px; transition: all var(--transition); white-space: nowrap; }
.nav-link:hover { color: var(--gold-light); background: rgba(255,255,255,0.1); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-hover); min-width: 210px;
  padding: 0.5rem 0; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all var(--transition); z-index: 100;
  border-top: 3px solid var(--gold);
}
[dir="rtl"] .nav-dropdown-menu { left: auto; right: 0; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-item { display: flex; align-items: center; gap: 0.6rem; padding: 0.65rem 1.25rem; color: var(--dark); font-size: 0.875rem; transition: all var(--transition); }
.nav-dropdown-item:hover { background: var(--cream); color: var(--gold); padding-left: 1.5rem; }
[dir="rtl"] .nav-dropdown-item:hover { padding-left: 1.25rem; padding-right: 1.5rem; }
.nav-dropdown-item i { color: var(--gold); width: 18px; flex-shrink: 0; }

.navbar-actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.lang-toggle, .curr-toggle { display: flex; align-items: center; background: rgba(255,255,255,0.15); border-radius: 50px; padding: 0.2rem; border: 1px solid rgba(255,255,255,0.25); }
.lang-btn, .curr-btn { border-radius: 50px; font-weight: 600; color: rgba(255,255,255,0.7); cursor: pointer; transition: all var(--transition); border: none; background: none; font-family: inherit; }
.lang-btn { padding: 0.3rem 0.75rem; font-size: 0.8rem; }
.curr-btn { padding: 0.18rem 0.5rem; font-size: 0.72rem; letter-spacing: 0.01em; }
.lang-btn.active, .curr-btn.active { background: var(--gold); color: var(--white); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; background: none; border: none; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }

/* Mobile Nav */
.mobile-nav {
  display: block; position: fixed; top: 0; right: -100%; width: 300px;
  height: 100vh; background: var(--navy); z-index: 2000;
  padding: 5rem 1.5rem 2rem; transition: right 0.35s cubic-bezier(0.4,0,0.2,1); overflow-y: auto;
}
[dir="rtl"] .mobile-nav { right: auto; left: -100%; transition: left 0.35s cubic-bezier(0.4,0,0.2,1); }
.mobile-nav.open { right: 0; }
[dir="rtl"] .mobile-nav.open { left: 0; right: auto; }
.mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 1999; }
.mobile-nav-overlay.open { display: block; }
.mobile-nav-close { position: absolute; top: 1.5rem; right: 1.5rem; background: rgba(255,255,255,0.1); border: none; color: var(--white); width: 38px; height: 38px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
[dir="rtl"] .mobile-nav-close { right: auto; left: 1.5rem; }
.mobile-nav-links { display: flex; flex-direction: column; }
.mobile-nav-link { color: rgba(255,255,255,0.85); padding: 0.8rem 0; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.mobile-nav-link:hover { color: var(--gold-light); }
.mobile-chevron { font-size: 0.8rem; transition: transform var(--transition); }
.mobile-nav-sub { display: none; padding: 0.25rem 0 0.25rem 1rem; flex-direction: column; gap: 0; }
[dir="rtl"] .mobile-nav-sub { padding: 0.25rem 1rem 0.25rem 0; }
.mobile-nav-sub.open { display: flex; }
.mobile-nav-sub a { color: rgba(255,255,255,0.65); padding: 0.5rem 0; font-size: 0.875rem; display: block; }
.mobile-nav-sub a:hover { color: var(--gold-light); }

/* ============= HERO ============= */
.hero { position: relative; height: 100vh; min-height: 620px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('../صور/pexels-alexazabache-3723031.jpg'); background-size: cover; background-position: center; transform: scale(1.06); transition: transform 8s ease; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,33,55,0.88) 0%, rgba(13,33,55,0.65) 50%, rgba(201,148,60,0.25) 100%); }
.hero.loaded .hero-bg { transform: scale(1); }
.hero-content { position: relative; z-index: 1; color: var(--white); max-width: 720px; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(201,148,60,0.18); border: 1px solid rgba(201,148,60,0.4); color: var(--gold-light); padding: 0.4rem 1.1rem; border-radius: 50px; font-size: 0.82rem; font-weight: 500; letter-spacing: 1.5px; margin-bottom: 1.25rem; text-transform: uppercase; }
.hero-title { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.25rem; }
.hero-title .highlight { color: var(--gold-light); }
.hero-subtitle { font-size: clamp(1rem, 1.8vw, 1.15rem); color: rgba(255,255,255,0.82); margin-bottom: 2rem; max-width: 520px; line-height: 1.75; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.6); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; animation: bounce 2.5s ease infinite; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(9px)} }

/* ============= SECTIONS ============= */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* ============= STATS BAR ============= */
.stats-bar { background: var(--navy); padding: 2rem 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; color: var(--white); }
.stat-item { padding: 0.5rem; }
.stat-number { font-size: 2.2rem; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; line-height: 1; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 0.35rem; }

/* ============= DESTINATIONS GRID ============= */
.destinations-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 300px 220px; gap: 1rem; }
.dest-card { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.dest-card:first-child { grid-column: 1 / 3; }
.dest-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dest-card:hover .dest-card-img { transform: scale(1.08); }
.dest-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,33,55,0.88) 0%, rgba(13,33,55,0.1) 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; transition: background var(--transition); }
.dest-card:hover .dest-card-overlay { background: linear-gradient(to top, rgba(13,33,55,0.95) 0%, rgba(13,33,55,0.35) 100%); }
.dest-name { font-size: 1.35rem; font-weight: 700; color: var(--white); font-family: 'Playfair Display', serif; }
[dir="rtl"] .dest-name { font-family: 'Cairo', sans-serif; }
.dest-count { font-size: 0.82rem; color: var(--gold-light); margin-top: 0.2rem; }
.dest-explore { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--gold-light); font-size: 0.8rem; font-weight: 500; margin-top: 0.5rem; opacity: 0; transform: translateY(8px); transition: all var(--transition); }
.dest-card:hover .dest-explore { opacity: 1; transform: translateY(0); }
.dest-bg { background-size: cover; background-position: center; width: 100%; height: 100%; position: absolute; inset: 0; transition: transform 0.6s ease; }
.dest-card:hover .dest-bg { transform: scale(1.08); }

/* ============= TOUR CARDS ============= */
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.tour-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition); display: flex; flex-direction: column; }
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.tour-card-img { position: relative; height: 210px; overflow: hidden; }
.tour-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.tour-card:hover .tour-card-img img { transform: scale(1.08); }
.tour-badge { position: absolute; top: 1rem; left: 1rem; background: var(--gold); color: var(--white); padding: 0.25rem 0.8rem; border-radius: 50px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.5px; }
[dir="rtl"] .tour-badge { left: auto; right: 1rem; }
.tour-duration { position: absolute; top: 1rem; right: 1rem; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); color: var(--white); padding: 0.25rem 0.7rem; border-radius: 50px; font-size: 0.72rem; display: flex; align-items: center; gap: 0.3rem; }
[dir="rtl"] .tour-duration { right: auto; left: 1rem; }
.tour-card-body { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.tour-card-title { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; font-family: 'Playfair Display', serif; line-height: 1.3; }
[dir="rtl"] .tour-card-title { font-family: 'Cairo', sans-serif; }
.tour-card-desc { font-size: 0.845rem; color: var(--gray); margin-bottom: 1rem; line-height: 1.65; flex-grow: 1; }
.tour-includes { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.tour-include-tag { background: var(--cream); color: var(--navy); padding: 0.2rem 0.6rem; border-radius: 50px; font-size: 0.72rem; display: flex; align-items: center; gap: 0.25rem; }
.tour-include-tag i { color: var(--gold); font-size: 0.65rem; }
.tour-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); }
.tour-price { display: flex; flex-direction: column; }
.price-from { font-size: 0.72rem; color: var(--gray); }
.price-value { font-size: 1.3rem; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; }
.price-per { font-size: 0.7rem; color: var(--gray); }

/* ============= WHY CHOOSE US ============= */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.why-card { text-align: center; padding: 2rem 1.5rem; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); transition: all var(--transition); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.why-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.7rem; color: var(--white); }
.why-title { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 0.75rem; }
.why-desc { font-size: 0.845rem; color: var(--gray); line-height: 1.75; }

/* ============= FEATURED CRUISE ============= */
.featured-cruise { background: var(--navy); border-radius: var(--radius); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.featured-cruise-img { position: relative; overflow: hidden; }
.featured-cruise-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-cruise-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,33,55,0.3), transparent); }
.featured-cruise-content { padding: 3rem; color: var(--white); display: flex; flex-direction: column; justify-content: center; }
.featured-cruise-content .section-title { color: var(--white); }
.cruise-price { font-size: 2rem; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; margin: 0.75rem 0; }
.cruise-features { display: flex; flex-direction: column; gap: 0.7rem; margin: 1.25rem 0; }
.cruise-feature { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.875rem; color: rgba(255,255,255,0.82); }
.cruise-feature i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

/* ============= NORTH COAST SECTION ============= */
.nc-section { background: linear-gradient(135deg, var(--navy) 0%, #1a3352 100%); color: var(--white); }
.nc-tabs { display: flex; gap: 0.35rem; margin-bottom: 1.75rem; background: rgba(255,255,255,0.08); padding: 0.25rem; border-radius: 50px; width: fit-content; }
.nc-tab { padding: 0.5rem 1.5rem; border-radius: 50px; cursor: pointer; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.65); transition: all var(--transition); border: none; background: none; font-family: inherit; }
.nc-tab.active { background: var(--gold); color: var(--white); }
.nc-gallery { display: none; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.nc-gallery.active { display: grid; }
.nc-gallery-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.nc-gallery-item.nc-large { grid-column: 1 / 3; grid-row: 1 / 3; aspect-ratio: auto; min-height: 280px; }
.nc-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.nc-gallery-item:hover img { transform: scale(1.08); }
.nc-gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background var(--transition); display: flex; align-items: center; justify-content: center; }
.nc-gallery-item:hover .nc-gallery-overlay { background: rgba(0,0,0,0.3); }
.nc-gallery-overlay i { color: var(--white); font-size: 1.75rem; opacity: 0; transform: scale(0.5); transition: all var(--transition); }
.nc-gallery-item:hover .nc-gallery-overlay i { opacity: 1; transform: scale(1); }
.nc-info { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.75rem; }
.nc-info-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 1.5rem; }
.nc-info-title { font-size: 1.05rem; font-weight: 600; color: var(--gold-light); margin-bottom: 0.75rem; }
.nc-info-text { font-size: 0.875rem; color: rgba(255,255,255,0.75); line-height: 1.7; }
.nc-rental-options { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.75rem; }
.nc-rental-tag { background: var(--gold); color: var(--white); padding: 0.25rem 0.85rem; border-radius: 50px; font-size: 0.78rem; font-weight: 600; }

/* ============= CTA BANNER ============= */
.cta-banner { position: relative; overflow: hidden; background: var(--gold); padding: 4.5rem 0; text-align: center; }
.cta-banner::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%); pointer-events: none; }
.cta-title { font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--white); margin-bottom: 0.75rem; }
.cta-subtitle { font-size: 1rem; color: rgba(255,255,255,0.88); margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-cta-white { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--white); color: var(--gold-dark); padding: 0.8rem 2rem; border-radius: 50px; font-weight: 700; border: 2px solid var(--white); cursor: pointer; transition: all var(--transition); font-family: inherit; font-size: 0.95rem; }
.btn-cta-white:hover { background: transparent; color: var(--white); transform: translateY(-2px); }
.btn-cta-outline { display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; color: var(--white); padding: 0.8rem 2rem; border-radius: 50px; font-weight: 600; border: 2px solid rgba(255,255,255,0.7); cursor: pointer; transition: all var(--transition); font-family: inherit; font-size: 0.95rem; }
.btn-cta-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); transform: translateY(-2px); }

/* ============= LIGHTBOX ============= */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 9999; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; background: rgba(255,255,255,0.1); border: none; color: var(--white); width: 42px; height: 42px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.lightbox-close:hover { background: var(--gold); }

/* ============= FOOTER ============= */
.footer { background: #111827; color: rgba(255,255,255,0.72); padding: 4.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-logo-img { height: 64px; width: auto; object-fit: contain; display: block; margin-bottom: 0.75rem; }
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--white); font-weight: 700; }
.footer-logo-text span { color: var(--gold); }
.footer-desc { font-size: 0.845rem; line-height: 1.85; margin: 0.875rem 0 1.5rem; }
.footer-social { display: flex; gap: 0.7rem; }
.footer-social-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.875rem; transition: all var(--transition); }
.footer-social-btn:hover { background: var(--gold); transform: translateY(-3px); }
.footer-title { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 1.25rem; font-family: 'Poppins', sans-serif; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-link { font-size: 0.845rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 0.5rem; transition: color var(--transition); }
.footer-link:hover { color: var(--gold); }
.footer-link i { font-size: 0.65rem; color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.8rem; font-size: 0.845rem; }
.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; width: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ============= WHATSAPP FLOAT ============= */
.wa-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 998; display: flex; align-items: center; gap: 0.75rem; }
[dir="rtl"] .wa-float { right: auto; left: 2rem; }
.wa-tooltip { background: var(--white); color: var(--dark); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.82rem; font-weight: 500; box-shadow: var(--shadow); white-space: nowrap; animation: waAnim 3s ease infinite; }
@keyframes waAnim { 0%,100%{opacity:1;transform:translateX(0)} 50%{opacity:0.8;transform:translateX(-3px)} }
[dir="rtl"] .wa-tooltip { order: 2; }
[dir="rtl"] .wa-btn { order: 1; }
.wa-btn { width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.75rem; box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: all var(--transition); animation: waPulse 2.5s ease infinite; }
.wa-btn:hover { transform: scale(1.12); }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.45)} 50%{box-shadow:0 4px 40px rgba(37,211,102,0.65)} }

/* ============= PAGE HERO ============= */
.page-hero { position: relative; padding: 8rem 0 3.5rem; display: flex; align-items: flex-end; overflow: hidden; background: var(--navy); }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.35; }
.page-hero-content { position: relative; z-index: 1; color: var(--white); width: 100%; }
.breadcrumb-nav { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 0.75rem; }
.breadcrumb-nav a { color: var(--gold-light); }
.breadcrumb-nav a:hover { color: var(--gold); }
.page-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; margin-bottom: 0.5rem; }
.page-subtitle { font-size: 1rem; color: rgba(255,255,255,0.75); max-width: 520px; }

/* ============= TOUR LIST PAGE ============= */
.tours-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn { padding: 0.5rem 1.25rem; border-radius: 50px; border: 1.5px solid var(--border); font-size: 0.845rem; font-weight: 500; cursor: pointer; transition: all var(--transition); background: var(--white); color: var(--gray); font-family: inherit; }
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ============= INQUIRY FORM ============= */
.inquiry-form { background: var(--white); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.845rem; font-weight: 500; color: var(--navy); margin-bottom: 0.5rem; }
.form-control { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: inherit; font-size: 0.875rem; color: var(--dark); transition: border-color var(--transition); background: var(--white); }
.form-control:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,148,60,0.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
textarea.form-control { min-height: 130px; resize: vertical; }
select.form-control { cursor: pointer; }

/* ============= ABOUT PAGE ============= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-hover); }
.about-img-main img { width: 100%; height: 450px; object-fit: cover; }
.about-badge-box { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--gold); color: var(--white); padding: 1.5rem; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); }
[dir="rtl"] .about-badge-box { right: auto; left: -1.5rem; }
.about-badge-num { font-size: 2.5rem; font-weight: 700; font-family: 'Playfair Display', serif; line-height: 1; }
.about-badge-label { font-size: 0.8rem; opacity: 0.9; }
.check-list { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0; }
.check-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; }
.check-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); text-align: center; padding: 2rem 1.5rem; }
.team-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 2rem; color: var(--gold); }
.team-name { font-size: 1.05rem; font-weight: 600; color: var(--navy); }
.team-role { font-size: 0.82rem; color: var(--gold); margin-top: 0.25rem; }

/* ============= CONTACT PAGE ============= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 2.5rem; }
.contact-info-title { font-size: 1.5rem; color: var(--white); margin-bottom: 1.5rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-icon { width: 50px; height: 50px; background: rgba(201,148,60,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.contact-detail-title { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 0.25rem; }
.contact-detail-value { font-size: 0.95rem; color: var(--white); font-weight: 500; }

/* ============= PACKAGES PAGE ============= */
.package-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition); display: grid; grid-template-columns: 320px 1fr; }
.package-card:hover { box-shadow: var(--shadow-hover); }
.package-img { position: relative; overflow: hidden; }
.package-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.package-card:hover .package-img img { transform: scale(1.06); }
.package-badge { position: absolute; top: 1rem; left: 1rem; background: var(--gold); color: var(--white); padding: 0.3rem 0.9rem; border-radius: 50px; font-size: 0.78rem; font-weight: 700; }
[dir="rtl"] .package-badge { left: auto; right: 1rem; }
.package-content { padding: 2rem; }
.package-title { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.package-desc { font-size: 0.875rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.25rem; }
.package-highlights { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.package-highlight { display: flex; align-items: center; gap: 0.6rem; font-size: 0.845rem; color: var(--dark); }
.package-highlight i { color: var(--gold); flex-shrink: 0; }
.package-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.package-price-from { font-size: 0.78rem; color: var(--gray); }
.package-price { font-size: 1.75rem; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; }
.package-price-per { font-size: 0.78rem; color: var(--gray); }
.packages-stack { display: flex; flex-direction: column; gap: 2rem; }

/* ============= SCROLL ANIMATION ============= */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ============= UTILITIES ============= */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.divider { height: 1px; background: var(--border); margin: 2rem 0; }

/* ============= RTL OVERRIDES ============= */
[dir="rtl"] .dest-explore i { transform: rotate(180deg); }
[dir="rtl"] .footer-link i.fa-chevron-right { transform: scaleX(-1); }
[dir="rtl"] .breadcrumb-nav .fa-chevron-right { transform: scaleX(-1); }

/* ============= RESPONSIVE ============= */
@media (max-width: 1100px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .featured-cruise { grid-template-columns: 1fr; }
  .featured-cruise-img { height: 280px; }
  .package-card { grid-template-columns: 280px 1fr; }
  .tours-list-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1200px) {
  .navbar-nav { display: none; }
  .hamburger { display: flex; }
  .navbar-actions .btn-gold { display: none; }
  .navbar-actions .curr-toggle { display: none; }
  .navbar-actions .lang-toggle { display: none; }
}
@media (min-width: 1201px) and (max-width: 1380px) {
  .navbar-actions .btn-gold span { display: none; }
  .navbar-actions .btn-gold { padding: 0.6rem 0.75rem; gap: 0; }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nc-gallery { grid-template-columns: repeat(2, 1fr); }
  .nc-gallery-item.nc-large { grid-column: 1 / 3; }
  .nc-info { grid-template-columns: 1fr; }
  .package-card { grid-template-columns: 1fr; }
  .package-img { height: 220px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dest-card:first-child { grid-column: 1 / 3; height: 220px; }
  .tours-grid { grid-template-columns: 1fr; }
  .tours-list-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 3.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .wa-tooltip { display: none; }
  .nc-gallery { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .destinations-grid { grid-template-columns: 1fr; }
  .dest-card:first-child { grid-column: 1; }
  .hero-actions { flex-direction: column; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .nc-gallery { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .hero-bg { transition: none; }
  .fade-up { transition: none; }
}

/* Related Articles Section */
.related-section { background: var(--light-gray, #F5F7FA); padding: 3rem 0; margin-top: 0; }
.related-section .inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.related-section h2 { font-size: 1.4rem; color: var(--navy, #0D2137); margin-bottom: 1.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold, #C9943C); display: inline-block; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; }
.related-card { background: var(--white, #fff); border-radius: 10px; padding: 1.3rem 1.5rem; text-decoration: none; border: 1px solid var(--border, #E5E7EB); border-left: 4px solid var(--gold, #C9943C); transition: box-shadow .2s, transform .2s; display: block; }
.related-card[dir="rtl"], .related-card.rtl { border-left: 1px solid var(--border, #E5E7EB); border-right: 4px solid var(--gold, #C9943C); }
.related-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.09); transform: translateY(-3px); }
.related-card .rc-tag { font-size: .7rem; font-weight: 700; color: var(--gold, #C9943C); text-transform: uppercase; letter-spacing: .5px; margin-bottom: .4rem; display: block; }
.related-card h3 { font-size: .92rem; color: var(--navy, #0D2137); font-weight: 700; line-height: 1.5; margin: 0; }
.related-card p { font-size: .82rem; color: var(--gray, #6B7280); margin: .4rem 0 0; line-height: 1.6; }
@media (max-width: 600px) { .related-grid { grid-template-columns: 1fr; } }
