@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

:root {
  --primary-color: #f4d05a;
  --primary-color-dark: #e4bf3c;
  --text-dark: #0a0a0a;
  --text-light: #737373;
  --extra-light: #f3f4f6;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  transition: all .3s linear;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* يمنع السكرول الأفقي */
  width: 100%;
}


.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  margin-bottom: 5px;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}

.section__description {
  max-width: 600px;
  margin-inline: auto;
  color: var(--text-light);
  text-align: center;
}

.btn {
  display: inline-block;
  font-weight: bolder;
  font-size: larger;
  padding: 12px 28px;
  background-color: transparent;
  border: 1px solid #d4af37;
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #d4af37;
  color: var(--extra-light);
  transform: translateY(-3px);
}

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  text-shadow: 1px 1px 5px 2px 2px #e0b84b !important;
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
}

nav {
  position: fixed; 
  isolation: isolate;
  top: 0;
  width: 100%;
  z-index: 9;
}
.nav__logo{
  display: flex;
}
.navimg{
  width: 50px;
  height: 50px;
  padding: 0px 0px;
  margin: -10px 20px 0 0 ;
}

.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
}


.nav__logo .logo {
  font-size: 1.5rem;
  color: var(--white);
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background-color: var(--primary-color);
  transition: transform 0.5s;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(100%);
}

.nav__links a {
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--text-dark);
  border-bottom: 2px solid var(--primary-color-dark);
}

.nav__btns {
  display: none;
}

header {
  margin-top: 5rem;
  padding-inline: 1rem;
  position: relative;
  isolation: isolate;
}

header::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  width: calc(100% - 2rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("assets/sunligh.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 3rem;
  z-index: -1;

}

.header__container {
  display: grid;
}

.header__content {
  padding: 4rem 1rem;
  }

.header__content p {
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--extra-light);
  text-align: center;
}

.header__content h1 {
  margin-bottom: 2rem;
  font-size: 4.5rem;
  font-weight: 600;
  color: var(--extra-light);
  line-height: 5.5rem;
  text-align: center;
}

.header__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.header__btns .btn {
  padding: 1rem 2rem;
  width: 40%;
  box-shadow: 1px solid #0a0a0a;
}

.header__btns a {
  padding: 9px 13px;
  font-size: 1.5rem;
  color: var(--primary-color);
  background-color: var(--white);
  border-radius: 100%;
}

.header__btns a:hover {
  color: var(--white);
  background-color: var(--primary-color);
}


.about-section {
  display: flex;
  align-items: center;
  margin: 20px 0px;
  justify-content: space-between;
  background-color: var(--extra-light);
  color: var(--text-dark);
  padding: 80px 10%;
  min-height: 90vh;
  gap: 50px;
}

.about-content {
  flex: 1;
  padding-left: 20px;
  max-width: 550px;
  text-align: left;
}

.about-content h2 {
  font-size: 2.4rem;
  color: var(--primary-color-dark); /* Gold */
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-content .lead {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 1rem;
}

.about-content .services {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.about-content .services li {
  padding-right: 20px;
  margin-bottom: 10px;
  color: var(--text-light);
}


.about-content .cta {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #d4af37;
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.about-content .cta:hover {
  background-color: #d4af37;
  color: #0b0b0b;
  transform: translateY(-3px);
}

/* ======= Right-side Image ======= */
.about-image {
  flex: 1;
  background-image: url('logo.png'); /* استبدليها بصورة مناسبة */
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  min-height: 400px;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
}

/* ======= Responsive ======= */
@media (max-width: 900px) {
  .about-section {
    flex-direction: column-reverse;
    text-align: center;
    padding: 60px 6%;
  }

  .about-content {
    text-align: left;
    padding: 0px 10px;
  }

  .about-content .services li {
    padding-right: 0;
  }

  .about-image {
    width: 100%;
    border-radius: 12px;
  }
}

.destination__container :is(.section__header, .section__description) {
  text-align: left;
  margin-inline-start: unset;
}

.destination__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem 1rem;
}

.destination__card:hover {
  transform: translateY(-20px) !important;
}

.destination__card img {
  height: 250px !important;
  border-radius: 1.5rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.destination__card__details {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.destination__card__details h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
  font-weight: 600;
  columns: var(--text-dark);
}

.destination__card__details p {
  columns: var(--text-light);
}

.destination__rating {
  padding: 5px 10px;
  font-size: 0.9rem;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 1rem;
}

.destination__card:hover .destination__rating {
  background-color: var(--primary-color-dark);
}

.journey__grid {
  margin-top: 2rem;
  display: grid;
  gap: 0 1rem;
}

.journey__card {
  position: relative;
  isolation: isolate;
  padding-top: 4rem;
  overflow: hidden;
}

.journey__card__bg {
  padding: 2rem;
  background-color: var(--extra-light);
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
}

.journey__card__bg span {
  display: inline-block;
  margin-bottom: 4rem;
  font-size: 1.75rem;
  color: var(--primary-color);
}

.journey__card__bg h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.journey__card__content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  background-color: var(--primary-color);
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
}

.journey__card:hover .journey__card__content {
  top: 0;
}

.journey__card__content span {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 7px 9px;
  font-size: 1rem;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 100%;
}

.journey__card__content h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}

.journey__card__content p {
  color: var(--extra-light);
}



.discover__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
}

.discover__card {
  padding: 2rem 1rem;
  text-align: center;
  border-radius: 1rem;
}

.discover__card:hover {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.discover__card span {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 10px 15px;
  font-size: 1.5rem;
  color: var(--primary-color);
  background-color: rgba(40, 135, 255, 0.1);
  border-radius: 100%;
}

.discover__card h4 {
  max-width: 150px;
  margin-inline: auto;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.destination__card p {
  color: var(--text-light);
}

.swiper {
  margin-top: 4rem;
  width: 100%;
}

.swiper-slide {
  min-width: 375px;
}

.client__card {
  padding: 5px;
  background-color: var(--extra-light);
  border-radius: 1rem;
}

.client__card:hover {
  background-color: var(--primary-color);
}

.client__content {
  padding: 1rem;
  background-color: var(--white);
  border-radius: calc(1rem - 5px);
}

.client__rating {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.client__content p {
  color: var(--text-dark);
}

.client__details {
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client__details img {
  max-width: 50px;
  border-radius: 100%;
}

.client__details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.client__card:hover h4 {
  color: var(--white);
}

.client__details h5 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.client__card:hover h5 {
  color: var(--extra-light);
}

footer {
  background-color: var(--extra-light);
}

.footer__container {
  display: grid;
  gap: 4rem 2rem;
}

.footer__col p {
  max-width: 300px;
  margin-block: 2rem;
  color: var(--text-light);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__socials a {
  display: inline-block;
  padding: 7px 10px;
  font-size: 1.25rem;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 100%;
}

.footer__socials a:hover {
  background-color: var(--primary-color-dark);
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.footer__links {
  display: grid;
  gap: 1rem;
}

.footer__links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
}

.footer__links a:hover {
  color: var(--primary-color);
}

.footer__links a span {
  font-size: 1.25rem;
}

.footer__col form {
  display: grid;
  gap: 1rem;
}

.footer__col input {
  padding: 0.75rem;
  font-size: 1rem;
  color: var(--text-dark);
  background-color: var(--white);
  border: 1px solid var(--text-light);
  border-radius: 5px;
}

.footer__col input::placeholder {
  color: var(--text-light);
}

.footer__col .btn {
  border-radius: 5px;
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

  #scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  font-size: 22px;
  cursor: pointer;
  display: none;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: background 0.3s;
}

#scrollToTopBtn:hover {
  background-color: var(--primary-color-dark);
}


.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}



.plan__container .subheader {
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 5px;
}

.plan__container .section__header {
  text-align: center;
  font-size: 3rem;
  line-height: 4rem;
  margin-bottom: 1rem;
}

.plan__container .description {
  text-align: center;
  color: var(--text-light);
}

.plan__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.plan__content .number {
  display: inline-block;
  padding: 5px 15px;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 2rem;
}

.plan__content .number:nth-child(4) {
  background-color: #e98b6d;
}

.plan__content .number:nth-child(7) {
  background-color: #ffa153;
}

.plan__content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.plan__content p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.plan__image {
  position: relative;
}

.plan__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 10rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.plan__image img:nth-child(1) {
  max-width: 250px;
  transform: translate(calc(-50% - 9rem), calc(-50% + 5rem));
  z-index: 3;
}

.plan__image img:nth-child(2) {
  max-width: 260px;
  transform: translate(-50%, calc(-50% - 5rem));
  z-index: 2;
}

.plan__image img:nth-child(3) {
  max-width: 230px;
  transform: translate(calc(-50% + 9rem), calc(-50% + 5rem));
}


.testimonial-slider {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: #fff;
}

.slider-container {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease;
}

.slide {
  background: var(--extra-light);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  padding: 25px;
  flex: 0 0 30%;
  max-width: 30%;
  text-align: left;
  opacity: 0.5;
  transform: scale(0.7);
  transition: all 0.4s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1.2);
  background: var(--white);
}

.slide p {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}

.author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.author h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.author p {
  font-size: 14px;
  color: #777;
  margin: 0;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #e0b84b;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 22px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  z-index: 2;
}

.arrow:hover {
  background: #cfa93f;
}

.prev { left: 2%; }
.next { right: 2%; }

/* ✅ الموبايل */
@media (max-width: 768px) {
  .slider-container {
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
  }

  .slide {
    display: none;
    width: 90%;
    max-width: 350px;
    opacity: 1;
    transform: scale(1);
    margin: 0 auto;
  }

  .slide.active {
    display: block;
  }

  .slide p {
    font-size: 14px;
  }

  .author h4 {
    font-size: 15px;
  }

  .author p {
    font-size: 13px;
  }

  .arrow {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .prev { left: 4%; }
  .next { right: 4%; }
}


.immigration-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--extra-light);
  color: var(--text-dark);
  padding: 80px 10%;
  gap: 50px;
}

.immigration-content {
  flex: 1;
  max-width: 550px;
}

.immigration-content h2 {
  color: #d4af37;
  font-size: 2.2rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.immigration-content .lead {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 24px;
}

.immigration-content .highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.immigration-content .highlights li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 22px;
  color: var(--text-dark);
}

.immigration-content .highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

.immigration-content .cta {
  display: inline-block;
  padding: 12px 28px;
  background-color: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.immigration-content .cta:hover {
  background-color: #d4af37;
  color: var(--extra-light);
  transform: translateY(-3px);
}

/* ======= Image (Right Side) ======= */
.immigration-image {
  flex: 1;
  background-image: url('assets/support-.png'); 
  background-size: cover;
  background-position: bottom center;
  border-radius: 16px;
  min-height: 400px;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
}

/* ======= Responsive ======= */
@media (max-width: 900px) {
  .immigration-section {
    flex-direction: column-reverse;
    padding: 60px 6%;
    text-align: center;
  }

  .immigration-content {
    max-width: 100%;
  }

  .immigration-content .highlights li {
    text-align: left;
  }

  .immigration-image {
    width: 100%;
    min-height: 300px;
  }
}


@media (width > 540px) {
  .destination__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .discover__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__col:last-child {
    grid-area: 2/1/3/2;
  }
  .header__content{
    background: none;
  }
}

@media (width > 768px) {
  nav {
    position: static;
    padding: 2rem 1rem;
    max-width: var(--max-width);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .nav__header {
    flex: 1;
    padding: 0;
    background-color: transparent;
  }

  .nav__logo .logo {
    color: var(--text-dark);
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    width: fit-content;
    padding: 0;
    flex-direction: row;
    background-color: transparent;
    transform: none !important;
  }

  .nav__links a {
    color: var(--text-dark);
  }

  .nav__links a:hover {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color-dark);
  }

  .nav__links li:last-child {
    display: none;
  }

  .nav__btns {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .nav__btns button {
    padding: 0.75rem 2rem;
    background-color: var(--text-dark);
  }

  header {
    margin-top: 0;
  }

  .header__container {
    grid-template-columns:
      minmax(0, 1fr)
      repeat(5, minmax(0, calc(var(--max-width) / 5)))
      minmax(0, 1fr);
  }

  .header__content {
    grid-column: 2/4;
    padding-block: 8rem;
    background-color: #03030333;
    border-top-right-radius: 20px ;
    box-shadow: #25252577 -1px -1px 5px 1px ;
  }

  .header__content :is(p, h1) {
    text-align: left;
  }

  .header__btns {
    justify-content: flex-start;
  }

  .header__image {
    grid-column: 4/8;
    position: relative;
    isolation: isolate;
    height: 100%;
  }

  .header__image img {
    position: absolute;
    top: 2rem;
    left: 0;
    height: 100%;
    width: unset;
  }

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

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

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

  .footer__container {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }

  .footer__col:last-child {
    grid-area: unset;
  }
}

@media (width > 1200px) {
  .header__content {
    padding-inline: 1rem 0;
  }

  .destination__grid {
    gap: 2rem;
  }
}


@media (width < 900px) {

  .plan__grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .plan__image {
    min-height: 600px;
    grid-area: 1/1/2/2;
  }
}


