/*-----------------------------------*\
 * #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
 * #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --united-nations-blue: hsl(214, 56%, 58%);
  --bright-navy-blue: hsl(214, 57%, 51%);
  --spanish-gray: hsl(0, 0%, 60%);
  --black-coral: hsl(225, 8%, 42%);
  --oxford-blue: hsl(208, 97%, 12%);
  --yale-blue: hsl(214, 72%, 33%);
  --blue-ncs: hsl(197, 100%, 36%);
  --gunmetal: hsl(206, 34%, 20%);
  --gainsboro: hsl(0, 0%, 88%);
  --cultured: hsl(0, 0%, 98%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --onyx: hsl(0, 0%, 25%);
  --jet: hsl(0, 0%, 20%);

  /**
   * typography
   */

  --ff-poppins: "Poppins", sans-serif;
  --ff-montserrat: "Montserrat", sans-serif;

  --fs-1: calc(20px + 3.5vw);
  --fs-2: calc(18px + 1.6vw);
  --fs-3: calc(16px + 0.45vw);
  --fs-4: 15px;
  --fs-5: 14px;
  --fs-6: 13px;
  --fs-7: 12px;
  --fs-8: 11px;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /**
   * transition
   */

  --transition: 0.25s ease-in-out;

  /**
   * spacing
   */

  --section-padding: 60px;

  /**
   * border-radius
   */

  --radius-15: 15px;
  --radius-25: 25px;

}

p.form-text {
    color: greenyellow;
}


/*-----------------------------------*\
 * #RESET
\*-----------------------------------*/

*, *::before, *::after {
  margin: 0;
  /* padding: 0; */
  box-sizing: border-box;
}

li { list-style: none; }

a { text-decoration: none; }

a,
img,
span,
input,
label,
button,
ion-icon { display: block; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

button { cursor: pointer; }

input { width: 100%; }

ion-icon { pointer-events: none; }

html {
  font-family: var(--ff-poppins);
  scroll-behavior: smooth;
}

body { background: var(--white); }





/*-----------------------------------*\
 * #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

.btn {
  color: var(--white);
  text-transform: uppercase;
  font-size: var(--fs-5);
  border-radius: 100px;
  padding: var(--padding, 8px 18px);
  border: var(--border-width, 2px) solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--bright-navy-blue);
  border-color: var(--bright-navy-blue);
}

.btn-primary:is(:hover, :focus) {
  background: var(--yale-blue);
  border-color: var(--yale-blue);
}

.btn-secondary { border-color: var(--white); }

.btn-secondary:is(:hover, :focus) { background: hsla(0, 0%, 100%, 0.1); }

.h1,
.h2,
.h3 {
  font-weight: var(--fw-800);
  font-family: var(--ff-montserrat);
  text-transform: uppercase;
}

.h1 {
  color: var(--white);
  font-size: var(--fs-1);
}

.h2,
.h3 { color: var(--gunmetal); }

.h2 { font-size: var(--fs-2); }

.h3 {
  font-size: var(--fs-3);
  font-weight: var(--fw-700);
}

.section-subtitle {
  color: var(--bright-navy-blue);
  font-size: var(--fs-5);
  text-transform: uppercase;
  font-family: var(--ff-montserrat);
  margin-bottom: 8px;
}

.section-title { margin-bottom: 15px; }

.section-text {
  color: var(--black-coral);
  margin-bottom: 30px;
}

.card-text {
  color: var(--black-coral);
  font-size: var(--fs-5);
}





/*-----------------------------------*\
 * #HEADER
\*-----------------------------------*/

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 61px;
  z-index: 4;
}

.header-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: var(--transition);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
  padding-block: 15px;
  z-index: 1;
}

.header.active .header-top {
  position: fixed;
  background: var(--gunmetal);
}

.header-top .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: flex-start;
  align-items: center;
}

.helpline-box .wrapper { display: none; }

.helpline-box .icon-box {
  background: var(--bright-navy-blue);
  padding: 6px;
  border-radius: 50%;
  color: var(--white);
}

.helpline-box .icon-box ion-icon { --ionicon-stroke-width: 40px; }

.header-top .logo { margin-inline: auto; }

.header-top .logo img { max-width: 100px; }

.header-btn-group {
  justify-self: flex-end;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.search-btn,
.nav-open-btn {
  font-size: 30px;
  color: inherit;
}

.search-btn { font-size: 20px; }

.header-bottom { border-bottom: 1px solid hsla(0, 0%, 100%, 0.1); }

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

.social-list {
  display: flex;
  align-items: center;
  gap: 5px;
}

.social-link {
  color: var(--white);
  padding: 8px;
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 50%;
  font-size: 15px;
  transition: var(--transition);
}

.social-link:is(:hover, :focus) { background: hsla(0, 0%, 100%, 0.2); }

.header .btn { --padding: 4px 20px; }

.header .navbar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 100%;
  max-width: 300px;
  height: 100%;
  background: var(--white);
  visibility: hidden;
  pointer-events: none;
  transition: 0.15s ease-in;
  z-index: 3;
}

.navbar.active {
  right: 0;
  visibility: visible;
  pointer-events: all;
  transition: 0.25s ease-out;
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 15px;
}

.navbar-top .logo img { width: 150px; }

.nav-close-btn {
  font-size: 20px;
  color: var(--bright-navy-blue);
}

.nav-close-btn ion-icon { --ionicon-stroke-width: 80px; }

.navbar-list { border-top: 1px solid hsla(0, 0%, 0%, 0.1); }

.navbar-list li { border-bottom: 1px solid hsla(0, 0%, 0%, 0.1); }

.navbar-link {
  padding: 15px 20px;
  color: var(--jet);
  font-weight: var(--fw-500);
  font-size: var(--fs-4);
  transition: var(--transition);
  text-transform: capitalize;
}

.navbar-link:is(:hover, :focus) { color: var(--bright-navy-blue); }

.overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: var(--transition);
}

.overlay.active {
  opacity: 0.7;
  pointer-events: all;
}





/*-----------------------------------*\
 * #HERO
\*-----------------------------------*/

.hero {
  background-image: url("../images/hero-banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: hsla(0, 0%, 0%, 0.7);
  background-blend-mode: overlay;
  display: grid;
  place-items: center;
  min-height: 600px;
  text-align: center;
  padding-top: 125px;
}
.hero1{ 
  background-image: url("../images/hero-banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: hsla(0, 0%, 0%, 0.7);
  background-blend-mode: overlay;
  display: grid;
  place-items: center;
  min-height: 20px;
  text-align: center;
  padding-top: 125px;
}

.hero-title { margin-bottom: 20px; }

.hero-text {
  color: var(--white);
  font-size: var(--fs-5);
  margin-bottom: 40px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}





/*-----------------------------------*\
 * #TOUR SEARCH
\*-----------------------------------*/

.tour-search {
  background: var(--bright-navy-blue);
  padding-block: var(--section-padding);
}

.tour-search-form .input-label {
  color: var(--white);
  font-size: var(--fs-4);
  margin-left: 20px;
  margin-bottom: 10px;
}

.tour-search-form .input-field {
  background: var(--white);
  padding: 10px 15px;
  font-size: var(--fs-5);
  border-radius: 50px;
}

.tour-search-form .input-field::placeholder { color: var(--spanish-gray); }

.tour-search-form .input-field::-webkit-datetime-edit {
  color: var(--spanish-gray);
  text-transform: uppercase;
}

.tour-search-form .input-wrapper { margin-bottom: 15px; }

.tour-search .btn {
  width: 100%;
  --border-width: 1px;
  font-weight: var(--fw-600);
  margin-top: 35px;
}





/*-----------------------------------*\
 * #POPULAR
\*-----------------------------------*/

.popular { padding-block: var(--section-padding); }

.popular-list,
.popular-list > li:not(:last-child) { margin-bottom: 30px; }

.popular-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-25);
  height: 430px;
}

.popular-card .card-img { height: 100%; }

.popular-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-card .card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--white);
  border-radius: var(--radius-25);
  padding: 20px;
}


.popular-card .card-rating {
  background: var(--bright-navy-blue);
  color: var(--white);
  position: absolute;
  top: 0;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 1px;
  transform: translateY(-50%);
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 14px;
}

.popular-card .card-subtitle {
  color: var(--blue-ncs);
  font-size: var(--fs-6);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.popular-card .card-title { margin-bottom: 5px; }

.popular-card :is(.card-subtitle, .card-title) > a { color: inherit; }

.popular .btn { margin-inline: auto; }





/*-----------------------------------*\
 * #PACKAGE
\*-----------------------------------*/

.package { padding-block: var(--section-padding); }

.package-list { margin-bottom: 40px; }

.package-list > li:not(:last-child) { margin-bottom: 30px; }

.package-card {
  background: var(--cultured);
  overflow: hidden;
  border-radius: 15px;
}

.package-card .card-banner { height: 250px; }

.package-card .card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-card .card-content { padding: 30px 20px; }

.package-card .card-title { margin-bottom: 15px; }

.package-card .card-text {
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-meta-list {
  background: var(--white);
  max-width: max-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 8px;
  box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.15);
  border-radius: 50px;
}

.card-meta-item { position: relative; }

.card-meta-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -1px;
  bottom: 4px;
  width: 1px;
  background: hsla(0, 0%, 0%, 0.3);
}

.meta-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding-inline: 9px;
  color: var(--black-coral);
  font-size: var(--fs-8);
}

.meta-box > ion-icon {
  color: var(--bright-navy-blue);
  font-size: 13px;
}

.package-card .card-price {
  background: var(--united-nations-blue);
  color: var(--white);
  padding: 25px 20px;
  text-align: center;
}

.package-card .card-price .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px 15px;
  margin-bottom: 10px;
}

.package-card .card-price .reviews { font-size: var(--fs-5); }

.package-card .card-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1px;
  font-size: 14px;
}

.package-card .card-rating ion-icon:last-child { color: hsl(0, 0%, 80%); }

.package-card .price {
  font-size: var(--fs-5);
  font-family: var(--ff-montserrat);
  font-weight: var(--fw-800);
  margin-bottom: 10px;

  display: flex;         /* ✅ يخلي العناصر جنب بعض */
  align-items: center;   /* ✅ يوازنهم عمودياً */
  gap: 8px;              /* ✅ مسافة صغيرة بينهم */
}

.package-card .price span {
  font-size: var(--fs-7);
  font-weight: normal;
}



.slider {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slider img.active {
  opacity: 1;
}
/*-----------------------------------*\
 * موديل الشياره
\*-----------------------------------*/
/* ✅ خلفية المودال */
.modal {
  display: none; /* بيتفتح بالـ JS */
  position: fixed;
  inset: 0;
  z-index: 1000;

  /* ✅ وسط الصفحة */
  display: flex;
  justify-content: center;
  align-items: center;

  font-family: "Cairo", sans-serif;
}

.modal-overlay {
  position: fixed;
  top: 0; 
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}


/* ✅ صندوق المودال */
.modal-box {
  position: relative;
  background: #fff;
  padding: 25px 30px;
  border-radius: 20px;
  width: 95%;
  max-width: 650px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 1001; /* فوق الـ overlay */
  animation: fadeIn 0.4s ease;
}

/* ✅ حركة دخول المودال */
@keyframes fadeIn {
  from { transform: translateY(-40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* زر الإغلاق */
.close {
  position: absolute;
  top: 15px; 
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #888;
}
.close:hover { color: #000; }

/* ✅ رأس السيارة */
.car-header {
  text-align: center;
  margin-bottom: 10px;
}
.car-header h2 {
  font-size: 22px;
  margin-top: 10px;
}
.car-img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ✅ الحقول */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 14px;
  color: #444;
}
input, select {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
  transition: 0.2s;
}
input:focus, select:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 6px rgba(0,123,255,0.3);
}

/* ✅ رقم الهاتف */
.phone-input {
  display: flex;
  align-items: center;
  gap: 6px;
}
.phone-input span {
  background: #eee;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
}

/* ✅ السعر */
.price-box {
  grid-column: span 2;
  text-align: center;
  background: #f9fafc;
  padding: 15px;
  border-radius: 12px;
  margin-top: 10px;
  border: 1px solid #eee;
}
.price-box h3 {
  margin-bottom: 5px;
  font-size: 18px;
  color: #333;
  font-weight: 700;
}
.price-box p {
  font-size: 16px;
  font-weight: bold;
  color: #007bff;
}

/* ✅ زر الحجز */
.btn-submit {
  grid-column: span 2;
  padding: 14px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
}
.btn-submit:hover {
  background: linear-gradient(135deg, #0056b3, #004094);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/*-----------------------------------*\
 * موديل الاجهزه الكهرابيه
\*-----------------------------------*/

.modal { 
  display: none; 
  position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
  background: rgba(0,0,0,0.6); z-index: 1000; 
  justify-content: center; align-items: center;
  animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }

.modal-box { 
  background:#fff; width:90%; max-width:520px; padding:25px; 
  border-radius:15px; position:relative; 
  box-shadow:0 10px 25px rgba(0,0,0,0.2); 
  animation: slideUp 0.4s ease-in-out;
}
@keyframes slideUp { from {transform:translateY(50px); opacity:0;} to {transform:translateY(0); opacity:1;} }

.close { 
  position:absolute; top:15px; right:20px; font-size:28px; 
  cursor:pointer; color:#666; transition:0.2s;
}
.close:hover { color:#e63946; }

h2 { margin-bottom:5px; color:#0077b6; }
.modal-subtitle { margin-bottom:20px; font-size:14px; color:#555; }

.form-grid { display:grid; gap:15px; }
.form-group label { font-weight:600; margin-bottom:5px; display:block; color:#333; }
.form-group input, .form-group select, .form-group textarea { 
  width:100%; padding:10px 12px; border:1px solid #ccc; border-radius:8px; 
  transition:0.3s; font-size:14px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { 
  border-color:#0077b6; outline:none; box-shadow:0 0 5px rgba(0,118,182,0.4);
}
.phone-input { display:flex; align-items:center; }
.phone-input span { background:#eee; padding:8px 12px; border:1px solid #ccc; border-radius:8px 0 0 8px; }
.phone-input input { border-radius:0 8px 8px 0; flex:1; }

.btn-submit { 
  background:linear-gradient(135deg, #0077b6, #00b4d8); 
  color:#fff; padding:12px; font-size:16px; font-weight:bold;
  border:none; border-radius:8px; cursor:pointer; transition:0.3s;
}
.modal {
  display: none;
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); z-index: 1000;
  justify-content: center; align-items: center;
}
.modal:target { display: flex; }
.modal-box {
  background: #fff; width: 90%; max-width: 520px; padding: 25px;
  border-radius: 15px; position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.close {
  position: absolute; top: 15px; right: 20px; font-size: 28px;
  cursor: pointer; color: #666; text-decoration: none;
}
.close:hover { color: #e63946; }
h2 { margin-bottom: 5px; color: #0077b6; }
.modal-subtitle { margin-bottom: 20px; font-size: 14px; color: #555; }
.form-grid { display: grid; gap: 15px; }
.form-group label { font-weight: 600; margin-bottom: 5px; display: block; color: #333; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 12px; border: 1px solid #ccc; border-radius: 8px;
  transition: 0.3s; font-size: 14px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #0077b6; outline: none; box-shadow: 0 0 5px rgba(0,118,182,0.4);
}
.phone-input { display: flex; align-items: center; gap: 5px; }
.phone-input span {
  background: #f0f0f0; padding: 10px; border: 1px solid #ccc;
  border-radius: 8px; font-size: 14px; color: #333;
}
.btn-submit {
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: #fff; padding: 12px; font-size: 16px; font-weight: bold;
  border: none; border-radius: 8px; cursor: pointer; transition: 0.3s;
}
.btn-submit:hover { background: linear-gradient(135deg, #005f87, #0096c7); transform: scale(1.03); }
.cooler-phone {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cooler-phone select, 
.cooler-phone span, 
.cooler-phone input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}
.cooler-phone select { max-width: 150px; }
.cooler-phone span { background: #f9f9f9; min-width: 60px; text-align: center; }

/*-----------------------------------*\
 * #CONTACTS
\*-----------------------------------*/
    section.contact {
      padding: 50px 20px;
      background: #fff;
      max-width: 1000px;
      margin: auto;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    section.contact h2 {
      text-align: center;
      font-size: 28px;
      margin-bottom: 30px;
      color: #333;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
      gap: 20px;
    }

    .contact-card {
      background: #f5f7fa;
      border-radius: 16px;
      padding: 20px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.05);
      transition: 0.3s;
    }

    .contact-card:hover {
      transform: translateY(-5px);
    }

    .contact-card h3 {
      font-size: 20px;
      margin-bottom: 15px;
      color: #222;
    }

    .contact-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fff;
      padding: 12px 15px;
      border-radius: 12px;
      margin-bottom: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .contact-item span {
      font-weight: bold;
      color: #444;
    }

    .contact-buttons a {
      margin-left: 10px;
      text-decoration: none;
      font-size: 8px;
      display: inline-block;
      padding: 8px 12px;
      border-radius: 8px;
      transition: 0.3s;
    }

    .call-btn {
      background: #007bff;
      color: #fff;
    }
    .call-btn:hover { background: #0056b3; }

    .whatsapp-btn {
      background: #25d366;
      color: #fff;
    }
    .whatsapp-btn:hover { background: #128c7e; }
/*-----------------------------------*\
 * #GALLERY
\*-----------------------------------*/

.gallery { padding-block: var(--section-padding); }

.gallery-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gallery-image {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-15);
  overflow: hidden;
}

.gallery-item:nth-child(3) { grid-area: 1 / 2 / 3 / 3; }

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}





/*-----------------------------------*\
 * #CTA
\*-----------------------------------*/

.cta {
  background: var(--bright-navy-blue);
  padding-block: var(--section-padding);
}

.cta :is(.section-subtitle, .section-title, .section-text) { color: var(--white); }

.cta .section-text { font-size: var(--fs-5); }





/*-----------------------------------*\
 * #FOOTER
\*-----------------------------------*/

.footer-top {
  background: var(--gunmetal);
  padding-block: var(--section-padding);
  color: var(--gainsboro);
}

.footer-brand { margin-bottom: 30px; }

.footer-brand img { width: 180px; }

.footer-brand .logo { margin-bottom: 20px; }

.footer-text {
  font-size: var(--fs-5);
  line-height: 1.7;
}

.footer-contact { margin-bottom: 30px; }

.contact-title {
  position: relative;
  font-family: var(--ff-montserrat);
  font-weight: var(--fw-500);
  margin-bottom: 30px;
}

.contact-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--bright-navy-blue);
}

.contact-text {
  font-size: var(--fs-5);
  margin-bottom: 15px;
  max-width: 200px;
}

.contact-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-item ion-icon { --ionicon-stroke-width: 40px; }

.contact-link,
address {
  font-style: normal;
  color: var(--gainsboro);
  font-size: var(--fs-5);
}

.contact-link:is(:hover, :focus) { color: var(--white); }

.form-text {
  font-size: var(--fs-5);
  margin-bottom: 20px;
}

.footer-form .input-field {
  background: var(--white);
  font-size: var(--fs-5);
  padding: 15px 20px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.footer-form .btn { width: 100%; }

.footer-bottom {
  --gunmetal: hsl(205, 36%, 17%);
  background: var(--gunmetal);
  padding-block: 20px;
  text-align: center;
}

.copyright {
  color: var(--gainsboro);
  font-size: var(--fs-5);
  margin-bottom: 10px;
}

.copyright a {
  color: inherit;
  display: inline-block;
}

.copyright a:is(:hover, :focus) { color: var(--white); }

.footer-bottom-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
}

.footer-bottom-list > li { position: relative; }

.footer-bottom-list > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -10px;
  bottom: 3px;
  width: 1px;
  background: hsla(0, 0%, 100%, 0.2);
}

.footer-bottom-link {
  color: var(--gainsboro);
  font-size: var(--fs-7);
  transition: var(--transition);
}

.footer-bottom-link:is(:hover, :focus) { color: var(--white); }





/*-----------------------------------*\
 * #GO TO TOP
\*-----------------------------------*/

.go-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background: var(--bright-navy-blue);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 18px;
  border-radius: 6px;
  box-shadow: 0 1px 3px hsla(0, 0%, 0%, 0.5);
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: var(--transition);
}

.go-top.active {
  opacity: 0.8;
  transform: translateY(0);
  visibility: visible;
}

.go-top:is(:hover, :focus) { opacity: 1; }





/*-----------------------------------*\
 * #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 580px screen
 */

@media (min-width: 580px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 580px;
    margin-inline: auto;
  }

  .btn {
    --fs-5: 16px;
    --padding: 12px 30px;
  }

  section:not(.cta) :is(.section-subtitle, .section-title, .section-text) {
    text-align: center;
  }

  .section-text { margin-bottom: 40px; }

  .card-text { --fs-5: 15px; }



  /**
   * HEADER
   */

  .header { padding-top: 83px; }

  .helpline-box .icon-box { padding: 14px; }

  .header-top .logo img { max-width: unset; }

  .search-btn { font-size: 30px; }

  .nav-open-btn { font-size: 40px; }

  .header .btn {
    --fs-5: 14px;
    --padding: 6px 20px;
  }



  /**
   * HERO
   */

  .hero {
    min-height: 800px;
    padding-top: 85px;
  }

  .hero-text { --fs-5: 15px; }

  .btn-group { gap: 20px; }



  /**
   * TOUR SEARCH
   */

  .tour-search-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
    gap: 15px;
  }

  .tour-search-form .input-wrapper { margin-bottom: 0; }

  .tour-search-form .input-field { padding: 16px 20px; }

  .tour-search .btn {
    grid-column: span 2;
    margin-top: 20px;
  }



  /**
   * POPULAR
   */

  .popular-card .card-content { right: auto; }



  /**
   * FOOTER
   */

  .footer .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-form { grid-column: span 2; }

  .footer-bottom { text-align: left; }

  .copyright { margin-bottom: 0; }

  .footer-bottom-list { justify-content: flex-end; }

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-5: 15px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 800px; }

  .section-text {
    max-width: 60ch;
    margin-inline: auto;
  }



  /**
   * HEADER
   */

  .helpline-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }

  .helpline-box .wrapper {
    display: block;
    color: var(--white);
    font-size: var(--fs-6);
  }

  .social-list { gap: 10px; }



  /**
   * POPULAR
   */

  .popular-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }

  .popular-list > li:not(:last-child) { margin-bottom: 0; }

  .popular-card .card-content { right: 20px; }



  /**
   * PACKAGE
   */

  .package-list { margin-bottom: 50px; }

  .package-list > li:not(:last-child) { margin-bottom: 40px; }

  .package-card {
    display: grid;
    grid-template-columns: 1.3fr 1.5fr 1fr;
  }

  .package-card .card-banner { height: 100%; }

  .package-card .card-content { padding: 40px; }

  .package-card .card-price {
    display: grid;
    place-content: center;
  }

  .package-card .card-price .wrapper { margin-bottom: 15px; }

  /**
   * CTA
   */






  /*** cooler*******/

  

  .cooler-btn { cursor:pointer; padding:10px 14px; border-radius:8px; border:none; font-weight:600; }
.cooler-btn-primary { background:linear-gradient(135deg,#0077b6,#00b4d8); color:#fff; }
.cooler-btn-primary:hover { transform:scale(1.03); }

/* المودال */
.cooler-modal { 
  display:none; position:fixed; inset:0; z-index:10000;
  justify-content:center; align-items:center; 
}
.cooler-modal.open { display:flex; }
.cooler-overlay { position:absolute; inset:0; background:rgba(0,0,0,0.6); }
.cooler-box { 
  position:relative; background:#fff; width:90%; max-width:520px; 
  padding:24px; border-radius:16px; box-shadow:0 10px 25px rgba(0,0,0,.2);
  animation: coolerSlideUp .25s ease;
  direction: rtl;
}
@keyframes coolerSlideUp { from { transform:translateY(40px); opacity:0; } to { transform:translateY(0); opacity:1; } }

.cooler-close { 
  position:absolute; top:10px; left:14px; /* RTL: X في اليسار */
  background:transparent; border:none; font-size:28px; line-height:1; cursor:pointer; color:#666;
}
.cooler-close:hover { color:#e63946; }

#coolerModalTitle { margin:0 0 6px; color:#0077b6; font-size:20px; }
.cooler-subtitle { margin:0 0 18px; color:#555; font-size:14px; }

.cooler-grid { display:grid; gap:14px; }
.cooler-group label { display:block; font-weight:600; margin-bottom:6px; color:#333; }
.cooler-group input, .cooler-group textarea {
  width:100%; padding:10px 12px; border:1px solid #d0d0d0; border-radius:8px; font-size:14px; transition:.2s;
}
.cooler-group input:focus, .cooler-group textarea:focus { border-color:#0077b6; outline:none; box-shadow:0 0 0 3px rgba(0,119,182,.12); }

.cooler-phone { display:flex; gap:6px; align-items:center; }
.cooler-phone span { background:#f0f0f0; padding:10px 12px; border:1px solid #d0d0d0; border-radius:8px; }

.cooler-submit {
  background:linear-gradient(135deg,#0077b6,#00b4d8); color:#fff; 
  padding:12px; border:none; border-radius:10px; font-weight:700; cursor:pointer; transition:.2s;
}
.cooler-submit:hover { transform:translateY(-1px); }
body.cooler-no-scroll { overflow:hidden; }
  
/* زر بسيط في حال ما عندك كلاس btn جاهز */
.cooler-btn { cursor:pointer; padding:10px 14px; border-radius:8px; border:none; font-weight:600; }
.cooler-btn-primary { background:linear-gradient(135deg,#0077b6,#00b4d8); color:#fff; }
.cooler-btn-primary:hover { transform:scale(1.03); }

/* المودال */
.cooler-modal { 
  display:none; position:fixed; inset:0; z-index:10000;
  justify-content:center; align-items:center; 
}
.cooler-modal.open { display:flex; }
.cooler-overlay { position:absolute; inset:0; background:rgba(0,0,0,0.6); }
.cooler-box { 
  position:relative; background:#fff; width:90%; max-width:520px; 
  padding:24px; border-radius:16px; box-shadow:0 10px 25px rgba(0,0,0,.2);
  animation: coolerSlideUp .25s ease;
  direction: rtl;
}
@keyframes coolerSlideUp { from { transform:translateY(40px); opacity:0; } to { transform:translateY(0); opacity:1; } }

.cooler-close { 
  position:absolute; top:10px; left:14px; /* RTL: X في اليسار */
  background:transparent; border:none; font-size:28px; line-height:1; cursor:pointer; color:#666;
}
.cooler-close:hover { color:#e63946; }

#coolerModalTitle { margin:0 0 6px; color:#0077b6; font-size:20px; }
.cooler-subtitle { margin:0 0 18px; color:#555; font-size:14px; }

.cooler-grid { display:grid; gap:14px; }
.cooler-group label { display:block; font-weight:600; margin-bottom:6px; color:#333; }
.cooler-group input, .cooler-group textarea {
  width:100%; padding:10px 12px; border:1px solid #d0d0d0; border-radius:8px; font-size:14px; transition:.2s;
}
.cooler-group input:focus, .cooler-group textarea:focus { border-color:#0077b6; outline:none; box-shadow:0 0 0 3px rgba(0,119,182,.12); }

.cooler-phone { display:flex; gap:6px; align-items:center; }
.cooler-phone span { background:#f0f0f0; padding:10px 12px; border:1px solid #d0d0d0; border-radius:8px; }

.cooler-submit {
  background:linear-gradient(135deg,#0077b6,#00b4d8); color:#fff; 
  padding:12px; border:none; border-radius:10px; font-weight:700; cursor:pointer; transition:.2s;
}
.cooler-submit:hover { transform:translateY(-1px); }
body.cooler-no-scroll { overflow:hidden; }


/*=============== VARIABLES CSS ===============*/


:root {
  --first-color: hsl(0, 0%, 52%);
  --button-color: hsl(0, 0%, 17%);
  --button-color-alt: hsl(0, 0%, 21%);
  --title-color: hsl(0, 0%, 15%);
  --text-color: hsl(0, 0%, 35%);
  --container-color: #fff;
  --border-color: hsl(0, 0%, 94%);
  --font-medium: 500;
  --font-bold: 700;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --small-font-size: .813rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-3: 3rem;
}

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

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

/*=============== REUSABLE CLASSES ===============*/
.container {
  max-width: 1024px;
  margin: 0 auto;
}

.grid {
  display: grid;
}

.section {
  padding: 6.5rem 0 1rem;
}

.section__title {
  position: relative;
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-3);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  color: var(--title-color);
}

.section__title::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 67px;
  height: 1px;
  background-color: var(--first-color);
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-block;
  background-color: var(--button-color);
  color: #FFF;
  padding: 1.25rem 2rem;
  font-weight: var(--font-medium);
  font-size: var(--small-font-size);
  transition: .3s;
}

.button:hover {
  background-color: var(--button-color-alt);
}

/*=============== FEATURED ===============*/
.featured__container {
  row-gap: 2.5rem;
}

.featured__card {
  position: relative;
  text-align: center;
  background-color: var(--container-color);
  padding-top: 2rem;
  border: 1px solid var(--border-color);
  overflow-y: hidden;
  transition: .3s;
}

.featured__tag {
  background-color: var(--first-color);
  padding: .5rem 1rem;
  color: #fff;
  text-transform: uppercase;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  position: absolute;
  transform: rotate(-90deg);
  left: -1rem;
  top: 3rem;
}

.featured__img {
  height: 214px;
  margin-bottom: var(--mb-1);
}

.featured__title, 
.featured__price {
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
}

.featured__title {
  text-transform: uppercase;
  margin-bottom: var(--mb-0-75);
}

.featured__price {
  display: block;
  color: var(--first-color);
  transition: .3s;
}

.featured__button {
  font-size: var(--small-font-size);
  transform: translateY(1rem);
  opacity: 0;
}

.featured__card:hover {
  box-shadow: 0 12px 32px hsla(0, 0%, 20%, .1);
  padding: 2rem 0 3rem 0;
}

.featured__card:hover .featured__button {
  transform: translateY(0);
  opacity: 1;
}

.featured__card:hover .featured__price {
  margin-bottom: var(--mb-1-5);
}

/*=============== BREAKPOINTS ===============*/
@media screen and (min-width: 576px) {
  .featured__container {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

@media screen and (min-width: 992px) {
  .section__title {
    font-size: var(--h2-font-size);
  }

  .featured__container {
    grid-template-columns: repeat(3, 312px);
    padding-top: 2rem;
  }
}




  /**
   * FOOTER
   */

  .form-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }

  .footer-form .input-field { margin-bottom: 0; }

  .footer-form .btn { width: max-content; }

}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 1050px; }



  /**
   * HEADER
   */

  .header.active .header-top {
    position: unset;
    background: unset;
  }

  .nav-open-btn,
  .navbar-top { display: none; }

  .header-bottom { border-bottom: none; }

  .header.active .header-bottom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    color: var(--onyx);
    box-shadow: 0 2px 5px hsla(0, 0%, 0%, 0.08);
    transition: var(--transition);
  }

  .header-bottom .container { padding-block: 0; }

  .header .navbar { all: unset; }

  .navbar-list {
    border-top: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navbar-list li { border-bottom: none; }

  .navbar-link {
    color: var(--white);
    --fs-4: 16px;
    font-weight: unset;
    text-transform: uppercase;
    padding: 20px 15px;
  }

  .header.active .navbar-link { color: var(--onyx); }

  .header.active .navbar-link:is(:hover, :focus) { color: var(--bright-navy-blue); }

  .header.active .social-link {
    color: var(--onyx);
    border-color: hsla(0, 0%, 0%, 0.15);
  }

  .overlay { display: none; }



  /**
   * HERO
   */

  .hero .container { max-width: 740px; }

  /**
   * About us
   */
   
/* General Section */
#about-us.about-section {
  background-color: #ffffff;
  padding: 50px 20px;
  max-width: 1100px;
  margin: auto;
  font-family: "Arial", sans-serif;
  color: #333;
  line-height: 1.7;
}

/* Header */
.about-header {
  text-align: center;
  margin-bottom: 40px;
}
.about-title {
  font-size: 36px;
  color: #0056b3;
  margin-bottom: 10px;
}
.about-tagline {
  font-size: 18px;
  color: #555;
}

/* Company Info */
.about-company-info p {
  font-size: 16px;
  margin: 6px 0;
}

/* Services & Advantages */
.about-subtitle {
  font-size: 28px;
  color: #0056b3;
  margin-bottom: 20px;
}
.about-services, .about-advantages {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.about-services li, .about-advantages li {
  background: #f0f8ff;
  margin-bottom: 12px;
  padding: 15px 20px;
  border-left: 5px solid #0056b3;
  border-radius: 6px;
}

/* Branches */
.about-branches {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.branch {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  border-left: 5px solid #0056b3;
}

/* Contact */
.about-contact {
  font-size: 16px;
  margin-bottom: 15px;
}
.about-button {
  display: inline-block;
  background-color: #0056b3;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}
.about-button:hover {
  background-color: #003d80;
}

/* Responsive */
@media(max-width: 768px){
  .about-title { font-size: 30px; }
  .about-subtitle { font-size: 24px; }
}
@media(max-width: 480px){
  .about-title { font-size: 26px; }
  .about-subtitle { font-size: 20px; }
}


  /**
   * TOUR SEARCH
   */
  .tour-search-form { grid-template-columns: repeat(5, 1fr); }

  .tour-search .btn {
    --padding: 15px;
    grid-column: unset;
    margin-top: 0;
  }



  /**
   * POPULAR
   */

  .popular-list { grid-template-columns: repeat(3, 1fr); }



  /**
   * PACKAGE
   */

  .meta-box { --fs-8: 13px; }

  .meta-box > ion-icon { font-size: 15px; }

  /**
   * FOOTER
   */

  .footer-top .container {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }

  .footer-form { grid-column: unset; }

  .form-wrapper { flex-direction: column; }

  .footer-form .btn { width: 100%; }

}

/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * spacing
     */

    --section-padding: 100px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1180px; }

}


