/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  --hue: 14;
  --first-color: hsl(var(--hue), 91%, 54%);
  --first-color-alt: hsl(var(--hue), 91%, 50%);
  --title-color: hsl(var(--hue), 4%, 100%);
  --text-color: hsl(var(--hue), 4%, 85%);
  --text-color-light: hsl(var(--hue), 4%, 55%);
  --body-color: linear-gradient(to right, #edf6ff, #e0efff);
  --container-color: linear-gradient(to right, #f6f7f9, #e0efff);
  --white-color: #fff;
  --black-color: #000;

  /*========== Font and typography ==========*/
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== Margenes Bottom ==========*/
  --mb-0-25: .25rem;
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

/* Responsive typography */
@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background: var(--body-color);
  color: var(--text-color);
}

h1, h2, h3, h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1024px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}

.grid {
  display: grid;
}

.section {
  padding: 4.5rem 0 2rem;
}

.section__title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-2);
  text-align: center;
  color: var(--title-color);
}

.main {
  overflow: hidden;
}

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

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a5f;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__logo i {
    color: #0077b6;
}

/* Nav menu desktop */
.nav__menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__list {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav__link {
    text-decoration: none;
    color: #1e3a5f;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav__link:hover,
.nav__link.active-link {
    color: #0077b6;
}

/* Toggle and Close Icons */
.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1e3a5f;
}

/* ===== Responsive Menu (Mobile) ===== */
@media screen and (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 25px;
    }

    .nav__close {
        position: absolute;
        top: 20px;
        right: 20px;
        display: block;
    }

    .nav__toggle {
        display: block;
    }
}

/*=============== HOME ===============*/
.home {
  position: relative;
  overflow: hidden;
}

.home__container {
  position: relative;
  padding-top: 4rem;
  row-gap: 3rem;
}

.home__data {
  text-align: center;
}

.home__title {
  font-size: var(--biggest-font-size);
  margin-bottom: var(--mb-1);
}

.home__subtitle {
  font-size: var(--h1-font-size);
  margin-bottom: var(--mb-0-25);
}

.home__elec {
  font-size: var(--small-font-size);
  font-weight: 400;
  color: var(--text-color);
  margin-bottom: var(--mb-2);
}

.home__img {
  width: 320px;
  justify-self: center;
}

.home__car {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 4rem;
  margin-top: var(--mb-2);
}

.home__car-name {
  font-size: .625rem;
  font-weight: 400;
  color: var(--text-color-light);
}

.home__car-data {
  text-align: center;
}

.home__car-number {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.home__button {
  position: relative;
  border: 2px solid hsl(158, 89%, 30%);
  outline: none;
  background-color: transparent;
  padding: 1.25rem 2.5rem;
  font-size: var(--normal-font-size);
  border-radius: .25rem;
  color: var(--white-color);
  cursor: pointer;
  transition: .3s;
}

.home__button:hover {
  animation: button 1s;
  background-color: var(--first-color);
}

.button {
  display: inline-block;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  border-radius: .25rem;
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  transition: .3s;
  border: none;
  cursor: pointer;
  text-align: center;
}

.button:hover {
  background-color: var(--first-color-alt);
  transform: translateY(-2px);
}

.button--secondary {
  background-color: transparent;
  border: 2px solid var(--first-color);
  color: var(--first-color);
}

.button--secondary:hover {
  background-color: var(--first-color);
  color: var(--white-color);
}

.button--danger {
  background-color: #e74c3c;
}

.button--danger:hover {
  background-color: #c0392b;
}

/*=============== BUTTON ANIMATE ===============*/
@keyframes button {
  0% {
    box-shadow: 0 0 12px hsl(158, 98%, 43%);
  }
  50% {
    box-shadow: 0 0 24px hsl(158, 98%, 43%);
  }
}

/*=============== ABOUT ===============*/
/* About Preview Section */
.about-preview {
    padding: 80px 20px;
    background-color: #f7f9fc;
}

.about__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about__data {
    text-align: left;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 20px;
}

.about__description {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 30px;
}

.button {
    display: inline-block;
    padding: 14px 28px;
    background-color: #0077b6;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #023e8a;
}

.about__img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    
}

.about-full__container {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-full__container.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Features Detailed Section ===== */
.features-detailed.section {
    padding: 60px 20px;
    background-color: #f9fafb;
}

.features-detailed__container {
    max-width: 1100px;
    margin: 0 auto;
}

.features-detailed__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-detailed__card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-detailed__card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-detailed__icon {
    font-size: 3rem;
    color: #1e90ff;
    margin-bottom: 20px;
}

.feature-detailed__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.feature-detailed__description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* ===== Motto Section ===== */
.motto.section {
    background: #1e90ff;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.motto__container {
    max-width: 800px;
    margin: 0 auto;
}

.motto__content {
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.motto__content.visible {
    opacity: 1;
    transform: translateY(0);
}

.motto__quote-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    color: #e0f0ff;
}

.motto__text {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
    font-style: italic;
}

.motto__author {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.85;
}

/* Responsive Tweaks */
@media screen and (max-width: 768px) {
    .section__title {
        font-size: 2rem;
        text-align: center;
    }

    .about__data {
        text-align: center;
    }

    .about__description {
        font-size: 1rem;
    }

    .button {
        margin: 0 auto;
    }
}


/*=============== POPULAR ===============*/
.popular__container {
  padding-top: 1rem;
}

.popular__card {
  position: relative;
  width: 238px;
  background: var(--container-color);
  padding: 2rem 1.5rem 1.5rem;
  border-radius: 1rem;
  margin-bottom: 3.5rem;
  overflow: hidden;
}

.popular__card .shape__smaller {
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
}

.popular__title,
.popular__subtitle,
.popular__img {
  position: relative;
}

.popular__title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-0-25);
}

.popular__subtitle {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  font-weight: 400;
}

.popular__img {
  width: 160px;
  margin: .75rem 0 1.25rem 2rem;
}

.popular__data {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: .5rem 1.25rem;
  margin-bottom: 2rem;
}

.popular__data-group {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  font-size: var(--smaller-font-size);
  color: var(--white-color);
}

.popular__data i {
  font-size: 1rem;
}

.popular__price {
  font-size: var(--h3-font-size);
}

/* Swiper class */
.swiper-pagination-bullet {
  background: var(--text-color);
}

.swiper-pagination-bullet-active {
  background: var(--first-color);
}

/* Features Section */
.features {
    padding: 80px 20px;
    background-color: #ffffff;
}

.features__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 60px;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.features__card {
    background-color: #f7f9fc;
    padding: 40px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.features__icon {
    font-size: 2.5rem;
    color: #0077b6;
    margin-bottom: 20px;
}

.features__title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.features__description {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
    .section__title {
        font-size: 2rem;
    }

    .features__title {
        font-size: 1.2rem;
    }

    .features__description {
        font-size: 0.95rem;
    }
}

/* === Testimonials Section === */
.testimonials {
    padding: 80px 20px;
    background-color: #f7f9fc;
    text-align: center;
}

.testimonials__container {
    max-width: 1000px;
    margin: 0 auto;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 50px;
}

.testimonials__slider {
    position: relative;
    overflow: hidden;
}

.testimonial__card {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial__card.active {
    display: block;
    opacity: 1;
}

.testimonial__content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 30px;
    font-style: italic;
    line-height: 1.7;
}

.testimonial__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial__author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial__info h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a5f;
}

.testimonial__info span {
    font-size: 0.95rem;
    color: #777;
}

.testimonials__controls {
    margin-top: 30px;
}

.testimonial__btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial__btn.active {
    background-color: #0077b6;
}


/* === Travel Tips Section === */
.tips-preview {
    padding: 80px 20px;
    background-color: #ffffff;
}

.tips__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.tip__card {
    background-color: #f7f9fc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: left;
}

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

.tip__card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tip__data {
    padding: 25px;
}

.tip__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 10px;
}

.tip__description {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 15px;
}

.tip__link {
    color: #0077b6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.tip__link:hover {
    color: #023e8a;
}

.tips__button-center {
    margin-top: 50px;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 14px 28px;
    background-color: #0077b6;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #023e8a;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .section__title {
        font-size: 2rem;
    }

    .testimonial__author {
        flex-direction: column;
        gap: 10px;
    }

    .tip__title {
        font-size: 1.1rem;
    }

    .tip__description {
        font-size: 0.95rem;
    }
}


/*=============== OFFER ===============*/
.offer {
  display: grid;
  position: relative;
}

.offer__container {
  grid-template-rows: max-content 224px;
}

.offer__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.offer__data,
.offer__img {
  position: relative;
}

.offer__data {
  text-align: center;
}

.offer__title {
  margin-bottom: var(--mb-2);
}

.offer__description {
  margin-bottom: var(--mb-3);
}

.offer__img {
  position: absolute;
  max-width: initial;
  width: 400px;
  bottom: 2rem;
  right: -5.5rem;
}

/*=============== LOGOS ===============*/
.logos__img {
  width: 40px;
  opacity: .4;
  transition: .3s;
}

.logos__container {
  grid-template-columns: repeat(3, max-content);
  justify-content: center;
  align-items: center;
  gap: 4rem;
  padding-bottom: 2rem;
}

.logos__img:hover {
  opacity: 1;
}

/*=============== PAGE HERO ===============*/
/* Hero Section */
.hero {
    
    padding: 90px 0;
    background: linear-gradient(to bottom right, #e0f7fa, #ffffff);
    position: relative;
    overflow: hidden;
}

.hero__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.hero__data {
    flex: 1;
    min-width: 280px;
}

.hero__title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero__description {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero__button {
    display: inline-flex;
    align-items: center;
    padding: 14px 24px;
    background-color: #0077b6;
    color: #fff;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.hero__button:hover {
    background-color: #023e8a;
}

.hero__button i {
    margin-left: 10px;
}

.hero__img {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.hero__img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
   /* box-shadow: 0 10px 20px rgba(0,0,0,0.1);*/
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero__container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .hero__description {
        font-size: 1rem;
    }

    .hero__button {
        justify-content: center;
    }
}

/* Counter Section */
.counter {
    background-color: #f7f9fc;
    padding: 80px 20px;
    text-align: center;
}

.counter__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.counter__card {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.counter__icon {
    font-size: 2.5rem;
    color: #0077b6;
    margin-bottom: 20px;
}

.counter__number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 10px;
}

.counter__title {
    font-size: 1.1rem;
    color: #4a4a4a;
}

/* Responsive tweaks */
@media screen and (max-width: 600px) {
    .counter__number {
        font-size: 2.2rem;
    }

    .counter__icon {
        font-size: 2rem;
    }
}

/* Features Section */
.features {
    padding: 80px 20px;
    background-color: #ffffff;
}

.features__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 60px;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.features__card {
    background-color: #f7f9fc;
    padding: 40px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.features__icon {
    font-size: 2.5rem;
    color: #0077b6;
    margin-bottom: 20px;
}

.features__title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.features__description {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
    .section__title {
        font-size: 2rem;
    }

    .features__title {
        font-size: 1.2rem;
    }

    .features__description {
        font-size: 0.95rem;
    }
}


/* Travel Packages Preview Section */
.packages-preview {
    padding: 80px 20px;
    background-color: #ffffff;
}

.packages__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 60px;
}

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

.package__card {
    background-color: #f7f9fc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.package__card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.package__data {
    padding: 25px;
}

.package__title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.package__description {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 20px;
}

.package__button {
    background-color: #0077b6;
    color: #fff;
    padding: 12px 22px;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.package__button:hover {
    background-color: #023e8a;
}

.packages__button-center {
    margin-top: 50px;
}

.packages__button-center .button {
    padding: 14px 28px;
    font-size: 1.1rem;
}
/* Add fade-in animation */
.package__card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.package__card.reveal {
    opacity: 1;
    transform: translateY(0);
}
/* Responsive tweaks */
@media screen and (max-width: 768px) {
    .section__title {
        font-size: 2rem;
    }

    .package__title {
        font-size: 1.2rem;
    }

    .package__description {
        font-size: 0.95rem;
    }
}



/*=============== ABOUT PAGE ===============*/

/* ===== Page Hero ===== */
.page-hero {
    background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    padding: 120px 20px;
    color: white;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.page-hero__container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.page-hero__subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.85;
}

/* ===== About Full Section ===== */
.about-full.section {
    padding: 60px 20px;
}

.about-full__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.about-full__data {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 25px;
}

.about-full__description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.about-full__img img {
    width: 100%;
    border-radius: 12px;
    /*box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);*/
    object-fit: cover;
}

/* ===== Responsive ===== */
@media screen and (max-width: 900px) {
    .about-full__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-hero__title {
        font-size: 2.2rem;
    }
    
    .page-hero {
        padding: 80px 15px;
    }
}




/*=============== PACKAGES PAGE ===============*/


/* ===== Packages Tabs Section ===== */
.packages-tabs.section {
    padding: 60px 20px;
    background-color: #f5f7fa;
}

.packages-tabs__container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Tabs Navigation */
.tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}

.tab__btn {
    background-color: #e0e7ff;
    border: none;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #4a4a4a;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tab__btn:hover {
    background-color: #1e40af;
    color: white;
}

.tab__btn.active {
    background-color: #1e40af;
    color: white;
}

/* Tabs Content */
.tabs__content {
    min-height: 400px; /* optional for consistent height */
}

.tab__panel {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.tab__panel.active {
    display: block;
}

/* Packages Grid */
.packages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Package Card */
.package__card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.package__card:hover {
    transform: translateY(-8px);
}

.package__card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.package__data {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package__category {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.package__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}

.package__description {
    font-size: 0.95rem;
    color: #4b5563;
    flex-grow: 1;
    margin-bottom: 16px;
}

.package__price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 12px;
}

.package__button {
    text-align: center;
    background-color: #1e40af;
    color: white;
    padding: 12px 0;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.package__button:hover {
    background-color: #374bee;
}

/* Fade in animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== How We Work Section ===== */
.how-we-work.section {
    padding: 60px 20px;
    background-color: #fff;
}

.how-we-work__container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1e40af;
}

/* Grid for steps */
.steps__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Each step card */
.step__card {
    background-color: #f3f4f6;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(30, 64, 175, 0.25);
}

/* Step number circle */
.step__number {
    width: 50px;
    height: 50px;
    background-color: #1e40af;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    user-select: none;
}

/* Icon style */
.step__icon {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 20px;
}

/* Step title */
.step__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111827;
}

/* Step description */
.step__description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.5;
}



/*=============== BLOG/TIPS PAGE ===============*/

/* ===== Blog Grid Section ===== */
.blog-grid.section {
    padding: 60px 20px;
    background-color: #fafafa;
}

.blog-grid__container {
    max-width: 1100px;
    margin: 0 auto;
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Each blog card */
.blog__card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

/* Fade-in visible class */
.blog__card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Image styling */
.blog__card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Blog data container */
.blog__data {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Meta data */
.blog__meta {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.blog__category {
    font-weight: 600;
    color: #2563eb;
}

/* Title */
.blog__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111827;
    flex-grow: 0;
}

/* Description */
.blog__description {
    font-size: 1rem;
    color: #4b5563;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Read more link */
.blog__link {
    align-self: flex-start;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.blog__link:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* Icon inside read more */
.blog__link i {
    transition: transform 0.3s ease;
}

.blog__link:hover i {
    transform: translateX(5px);
}

/* Hover effect on card */
.blog__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.25);
}


/*=============== BOOKING PAGE ===============*/

/* ===== Contact Info Section ===== */
.contact-info.section {
    padding: 60px 20px;
    background-color: #f5f7fa;
}

.contact-info__container {
    max-width: 900px;
    margin: 0 auto;
}

.section__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 40px;
}

.contact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
}
.contact__grid_f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
    gap: 30px;
}

/* Individual contact cards */
.contact__card {
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.contact__card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.contact__icon {
    font-size: 2.8rem;
    color: #2563eb;
    margin-bottom: 20px;
}

.contact__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.contact__info {
    font-size: 1rem;
    color: #4b5563;
    margin: 4px 0;
}

/* Hover effect on cards */
.contact__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.25);
    cursor: default;
}

/* ===== Booking Form Section ===== */
.booking-form.section {
  padding: 60px 20px;
  background-color: #f9fafb;
}

.booking-form__container {
  max-width: 800px;
  margin: 0 auto;
}

.form__wrapper {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.section__title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  color: #1f2937;
}

.form__step {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.form__step.active {
  display: block;
}

.form__step-title {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: #111827;
}

/* Form Groups */
.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #374151;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fff;
  transition: border 0.3s;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: #2563eb;
  outline: none;
}

/* Row Layout */
.form__row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form__row .form__group {
  flex: 1;
}

/* Buttons */
.button {
  background-color: #2563eb;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.button:hover {
  background-color: #1d4ed8;
}

.button--secondary {
  background-color: #6b7280;
}

.button--secondary:hover {
  background-color: #4b5563;
}

.form__buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

/* Payment Options */
.payment__options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

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

.payment__label {
  font-weight: 500;
  color: #1f2937;
  cursor: pointer;
}

/* Confirmation */
.confirmation__content {
  text-align: center;
  padding: 40px 20px;
}

.confirmation__icon {
  font-size: 3rem;
  color: #22c55e;
  margin-bottom: 15px;
}

.confirmation__title {
  font-size: 1.75rem;
  color: #111827;
  margin-bottom: 10px;
}

.confirmation__message {
  color: #374151;
  margin-bottom: 20px;
}

.booking__details p {
  margin-bottom: 8px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*=============== NEWSLETTER PAGE ===============*/
/* ===== Newsletter Subscribe Section ===== */
.newsletter-subscribe.section {
  background-color: #f0f4f8;
  padding: 60px 20px;
}

.newsletter-subscribe__container {
  max-width: 1100px;
  margin: 0 auto;
}

.subscribe__content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.subscribe__info {
  flex: 1;
  min-width: 300px;
}

.section__title {
  font-size: 2rem;
  color: #1f2937;
  margin-bottom: 20px;
}

.subscribe__description {
  color: #374151;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.subscribe__benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111827;
  font-size: 1rem;
}

.benefit__icon {
  color: #22c55e;
  font-size: 1.2rem;
}

/* Form Styles */
.subscribe__form-wrapper {
  flex: 1;
  min-width: 300px;
  background-color: #ffffff;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #374151;
}

.form__input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background-color: #fff;
  transition: border 0.3s;
}

.form__input:focus {
  border-color: #2563eb;
  outline: none;
}

.checkbox__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form__checkbox {
  margin-top: 5px;
}

.checkbox__label {
  font-size: 0.95rem;
  color: #374151;
}

/* Submit Button */
.subscribe__button {
  background-color: #2563eb;
  color: #fff;
  padding: 12px 18px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.subscribe__button:hover {
  background-color: #1d4ed8;
}

/* Success Message */
.subscribe__success {
  text-align: center;
  margin-top: 30px;
  animation: fadeIn 0.5s ease-in-out;
}

.success__icon {
  font-size: 3rem;
  color: #22c55e;
  margin-bottom: 15px;
}

.success__title {
  font-size: 1.5rem;
  color: #111827;
  margin-bottom: 10px;
}

.success__message {
  color: #374151;
  line-height: 1.5;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .subscribe__content {
    flex-direction: column;
  }
}

/* ===== Newsletter Unsubscribe Section ===== */
.newsletter-unsubscribe {
  padding: 80px 0;
  background-color: #f9fafb;
  text-align: center;
}

.newsletter-unsubscribe__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.unsubscribe__content {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.section__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111827;
}

.unsubscribe__description {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Button Style - Override or extend your global button style */
.button--secondary {
  background-color: #ef4444; /* Red tone */
  color: #fff;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.button--secondary i {
  margin-left: 8px;
}

.button--secondary:hover {
  background-color: #dc2626;
}

/* Responsive */
@media (max-width: 600px) {
  .unsubscribe__content {
    padding: 30px 20px;
  }

  .section__title {
    font-size: 1.5rem;
  }

  .unsubscribe__description {
    font-size: 0.95rem;
  }

  .button--secondary {
    width: 100%;
    padding: 14px;
  }
}


/* ===== Unsubscribe Modal Styles ===== */
.unsubscribe__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.unsubscribe__modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  position: relative;
  text-align: left;
  animation: fadeIn 0.3s ease-in-out;
}

.unsubscribe__close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  color: #888;
  cursor: pointer;
}

.unsubscribe__modal-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.unsubscribe__modal-text {
  margin-bottom: 20px;
  color: #555;
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.form__input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.unsubscribe__confirmation {
  display: none;
  margin-top: 20px;
  padding: 15px;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 8px;
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
}

.success__icon {
  color: #10b981;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/*-----------------Individual Blog------------*/

/* Blog Detail Section */
.section {
  padding: 4rem 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.blog-detail__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.blog-detail__title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #004488;
}

.blog-detail__meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 2rem;
}

.blog-detail__meta i {
  margin-right: 0.3rem;
}

.blog-detail__content {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.blog-detail__content h3 {
  margin-top: 2rem;
  color: #004488;
}

/* Comment Form Section */
.comment-form__container {
  background-color: #f8f9fa;
  padding: 3rem;
  border-radius: 8px;
}

.section__title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #222;
}

.comment__form {
  display: flex;
  flex-direction: column;
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.form__textarea {
  resize: vertical;
}

.button {
  background-color: #004488;
  color: #fff;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s ease;
}

.button:hover {
  background-color: #0066aa;
}

/* Comment Success Message */
.comment__success-message {
  margin-top: 1.5rem;
  background-color: #e7f9ed;
  padding: 1rem;
  border-left: 4px solid #28a745;
  border-radius: 4px;
  color: #155724;
  font-weight: 500;
}

.comment__success-message i {
  margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero__title {
    font-size: 2rem;
  }

  .blog-detail__title {
    font-size: 1.5rem;
  }

  .section__title {
    font-size: 1.5rem;
  }

  .comment-form__container {
    padding: 2rem 1rem;
  }
}

/*=============== MODAL ===============*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: var(--z-modal);
}

.modal.show {
  display: flex;
}

.modal__content {
  background: var(--body-color);
  border-radius: 1rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--text-color-light);
}

.modal__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
}

.modal__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-color);
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal__close:hover {
  color: var(--first-color);
}

.modal__body {
  padding: 2rem;
}

.modal__description {
  margin-bottom: var(--mb-2);
  line-height: 1.6;
}

.unsubscribe__form .button {
  width: 100%;
}

.unsubscribe__success {
  text-align: center;
}

/*=============== FOOTER ===============*/
/* ===== Footer Section ===== */
.footer {
    background-color: #1e3a5f;
    color: #fff;
    padding: 80px 20px 40px;
    font-family: 'Segoe UI', sans-serif;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Top CTA Section */
.footer__top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.footer__cta h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer__button {
    padding: 12px 24px;
    font-size: 1rem;
    background-color: #0077b6;
    border: none;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.footer__button:hover {
    background-color: #023e8a;
}

/* Newsletter */
.footer__newsletter h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.newsletter__form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.newsletter__input {
    flex: 1;
    padding: 12px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
}

.newsletter__button {
    background-color: #00b4d8;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter__button:hover {
    background-color: #0077b6;
}

/* Footer Content Links */
.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer__title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer__description {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 20px;
}

.footer__social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer__social-link {
    color: #00b4d8;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer__social-link:hover {
    color: #90e0ef;
}

.footer__links {
    list-style: none;
    padding: 0;
}

.footer__link {
    color: #ccc;
    font-size: 0.95rem;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #fff;
}

/* Bottom copyright */
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer__copy {
    font-size: 0.9rem;
    color: #ccc;
}

/* Responsive Fixes */
@media screen and (max-width: 768px) {
    .newsletter__form {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter__input,
    .newsletter__button {
        width: 100%;
    }

    .footer__cta h3,
    .footer__newsletter h3 {
        font-size: 1.2rem;
    }
}


/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .6rem;
  background: hsl(var(--hue), 4%, 53%);
}

::-webkit-scrollbar-thumb {
  background: hsl(var(--hue), 4%, 29%);
  border-radius: .5rem;
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -30%;
  background: var(--container-color);
  box-shadow: 0 4px 12px hsla(var(--hue), 64%, 15%, .15);
  display: inline-flex;
  padding: .35rem;
  border-radius: .25rem;
  color: var(--first-color);
  font-size: 1.25rem;
  z-index: var(--z-tooltip);
  transition: .3s;
}

.scrollup:hover {
  transform: translateY(-.25rem);
  color: var(--white-color);
  background: var(--first-color);
}

/* Show Scroll Up*/
.show-scroll {
  bottom: 3rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px) {
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }
  
  .home__car {
    column-gap: 2rem;
  }
  
  .about__card {
    width: 150px;
  }
  
  .offer__container {
    grid-template-rows: max-content 180px;
  }
  
  .offer__img {
    width: 340px;
  }
  
  .logos__container {
    gap: 2.5rem;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .about__group {
    width: 350px;
    justify-self: center;
  }
  
  .features__map {
    left: 0;
  }
  
  .featured__content {
    grid-template-columns: repeat(2, 228px);
  }
  
  .offer__container {
    grid-template-rows: initial;
    grid-template-columns: .5fr;
    justify-content: center;
  }
  
  .offer__img {
    position: relative;
    bottom: initial;
    right: initial;
  }
  
  .offer__data {
    margin-bottom: 4rem;
  }
}

@media screen and (min-width: 767px) {
  .section {
    padding: 7rem 0 2rem;
  }
  
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  
  .nav__toggle,
  .nav__close {
    display: none;
  }
  
  .nav__list {
    flex-direction: row;
    column-gap: 3rem;
    padding-top: 0;
  }
  
  .nav__link {
    font-size: var(--normal-font-size);
    text-transform: initial;
  }
  
  .home__container {
    grid-template-columns: 1fr 1fr;
  }
  
  .home__data {
    align-self: flex-end;
    text-align: initial;
    order: -1;
  }
  
  .home__car {
    justify-content: initial;
    margin-top: 0;
    margin-bottom: 1.25rem;
  }
  
  .about__container {
    grid-template-columns: 1fr 1fr;
  }
  
  .logos__container {
    gap: 4rem 8rem;
  }
  
  .footer__content {
    grid-template-columns: repeat(4, max-content);
    justify-content: space-between;
  }
  
  .footer__top {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
  
  .newsletter__form {
    margin: 0;
  }
  
  .form__row {
    grid-template-columns: 1fr 1fr;
  }
  
  .subscribe__content {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  
  .about-intro__container {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  
  .mission-vision__grid {
    grid-template-columns: 1fr 1fr;
  }
}



/* Animation classes */
.animate-fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Loading animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
