/* =========================
   VARIABLES
========================= */
:root {
  --primary: #c4a484;
  --secondary: #8b4513;
  --text: #333;
  --background: #faf6f1;
  --white: #fff;

  --radius: 16px;
  --shadow: 0 6px 18px rgba(0,0,0,0.1);
  --transition: 0.3s ease;
}

/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Amiri', serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* RTL / LTR */
html[lang="ar"], body.lang-ar {
  direction: rtl;
  text-align: right;
}

html[lang="de"], body.lang-de,
html[lang="en"] {
  direction: ltr;
  text-align: left;
}
/* =========================
   NAVBAR - RESPONSIVE FIX (SAFE UPGRADE)
========================= */

nav {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

/* main container */
.nav-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  gap: 10px;
  flex-wrap: wrap; /* مهم للموبايل */
}

/* logo */
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  white-space: nowrap;
}

/* links */
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  transition: all 0.3s ease;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 1.4rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--secondary);
  transform: translateY(-2px);
}

/* language buttons */
.lang-switcher {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.lang-switcher button {
  padding: 6px 12px;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,0.3);
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.lang-switcher button:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.6);
}

/* menu icon */
.menu-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}


/* زر رقم الهاتف */
.phone-btn{
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 20px;
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    color: #1f1f1f;
    text-decoration: none;

    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;

    box-shadow: 0 5px 15px rgba(212,175,55,.35);
    transition: all .3s ease;
}

/* الأيقونة */
.phone-btn i,
.phone-btn span.icon{
    width: 38px;
    height: 38px;

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

    background: #fff;
    color: #d4af37;
    border-radius: 50%;
    font-size: 18px;

    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

/* الرقم */
.phone-btn span.number{
    color: #222;
    letter-spacing: 1px;
}

/* عند مرور الماوس */
.phone-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212,175,55,.5);
    background: linear-gradient(135deg, #f5d76e, #d4af37);
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
  .nav-links a {
    font-size: 1.2rem;
  }

  .lang-switcher button {
    font-size: 1rem;
  }
}

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

  .menu-icon {
    display: block;
  }

  /* hide links by default */
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--primary);
    padding: 10px;
    border-radius: 10px;
  }

  /* when active (JS toggle) */
  .nav-links.active {
    display: flex;
  }

  .nav-content {
    align-items: flex-start;
  }

  .lang-switcher {
    width: 100%;
    justify-content: flex-start;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .logo {
    font-size: 1.2rem;
  }

  .nav-links a {
    font-size: 1rem;
  }
}
/* =========================
   HERO
========================= */
.hero {
  height: 70vh;
  background: url("./New_Image/62.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.hero > * {
  position: relative;
  z-index: 1;
}

/* =========================
   SECTIONS
========================= */
main {
  padding: 20px;
}

section {
  margin-bottom: 60px;
}

/* =========================
   TITLES
========================= */
h1, h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #1c2b46;
}

h1::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--primary);
  display: block;
  margin: 10px auto;
  border-radius: 10px;
}

/* =========================
   CITIES
========================= */
.city {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 25px;
  overflow: hidden;
  transition: var(--transition);
}

.city:hover {
  transform: translateY(-2px);
  border-left: 3px solid var(--primary);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}

.city-content {
  padding: 25px;
  font-size: 1.1rem;
  line-height: 1.8;
}
/* =========================
   TOUR CARDS (NORTH COAST) - UPDATED
========================= */

.nxv-tour-shell {
  width: 100%;              /* 👈 أعرض */
  max-width: 1400px;       /* 👈 أكبر */
  margin: 25px auto;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
  transition: all 0.3s ease;
}

.nxv-tour-shell:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* layout */
.nxv-tour-layout {
  display: flex;
  height: 200px;          /* 👈 أطول شوية */
}

/* image */
.nxv-tour-visual {
  width: 45%;             /* 👈 صورة أكبر */
  overflow: hidden;
}

.nxv-tour-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.nxv-tour-shell:hover .nxv-tour-visual img {
  transform: scale(1.08);
}

/* text */
.nxv-tour-details {
  width: 55%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nxv-tour-title {
  font-size: 1.6rem;      /* 👈 أكبر */
  font-weight: bold;
  margin-bottom: 10px;
  color: #1f2937;
}

.nxv-tour-text {
  font-size: 15px;        /* 👈 أوضح */
  line-height: 1.7;
  color: #4b5563;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
  .nxv-tour-layout {
    flex-direction: column;
    height: auto;
  }

  .nxv-tour-visual {
    width: 100%;
    height: 200px;
  }

  .nxv-tour-details {
    width: 100%;
    padding: 18px;
  }
}

/* =========================
   CITY IMAGE RESPONSIVE FIX (SAFE)
========================= */

.city-image {
  width: 100%;
  margin-top: 15px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* الصورة نفسها */
.city-image img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* hover بسيط */
.city-image img:hover {
  transform: scale(1.03);
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
  .city-image img {
    height: 380px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .city-image img {
    height: 260px;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .city-image img {
    height: 200px;
  }
}

/* =========================
   GALLERY
========================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.gallery img:hover {
  transform: scale(1.04);
  filter: brightness(1.05);
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  -o-transform: scale(1.04);
}

/* =========================
   CONTACT SECTION MODERN UI
========================= */

.contact-form-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
}

/* الخط الفاصل */
.separator {
  text-align: center;
  color: #cbd5e1;
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 30px;
}

/* الحاوية */
.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* ====== CONTACT CARDS ====== */
.contact-info,
.contact-form-container {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.contact-info:hover,
.contact-form-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* ====== HEADINGS STYLE DIFFERENT ====== */
.contact-info h4 {
  font-size: 1.6rem;
  color: #dc2626;
  margin-bottom: 20px;
  position: relative;
}

.contact-info h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #dc2626;
  border-radius: 10px;
}

/* form title */
.contact-form-container::before {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  color: #2563eb;
  margin-bottom: 20px;
  position: relative;
}

.contact-form-container::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #2563eb;
  border-radius: 10px;

  margin: 25px auto 30px auto;
}

/* ===== CONTACT LIST ===== */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 15px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 12px;
  background: #f1f5f9;
  color: #111;
  text-decoration: none;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

.contact-list a:hover {
  background: #fff;
  border-color: #dc2626;
  transform: translateX(6px);
}

/* RTL fix */
body[dir="rtl"] .contact-list a:hover {
  transform: translateX(-6px);
}

/* ===== FORM ===== */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  font-size: 1rem;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 10px rgba(37,99,235,0.15);
  outline: none;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37,99,235,0.3);
}
/* =========================
   TEAM SECTION (FINAL FIXED 4 COLUMNS)
========================= */

.team-images-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

/* HEADER */
.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-header h2 {
  font-size: 2.1rem;
  font-weight: 800;
  background: linear-gradient(90deg, #2563eb, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.team-header p {
  font-size: 1.3rem;
  color: #64748b;
  margin-top: 10px;
}

/* GRID - 4 COLUMNS */
.team-images-container {
  max-width: 1500px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 👈 4 كروت جنب بعض */
  gap: 30px;
  align-items: stretch;
}

/* CARD */
.team-member {
  background: #ffffff;
  border-radius: 22px;
  padding: 35px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #eef2f7;
  transition: all 0.35s ease;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  -o-transform: translateY(-6px);
}

/* IMAGE */
.team-member-image {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 20px;
  margin: 0 auto 20px;
  border: 3px solid #f1f5f9;
  transition: 0.3s ease;
}

.team-member:hover .team-member-image {
  transform: scale(1.01);
  border-color:#c4a484;
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  -ms-transform: scale(1.01);
  -o-transform: scale(1.01);
}

/* NAME */
.team-member-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}

/* TITLE */
.team-member-title {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.7;
}

.team-member-email{
    margin-top: 10px;
    text-align: center;
}

.team-member-email a{
    color: #1811db;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
    word-break: break-word;
}

.team-member-email a:hover{
    color: #a67c2d;
    text-decoration: underline;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .team-images-container {
    grid-template-columns: repeat(2, 1fr); /* 2 كروت */
  }
}

@media (max-width: 600px) {
  .team-images-container {
    grid-template-columns: 1fr; /* كارت واحد */
  }

  .team-header h2 {
    font-size: 2.2rem;
  }

  .team-member {
    min-height: auto;
  }

  .team-member-image {
    width: 140px;
    height: 140px;
  }

  .team-member-name {
    font-size: 1.3rem;
  }

  .team-member-title {
    font-size: 1rem;
  }
}


/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: white;
}

/* =========================
   RESPONSIVE (ALL DEVICES)
========================= */

/* Tablet */
@media (max-width: 992px) {
  .nxv-tour-layout {
    flex-direction: column;
    height: auto;
  }

  .nxv-tour-visual,
  .nxv-tour-details {
    width: 100%;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--primary);
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-icon {
    display: block;
  }

  .hero {
    height: 45vh;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .logo {
    font-size: 1.2rem;
  }

  .hero {
    height: 40vh;
  }

  .gallery img {
    height: 180px;
  }
}

