body {
    font-family: "DM Sans", sans-serif;
}

* {
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #2887ff;
    --primary-color-dark: #2476da;
    --text-dark: #0a0a0a;
    --text-light: #737373;
    --extra-light: #f3f4f6;
    --white: #ffffff;
    --max-width: 1200px;
    --swiper-navigation-size: 44px;
    --swiper-theme-color: #007aff;
}

/* NAVIGATION */
.nav-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 38px 12vw;
}

.logo {
    color: var(--primary-color);
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: 800;
    margin-right: 55px;
}

.nav-links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    list-style: none;
    margin-top: 5px;
}

.nav-links li a {
    padding: 0px 20px;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
}

.nav-links li:hover {
    cursor: pointer;
    transform: scale(1.1);
    font-size: 17px;
}

.nav-button .btn {
    width: 155px;
    height: 45px;
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    background-color: transparent;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
}

.nav-button .btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    cursor: pointer;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* HERO SECTION */
.hero-section {
    background-image: url(/hightower-images/header-bg.jpg);
    background-position: center;
    background-size: cover;
    height: 84vh;
    width: 98%;
    border-radius: 30px;
    margin: 0px 20px 0px 20px;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    animation-fill-mode: forwards;
}

.hero-write-up {
    width: 40%;
    margin-left: 150px;
    margin-top: 130px;
    margin-bottom: 100px;
    opacity: 0;
    animation: slideButtom 0.5s ease-out 0.7s forwards;
}

.hero-write-up h6 {
    font-size: 15px;
    font-weight: 500;
    padding-bottom: 10px;
    animation: slideButtom 0.5s ease-out 0.7s forwards;
}

.hero-write-up h1 {
    font-size: 4rem;
    line-height: 5rem;
    padding-bottom: 40px;
    animation: slideButtom 0.5s ease-out 0.7s forwards;
}

.hero-write-up span {
    color: var(--white);
}

.hero-write-up span::after {
    content: "!";
    color: var(--primary-color);
}

.hero-write-up .btn1 {
    width: 180px;
    height: 50px;
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    background-color: var(--primary-color);
    border: none;
    border-radius: 25px;
    animation: slideButtom 0.7s ease-out 0.7s forwards;
}

.hero-write-up .btn2 {
    width: 50px;
    height: 50px;
    margin-left: 10px;
    background-color: var(--white);
    border-radius: 50%;
    border: none;
    animation: slideButtom 0.7s ease-out 0.7s forwards;
}

.hero-write-up .btn2 i {
    color: var(--primary-color);
    font-size: 24px;
}

.hero-write-up .btn2 a {
    text-decoration: none;
}

.hero-write-up .btn1:hover {
    background-color: var(--primary-color-dark);
    cursor: pointer;
}

.hero-write-up .btn2:hover {
    background-color: var(--primary-color);
    cursor: pointer;
}

.hero-write-up .btn2 i:hover {
    color: var(--extra-light);
}

.hero-img {
    width: 60%;
    padding-top: 30px;
    animation: slideRight 0.3s ease-out 0.2s;
    z-index: 999;
}

@keyframes slideRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideButtom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* DESTINATION SECTION */
.destination {
    margin: 160px;
}

.dest-header {
    text-align: center;
}

.dest-header h3 {
    font-size: 24px;
    font-weight: 700;
    padding: 5px;
    color: var(--text-dark);
}

.dest-header p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
}

.destination-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 65px;
    gap: 3.6rem;
    flex-wrap: wrap;
}

.destination-card {
    cursor: pointer;
    width: 260px;
    animation: slideButtom 1s ease-out 1.3s forwards;
}

.destination-card img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.2) 5px 5px 20px;
    transition: transform 0.3s ease-in-out;
}

.destination-card img:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.destination-details {
    display: flex;
    flex-direction: row;
    padding-left: 15px;
    justify-content: space-between;
    align-items: flex-start;
}

.destination-details h4 {
    font-size: 20px;
    padding-bottom: 10px;
}

.destination-details p {
    font-size: 15px;
    color: var(--text-light);
}

.destination-details .destination-ratings {
    font-size: 0.9rem;
    color: var(--white);
    background-color: var(--primary-color);
    padding: 3px 10px;
    width: 40px;
    height: 24px;
    border-radius: 1.1rem;
    transition: 0.3s;
    margin-left: 12px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.destination-details .destination-ratings:hover {
    background-color: var(--primary-color-dark);
    cursor: pointer;
}

/* TOUR SECTION */
.tour {
    margin: 250px 210px 50px 210px;
  }

  .tour-header h3 {
    font-size: 24px;
  }

  .tour-header p {
    padding-top: 5px;
    font-size: 15px;
  }

  .tour-grid {
    padding: 0px;
    margin: 0px;
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0px 1rem;
  }


  .tour-card {
    padding: 0px;
    margin: 0px;
    position: relative;
    isolation: isolate;
    padding-top: 3rem;
    overflow: hidden;
    width: 355px;
    height: 160px;
}

  .tour-card-bg {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    margin: 0px;
    background-color: var(--extra-light);
    border-radius: 1rem 1rem 0px 0px;
    padding: 1.6rem;
    position: absolute;
    z-index: 1;
}    

  .tour-card-bg h4 {
    padding-top: 4.5rem;
  }

  .tour-card-bg i {
    color: var(--primary-color-dark);
    font-size: 25px;
  }

  .tour-card-content {
    box-sizing: border-box;
    width: 355px;
    height: 190px;
    margin: 0px;
    background-color: var(--primary-color);
    color: var(--extra-light);
    border-radius: 1rem 1rem 0px 0px;
    padding: 1.6rem;
    bottom: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    z-index: 2;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out; 
}

@keyframes slideButtom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

  .tour-card-content .icon {
    border: 2px solid var(--white);
    width: 30px;
    height: 30px;
    padding: 3px;
    border-radius: 50px;
    align-content: center;
  }

  .tour-card-content i {
    font-size: 17px;
    color: var(--white);
    padding-left: 7px;
}

  .tour-card-content h4 {
    padding-top: 1.5rem;
    font-size: 14px;
  }

  .tour-card-content p {
    font-size: 9px;
    padding-top: 22px;
  }

  .tour-card:hover .tour-card-content {
    opacity: 1;
    transform: translateY(0);
}

  .tour-card:hover .tour-card-bg {
    opacity: 0;
  }

/* SHOWCASE SECTION */
.showcase {
    display: flex;
    flex-direction: row;
    margin: 160px 210px 50px 210px;
    gap: 15px
  }

.showcase-image img {
  box-shadow: rgba(0, 0, 0, 0.2) 5px 5px 20px;
  animation: slideButtom 1s ease-out 1.3s forwards;
} 

@keyframes slideButtom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

 .showcase-write-up {
    margin-top: 44px;
 }

 .showcase-write-up h2 {
    font-size: 42px;
    line-height: 4rem;
    font-weight: 600;
    animation: slideButtom 1.3s ease-out 1.5s forwards;
 }

 @keyframes slideButtom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

 .showcase-write-up p {
    font-size: 9px;
    color: var(--text-light);
    padding-top: 15px;
    line-height: 1.2rem;
    animation: slideButtom 1.6s ease-out 1.8s forwards;
 }

 @keyframes slideButtom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

 .showcase-write-up .btn3 {
    background-image: url(/hightower-images/header-bg.jpg);
    margin-top:30px ;
    width: 100%;
    height: 50px;
    font-size: 15px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    animation: slideButtom 1.9s ease-out 2.1s forwards;
 }

 @keyframes slideButtom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

 .showcase-write-up .btn3:hover {
    color: var(--white);
    cursor: pointer;
 }

/* BOX WRAPPER */
.box-wrapper {
    padding: 0px;
    max-width: 1100px;
    margin: 160px auto;
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.box-wrapper .box {
    box-shadow: rgba(0, 0, 0, 0.1) 5px 5px 20px;
    background-color: var(--extra-light);
    text-align: center;
    width: 100%;
    padding: 3rem;
    border-radius: 2rem;
    animation: slideButtom 2.2s ease-out 2.4s forwards;
}

.box-wrapper .box h2 {
    margin: 0px;
    padding: 0px;
    font-size: 5rem;
    color: var(--primary-color);
}

.box-wrapper .box p {
    margin: 0px;
    padding: 0px;
    color: var(--text-light);
}

/* DISCOVER SECTION */
.discover {
    display: flex;
    flex-direction: column;
    margin: 160px 210px 50px 210px;
}

.discover-header h3 {
    font-size: 24px;
}

.discover-header p {
    padding-top: 5px;
    font-size: 15px;
}

.discover-grid {
    padding: 0px;
    margin-top: 68px;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
}

.discover-card {
    margin: 0px;
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 1rem;
    border: 1px dotted var(--primary-color);
    visibility: visible;
    opacity: 1;
    flex: 1;
    min-width: 250px;
    transition: 0.3s, opacity 1s cubic-bezier(0.5, 0, 0, 1), transform 1s cubic-bezier(0.5, 0, 0, 1);
}

.discover-card span {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    background-color: rgba(40, 135, 255, 0.1);
    padding: 13px 15px;
    border-radius: 100%;
}

.discover-card h4 {
    max-width: 150px;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-inline: auto;
}

.discover-card p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.3rem;
    margin-top: 0.5rem;
}

.discover-card:hover {
    box-shadow: rgba(0, 0, 0, 0.2) 5px 5px 20px;
}

/* REVIEWS SECTION */
.reviews {
    display: flex;
    flex-direction: column;
    margin: 160px 210px 50px 210px;
    padding: 1rem;
    overflow: hidden;
}

.reviews-grid {
    margin-top: 68px;
    padding: 1rem;
    gap: 20px;
    scroll-behavior: smooth;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.review-card {
    flex: 0 0 calc(33.333% - 1.333rem);
    min-width: 23rem;
    scroll-snap-align: start;
    border-radius: 1rem;
    padding: 5px;
    background-color: var(--extra-light);
    height: 20rem;
    box-sizing: border-box;
}

.reviews-grid::-webkit-scrollbar {
    display: none;
}

.review-content {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    height: 65%;
    background-color: var(--white);
    border-radius: 1rem;
    line-height: 1.4rem;
    font-weight: 500;
}

.client-rating {
    padding-bottom: 22px;
}

.client-rating i {
    color: var(--primary-color);
}

.client-details {
    display: flex;
    flex-direction: row;
    padding: 20px;
    margin-bottom: 30px;
    gap: 1.3rem;
}

.client-details img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.client-details h4 {
    padding-top: 5px;
    font-size: 17px;
}

.client-details h5 {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.review-card:hover {
    background-color: var(--primary-color);
}

.review-card:hover .client-details {
    color: var(--extra-light);
}

/* FOOTER */
.footer {
    background-color: var(--extra-light);
}

.footer-container {
    margin: 160px 210px 10px 150px;
    padding: 5rem 3rem;
    display: flex;
    gap: 1rem;
}

.footer-about {
    padding: 10px;
}

.footer-about h3 {
    font-size: 1.6rem;
    font-weight: 700;
    padding-bottom: 32px;
}

.footer-about p {
    color: var(--text-light);
    margin-right: 16px;
    line-height: 1.4rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials li {
    list-style: none;
    margin-top: 40px;
    padding: 9px 11px 9px 11px;
    border-radius: 50%;
    background-color: var(--primary-color);
    font-size: 1.1rem;
}

.footer-socials li a {
    text-decoration: none;
    color: var(--white);
}

.footer-socials li:hover {
    background-color: var(--primary-color-dark);
    cursor: pointer;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0;
    width: 70%;
}

.footer-col h4 {
    font-size: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    padding-top: 20px;
}

.footer-links li a {
    text-decoration: none;
    color: var(--text-light);
}

.footer-links li a:hover {
    color: var(--primary-color-dark);
    cursor: pointer;
}

.footer-links li a span {
    font-size: 22px;
}

.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 .btn4 {
    padding: 0.75rem 6.5rem;
    border: none;
    font-size: 1rem;
    white-space: nowrap;
    color: var(--white);
    background-color: var(--primary-color);
    transition: 0.3s;
    cursor: pointer;
    border-radius: 5px;
}

.footer-col .btn4:hover {
    background-color: var(--primary-color-dark);
    cursor: pointer;
}

.footer-bar {
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */

/* Large Tablets (1024px and below) */
@media (max-width: 1024px) {
    /* Navigation */
    .nav-header {
        margin: 30px 6vw;
    }
    
    /* Hero Section */
    .hero-write-up {
        margin-left: 80px;
        margin-top: 100px;
    }
    
    .hero-write-up h1 {
        font-size: 3rem;
        line-height: 3.5rem;
    }
    
    /* Sections margins */
    .destination {
        margin: 120px 80px;
    }
    
    .tour {
        margin: 180px 120px 50px 120px;
    }
    
    .showcase {
        margin: 120px 120px 50px 120px;
    }
    
    .discover {
        margin: 120px 120px 50px 120px;
    }
    
    .reviews {
        margin: 120px 120px 50px 120px;
    }
    
    .footer-container {
        margin: 120px 120px 10px 80px;
    }
    
    /* Box wrapper */
    .box-wrapper {
        margin: 60px auto;
        padding: 0 0.5rem;
    }
    
    .box-wrapper .box h2 {
        font-size: 2rem;
    }
    
    .review-card {
        min-width: 220px;
    }
    
    .footer-container {
        padding: 2rem 0.5rem;
    }
    .footer-col {
        margin: 120px auto;
        padding: 0 2rem;
    }
    
    .box-wrapper .box h2 {
        font-size: 4rem;
    }
    
    /* Reviews responsive */
    .review-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

/* Medium Tablets (768px and below) */
@media (max-width: 768px) {
    /* Navigation */
    .nav-header {
        flex-direction: column;
        margin: 20px;
        align-items: flex-start;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-top: 20px;
    }

    .nav-links.nav-active {
        display: flex;
    }

    .nav-button {
        display: none;
        width: 100%;
        margin-top: 10px;
    }

    .nav-button.nav-active {
        display: block;
    }

    .hamburger-menu {
        display: block;
        cursor: pointer;
        margin-top: 10px;
    }

    .hamburger-menu span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        margin: 4px 0;
        transition: 0.4s;
    }
    
    /* Hero Section */
    .hero-section {
        flex-direction: column;
        height: auto;
        min-height: 60vh;
        margin: 0 10px;
        border-radius: 20px;
    }
    
    .hero-write-up {
        width: 80%;
        margin: 50px auto;
        text-align: center;
    }
    
    .hero-write-up h1 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
    
    .hero-img {
        width: 90%;
        margin: 0 auto;
        padding-top: 20px;
    }
    
    /* All sections margins */
    .destination {
        margin: 80px 20px;
    }
    
    .tour {
        margin: 120px 20px 50px 20px;
    }
    
    .showcase {
        margin: 80px 20px 50px 20px;
        flex-direction: column;
        gap: 30px;
    }
    
    .discover {
        margin: 80px 20px 50px 20px;
    }
    
    .reviews {
        margin: 80px 20px 50px 20px;
    }
    
    /* Destination grid */
    .destination-grid {
        margin: 40px 0;
        gap: 2rem;
        justify-content: center;
    }
    
    .destination-card {
        width: 100%;
        max-width: 300px;
    }
    
    /* Tour grid */
    .tour-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .tour-card {
        width: 100%;
        max-width: 355px;
    }
    
    .tour-card-content {
        width: 100%;
    }
    
    /* Showcase */
    .showcase-write-up h2 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
    
    .showcase-write-up p {
        font-size: 14px;
    }
    
    /* Box wrapper */
    .box-wrapper {
        flex-direction: column;
        margin: 80px auto;
        padding: 0 1rem;
    }
    
    .box-wrapper .box {
        padding: 2rem 1rem;
    }
    
    .box-wrapper .box h2 {
        font-size: 3rem;
    }
    
    /* Discover grid */
    .discover-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .discover-card {
        min-width: auto;
    }
    
    /* Reviews */
    .review-card {
        flex: 0 0 calc(90% - 1rem);
        min-width: 280px;
    }
    
    /* Footer */
    .footer-container {
        margin: 80px 20px 10px 20px;
        padding: 3rem 1rem;
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-col {
        width: 100%;
    }
    
    .footer-col .btn4 {
        padding: 0.75rem 2rem;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    /* Hero Section */
    .hero-write-up h1 {
        font-size: 2rem;
        line-height: 2.5rem;
    }
    
    .hero-write-up .btn1 {
        width: 150px;
        height: 45px;
        font-size: 14px;
    }
    
    /* Sections headers */
    .dest-header h3,
    .tour-header h3,
    .discover-header h3 {
        font-size: 20px;
    }
    
    .dest-header p,
    .tour-header p,
    .discover-header p {
        font-size: 14px;
    }
    
    /* Destination cards */
    .destination-card {
        width: 100%;
    }
    
    .destination-details h4 {
        font-size: 18px;
    }
    
    .destination-details p {
        font-size: 14px;
    }
    
    /* Tour cards */
    .tour-card {
        width: 100%;
        max-width: 320px;
    }
    
    .tour-card-content,
    .tour-card-bg {
        width: 100%;
    }
    
    /* Showcase */
    .showcase-write-up h2 {
        font-size: 2rem;
        line-height: 2.5rem;
    }
    
    /* Box wrapper */
    .box-wrapper .box h2 {
        font-size: 2.5rem;
    }
    
    .box-wrapper .box {
        padding: 1.5rem 1rem;
    }
    
    /* Discover cards */
    .discover-card {
        padding: 1.5rem 1rem;
    }
    
    .discover-card h4 {
        font-size: 1.1rem;
        max-width: none;
    }
    
    .discover-card p {
        font-size: 0.9rem;
    }
    
    /* Reviews */
    .review-card {
        min-width: 250px;
        height: 18rem;
    }
    
    .client-details h4 {
        font-size: 15px;
    }
    
    .client-details h5 {
        font-size: 14px;
    }
    
    /* Footer */
    .footer-about h3 {
        font-size: 1.4rem;
    }
    
    .footer-col h4 {
        font-size: 18px;
    }
    
    .footer-col .btn4 {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .hero-write-up {
        width: 90%;
    }
    
    .hero-write-up h1 {
        font-size: 1.8rem;
        line-height: 2.2rem;
    }
    
    .destination,
    .tour,
    .showcase,
    .discover,
    .reviews {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .box-wrapper {
        margin: 60px auto;
        padding: 0 0.5rem;
    }
  }