* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    background: #ffffff;
    color: #171717;
    font-family: "DM Sans", sans-serif;
  }
  
  
  /* =========================================
     HEADER
  ========================================= */
  
  .header {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    height: 65px;
  
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 7px;
  
    color: #111;
    text-decoration: none;
  
    font-size: 20px;
    font-weight: 600;
  }
  
  .logo-symbol {
    font-size: 20px;
    color: #334554;
  }
  
  
  .navbar {
    display: flex;
    align-items: center;
    gap: 35px;
  }
  
  .navbar a {
    text-decoration: none;
    color: #111;
    font-size: 15px;
    font-weight: 500;
}

.navbar .contact-header{
    padding: 10px 15px;
    background: linear-gradient(180deg, rgba(5, 25, 42, 0.75));
    color: #fff;
    border-radius: 20px;
    font-size: 15px;
}
.navbar .contact-header i{
    margin-right: 5px;
}
.navbar .contact-header:hover{
    opacity: 1;
}
  .navbar a:hover {
    opacity: 0.5;
  }
  
  
  /* =========================================
     HERO
  ========================================= */
  
  .hero {
    /* width: 90%; */
    max-width: 1400px;
    height: 500px;
    margin: 0 auto;
    /* border-radius: 9px; */
    position: relative;
    background-image: url("images/header-main.avif");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
  
  .hero-overlay {
    position: absolute;
    inset: 0;
  
    background:
      linear-gradient(
        180deg,
        rgba(5, 25, 42, 0.75),
        rgba(5, 20, 30, 0.05) 45%,
        rgba(5, 10, 15, 0.25)
      );
  }
  
  .hero-content {
    position: absolute;
    inset: 0;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    text-align: center;
  }
  
  .hero h1 {
    color: #fff;
  
    font-size: clamp(38px, 5vw, 76px);
    line-height: 0.88;
  
    font-weight: 700;
    letter-spacing: -3px;
  }
  
  
  
  
  
  /* =========================================
     INTRO
  ========================================= */
  
  .intro-section {
    width: 90%;
    max-width: 80%;
    margin: 50px auto 60px;
    text-align: center;
}
  
  .intro-section p {
    font-family: "Playfair Display", serif;
  
    font-size: 17px;
    line-height: 1.05;
  }
  a{
    text-decoration: none;
  }
  
  
  /* =========================================
     WHY SECTION
  ========================================= */
  
  .why-section {
    width: 90%;
    /* max-width: 900px; */
    min-height: 280px;
    margin: 0 auto 120px;
    padding: 55px;
    border-radius: 9px;
    background: #9c8886;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
  
  .why-left h2 {
    font-family: "Playfair Display", serif;
  
    font-size: 36px;
    line-height: 1;
  
    margin-bottom: 25px;
  }
  
  .why-left p {
    max-width: 250px;
    font-size: 15px;
    line-height: 1.35;
}
  
.why-right p {
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 15px;
}
  
  
  /* =========================================
     EXPERIENCES
  ========================================= */
  
  .travel-process {
    width: 90%;
    /* max-width: 1100px; */
    margin: 10px auto;
    padding: 0px 0;
}
  
  
  /* Header */
  
  .process-header {
    display: grid;
  
    grid-template-columns: 0.7fr 1.3fr 1fr;
  
    gap: 50px;
  
    align-items: end;
  
    margin-bottom: 70px;
  }
  
  
  .process-header > span {
    font-size: 14px;
    letter-spacing: 2px;
    color: #888;
    padding-bottom: 8px;
}
  
  .process-header h2 {
    font-family: "Playfair Display", serif;
  
    font-size: clamp(42px, 5vw, 72px);
  
    font-weight: 400;
  
    line-height: 0.9;
  
    letter-spacing: -2px;
  }
  
  
  .process-header p {
    max-width: 250px;
    font-size: 15px;
    line-height: 1.5;
    color: #777;
    padding-bottom: 5px;
}
  
  
  /* Process List */
  
  .process-list {
    border-top: 1px solid #222;
  }
  
  
  .process-item {
    min-height: 145px;
  
    display: grid;
  
    grid-template-columns: 100px 1fr 80px;
  
    align-items: center;
  
    gap: 30px;
  
    border-bottom: 1px solid #ccc;
  
    transition:
      background 0.3s ease,
      padding 0.3s ease;
  }
  
  
  .process-item:hover {
    background: #e9e3e0;
  
    padding-left: 25px;
  
    padding-right: 25px;
  }
  
  
  /* Number */
  
  .process-number {
    font-family: "Playfair Display", serif;
  
    font-size: 28px;
  
    color: #999;
  }
  
  
  /* Content */
  
  .process-content h3 {
    font-family: "Playfair Display", serif;
  
    font-size: 27px;
  
    font-weight: 400;
  
    margin-bottom: 8px;
  }
  
  
  .process-content p {
    max-width: 430px;
    font-size: 15px;
    line-height: 1.5;
    color: #777;
}
  
  
  /* Arrow */
  
  .process-arrow {
    width: 45px;
    height: 45px;
  
    border: 1px solid #222;
  
    border-radius: 50%;
  
    display: flex;
  
    align-items: center;
  
    justify-content: center;
  
    font-size: 18px;
  
    justify-self: end;
  
    transition:
      background 0.3s ease,
      color 0.3s ease,
      transform 0.3s ease;
  }
  
  
  .process-item:hover .process-arrow {
    background: #222;
  
    color: white;
  
    transform: rotate(45deg);
  }
  
  
  /* Bottom */
  
  .process-bottom {
    display: flex;
  
    align-items: center;
  
    justify-content: space-between;
  
    margin-top: 45px;
  }
  
  
  .process-bottom span {
    font-size: 12px;
    letter-spacing: 2px;
    color: #888;
}
  
  
.process-bottom a {
    color: #111;
    font-size: 12px;
    text-decoration: none;
    border-bottom: 1px solid #111;
    padding-bottom: 5px;
}
  
  
  .process-bottom a:hover {
    opacity: 0.5;
  }
  
  
  /* =========================================
     MOBILE
  ========================================= */
  
  @media (max-width: 768px) {
  
    .travel-process {
        width: 90%;
        margin: 30px auto;
        padding: 40px 0;
    }
  
  
    .process-header {
      display: block;
  
      margin-bottom: 45px;
    }
  
  
    .process-header > span {
      display: block;
  
      margin-bottom: 20px;
    }
  
  
    .process-header h2 {
      font-size: 42px;
  
      margin-bottom: 20px;
    }
  
  
    .process-header p {
        font-size: 13px;
        max-width: 300px;
    }
  
    .process-item {
      min-height: 170px;
  
      grid-template-columns: 45px 1fr 45px;
  
      gap: 15px;
    }
  
  
    .process-item:hover {
      padding-left: 10px;
  
      padding-right: 10px;
    }
  
  
    .process-number {
      font-size: 20px;
    }
  
  
    .process-content h3 {
      font-size: 21px;
    }
  
  
    .process-content p {
        font-size: 13px;
    }
  
  
    .process-arrow {
      width: 35px;
  
      height: 35px;
  
      font-size: 14px;
    }
  
  
    .process-bottom {
      display: block;
    }
  
  
    .process-bottom span {
      display: block;
  
      margin-bottom: 20px;
    }
  
  }
  
  
  /* =========================================
     CTA
  ========================================= */
  
  .cta-section {
    width: 90%;
    /* max-width: 900px; */
    min-height: 300px;
    margin: 0 auto 100px;
    padding: 75px 55px;
    border-radius: 9px;
    background: #ded4d3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
  
  .cta-title h2 {
    font-family: "Playfair Display", serif;
  
    font-size: 38px;
  
    font-weight: 400;
  
    line-height: 1;
  }
  
  .cta-content p {
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 18px;
}
  
  .cta-content h3 {
    font-family: "Playfair Display", serif;
  
    font-size: 21px;
    font-weight: 400;
  
    line-height: 1.05;
  }
  
  
  
  
  /* =========================================
     CITY IMAGE
  ========================================= */
  
  .city-image {
    width: 100%;
    height: 430px;
  
    background-image:
      url("https://images.unsplash.com/photo-1519501025264-65ba15a82390?auto=format&fit=crop&w=2000&q=85");
  
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  
    /* Parallax effect */
    background-attachment: fixed;
  }

  @media (max-width: 768px) {
    .city-image {
      height: 260px;
  
      background-attachment: scroll;
      background-position: center;
    }
  }

  .city-image {
    width: 100%;
    height: 500px;
  
    position: relative;
    overflow: hidden;
  
    background-image:
      url("https://images.unsplash.com/photo-1519501025264-65ba15a82390?auto=format&fit=crop&w=2000&q=85");
  
    background-size: cover;
    background-position: center;
  
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .city-image::before {
    content: "";
  
    position: absolute;
    inset: 0;
  
    background: rgba(0, 0, 0, 0.25);
  }
  
  .city-image-content {
    position: relative;
    z-index: 1;
  
    color: white;
    text-align: center;
  }
  
  .city-image-content span {
    font-size: 14px;
    letter-spacing: 3px;
}
  
  .city-image-content h2 {
    margin-top: 15px;
  
    font-family: "Playfair Display", serif;
  
    font-size: clamp(40px, 6vw, 75px);
  
    font-weight: 400;
  
    line-height: 0.9;
  }
  
  
  /* =========================================
     FOOTER
  ========================================= */
  
  .footer {
    width: 90%;
    /* max-width: 900px; */
    margin: 0 auto;
    min-height: 330px;
    padding: 40px 0;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
}
  
.footer-logo {
    font-size: 35px;
    color: #334554;
    margin-bottom: 20px;
}
  
  .footer-brand h2 {
    font-family: "Playfair Display", serif;
  
    font-size: 30px;
  
    line-height: 1.05;
  
    font-weight: 600;
  }
  
  .footer-links {
    display: flex;
    gap: 160px;
    padding-top: 10px;
}
  
  .footer-links div {
    display: flex;
    flex-direction: column;
  
    gap: 8px;
  }
  
  .footer-links a {
    color: #111;
    text-decoration: none;
    /* font-family: "Playfair Display", serif; */
    font-size: 17px;
}
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  .copyright {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    color: #888;
    font-size: 15px;
}
  
  
  /* =========================================
     TABLET
  ========================================= */
  
  @media (max-width: 900px) {
  
    .hero {
      height: 430px;
    }
  
    .hero h1 {
      font-size: 52px;
    }
  
    .why-section,
    .experiences,
    .cta-section,
    .newsletter,
    .footer {
      width: 85%;
    }
  
    .intro-section {
      margin-top: 100px;
    }
  
    .why-section {
      grid-template-columns: 1fr 1fr;
    }
  
    .cta-section {
      min-height: 320px;
    }
  
    .city-image {
      height: 350px;
    }
  }
  
  
  /* =========================================
     MOBILE
  ========================================= */
  
  @media (max-width: 600px) {
  
    .header {
      width: 90%;
      height: 55px;
    }
  
    .logo {
        font-size: 14px;
    }
  
    .navbar {
      gap: 12px;
    }
  
    .navbar a {
        font-size: 12px;
    }
  
  
    /* Hero */
  
    .hero {
        width: 100%;
        height: 300px;
        /* border-radius: 7px; */
    }
  
    .hero h1 {
      font-size: 34px;
  
      letter-spacing: -1.5px;
  
      line-height: 0.9;
    }
  
  
    /* Search */
  
    .search-section {
      width: 88%;
  
      margin-top: 90px;
    }
  
    .small-heading {
      font-size: 8px;
  
      margin-bottom: 18px;
    }
  
    .search-box {
      padding: 12px;
    }
  
    .search-row {
      flex-direction: column;
    }
  
    .input-group input,
    .passenger-select select,
    .search-btn {
      height: 32px;
    }
  
  
    /* Intro */
  
    .intro-section {
        width: 90%;
        margin: 30px auto 30px;
    }
  
    .intro-section p {
      font-size: 14px;
  
      line-height: 1.08;
    }
  
  
    /* Why */
  
    .why-section {
        width: 90%;
        padding: 35px 25px;
        grid-template-columns: 1fr;
        gap: 25px;
        min-height: auto;
        margin: 0 auto 40px;
    }
  
    .why-left h2 {
      font-size: 30px;
    }
  
    .why-left p {
        font-size: 13px;
    }
  
    .why-right p {
        font-size: 13px;
    }
  
  
    /* Experiences */
  
    .experiences {
      width: 90%;
    }
  
    .experiences > h2 {
      font-size: 27px;
  
      margin-bottom: 40px;
    }
  
    .experience-grid {
      grid-template-columns: 1fr 1fr;
  
      gap: 15px;
    }
  
    .experience-text a {
      font-size: 11px;
    }
  
    .experience-text p {
      font-size: 8px;
    }
  
    .experience-image {
      height: 160px;
    }
  
  
    /* CTA */
  
    .cta-section {
      width: 90%;
  
      padding: 45px 25px;
  
      grid-template-columns: 1fr;
  
      gap: 30px;
  
      min-height: auto;
    }
  
    .cta-title h2 {
      font-size: 31px;
    }
  
    .cta-content p {
        font-size: 12px;
    }
  
    .cta-content h3 {
      font-size: 18px;
    }
  
  
    /* Newsletter */
  
    .newsletter {
      width: 90%;
  
      padding: 45px 25px;
  
      grid-template-columns: 1fr;
  
      gap: 30px;
  
      min-height: auto;
    }
  
    .newsletter h3 {
      font-size: 18px;
    }
  
  
    /* City */
  
    .city-image {
      height: 260px;
    }
  
  
    /* Footer */
  
    .footer {
        width: 90%;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 20px;
        min-height: 260px;
        padding-top: 35px;
      }
  
    .footer-logo {
      font-size: 25px;
  
      margin-bottom: 20px;
    }
  
    .footer-brand h2 {
      font-size: 21px;
    }
  
    .footer-links {
      gap: 15px;
      display: block;
    }
    .footer-links div {
        margin-bottom: 15px;
    }
  
    .footer-links a {
        font-size: 15px;
    }
  
    .copyright {
        font-size: 12px;
        bottom: 15px;
    }
  }



/* =========================================
   ABOUT HERO
========================================= */

.about-hero {
  width: 100%;
  height: 430px;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  overflow: hidden;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.48),
      rgba(255, 255, 255, 0.48)
    ),
    url("images/about-hero.avif");

  background-size: cover;
  background-position: center;
}


.about-hero-content {
  width: 90%;
  max-width: 600px;

  position: relative;
  z-index: 2;
}


.about-hero h1 {
  font-family: "DM Sans", sans-serif;

  font-size: clamp(45px, 6vw, 70px);

  line-height: 1;

  letter-spacing: -3px;

  margin-bottom: 12px;
}


.hero-subtitle {
  font-size: 15px;

  margin-bottom: 25px;
}


.hero-description {

  margin: 8px auto;

  font-size: 15px;

  line-height: 1.45;
}


/* =========================================
   COMMON ABOUT CARD
========================================= */

.about-card {
    width: 90%;
    /* max-width: 900px; */
    margin: 40px auto;
    border-radius: 9px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}


.about-card h2 {
  font-family: "Playfair Display", serif;

  font-size: 30px;

  font-weight: 400;

  line-height: 1;
}


.card-text p {
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 8px;
}


/* =========================================
   WHAT SETS US APART
========================================= */

.sets-apart {
  min-height: 280px;

  margin-top: 15px;

  background: #ddd3d1;
}


.sets-apart .card-text {
  max-width: 350px;
}


/* =========================================
   OUR PHILOSOPHY
========================================= */

.philosophy-card {
  min-height: 350px;

  background: #b09e9b;

  color: #111;
}


.philosophy-content {
  height: 100%;

  display: flex;

  align-items: center;
}


.philosophy-content h2 {
  margin-bottom: 25px;
}


.philosophy-content p {
    max-width: 260px;
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 15px;
}


.philosophy-image {
  width: 100%;

  height: 285px;

  border-radius: 7px;

  overflow: hidden;
}


.philosophy-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}


/* =========================================
   WHO WE SERVE
========================================= */

.who-we-serve {
  min-height: 200px;

  background: #9d8985;

  color: #ffffff;
}


.who-we-serve .card-title h3 {
  font-family: "Playfair Display", serif;

  font-size: 17px;

  font-weight: 400;

  line-height: 1.05;

  margin-top: 15px;
}


.who-we-serve .card-text {
  max-width: 330px;
}


/* =========================================
   LET'S WRITE YOUR CHAPTER
========================================= */

.chapter-section {
  min-height: 280px;

  background: #b7a6a3;
}


.chapter-section .card-text {
  max-width: 330px;
}


.chapter-section .card-text p {
  margin-bottom: 20px;
}




/* =========================================
   CITY IMAGE
========================================= */

.city-image {
  width: 100%;

  height: 430px;

  margin-top: 0;

  background-image:
    url("images/main-btm.avif");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  background-attachment: fixed;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .about-card,
  .newsletter {
    width: 90%;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .about-hero {
    height: 360px;
  }


  .about-hero h1 {
    font-size: 45px;

    letter-spacing: -2px;
  }


  .hero-subtitle {
    font-size: 12px;
}


.hero-description {
    font-size: 12px;
    max-width: 300px;
}


  .about-card {
    width: 90%;

    padding: 35px 20px;

    grid-template-columns: 1fr;

    gap: 30px;

    margin: 40px auto;
  }


  .about-card h2 {
    font-size: 27px;
  }


  .card-text p {
    font-size: 12px;
}


  /* Philosophy */

  .philosophy-card {
    padding: 35px 20px;
  }


  .philosophy-image {
    height: 230px;
  }


  /* Newsletter */

  .newsletter {
    width: 90%;

    padding: 40px 20px;

    grid-template-columns: 1fr;

    gap: 30px;

    min-height: 260px;
  }


  .newsletter-form button {
    align-self: flex-start;
  }


  /* City image */

  .city-image {
    height: 280px;

    background-attachment: scroll;

    background-position: center;
  }

}

/* =========================================
   COOKIE CONTAINER
========================================= */

.cookie-container {
    position: fixed;
  
    left: 50%;
  
    bottom: 25px;
  
    transform: translateX(-50%);
  
    width: calc(100% - 40px);
  
    max-width: 900px;
  
    padding: 22px 25px;
  
    background: #ded4d2;
  
    border: 1px solid rgba(0, 0, 0, 0.08);
  
    border-radius: 12px;
  
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
  
    z-index: 9999;
  
    animation: cookieSlideUp 0.5s ease;
  }
  
  
  /* =========================================
     CONTENT
  ========================================= */
  
  .cookie-content {
    display: flex;
  
    align-items: center;
  
    gap: 20px;
  }
  
  
  .cookie-icon {
    width: 42px;
  
    height: 42px;
  
    flex-shrink: 0;
  
    display: flex;
  
    align-items: center;
  
    justify-content: center;
  
    font-size: 25px;
  
    color: #334554;
  
    border: 1px solid rgba(0, 0, 0, 0.15);
  
    border-radius: 50%;
  }
  
  
  /* =========================================
     TEXT
  ========================================= */
  
  .cookie-text {
    flex: 1;
  }
  
  
  .cookie-text h3 {
    margin: 0 0 6px;
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 400;
}
  
.cookie-text p {
    margin: 0;
    max-width: 570px;
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #555;
}
  
  
.cookie-text a {
    display: inline-block;
    margin-top: 7px;
    color: #111;
    font-size: 14px;
    text-decoration: underline;
}
  
  
  /* =========================================
     BUTTONS
  ========================================= */
  
  .cookie-actions {
    display: flex;
  
    flex-direction: column;
  
    gap: 8px;
  
    min-width: 95px;
  }
  
  
  .cookie-btn {
    width: 95px;
    height: 38px;
    border-radius: 3px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.25s ease;
}
  
  
  .cookie-accept {
    background: #111;
  
    color: #fff;
  
    border: 1px solid #111;
  }
  
  
  .cookie-accept:hover {
    background: #333;
  }
  
  
  .cookie-decline {
    background: transparent;
  
    color: #111;
  
    border: 1px solid #777;
  }
  
  
  .cookie-decline:hover {
    background: rgba(0, 0, 0, 0.06);
  }
  
  
  /* =========================================
     ANIMATION
  ========================================= */
  
  @keyframes cookieSlideUp {
  
    from {
      opacity: 0;
  
      transform:
        translate(-50%, 40px);
    }
  
    to {
      opacity: 1;
  
      transform:
        translate(-50%, 0);
    }
  
  }
  
  
  /* =========================================
     HIDDEN
  ========================================= */
  
  .cookie-container.hide {
    animation: cookieSlideDown 0.35s ease forwards;
  }
  
  
  @keyframes cookieSlideDown {
  
    from {
      opacity: 1;
  
      transform:
        translate(-50%, 0);
    }
  
    to {
      opacity: 0;
  
      transform:
        translate(-50%, 40px);
    }
  
  }
  
  
  /* =========================================
     MOBILE
  ========================================= */
  
  @media (max-width: 600px) {
  
    .cookie-container {
      width: calc(100% - 24px);
  
      bottom: 12px;
  
      padding: 18px;
  
      border-radius: 10px;
    }
  
  
    .cookie-content {
      align-items: flex-start;
  
      flex-wrap: wrap;
  
      gap: 12px;
    }
  
  
    .cookie-icon {
      width: 35px;
  
      height: 35px;
  
      font-size: 18px;
    }
  
  
    .cookie-text {
      width: calc(100% - 50px);
  
      flex: none;
    }
  
  
    .cookie-text h3 {
      font-size: 17px;
    }
  
  
    .cookie-text p {
      font-size: 9px;
    }
  
  
    .cookie-actions {
      width: 100%;
  
      flex-direction: row;
  
      margin-top: 5px;
    }
  
  
    .cookie-btn {
      flex: 1;
  
      width: auto;
    }
  
  }


/* =========================================
   CONTACT HERO
========================================= */

.contact-hero {
    width: 100%;
    min-height: 570px;
  
    position: relative;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    padding: 50px 20px;
  
    background-image:
      linear-gradient(
        rgba(20, 30, 35, 0.15),
        rgba(20, 30, 35, 0.15)
      ),
      url("images/contact-hero.avif");
  
    background-size: cover;
    background-position: center;
  }
  
  
  /* =========================================
     CONTACT CARD
  ========================================= */
  
  .contact-card {
    width: 76%;
    max-width: 1000px;
  
    min-height: 470px;
  
    padding: 70px 55px;
  
    background: #ded4d2;
  
    border-radius: 15px;
  
    display: grid;
  
    grid-template-columns: 1fr 1fr;
  
    gap: 60px;
  
    align-items: center;
  }
  
  
  /* =========================================
     CONTACT TITLE
  ========================================= */
  
  .contact-title h1 {
    font-family: "DM Sans", sans-serif;
  
    font-size: clamp(65px, 8vw, 105px);
  
    font-weight: 400;
  
    line-height: 0.82;
  
    letter-spacing: -5px;
  
    color: #050505;
  }
  
  
  /* =========================================
     CONTACT CONTENT
  ========================================= */
  
  .contact-content {
    max-width: 420px;
  
    font-size: 12px;
  
    line-height: 1.45;
  
    font-style: italic;
  }
  
  
  .contact-content p {
    margin-bottom: 10px;
    font-size: 15px;
}
  
  
  .contact-content .contact-intro {
    margin-bottom: 20px;
    font-size: 15px;
}
  
  
.contact-content strong {
    font-weight: 700;
    font-size: 15px;
}
  
  
  .contact-content a {
    color: #111;
  
    text-decoration: none;
  }
  
  
  .contact-content a:hover {
    text-decoration: underline;
  }
  
  
  .contact-description {
    margin-top: 5px;
  }
  
  
  /* =========================================
     NEWSLETTER
  ========================================= */
  
  .contact-newsletter {
    width: 90%;
    /* max-width: 1000px; */
    /* min-height: 410px; */
    margin: 50px auto;
    padding: 60px 55px;
    border-radius: 15px;
    background: #f4f1f0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}
  
  /* =========================================
     NEWSLETTER TITLE
  ========================================= */
  
  .newsletter-heading h2, .newsletter-form h2 {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    font-weight: 400;
    font-style: italic;
    line-height: 1;
}
  
  
  /* =========================================
     NEWSLETTER FORM
  ========================================= */
  
  .newsletter-form {
    width: 100%;
  }
  
  
  .newsletter-form form {
    margin-top: 15px;
  
    display: flex;
  
    flex-direction: column;
  
    align-items: flex-start;
  }
  
  
  .newsletter-form input[type="email"] {
    width: 100%;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #9b9b9b;
    outline: none;
    background: transparent;
    font-family: Arial, sans-serif;
    font-size: 15px;
}
  
  
  .newsletter-form input[type="email"]::placeholder {
    color: #999;
  }
  
  
  .newsletter-form button {
    width: 110px;
    height: 34px;
    margin: 28px auto 15px;
    border: none;
    border-radius: 3px;
    background: #050505;
    color: white;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}
  
  
  .newsletter-form button:hover {
    background: #333;
  
    transform: translateY(-2px);
  }
  
  
  /* =========================================
     AGREEMENT
  ========================================= */
  
  .newsletter-agreement {
    display: flex;
  
    align-items: flex-start;
  
    justify-content: center;
  
    gap: 4px;
  
    width: 100%;
  
    color: #999;
  
    font-family: Arial, sans-serif;
  
    font-size: 9px;
  
    line-height: 1.4;
  
    text-align: center;
  }
  
  
  .newsletter-agreement input {
    width: 11px;
  
    height: 11px;
  
    margin-top: 1px;
  
    flex-shrink: 0;
  }
  
  
  .newsletter-agreement a {
    color: #009bd4;
  
    text-decoration: none;
  }
  
  
  .newsletter-agreement a:hover {
    text-decoration: underline;
  }
  
  
  /* =========================================
     CITY IMAGE
  ========================================= */
  
  .contact-city-image {
    width: 100%;
    height: 500px;
  
    position: relative;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    overflow: hidden;
  
    background-image:
      url("images/main-btm.avif");
  
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  
    /* Parallax */
    background-attachment: fixed;
  }
  
  
  /* Dark overlay */
  
  .contact-city-image::before {
    content: "";
  
    position: absolute;
  
    inset: 0;
  
    background: rgba(0, 0, 0, 0.32);
  }
  
  
  /* Text */
  
  .city-image-overlay {
    position: relative;
  
    z-index: 2;
  
    color: #fff;
  
    text-align: center;
  
    max-width: 600px;
  
    padding: 20px;
  }
  
  
  .city-image-overlay span {
    display: block;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 4px;
}
  
  
  .city-image-overlay h2 {
    margin: 0;
  
    font-family: "Playfair Display", serif;
  
    font-size: clamp(50px, 7vw, 85px);
  
    font-weight: 400;
  
    line-height: 0.9;
  
    letter-spacing: -2px;
  }
  
  
  .city-image-overlay p {
    margin-top: 25px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
}
  
  
.city-image-overlay a {
    display: inline-block;
    margin-top: 30px;
    padding-bottom: 6px;
    color: #fff;
    border-bottom: 1px solid #fff;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 1.5px;
    transition: opacity 0.3s ease;
}
  
  
  .city-image-overlay a:hover {
    opacity: 0.6;
  }
  
  
  /* =========================================
     TABLET
  ========================================= */
  
  @media (max-width: 900px) {
  
    .contact-card,
    .contact-newsletter {
      width: 90%;
    }
  
  
    .contact-card {
      padding: 55px 40px;
  
      gap: 35px;
    }
  
  
    .contact-title h1 {
      font-size: 70px;
    }
  
  
    .contact-content {
      font-size: 10px;
    }
  
  }
  
  
  /* =========================================
     MOBILE
  ========================================= */
  
  @media (max-width: 600px) {
  
    .contact-hero {
      min-height: auto;
  
      padding: 35px 0;
    }
  
  
    .contact-card {
      width: 86%;
  
      min-height: auto;
  
      padding: 45px 25px;
  
      grid-template-columns: 1fr;
  
      gap: 35px;
  
      border-radius: 12px;
    }
  
  
    .contact-title h1 {
      font-size: 58px;
  
      letter-spacing: -3px;
    }
  
  
    .contact-content {
      font-size: 9px;
  
      line-height: 1.5;
    }
  
  
    .contact-newsletter {
      width: 86%;
  
      min-height: 300px;
  
      padding: 45px 25px;
  
      grid-template-columns: 1fr;
  
      gap: 35px;
  
      border-radius: 12px;
    }
  
  
    .newsletter-heading h2,
    .newsletter-form h2 {
      font-size: 23px;
    }
  
  
    .newsletter-form button {
      margin-left: 0;
  
      margin-right: 0;
    }
  
  
    .newsletter-agreement {
      justify-content: flex-start;
  
      text-align: left;
    }
  
  
    @media (max-width: 600px) {

        .contact-city-image {
          height: 350px;
      
          background-attachment: scroll;
        }
      
        .city-image-overlay h2 {
          font-size: 48px;
        }
      
        .city-image-overlay span {
          font-size: 8px;
      
          letter-spacing: 3px;
        }
      
        .city-image-overlay p {
          font-size: 9px;
        }
      
      }
  
  }

  /* =========================================
   COOKIES PAGE
========================================= */

.cookies-page {
    width: 100%;
  
    padding: 55px 20px 80px;
  }
  
  
  .cookies-content {
    width: 90%;
    margin: 0 auto;
}
  
  
  /* =========================================
     TITLE
  ========================================= */
  
  .cookies-content h1 {
    font-family: "Playfair Display", serif;
    font-size: 35px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
}
  
  
  .updated {
    font-size: 9px;
  
    color: #555;
  
    margin-bottom: 25px;
  }
  
  
  /* =========================================
     PARAGRAPHS
  ========================================= */
  
  .cookies-content p {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: #333;
    margin-bottom: 20px;
}
  
  
  /* =========================================
     HEADINGS
  ========================================= */
  
  .cookies-content h2 {
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 500;
    margin-top: 27px;
    margin-bottom: 18px;
}
  
  
.cookies-content h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    margin-top: 24px;
    margin-bottom: 10px;
}
  
  
  /* =========================================
     LINKS
  ========================================= */
  
  .cookies-content a {
    color: #111;
  
    text-decoration: none;
  }
  
  
  .cookies-content a:hover {
    text-decoration: underline;
  }
  
  
  /* =========================================
     CONTACT DETAILS
  ========================================= */
  
  .contact-details p {
    margin-bottom: 20px;
  }

  @media (max-width: 768px) {
  
    .cookies-page {
      padding-top: 45px;
    }
  
  
    .cookies-content {
      max-width: 650px;
      margin: 0;
    }
  
  
   
  
  }
  
  
  /* =========================================
     MOBILE
  ========================================= */
  
  @media (max-width: 600px) {
  
  
    .cookies-page {
      padding: 35px 25px 30px;
    }
  
    .cookies-content h1 {
      font-size: 28px;
    }
  
    .cookies-content p {
        font-size: 13px;
        line-height: 1.55;
    }
  
  
    .cookies-content h2, .cookies-content h3 {
        font-size: 14px;
    }
    .contact-header{
        display: none;
    }
  }

  /* =========================================
   REFUND PAGE
========================================= */

.refund-page {
    width: 100%;
  
    padding: 55px 20px 80px;
  }
  
  
  .refund-content {
    width: 90%;
    /* max-width: 590px; */
    margin: 0 auto;
}
  
  
  /* =========================================
     PAGE TITLE
  ========================================= */
  
  .refund-content h1 {
    font-family: "Playfair Display", serif;
    font-size: 35px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
}
  
  
  .updated {
    font-size: 9px;
  
    color: #555555;
  
    margin-bottom: 25px;
  }
  
  
  /* =========================================
     TEXT
  ========================================= */
  
  .refund-content p {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: #333333;
    margin-bottom: 20px;
}
  
  /* =========================================
     SECTION HEADINGS
  ========================================= */
  
  .refund-content h2 {
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 500;
    margin-top: 27px;
    margin-bottom: 18px;
}
  
  
  /* =========================================
     LINKS
  ========================================= */
  
  .refund-content a {
    color: #111111;
  
    text-decoration: none;
  }
  
  
  .refund-content a:hover {
    text-decoration: underline;
  }
  
  
  /* =========================================
     CONTACT DETAILS
  ========================================= */
  
  .contact-details p {
    margin-bottom: 20px;
  }
  .ft-bd-top{
    border-top: 2px solid #000;
  }
  
  

  @media (max-width: 768px) {
  
    .refund-page {
      padding-top: 45px;
    }
  
  
    .refund-content {
      max-width: 650px;
      margin: 0;
    }
  
  }
  
  
  /* =========================================
     MOBILE
  ========================================= */
  
  @media (max-width: 600px) {
  
  
    .refund-page {
      padding: 35px 25px 60px;
    }
  
  
    .refund-content h1 {
      font-size: 28px;
    }
  
  
    .refund-content p {
        font-size: 12px;
        line-height: 1.55;
    }
  
  
    .refund-content h2 {
        font-size: 13px;
    }
  
  }

  /* =========================================
   PRIVACY POLICY
========================================= */

.privacy-page {
    width: 100%;
  
    padding: 55px 20px 80px;
  
    background: #ffffff;
  }
  
  
  .privacy-content {
    width: 90%;
    /* max-width: 590px; */
    margin: 0 auto;
}
  
  
  /* =========================================
     TITLE
  ========================================= */
  
  .privacy-content h1 {
    font-family: "Playfair Display", serif;
    font-size: 35px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #111;
}
  
  
  .privacy-content .updated {
    font-size: 9px;
  
    color: #555;
  
    margin-bottom: 25px;
  }
  
  
  /* =========================================
     PARAGRAPHS
  ========================================= */
  
  .privacy-content p {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: #333;
    margin-bottom: 20px;
}
  
  
  /* =========================================
     SECTION HEADINGS
  ========================================= */
  
  .privacy-content h2 {
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    color: #222;
    margin-top: 28px;
    margin-bottom: 18px;
}
  
  
  /* =========================================
     LIST
  ========================================= */
  
  .privacy-content ul {
    margin: 0 0 20px 16px;
  
    padding: 0;
  }
  
  
  .privacy-content li {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: #333;
    margin-bottom: 3px;
}
  
  
  /* =========================================
     LINKS
  ========================================= */
  
  .privacy-content a {
    color: #111;
  
    text-decoration: none;
  }
  
  
  .privacy-content a:hover {
    text-decoration: underline;
  }
  
  
  /* =========================================
     CONTACT
  ========================================= */
  
  .privacy-contact p {
    margin-bottom: 20px;
  }
  
  
  /* =========================================
     TABLET
  ========================================= */
  
  @media (max-width: 768px) {
  
    .privacy-page {
      padding: 45px 20px 65px;
    }
  
  
    .privacy-content {
      max-width: 650px;
      margin: 0;
    }
  
  }
  
  
  /* =========================================
     MOBILE
  ========================================= */
  
  @media (max-width: 600px) {
  
    .privacy-page {
        padding: 20px 25px 60px;
    }
  
  
    .privacy-content h1 {
      font-size: 28px;
    }
  
  
    .privacy-content p {
        font-size: 12px;
        line-height: 1.55;
    }
  
  
    .privacy-content h2 {
        font-size: 13px;
        margin-top: 25px;
        margin-bottom: 15px;
    }
  
  
    .privacy-content li {
        font-size: 12px;
    }
  
  }


  /* =========================================
   TERMS & CONDITIONS
========================================= */

.terms-page {
    width: 100%;
  
    padding: 55px 20px 80px;
  
    background: #ffffff;
  }
  
  
  .terms-content {
    width: 90%;
    /* max-width: 590px; */
    margin: 0 auto;
}
  
  
  /* =========================================
     TITLE
  ========================================= */
  
  .terms-content h1 {
    font-family: "Playfair Display", serif;
    font-size: 35px;
    font-weight: 400;
    line-height: 1.1;
    color: #111;
    margin-bottom: 20px;
}
  
  
  .terms-content .updated {
    font-size: 9px;
  
    color: #555;
  
    margin-bottom: 25px;
  }
  
  
  /* =========================================
     PARAGRAPHS
  ========================================= */
  
  .terms-content p {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: #333;
    margin-bottom: 20px;
}
  
  /* =========================================
     SECTION HEADINGS
  ========================================= */
  
  .terms-content h2 {
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    color: #222;
    margin-top: 28px;
    margin-bottom: 18px;
}
  
  
  /* =========================================
     CONTACT
  ========================================= */
  
  .terms-contact p {
    margin-bottom: 20px;
  }
  
  
  /* =========================================
     LINKS
  ========================================= */
  
  .terms-content a {
    color: #111;
  
    text-decoration: none;
  }
  
  
  .terms-content a:hover {
    text-decoration: underline;
  }
  
  
  /* =========================================
     TABLET
  ========================================= */
  
  @media (max-width: 768px) {
  
    .terms-page {
      padding: 45px 20px 65px;
    }
  
  
    .terms-content {
      max-width: 650px;
      margin: 0;
  }
  
  }
  
  
  /* =========================================
     MOBILE
  ========================================= */
  
  @media (max-width: 600px) {
  
    .terms-page {
      padding: 35px 25px 60px;
    }
  
  
    .terms-content h1 {
      font-size: 28px;
    }
  
  
    .terms-content p {
        font-size: 13px;
        line-height: 1.55;
    }
  
  
    .terms-content h2 {
        font-size: 14px;
        margin-top: 25px;
        margin-bottom: 15px;
    }
  
  }


  /* =========================
   GCLID INTRO IMAGE
========================= */

.gclid-intro {
  position: fixed;
  top: 0;
  left: 0;

  width: 100vw;
  height: 100vh;

  background: #fff;
  z-index: 999999;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  /* Remove link styling */
  text-decoration: none;
}

/* Desktop */
.gclid-intro .intro-desktop {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100vw;
  max-height: 100vh;
  /* object-fit: contain; */
  /* object-position: center; */
}

.gclid-intro .intro-mobile {
  display: none;
}

/* Mobile */
@media (max-width: 600px) {

  .gclid-intro .intro-desktop {
    display: none !important;
  }

  .gclid-intro .intro-mobile {
    display: block !important;
    width: 100%;
    height: auto;
    /* max-width: 100vw; */
    max-height: 100vh;
    /* object-fit: contain; */
    /* object-position: center; */
}
}



/* Modal Overlay Background */
.travel-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Modal Active State */
.travel-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Container Card */
.travel-modal {
  position: relative;
  width: 90%;
  max-width: 460px;
  background: #faf8f5; /* Warm luxury off-white */
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  text-align: center;
  border: 1px solid #e2ded8;
}

/* Close Button */
.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s ease;
}
.modal-close-btn:hover {
  color: #ffffff;
}

/* Top Dark Slate Header */
.modal-header {
  background: #3c4a56; /* Global Journey pill button slate color */
  color: #ffffff;
  padding: 30px 20px 22px 20px;
}

.modal-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
  font-size: 18px;
  color: #ffffff;
}

.company-subtext {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.8;
  text-transform: uppercase;
}

.modal-header h2 {
  font-family: 'Playfair Display', serif; /* Matching heading font */
  font-size: 24px;
  margin: 6px 0 6px 0;
  font-weight: 500;
}

.modal-header p {
  font-size: 13px;
  margin: 0;
  opacity: 0.85;
  font-weight: 400;
}

/* Feature Grid */
.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 20px 20px 15px 20px;
}

.grid-item {
  border: 1px solid #e5e0d8;
  border-radius: 8px;
  padding: 11px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #2b353e;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
}

.grid-item i {
  color: #3c4a56;
  font-size: 13px;
}

/* Phone Action Button (Matches Website Call Pill) */
.modal-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 5px 20px 0 20px;
  background-color: #3c4a56;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 13px;
  border-radius: 50px; /* Matching pill shape */
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.modal-call-btn:hover {
  background-color: #2a343d;
  transform: translateY(-1px);
}

/* Footer Section */
.modal-footer {
  padding: 14px 20px 20px 20px;
}

.toll-free {
  font-size: 11px;
  font-weight: 600;
  color: #66707a;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.disclaimer {
  font-size: 9px;
  color: #8a949e;
  line-height: 1.35;
  margin: 0;
}

/* =========================================
   REVIEWS / TESTIMONIALS
========================================= */

.reviews-section {
  width: 90%;
  margin: 0 auto 50px;
  padding: 20px 0;
}

/* Header */

.reviews-header {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.reviews-header span {
  display: block;
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 2px;
  color: #888;
}

.reviews-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -2px;
}

.reviews-header > p {
  max-width: 300px;
  font-size: 15px;
  line-height: 1.5;
  color: #777;
  padding-bottom: 5px;
}


/* Review Grid */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}


/* Review Card */

.review-card {
  min-height: 330px;
  padding: 35px;
  border: 1px solid #d8d3d0;
  border-radius: 10px;
  background: #f8f5f3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease,
              background 0.3s ease,
              box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  background: #ded4d3;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}


/* Featured Card */

.featured-review {
  background: #9c8886;
  color: #fff;
  border-color: #9c8886;
}

.featured-review:hover {
  background: #8d7976;
}


/* Stars */

.review-stars {
  font-size: 16px;
  letter-spacing: 3px;
  color: #334554;
  margin-bottom: 25px;
}

.featured-review .review-stars {
  color: #fff;
}


/* Review Text */

.review-text {
  font-family: "Playfair Display", serif;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 400;
  margin-bottom: 35px;
}


/* Author */

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.featured-review .review-author {
  border-top-color: rgba(255, 255, 255, 0.25);
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #334554;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.featured-review .review-avatar {
  background: #fff;
  color: #334554;
}

.review-author h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}

.review-author span {
  font-size: 11px;
  color: #777;
}

.featured-review .review-author span {
  color: rgba(255, 255, 255, 0.75);
}


/* Bottom */

.reviews-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid #222;
}

.reviews-bottom span {
  font-size: 12px;
  letter-spacing: 2px;
  color: #888;
}

.reviews-bottom strong {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 400;
}


/* =========================================
 TABLET
========================================= */

@media (max-width: 900px) {

  .reviews-section {
      width: 85%;
  }

  .reviews-header {
      grid-template-columns: 1fr 1fr;
      gap: 35px;
  }

  .reviews-grid {
      grid-template-columns: 1fr 1fr;
  }

  .review-card {
      min-height: 310px;
      padding: 28px;
  }

  .review-text {
      font-size: 18px;
  }

  .review-card:last-child {
      grid-column: 1 / -1;
  }
}


/* =========================================
 MOBILE
========================================= */

@media (max-width: 600px) {

  .reviews-section {
      width: 90%;
      margin-bottom: 60px;
      padding: 10px 0;
  }

  .reviews-header {
      display: block;
      margin-bottom: 35px;
  }

  .reviews-header span {
      font-size: 10px;
      letter-spacing: 1.5px;
      margin-bottom: 15px;
  }

  .reviews-header h2 {
      font-size: 40px;
      letter-spacing: -1.5px;
      margin-bottom: 20px;
  }

  .reviews-header > p {
      font-size: 13px;
      max-width: 300px;
      line-height: 1.45;
  }

  .reviews-grid {
      grid-template-columns: 1fr;
      gap: 15px;
  }

  .review-card {
      min-height: 280px;
      padding: 25px;
  }

  .review-card:last-child {
      grid-column: auto;
  }

  .review-stars {
      font-size: 13px;
      margin-bottom: 20px;
  }

  .review-text {
      font-size: 18px;
      line-height: 1.3;
      margin-bottom: 25px;
  }

  .review-author {
      padding-top: 15px;
  }

  .reviews-bottom {
      margin-top: 25px;
  }

  .reviews-bottom span {
      font-size: 9px;
      letter-spacing: 1.5px;
  }

  .reviews-bottom strong {
      font-size: 18px;
  }
}