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

body {
  font-family: "Poppins", sans-serif;
  color: #222;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

.btn-nav {
  padding: 8px 18px;
  border: 1px solid #222;
}

/* ===== Hero ===== */
.hero {
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?q=80&w=1600&auto=format&fit=crop") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  max-width: 700px;
  padding: 20px;
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
}

.hero p {
  margin-bottom: 30px;
}

.btn-main {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  background: transparent;
  cursor: pointer;
}

.btn-main:hover {
  background: #fff;
  color: #000;
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
}

.section-dark {
  background: #111;
  color: #fff;
}

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

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.two-cols img {
  width: 100%;
  border-radius: 4px;
}

/* ===== Cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  padding: 30px;
  background: #1a1a1a;
  border: 1px solid #333;
}

/* ===== Destinations ===== */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dest-item {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}

.dest-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}

/* ===== Contact ===== */
.contact-box {
  max-width: 600px;
}

.contact-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-box input,
.contact-box textarea {
  padding: 12px;
  border: none;
}

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .two-cols {
    grid-template-columns: 1fr;
  }

  .cards, .dest-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 36px;
  }
}

/* ===== Partners Slider ===== */
.section-light {
  background: #f8f8f8;
  color: #222;
}

.partners-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-behavior: smooth;
}

.partner-item {
  flex: 0 0 auto;
  width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.partner-item:hover {
  transform: scale(1.05);
}

.partner-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

/* ===== Contact Info Section ===== */
.contact-info-box {
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.contact-info-box p {
  font-size: 18px;
  margin: 10px 0;
}

/* ===== About Us two columns ===== */
.two-cols-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.about-text h2 {
  margin-bottom: 20px;
  font-size: 36px;
}

.about-text p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* ===== Company Boxes ===== */
.company-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.company-card {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.company-card img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 15px;
}

.company-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.company-card p {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 5px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .two-cols-about {
    grid-template-columns: 1fr;
  }

  .company-boxes {
    grid-template-columns: 1fr;
  }
}
/* ===== About Us Background ===== */
.about-bg {
  background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1200&auto=format&fit=crop') center/cover no-repeat;
  position: relative;
  color: #fff;
  padding: 120px 20px 60px; /* Top padding أكبر لتنسيق النص */
}

.about-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5); /* تغطية نصف شفافة لتوضيح النص */
}

.about-bg .about-content {
  position: relative;
  max-width: 700px;
  margin: auto;
  text-align: left;
}

.about-bg h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-bg p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* ===== Company Boxes ===== */
.company-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.company-card {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.company-card img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 15px;
}

.company-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.company-card p {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 5px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-bg {
    padding: 80px 20px 40px;
  }

  .company-boxes {
    grid-template-columns: 1fr;
  }
}
.logo img {
  width: 180px; /* عرض اللوجو */
  height: auto; /* يحافظ على النسبة */
  display: block;
}


