
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Poppins:wght@300;400;500;600&family=Montserrat:wght@300;400;500;600;700&display=swap');
:root {
  --navy: #0d1b2a;
  --navy-mid: #1a2e44;
  --gold: #C49A3C;
  --gold-light: #e0c896;
  --gold-dark: #a0824a;
  --white: #ffffff;
  --sand: #f5efe6;
  --beige: #ede4d6;
  --gray-light: #f0f2f5;
  --gray-mid: #8b919a;
  --text-dark: #1a1a2e;
  --text-mid: #3a4455;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 8px 40px rgba(13,27,42,0.12);
  --shadow-gold: 0 8px 32px rgba(200,169,110,0.25);
  --transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  
}
/* ─── LOADING SCREEN ─────────────────────── */
#loader {
  position: fixed; inset: 0;
   z-index: 9999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
   gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hide { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 2.2rem;
  letter-spacing: 3px;
  animation: pulse 1.5s ease-in-out infinite;
}
.loader-bar {
  width: 200px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 99px; overflow: hidden;
}
.loader-bar-fill {
  height: 100%; background: var(--gold);
  border-radius: 99px;
  animation: loadBar 2s ease forwards;
}
@keyframes loadBar { 0%{width:0} 100%{width:100%} }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }

/* ─── SCROLLBAR ───────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 99px; }

/* ─── NAVBAR ──────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 24px 40px;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(13,27,42,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px 40px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1400px; margin: 0 auto;
}
.nav-logo{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img{
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav-logo-text{
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1px;
}
.nav-logo-text span{
  color: var(--gold);
  display: block;
  font-size: 1rem;
}

.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content:''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active {
  color: var(--gold);
}

.nav-links a.active::after {
  width: 100%;
}
/* dropdown */
.dropdown{
    position: relative;
}

.dropdown-btn{
    background: none;
    border: none;
    color: rgba(255,255,255,0.85);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}

.dropdown-btn i{
    font-size: 12px;
    transition: 0.3s;
}

.dropdown-menu{
    position: absolute;
    top: 45px;
    left: 0;
    width: 240px;
    background: white;
    border-radius: 16px;
    padding: 12px 0;
    list-style: none;
    margin: 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);

    display: none;   /* أهم نقطة */
    z-index: 99999;
}

.dropdown-menu li{
    width: 100%;
}

.dropdown-menu a{
    display: block;
    padding: 14px 20px;
    color: #222 !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.dropdown-menu a:hover{
    background: #f8f8f8;
    color: #d89b00 !important;
    padding-left: 28px;
}

.show-all{
    color: #d89b00 !important;
    font-weight: 700;
    /* text-align: center; */
}

/* show menu */
.dropdown:hover .dropdown-menu{
    display: block;
}

.dropdown:hover .dropdown-btn i{
    transform: rotate(180deg);
}
.dropdown-menu{
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    background: white;
    border-radius: 16px;
    padding: 12px 0;
    list-style: none;
    margin: 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);

    display: none;
    z-index: 99999;
}

.dropdown-menu.active{
    display: block;
}

/* ─── CHAT BUTTON ─────────────────────────── */
#chatToggle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--navy); box-shadow: var(--shadow-gold);
  transition: var(--transition); position: relative; z-index: 1001;
  flex-shrink: 0;
}
#chatToggle:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(200,169,110,0.45); }

.chat-wrapper{
   transition: opacity .15s ease;
}
.chat-wrapper.floating{
   position: fixed !important;
   left: 20px;
   bottom: 20px;
   z-index: 99999;
}
.chat-wrapper.floating #chatToggle{
   width:44px;
   height:44px;
}
.chat-panel {
  position: absolute; right: 0; top: 60px;
  background: var(--white); border-radius: var(--radius);
  padding: 16px 12px; display: flex; flex-direction: column; gap: 10px;
  box-shadow: var(--shadow); opacity: 0; pointer-events: none;
  transform: translateY(-10px) scale(0.95); transition: var(--transition);
  min-width: 52px; align-items: center;
}
.chat-panel.open { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }
.chat-panel a {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; text-decoration: none; transition: transform 0.2s;
}
.chat-panel a:hover { transform: scale(1.15); }
.chat-panel a.wa { background: #25D366; color: #fff; }
.chat-panel a.fb { background: #1877F2; color: #fff; }
.chat-panel a.ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.chat-panel a.ph { background: var(--navy); color: #fff; }
.chat-panel a.em { background: var(--gold); color: var(--navy); }

.chat-wrapper .chat-panel{
   top: 60px;
   bottom: auto;
}
.chat-wrapper.floating .chat-panel{
   top: auto;
   bottom: 60px;
}
.chat-panel{
   transition: all 0.3s ease;
}
.chat-wrapper.floating .chat-panel{
   transform-origin: bottom left;
}

/* ─── HERO SECTION ────────────────────────── */
#hero {
  height: 100vh; min-height: 700px;
  position: relative; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('https://images.unsplash.com/photo-1539768942893-daf53e448371?w=1800&q=80') center/cover no-repeat;
  transform: scale(1.08);
  transition: transform 0.1s linear;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(13,27,42,0.75) 0%, rgba(13,27,42,0.4) 60%, rgba(13,27,42,0.65) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center; color: var(--white);
  max-width: 800px; padding: 0 24px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Montserrat', sans-serif; font-size: 0.72rem;
  font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
}
.hero-tag::before, .hero-tag::after {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.8s 0.8s forwards;
}
.hero-h1 em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.8);
  margin-bottom: 40px; letter-spacing: 0.5px;
  opacity: 0; animation: fadeUp 0.8s 1.1s forwards;
}
.hero-cta {
  opacity: 0; animation: fadeUp 0.8s 1.4s forwards;
}
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy);
  padding: 16px 36px; border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; border: 2px solid var(--gold);
  transition: var(--transition); cursor: pointer;
}
.btn-gold:hover {
  background: transparent; color: var(--gold);
  box-shadow: 0 0 40px rgba(200,169,110,0.4);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--gold);
  padding: 14px 32px; border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; border: 2px solid var(--gold);
  transition: var(--transition); cursor: pointer;
}
.btn-outline:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 2px;
  text-transform: uppercase; animation: bounce 2s infinite;
}
.hero-scroll-line {
  margin-bottom: 30px;
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(200,169,110,0.7));
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* Particles */
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(200,169,110,0.15); pointer-events: none; z-index: 1;
  animation: float linear infinite;
}
@keyframes float {
  0%{transform:translateY(100vh) rotate(0)} 100%{transform:translateY(-100px) rotate(720deg)}
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.15);
  transition: opacity 1.2s ease, transform 6s ease;
}

/* الصور */
.hero-bg:nth-child(1){
  background-image: url('https://images.unsplash.com/photo-1539768942893-daf53e448371?w=1800&q=80');
}
.hero-bg:nth-child(2){
 background-image: url(../imgs/hero1.jpg)
}
.hero-bg:nth-child(3){
  background-image: url(../imgs/hero2.jpg);
}

/* active slide */
.hero-bg.active {
  opacity: 1;
  transform: scale(1.05);
}
.hero-bg.active {
  opacity: 1;
  animation: zoomPan 5s ease-in-out forwards;
}

/* حركة شبه الفيديو */
@keyframes zoomPan {
  0% {
    transform: scale(1.2) translate(0, 0);
  }
  50% {
    transform: scale(1.1) translate(-10px, -10px);
  }
  100% {
    transform: scale(1.05) translate(0, 0);
  }
}
/* ─── SECTION COMMON ─────────────────────── */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy); font-weight: 700; line-height: 1.2; margin-bottom: 16px;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-sub { color: var(--gray-mid); font-size: 1rem; max-width: 540px; margin: 0 auto; }
.container-fluid-pad { padding: 0 clamp(20px, 5vw, 80px); }

/* ─── TOUR TYPE CARDS (Section 1) ────────── */
#tour-categories { background: var( --white); }
#tour-categories .section-title { color: var(--white); }
#tour-categories .section-sub { color: rgba(255,255,255,0.5); }

.tour-cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: 1300px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
.tour-cat-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.tour-cat-card:hover { transform: translateY(-8px) scale(1.01); }
.tour-cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.tour-cat-card:hover img { transform: scale(1.08); }
.tour-cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.1) 60%);
}
.tour-cat-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 28px;
}
.tour-cat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; letter-spacing: 3px; color: var(--gold);
  text-transform: uppercase; margin-bottom: 8px;
}
.tour-cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--white); font-weight: 600;
}
.tour-cat-arrow {
  position: absolute; top: 28px; right: 28px; width: 42px; height: 42px;
  border: 1px solid rgba(200,169,110,0.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.9rem; transition: var(--transition);
  transform: rotate(-45deg);
}
.tour-cat-card:hover .tour-cat-arrow {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
  transform: rotate(0deg);
}

/* ─── CUSTOM PLAN CTA ─────────────────────── */
#plan-cta {
  position: relative;
  background: var(--navy);
  padding: 80px 0;
  overflow: hidden;
}

/* الشكل الديكوري */
.cta-shape{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 1;          /* خفيف عشان الكلام يفضل واضح */
  z-index: 1;
  pointer-events: none;
}

/* المحتوى فوق الشكل */
.plan-cta-inner {
  position: relative;
  z-index: 2;

  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.plan-cta-inner .section-title {
  color: var(--white);
}

.plan-cta-inner p {
  color: var(--text-mid);
  margin-bottom: 48px;
  font-size: 1.05rem;
}

/* الأسهم */
.arrow-animate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}

.arrow-animate span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: arrowBounce 1.2s ease-in-out infinite;
}

.arrow-animate span:nth-child(2) { animation-delay: 0.15s; }
.arrow-animate span:nth-child(3) { animation-delay: 0.3s; }

@keyframes arrowBounce {
  0%,100% { opacity:0.3; transform:rotate(45deg) translateY(-4px); }
  50% { opacity:1; transform:rotate(45deg) translateY(4px); }
}

/* ─── TOUR CATEGORIES V2 (Section 3) ─────── */
#tour-categories-2 { background: var(--white); }

.tour-cat2-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 1300px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
.tour-cat2-grid .tour-cat2-main {
  grid-row: span 2;
}
.tour-cat2-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer;
  min-height: 280px;
}
.tour-cat2-grid .tour-cat2-main { min-height: auto; }
.tour-cat2-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.tour-cat2-card:hover img { transform: scale(1.06); }
.tour-cat2-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.8) 0%, rgba(13,27,42,0.2) 100%);
  transition: background 0.4s;
}
.tour-cat2-card:hover .tour-cat2-overlay {
  background: linear-gradient(135deg, rgba(200,169,110,0.7) 0%, rgba(13,27,42,0.3) 100%);
}
.tour-cat2-content {
  position: absolute; bottom: 28px; left: 28px; right: 28px; color: var(--white);
}
.tour-cat2-content h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 6px; }
.tour-cat2-content p { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.tour-cat2-tag {
  position: absolute; top: 20px; left: 20px;
  background: rgba(200,169,110,0.9); color: var(--navy);
  padding: 4px 12px; border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
}
/* ================= SAFE SECTION ONLY ================= */
#tourCategorySlider{
    position: relative;
    width: 100%;
}

/* wrap */
#tourCategorySlider .tour-slider-wrap{
    position: relative;
    padding: 0 70px;
}

/* ================= CARD ================= */
#tourCategorySlider .tour-slider-card{
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform .4s cubic-bezier(0.23,1,0.32,1);
}

#tourCategorySlider .tour-slider-card:hover{
    transform: translateY(-8px) scale(1.01);
}

#tourCategorySlider .tour-slider-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition: transform .7s cubic-bezier(0.23,1,0.32,1);
}

#tourCategorySlider .tour-slider-card:hover img{
    transform: scale(1.08);
}

/* overlay */
#tourCategorySlider .tour-slider-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(13,27,42,.92) 0%,
        rgba(13,27,42,.1) 60%
    );
}

/* content */
#tourCategorySlider .tour-slider-content{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    padding:32px 28px;
    z-index:5;
}

#tourCategorySlider .tour-slider-content span{
    display:block;
    font-family:'Montserrat',sans-serif;
    font-size:.7rem;
    letter-spacing:3px;
    color:#d4af37;
    text-transform:uppercase;
    margin-bottom:8px;
}

#tourCategorySlider .tour-slider-content h4{
    font-family:'Playfair Display',serif;
    font-size:1.6rem;
    color:#fff;
    font-weight:600;
    margin:0;
}

/* top icon */
#tourCategorySlider .tour-slider-icon{
    position:absolute;
    top:28px;
    right:28px;
    width:42px;
    height:42px;
    border:1px solid rgba(200,169,110,.4);
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#d4af37;
    font-size:.9rem;

    transition:.4s ease;
    transform:rotate(-45deg);
    z-index:5;
}

#tourCategorySlider .tour-slider-card:hover .tour-slider-icon{
    background:#d4af37;
    color:#0d1b2a;
    border-color:#d4af37;
    transform:rotate(0deg);
}

/* arrows */
#tourCategorySlider .tour-slider-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;

    width: 58px;
    height: 58px;
    border: none;
    border-radius: 50%;
    cursor: pointer;

    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);

    color: #d4af37;
    font-size: 22px;

    transition: .35s;
}

#tourCategorySlider .tour-slider-arrow:hover{
    background: #d4af37;
    color: #111;
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 0 25px rgba(212,175,55,.45);
}

#tourCategorySlider .tour-slider-arrow.prev{
    left: 20px;
}

#tourCategorySlider .tour-slider-arrow.next{
    right: 20px;
}

/* mobile */
@media(max-width:768px){

#tourCategorySlider .tour-slider-wrap{
    padding: 0 55px;
}

#tourCategorySlider .tour-slider-arrow{
    width: 45px;
    height: 45px;
    font-size: 18px;
}

#tourCategorySlider .tour-slider-card{
    height: 350px;
}

}
/* ─── POPULAR TOURS ───────────────────────── */
#popular-tours {
  position: relative;
  background: var(--gray-light);
  overflow: hidden;
}
.tours-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 4;   /* خفيف عشان الكروت تفضل واضحة */
  z-index: 1;
  pointer-events: none;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
.tour-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 4px 24px rgba(13,27,42,0.08);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.tour-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }

.tour-card-img {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.tour-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.tour-card:hover .tour-card-img img { transform: scale(1.06); }

.tour-card-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--navy);
  padding: 5px 14px; border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px;
}
.tour-card-wish {
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px;
  background: rgba(255,255,255,0.9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.9rem; cursor: pointer;
  transition: var(--transition);
}
.tour-card-wish:hover { background: var(--gold); color: var(--white); }

.tour-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.tour-card-location {
  display: flex; align-items: center; gap: 6px;
  color: var(--gold); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px;
}
.tour-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: var(--navy); font-weight: 600;
  margin-bottom: 14px; line-height: 1.3;
}
.tour-card-meta {
  display: flex; gap: 16px; margin-bottom: 20px;
}
.tour-meta-item {
  display: flex; align-items: center; gap: 6px;
  color: var(--gray-mid); font-size: 0.8rem;
}
.tour-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--gray-light); padding-top: 16px; margin-top: auto;
}
.tour-price { display: flex; flex-direction: column; }
.tour-price-from { font-size: 0.7rem; color: var(--gray-mid); }
.tour-price-val { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--navy); font-weight: 700; }
.tour-price-val span { font-size: 0.85rem; color: var(--gold); }

.btn-sm-gold {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--navy); color: var(--white);
  padding: 10px 22px; border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 1px;
  text-decoration: none; border: none; cursor: pointer;
  transition: var(--transition);
}
.btn-sm-gold:hover { background: var(--gold); color: var(--navy); }
#popular-tours .section-header,
.tours-grid {
  position: relative;
  z-index: 2;
}


/* ─── FEATURE COMPANY ─────────────────────── */
#feature-company { background: var(--white); overflow: hidden; position: relative; min-height: 600px; }
#feature-company .section-title { color: var(--navy); }
#feature-company .section-tag { color: var(--gold); }

.feature-canvas {
  position: relative; max-width: 1200px; margin: 60px auto 0;
  padding: 0 40px; min-height: 480px;
}

.feature-block {
  position: absolute; max-width: 240px;
  background: rgba(16, 15, 15, 0.04);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: var(--radius); padding: 28px 24px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.feature-block:hover {
  background: rgba(200,169,110,0.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.feature-block-icon {
  font-size: 2rem; margin-bottom: 12px;
}
.feature-block-title {
  font-family: 'Playfair Display', serif;
  color: var(--gold); font-size: 1.15rem; margin-bottom: 8px;
}
.feature-block-text { color:#1a2e44; font-size: 0.85rem; line-height: 1.6; }

.feature-block-1 { top: 0; left: 5%; }
.feature-block-2 { top: 60px; left: 35%; }
.feature-block-3 { top: 20px; right: 5%; }
.feature-block-4 { top: 240px; left: 15%; }
.feature-block-5 { top: 260px; right: 12%; }

/* SVG path */
.feature-paths {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}
.feature-path {
  fill: none; stroke: var(--gold); stroke-width: 1.5;
  stroke-dasharray: 800; stroke-dashoffset: 800;
  stroke-linecap: round; opacity: 0.3;
  transition: stroke-dashoffset 2s ease;
}
.feature-path.drawn { stroke-dashoffset: 0; }
.feature-dot {
  fill: var(--gold); r: 4; opacity: 0.5;
}

/* ─── STATS STRIP ─────────────────────────── */
#stats {
  position: relative;
  background: var(--gold);
  padding: 60px 0;
  overflow: hidden;
}

/* الشكل الديكوري */
.stats-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

/* المحتوى فوق الشكل */
.stats-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;

  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

/* العناصر */
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(13, 27, 42, 0.65);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ─── FOOTER ──────────────────────────────── */
footer {
  background: var(--navy); padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: start;
  max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px) 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
}
.footer-grid > div:last-child {
  justify-self: end; /* يزقها لليمين */
  max-width: 350px; /* يتحكم في العرض عشان ما تتمددش زيادة */
}
.footer-logo{
    width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
}
.footer-logo img{
    width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; font-weight: 700;
}
.footer-social { display: flex; flex-direction: column; gap: 12px; }
.footer-social a {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 0.88rem; transition: color 0.3s;
}
.footer-social a:hover { color: var(--gold); }
.footer-social a .icon {
  width: 36px; height: 36px; border: 1px solid rgba(200,169,110,0.2);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover .icon { border-color: var(--gold); background: rgba(200,169,110,0.1); }

.footer-logo-center { text-align: center; }
.footer-logo-mark {
  font-family: 'Playfair Display', serif; color: var(--white);
  font-size: 1.5rem; margin-bottom: 8px;
}
.footer-logo-mark span { color: var(--gold); }
.footer-logo-sub { color: rgba(255,255,255,0.35); font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; }
.footer-logo-divider { width: 60px; height: 1px; background: var(--gold); margin: 16px auto; }

.footer-goal { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.8;
 }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 40px; text-align: center;
  color: rgba(255,255,255,0.3); font-size: 0.78rem;
}

/* ─── BACK TO TOP ─────────────────────────── */
#backTop {
  position: fixed; right: 24px; bottom: 24px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); border: 1px solid var(--gold);
  color: var(--gold); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: var(--transition); z-index: 999;
}
#backTop.show { opacity: 1; pointer-events: all; }
#backTop:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }

/* ─── ANIMATIONS ──────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

[data-aos="fade-up"] {
  opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="fade-up"].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-left"] {
  opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="fade-left"].aos-animate { opacity: 1; transform: translateX(0); }
[data-aos="fade-right"] {
  opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="fade-right"].aos-animate { opacity: 1; transform: translateX(0); }
[data-aos="zoom-in"] {
  opacity: 0; transform: scale(0.9); transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="zoom-in"].aos-animate { opacity: 1; transform: scale(1); }

/* ─── TOUR DETAILS PAGE ───────────────────── */
.detail-hero {
  height: 55vh; min-height: 400px; position: relative;
  display: flex; align-items: flex-end;
}
.detail-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.detail-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.9) 0%, rgba(13,27,42,0.1) 60%);
}
.detail-hero-content {
  position: relative; z-index: 1; padding: 0 clamp(20px, 5vw, 80px) 48px; color: var(--white);
}
.breadcrumb-trail { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.breadcrumb-trail a { color: var(--gold); text-decoration: none; font-size: 0.82rem; }
.breadcrumb-trail span { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.detail-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700;
}

.detail-body { padding: 60px clamp(20px, 5vw, 80px); max-width: 1400px; margin: 0 auto; }
.detail-row { display: grid; grid-template-columns: 1fr 380px; gap: 48px; }

/* Gallery */
.gallery-main img { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 16/9; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 12px; margin-top: 12px; }
.gallery-thumbs img {
  width: 80px; height: 60px; border-radius: 8px; object-fit: cover; cursor: pointer;
  border: 2px solid transparent; transition: border-color 0.2s;
  flex-shrink: 0;
}
.gallery-thumbs img.active, .gallery-thumbs img:hover { border-color: var(--gold); }

/* Detail meta strip */
.detail-meta-strip {
  display: flex; flex-wrap: wrap; gap: 20px;
  background: var(--sand); border-radius: var(--radius); padding: 24px 28px;
  margin: 28px 0;
}
.detail-meta-item {
  display: flex; flex-direction: column; min-width: 120px;
}
.detail-meta-label { font-size: 0.7rem; color: var(--gray-mid); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.detail-meta-val { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); font-weight: 600; }
.detail-meta-val.price { color: var(--gold); font-size: 1.3rem; }

/* Overview */
.detail-section-title {
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  color: var(--navy); margin-bottom: 16px; margin-top: 36px;
}
.detail-section-title:first-child { margin-top: 0; }
.detail-text { color: var(--text-mid); line-height: 1.9; margin-bottom: 16px; }

/* Highlights */
.highlights-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.highlights-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--text-mid); font-size: 0.9rem; line-height: 1.5;
}
.highlights-list li::before {
  content: '✦'; color: var(--gold); flex-shrink: 0; margin-top: 2px;
}

/* Included / Excluded */
.inc-exc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.inc-list li { color: #2d7a4f; }
.exc-list li { color: #b03030; }
.inc-list li::before { content: '✓'; color: #2d7a4f; }
.exc-list li::before { content: '✗'; color: #b03030; }

/* Accordion / Itinerary */
.accordion-item {
  border: 1px solid var(--beige); border-radius: 10px; margin-bottom: 10px; overflow: hidden;
}
.accordion-btn {
  width: 100%; text-align: left; padding: 16px 20px;
  background: var(--sand); border: none; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 600;
  color: var(--navy); display: flex; justify-content: space-between; align-items: center;
  transition: background 0.2s;
}
.accordion-btn:hover { background: var(--beige); }
.accordion-btn .icon { transition: transform 0.3s; font-size: 0.8rem; color: var(--gold); }
.accordion-btn.open .icon { transform: rotate(180deg); }
.accordion-body { display: none; padding: 16px 20px; color: var(--text-mid); font-size: 0.88rem; line-height: 1.8; }
.accordion-body.open { display: block; }

/* Booking Form */
.booking-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 32px 28px;
  position: sticky; top: 100px;
}
.booking-card-title {
  font-family: 'Playfair Display', serif;
  color: var(--navy); font-size: 1.3rem; margin-bottom: 6px;
}
.booking-card-price { color: var(--gold); font-size: 0.9rem; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; letter-spacing: 0.5px; }
.form-control {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--beige);
  border-radius: 10px; font-family: 'Poppins', sans-serif; font-size: 0.85rem;
  color: var(--navy); background: var(--gray-light);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,169,110,0.15); background: #fff; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

#successMsg {
  margin-top: 16px; padding: 14px 18px;
  background: rgba(45,122,79,0.08); border: 1px solid rgba(45,122,79,0.25);
  border-radius: 10px; color: #2d7a4f; font-size: 0.88rem;
  display: none; align-items: center; gap: 10px;
}
#successMsg.show { display: flex; }

/* ─── ABOUT PAGE ──────────────────────────── */
.about-hero {
  height: 50vh; background: url('https://images.unsplash.com/photo-1591018653054-4e31a41c9f77?w=1600&q=80') center/cover no-repeat;
  position: relative; display: flex; align-items: center; justify-content: center;
}
.about-hero::after { content:''; position: absolute; inset: 0; background: rgba(13,27,42,0.7); }
.about-hero-text { position: relative; z-index: 1; text-align: center; color: var(--white); }
.about-hero-text h1 { font-family: 'Playfair Display', serif; font-size: 3rem; }

.about-section { max-width: 900px; margin: 0 auto; padding: 80px 24px; }
.about-lead { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--navy); margin-bottom: 28px; line-height: 1.5; }
.about-body { color: var(--text-mid); line-height: 1.9; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.about-value { background: var(--sand); border-radius: var(--radius); padding: 28px; }
.about-value-icon { font-size: 1.8rem; margin-bottom: 12px; }
.about-value h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.about-value p { font-size: 0.88rem; color: var(--gray-mid); }

/* ─── CONTACT PAGE ────────────────────────── */
.contact-section { padding: 100px 0; background: var(--sand); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--navy); margin-bottom: 20px; }
.contact-info p { color: var(--text-mid); margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-detail-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--gold); display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 1rem; flex-shrink: 0; }
.contact-detail-text strong { display: block; color: var(--navy); font-size: 0.82rem; margin-bottom: 2px; }
.contact-detail-text span { color: var(--gray-mid); font-size: 0.88rem; }

.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px 36px; box-shadow: var(--shadow); }
.contact-form-card h3 { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1.5rem; margin-bottom: 24px; }

/* ─── MOBILE HAMBURGER ────────────────────── */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .tour-cat-grid, .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-row { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .feature-block { position: static !important; max-width: 100%; margin-bottom: 16px; }
  .feature-canvas { min-height: auto; display: flex; flex-direction: column; gap: 16px; }
  .feature-paths { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-social { align-items: center; }
}

@media (max-width: 768px) {
  #navbar { padding: 18px 20px; }
  #navbar.scrolled { padding: 12px 20px; }
  .nav-links { display: none; position: fixed; inset: 0; background: var(--navy); flex-direction: column; justify-content: center; align-items: center; gap: 32px; z-index: 999; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .tour-cat-grid { grid-template-columns: 1fr; }
  .tour-cat2-grid { grid-template-columns: 1fr; }
  .tours-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .inc-exc-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 2.2rem; }
  section { padding: 70px 0; }
  .footer-grid { grid-template-columns: 1fr; }
}

.reviews-section{
    background:#f8f8f8;
    border-radius:12px;
    padding:30px;
}

/* LEFT */
.review-info img{
    width:100%;
    border-radius:10px;
    width: 100px;
    height: 100px;
}

.review-info h3{
    margin:10px 0;
    font-size:20px;
}

.review-info p{
    color:#777;
    font-size:14px;
}

/* BUTTON GOLD */
.review-btn{
    display:inline-block;
    background:#c9a44c;
    color:#fff;
    padding:10px 20px;
    border-radius:6px;
    text-decoration:none;
    transition:0.3s;
}

.review-btn:hover{
    background:#a8842e;
    transform:translateY(-2px);
}

/* CARD */
.review-card{
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}
.review-text{
    line-height: 1.6;
    position: relative;
}

.read-more{
    color: #d4af37; /* دهبي */
    font-weight: 600;
    margin-left: 8px;
    text-decoration: none;
    white-space: nowrap;
}

.read-more:hover{
    text-decoration: underline;
}

.review-card .top{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:10px;
}

.review-card .top img{
    width:45px;
    height:45px;
    border-radius:50%;
    object-fit:cover;
}

.review-card h4{
    margin:0;
    font-size:16px;
}

.review-card span{
    font-size:12px;
    color:#888;
}

.review-card p{
    font-size:14px;
    color:#555;
}

.review-card a{
    font-size:13px;
    color:#777;
    text-decoration:none;
}

/* RATING DOTS */
.rating{
    display:flex;
    gap:5px;
    margin:10px 0;
}

.rating span{
    width:12px;
    height:12px;
    border-radius:50%;
    border:2px solid #00aa6c;
}

.rating span:nth-child(-n+5){
    background:#00aa6c;
}
/* SECTION بدون خلفية */
.reviews-section{
    background: transparent; /* أو احذفها خالص */
    padding:30px 0;
}

/* CARD */
.review-card{
    background:#fff;
    padding:20px;
    border-radius:12px;

    /* بوكس شادو أوضح وأنضف */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition:0.3s;
}

/* تأثير خفيف عند الهوفر */
.review-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
/* ============================================================
   EGYPT IN TOURS — PREMIUM MOBILE-FIRST RESPONSIVE CSS
   Covers: Navbar · Hero · All Sections · Footer
   ============================================================ */

/* ─── BASE MOBILE RESETS (applies ≤ 768px) ──────────────────── */
@media (max-width: 768px) {

  /* ── Root Adjustments ── */
  :root {
    --radius: 12px;
    --radius-lg: 18px;
  }

  html { font-size: 15px; }

  section { padding: 60px 0; }

  /* ══════════════════════════════════════════════
     NAVBAR — Full Premium Mobile Redesign
  ══════════════════════════════════════════════ */

  #navbar {
    padding: 0;
    background: rgba(13, 27, 42, 0.0);
    transition: background 0.45s ease, padding 0.45s ease;
  }

  #navbar.scrolled {
    background: rgba(13, 27, 42, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 0;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
  }

  .nav-inner {
    padding: 0 18px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }

  /* Logo */
  .nav-logo {
    gap: 8px;
    flex-shrink: 0;
  }

  .nav-logo-img {
    width: 36px;
    height: 36px;
  }

  .nav-logo-text {
    font-size: 1rem;
    letter-spacing: 0.5px;
  }

  .nav-logo-text span {
    font-size: 0.82rem;
  }

  /* Right side controls */
  .nav-inner > div:last-child {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* Chat toggle */
  #chatToggle {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    box-shadow: 0 4px 18px rgba(196, 154, 60, 0.35);
  }

  /* Chat panel repositioned for mobile */
  .chat-panel {
    right: 0;
    top: 52px;
    padding: 12px 10px;
    gap: 8px;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(13,27,42,0.22);
  }

  .chat-panel a {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    font-size: 1.1rem;
  }

  /* ── Hamburger — Premium Redesign ── */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(196, 154, 60, 0.12);
    border: 1px solid rgba(196, 154, 60, 0.3);
    cursor: pointer;
    padding: 0;
    position: relative;
    transition: background 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
  }

  .hamburger:hover {
    background: rgba(196, 154, 60, 0.22);
    border-color: rgba(196, 154, 60, 0.6);
  }

  .hamburger span {
    display: block;
    width: 18px;
    height: 1.8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.38s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.25s ease,
                top 0.38s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .hamburger span:nth-child(1) { top: 13px; }
  .hamburger span:nth-child(2) { top: 19px; opacity: 1; }
  .hamburger span:nth-child(3) { top: 25px; }

  /* Open state — transforms into elegant X */
  .hamburger.active span:nth-child(1) {
    top: 19px;
    transform: translateX(-50%) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
  }

  .hamburger.active span:nth-child(3) {
    top: 19px;
    transform: translateX(-50%) rotate(-45deg);
  }

  .hamburger.active {
    background: rgba(196, 154, 60, 0.18);
    border-color: var(--gold);
  }

  /* ── Mobile Nav Links Overlay ── */
  .nav-links {
    display: flex !important;
    position: fixed;
    inset: 0;
    background: rgba(13, 27, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 998;
    padding: 80px 40px 60px;

    /* Hidden by default */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .nav-links.open li { opacity: 1; transform: translateY(0); }
  .nav-links.open li:nth-child(1) { transition-delay: 0.08s; }
  .nav-links.open li:nth-child(2) { transition-delay: 0.14s; }
  .nav-links.open li:nth-child(3) { transition-delay: 0.20s; }
  .nav-links.open li:nth-child(4) { transition-delay: 0.26s; }

  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid rgba(196, 154, 60, 0.12);
    transition: color 0.3s ease;
  }

  .nav-links li:last-child a { border-bottom: none; }

  .nav-links a:hover { color: var(--gold); }

  .nav-links a::after { display: none; }

  /* Decorative gold line in menu */
  .nav-links::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    opacity: 0.6;
  }

  /* ══════════════════════════════════════════════
     HERO SECTION — Exact Desktop Feel, Mobile Adapted
  ══════════════════════════════════════════════ */

  #hero {
    height: 100svh;
    min-height: 620px;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 24px;
    margin-top: -20px;
  }

  .hero-tag {
    font-size: 0.65rem;
    letter-spacing: 3px;
    margin-bottom: 18px;
  }

  .hero-tag::before,
  .hero-tag::after {
    width: 20px;
  }

  .hero-h1 {
    font-size: clamp(2.2rem, 9vw, 3rem);
    margin-bottom: 16px;
    line-height: 1.18;
  }

  .hero-sub {
    font-size: 0.92rem;
    margin-bottom: 36px;
    letter-spacing: 0.3px;
    line-height: 1.7;
  }

  .btn-gold {
    padding: 14px 30px;
    font-size: 0.75rem;
    letter-spacing: 1.8px;
  }

  .hero-scroll {
    bottom: 24px;
  }

  .hero-scroll-line {
    height: 36px;
    margin-bottom: 20px;
  }

  /* ══════════════════════════════════════════════
     SECTION COMMON — Headers & Tags
  ══════════════════════════════════════════════ */

  .section-header {
    margin-bottom: 44px;
    padding: 0 20px;
  }

  .section-tag {
    font-size: 0.68rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
  }

  .section-title {
    font-size: clamp(1.65rem, 6vw, 2.2rem);
    margin-bottom: 12px;
  }

  .section-sub {
    font-size: 0.9rem;
    max-width: 100%;
    padding: 0 4px;
  }

  /* ══════════════════════════════════════════════
     SECTION 1 — TOUR CATEGORIES (4-card grid)
  ══════════════════════════════════════════════ */

  #tour-categories {
    padding: 60px 0;
  }

  .tour-cat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 0 16px;
  }

  .tour-cat-card {
    aspect-ratio: 2/3;
    border-radius: 16px;
  }

  .tour-cat-content {
    padding: 20px 16px;
  }

  .tour-cat-num {
    font-size: 0.62rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
  }

  .tour-cat-name {
    font-size: 1.15rem;
  }

  .tour-cat-arrow {
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    font-size: 0.78rem;
  }

  /* ══════════════════════════════════════════════
     SECTION 2 — CUSTOM PLAN CTA
  ══════════════════════════════════════════════ */

  #plan-cta {
    padding: 60px 0;
  }

  .plan-cta-inner {
    padding: 0 20px;
  }

  .plan-cta-inner p {
    font-size: 0.92rem;
    margin-bottom: 36px;
    line-height: 1.75;
  }

  /* ══════════════════════════════════════════════
     SECTION 3 — DESTINATIONS SLIDER
  ══════════════════════════════════════════════ */

  #tour-categories-2 {
    padding: 60px 0;
  }

  /* Slider wrap: reduce side padding so arrows sit flush with card edges */
  #tourCategorySlider .tour-slider-wrap {
    padding: 0 48px;
  }

  /* Arrow buttons: anchor to the card height, not the whole wrap */
  #tourCategorySlider .tour-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    width: 36px;
    height: 36px;
    font-size: 15px;
    border-radius: 50%;
    background: rgba(13, 27, 42, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(196, 154, 60, 0.45);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }

  #tourCategorySlider .tour-slider-arrow:hover {
    background: var(--gold);
    color: #111;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 0 18px rgba(196, 154, 60, 0.4);
  }

  #tourCategorySlider .tour-slider-arrow.prev {
    left: 6px;
  }

  #tourCategorySlider .tour-slider-arrow.next {
    right: 6px;
  }

  /* Card height on mobile */
  #tourCategorySlider .tour-slider-card {
    height: 320px;
    aspect-ratio: unset;
    border-radius: 18px;
  }

  /* ══════════════════════════════════════════════
     SECTION 4 — POPULAR TOURS
  ══════════════════════════════════════════════ */

  #popular-tours {
    padding: 60px 0;
  }

  .tours-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px;
  }

  .tour-card {
    border-radius: 16px;
  }

  .tour-card-img {
    aspect-ratio: 16/9;
  }

  .tour-card-body {
    padding: 18px 16px;
  }

  .tour-card-location {
    font-size: 0.72rem;
    margin-bottom: 8px;
  }

  .tour-card-title {
    font-size: 1.08rem;
    margin-bottom: 12px;
  }

  .tour-card-meta {
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
  }

  .tour-meta-item {
    font-size: 0.75rem;
  }

  .tour-price-val {
    font-size: 1.2rem;
  }

  .btn-sm-gold {
    padding: 9px 18px;
    font-size: 0.7rem;
  }

  .tour-card-badge {
    top: 12px;
    left: 12px;
    padding: 4px 11px;
    font-size: 0.64rem;
  }

  .tour-card-wish {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 0.82rem;
  }

  /* ══════════════════════════════════════════════
     STATS STRIP
  ══════════════════════════════════════════════ */

  #stats {
    padding: 50px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    padding: 0 24px;
  }

  .stat-num {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }

  /* ══════════════════════════════════════════════
     SECTION 5 — FEATURE COMPANY
  ══════════════════════════════════════════════ */

  #feature-company {
    padding: 60px 0;
    min-height: auto;
  }

  .feature-canvas {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 16px;
    margin-top: 40px;
  }

  .feature-block {
    position: static !important;
    max-width: 100%;
    padding: 22px 20px;
    border-radius: 14px;
  }

  .feature-block-icon { font-size: 1.6rem; margin-bottom: 10px; }
  .feature-block-title { font-size: 1rem; margin-bottom: 6px; }
  .feature-block-text { font-size: 0.82rem; }

  .feature-paths { display: none; }

  /* ══════════════════════════════════════════════
     REVIEWS SECTION — Rating dots & layout fix
  ══════════════════════════════════════════════ */

  .reviews-section {
    padding: 20px 0;
    margin: 0 !important;
  }

  .reviews-section .row {
    flex-direction: column;
    gap: 20px;
  }

  .review-info {
    text-align: center;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .review-info img {
    margin: 0 auto 12px;
    display: block;
  }

  .review-info h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  /* Rating dots — force center between image/title and the paragraph */
  .review-info .rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 8px auto 10px;
    width: 100%;
  }

  .review-info .rating span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 2px solid #00aa6c;
    background: #00aa6c;
    display: inline-block;
    flex-shrink: 0;
  }

  .review-btn {
    padding: 9px 20px;
    font-size: 0.82rem;
    border-radius: 8px;
    margin-top: 4px;
  }

  .review-card {
    padding: 16px;
    border-radius: 12px;
  }

  .review-card h4 { font-size: 0.9rem; }
  .review-card p { font-size: 0.82rem; }

  /* ══════════════════════════════════════════════
     FOOTER
  ══════════════════════════════════════════════ */

  footer {
    padding: 60px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 0 20px 48px;
  }

  .footer-grid > div:last-child {
    text-align: center !important;
  }

  .footer-col-title {
    text-align: center !important;
    margin-bottom: 16px;
  }

  .footer-social {
    align-items: center;
    gap: 10px;
  }

  .footer-social a {
    font-size: 0.82rem;
    gap: 10px;
  }

  .footer-social a .icon {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    font-size: 0.88rem;
  }

  .footer-logo-mark { font-size: 1.3rem; }
  .footer-logo-sub { font-size: 0.68rem; }

  .footer-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }

  .footer-goal {
    font-size: 0.84rem;
    line-height: 1.75;
  }

  .footer-bottom {
    padding: 16px 20px;
    font-size: 0.72rem;
    line-height: 1.6;
  }
   .goal{
    margin-left: 0px;
   }
  /* ── Back to Top ── */
  #backTop {
    right: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
    font-size: 0.88rem;
  }

  /* ── Chat floating mode ── */
  .chat-wrapper.floating {
    left: 14px;
    bottom: 14px;
  }

  .chat-wrapper.floating #chatToggle {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .chat-wrapper.floating .chat-panel {
    bottom: 54px;
  }

  /* ── About Page ── */
  .about-hero { height: 38vh; }
  .about-hero-text h1 { font-size: 2rem; }
  .about-section { padding: 56px 20px; }
  .about-lead { font-size: 1.2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 14px; }
  .about-value { padding: 22px 18px; }

  /* ── Contact Page ── */
  .contact-section { padding: 60px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; padding: 0 20px; }
  .contact-info h2 { font-size: 1.7rem; }
  .contact-form-card { padding: 28px 20px; border-radius: 16px; }
  .contact-form-card h3 { font-size: 1.2rem; }

  /* ── Tour Details Page ── */
  .detail-hero { height: 42vh; min-height: 280px; }
  .detail-hero-content { padding: 0 20px 32px; }
  .detail-hero-content h1 { font-size: 1.6rem; }
  .detail-body { padding: 36px 16px; }
  .detail-row { grid-template-columns: 1fr; gap: 28px; }
  .detail-meta-strip { padding: 18px 16px; gap: 14px; }
  .inc-exc-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-thumbs img { width: 64px; height: 48px; }
  .booking-card { padding: 24px 18px; }
  .form-grid-2 { grid-template-columns: 1fr; gap: 0; }

} /* end @media 768px */

/* ─── TABLET (769px – 1024px) ─────────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {

  #navbar { padding: 20px 28px; }
  #navbar.scrolled { padding: 12px 28px; }

  .nav-inner { max-width: 100%; }

  .tour-cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 0 28px;
  }

  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 28px;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 0 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr auto 1fr;
    gap: 28px;
    padding: 0 28px 48px;
  }

  .feature-canvas {
    padding: 0 24px;
  }

  .feature-block {
    position: static !important;
    max-width: 100%;
    margin-bottom: 12px;
  }

  .feature-canvas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    min-height: auto;
    margin-top: 40px;
  }

  .feature-paths { display: none; }

  .contact-grid { gap: 36px; }

  .detail-row { grid-template-columns: 1fr; }
  .booking-card { position: static; }

  .section-header { padding: 0 28px; }
  .plan-cta-inner { padding: 0 28px; }

}

/* ─── VERY SMALL PHONES (≤ 390px) ─────────────────────────── */
@media (max-width: 390px) {

  .nav-inner { padding: 0 14px; height: 58px; }

  .nav-logo-text { font-size: 0.88rem; }
  .nav-logo-text span { font-size: 0.72rem; }
  .nav-logo-img { width: 30px; height: 30px; }

  .hero-h1 { font-size: 1.95rem; }
  .hero-sub { font-size: 0.85rem; }

  .tour-cat-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 14px;
  }

  .tour-cat-card { aspect-ratio: 4/3; }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 14px;
    padding: 0 16px;
  }
  .goal{
    margin-left: 0px;
  }

  .stat-num { font-size: 1.9rem; }

  .section-header { padding: 0 14px; }
  .section-title { font-size: 1.5rem; }

  .tours-grid { padding: 0 14px; gap: 16px; }
  .plan-cta-inner { padding: 0 14px; }

  .feature-canvas { padding: 0 14px; }

  .footer-grid { padding: 0 14px 40px; }
  .footer-bottom { padding: 14px; font-size: 0.68rem; }

}

/* ─── LANDSCAPE PHONES (height ≤ 500px) ───────────────────── */
@media (max-height: 500px) and (max-width: 900px) {

  #hero { height: 100svh; min-height: 480px; }

  .hero-h1 { font-size: 1.8rem; margin-bottom: 10px; }
  .hero-sub { margin-bottom: 24px; font-size: 0.82rem; }
  .hero-tag { margin-bottom: 12px; }

  .hero-scroll { display: none; }

  .nav-links {
    overflow-y: auto;
    padding-top: 64px;
    padding-bottom: 30px;
    justify-content: flex-start;
    gap: 0;
  }

  .nav-links a { padding: 14px 0; }

}
.view-more-wrap{
text-align:center;
margin-top:40px;
}

.view-more-btn{
display:inline-flex;
align-items:center;
gap:12px;
padding:16px 34px;
background:var(--gold);
color:#fff;
font-weight:600;
font-size:15px;
border-radius:60px;
text-decoration:none;
transition:0.3s ease;
box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.view-more-btn:hover{
transform:translateY(-4px);
box-shadow:0 16px 35px rgba(0,0,0,0.18);
color: #0d1b2a;
}

.view-more-btn i{
transition:0.3s;
}

.view-more-btn:hover i{
transform:translateX(5px);

}
