/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@500;600;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;

  /*========== Colors ==========*/
  /* Change favorite color to match images */
  /*Green dark 190 - Green 171 - Grren Blue 200*/
  --hue-color: 190;

  /* HSL color mode */
  --first-color: hsl(var(--hue-color), 64%, 22%);
  --first-color-second: hsl(var(--hue-color), 64%, 22%);
  --first-color-alt: hsl(var(--hue-color), 64%, 15%);
  --title-color: hsl(var(--hue-color), 64%, 18%);
  --text-color: hsl(var(--hue-color), 24%, 35%);
  --text-color-light: hsl(var(--hue-color), 8%, 60%);
  --input-color: hsl(var(--hue-color), 24%, 97%);
  --body-color: hsl(var(--hue-color), 100%, 99%);
  --white-color: #FFF;
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 75%);

  /*========== Font and typography ==========*/
  --body-font: 'Open Sans', sans-serif;
  --title-font: 'Raleway', sans-serif;
  --biggest-font-size: 2.5rem;
  --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;

  /*========== Margenes Bottom ==========*/
  --mb-0-25: .25rem;
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;

  /*========== Hover overlay ==========*/
  --img-transition: .3s;
  --img-hidden: hidden;
  --img-scale: scale(1.1);
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
  --first-color-second: hsl(var(--hue-color), 54%, 12%);
  --title-color: hsl(var(--hue-color), 24%, 95%);
  --text-color: hsl(var(--hue-color), 8%, 75%);
  --input-color: hsl(var(--hue-color), 29%, 16%);
  --body-color: hsl(var(--hue-color), 29%, 12%);
  --scroll-bar-color: hsl(var(--hue-color), 12%, 48%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 36%);
}

/*========== Button Dark/Light ==========*/
.nav__dark {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  position: absolute;
  left: 3rem;
  bottom: 4rem;
}

.change-theme, .change-theme-name {
  color: var(--text-color);
}

.change-theme {
  cursor: pointer;
  font-size: 1rem;
}

.change-theme-name {
  font-size: var(--small-font-size);
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  font-family: var(--title-font);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  height: auto;
}

button,
input {
  border: none;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

button {
  cursor: pointer;
}

input {
  outline: none;
}

.main {
  overflow-x: hidden;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 4.5rem 0 2.5rem;
}

.section__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: var(--mb-2);
}

.container {
  max-width: 968px;
  margin-left: var(--mb-1);
  margin-right: var(--mb-1);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

/* Logo css start*/
/* Logo styles */
.nav__logo {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
    text-decoration: none;
    transition: color 0.3s;
}

.nav__logo-img {
    width: 40px; /* Adjust based on your logo */
    height: auto;
    transition: transform 0.3s;
}

/* Logo hover effects */
.nav__logo:hover .nav__logo-img {
    transform: rotate(-10deg);
}

/* Responsive adjustments */
@media screen and (max-width: 767px) {
    .nav__logo {
        font-size: var(--small-font-size);
    }
    
    .nav__logo-img {
        width: 30px;
    }
}

/* Dark mode logo adjustments */
.dark-theme .nav__logo-img {
    filter: brightness(0) invert(1);
}
/* Logo css end */


/*=============== HEADER ===============*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: transparent;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo, .nav__toggle {
  color: var(--white-color);
}

.nav__logo {
  font-weight: var(--font-semi-bold);
}

.nav__toggle {
  font-size: 1.2rem;
  cursor: pointer;
}

.nav__menu {
  position: relative;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    background-color: var(--body-color);
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    box-shadow: -1px 0 4px rgba(14, 55, 63, 0.15);
    padding: 3rem;
    transition: .4s;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}

.nav__link {
  color: var(--text-color-light);
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
}

.nav__link:hover {
  color: var(--text-color);
}

.nav__close {
  position: absolute;
  top: .75rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/* show menu */
.show-menu {
  right: 0;
}

/* Change background header */
.scroll-header {
  background-color: var(--body-color);
  box-shadow: 0 0 4px rgba(14, 55, 63, 0.15);
}

.scroll-header .nav__logo,
.scroll-header .nav__toggle {
  color: var(--title-color);
}

/* Active link */
.active-link {
  position: relative;
  color: var(--title-color);
}

.active-link::before {
  content: '';
  position: absolute;
  background-color: var(--title-color);
  width: 100%;
  height: 2px;
  bottom: -.75rem;
  left: 0;
}

/*=============== HOME ===============*/
.home__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: 83%;
}

.home__container {
  position: relative;
  height: calc(100vh - var(--header-height));
  align-content: center;
  row-gap: 3rem;
}

.home__data-subtitle, 
.home__data-title, 
.home__social-link, 
.home__info {
  color: var(--white-color);
}

.home__data-subtitle {
  display: block;
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
}

.home__data-title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-2-5);
}

.home__social {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.home__social-link {
  font-size: 1.2rem;
  width: max-content;
}

.home__info {
  background-color: var(--first-color);
  display: flex;
  padding: 1.5rem 1rem;
  align-items: center;
  column-gap: .5rem;
  position: absolute;
  right: 0;
  bottom: 1rem;
  width: 228px;
}

.home__info-title {
  display: block;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
}

.home__info-button {
  font-size: var(--smaller-font-size);
}

.home__info-overlay {
  overflow: var(--img-hidden);
}

.home__info-img {
  width: 145px;
  transition: var(--img-transition);
}

.home__info-img:hover {
  transform: var(--img-scale);
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  font-weight: var(--font-semi-bold);
  transition: .3s;
}

.button:hover {
  background-color: var(--first-color-alt);
}

.button--flex {
  display: flex;
  align-items: center;
  column-gap: .25rem;
}

.button--link {
  background: none;
  padding: 0;
}

.button--link:hover {
  background: none;
}

/*=============== ABOUT ===============*/
.about__data {
  text-align: center;
}

.about__container {
  row-gap: 2.5rem;
}

.about__description {
  margin-bottom: var(--mb-2);
}

.about__img {
  display: flex;
  column-gap: 1rem;
  align-items: center;
  justify-content: center;
}

.about__img-overlay {
  overflow: var(--img-hidden);
}

.about__img-one {
  width: 130px;
}

.about__img-two {
  width: 180px;
}

.about__img-one, 
.about__img-two {
  transition: var(--img-transition);
}

.about__img-one:hover, 
.about__img-two:hover {
  transform: var(--img-scale);
}

/*==================== COMPACT SERVICES SECTION ====================*/
.services {
    background-color: var(--body-color);
    padding: 1.5rem 0 0.5rem;
    transition: background-color 0.4s ease;
}

.services__header {
    text-align: center;
    margin-bottom: 0.5rem;
    padding: 0 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section__subtitle {
    display: block;
    color: var(--text-color-light);
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.3;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services__swiper {
    padding: 0.25rem 0.5rem;
    overflow: visible;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.services.animate .services__header,
.services.animate .services__swiper {
    opacity: 1;
    transform: translateY(0);
}

.services__slide {
    padding: 0.25rem;
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.services__card {
    background: var(--white-color);
    border-radius: 0.75rem;
    padding: 0.7rem 0.7rem 0.6rem;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    height: auto;
    position: relative;
    transition: all 0.4s ease;
}

/* Dark Mode Styles */
body.dark-theme .services__card {
    background: var(--first-color-second);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

body.dark-theme .services__title {
    color: var(--title-color);
}

body.dark-theme .services__description,
body.dark-theme .services__features span {
    color: var(--text-color);
}

body.dark-theme .services__button {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
}

body.dark-theme .services__button:hover {
    background: var(--first-color);
}

.services__badge {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    background: var(--first-color);
    color: var(--white-color);
    padding: 0.1rem 0.4rem;
    font-size: 0.6rem;
    border-radius: 0.8rem;
    font-weight: var(--font-semi-bold);
    line-height: 1.2;
    transition: all 0.3s ease;
}

.services__icon {
    width: 36px;
    height: 36px;
    margin: 0.2rem auto 0.4rem;
    background: rgba(20, 80, 92, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--first-color);
    transition: all 0.3s ease;
}

body.dark-theme .services__icon {
    background: rgba(255, 255, 255, 0.1);
}

.services__title {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    color: var(--title-color);
    line-height: 1.25;
    text-align: center;
    padding: 0 0.2rem;
    transition: color 0.3s ease;
}

.services__description {
    font-size: 0.75rem;
    color: var(--text-color);
    margin-bottom: 0.4rem;
    line-height: 1.3;
    text-align: center;
    padding: 0 0.1rem;
    transition: color 0.3s ease;
}

.services__features {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.4rem;
    font-size: 0.7rem;
    padding: 0 0.5rem;
}

.services__features span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--text-color-light);
    transition: color 0.3s ease;
}

.services__features i {
    color: var(--first-color);
    font-size: 0.7rem;
    min-width: 0.8rem;
    text-align: center;
}

.services__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    color: var(--first-color);
    font-weight: var(--font-semi-bold);
    padding: 0.3rem 0.8rem;
    border-radius: 1.2rem;
    background: rgba(20, 80, 92, 0.08);
    margin: 0 auto;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.services__button:hover {
    color: var(--white-color);
    background: var(--first-color);
}

/* Pagination */
.swiper-pagination {
    position: relative !important;
    margin-top: 0.5rem !important;
    bottom: auto !important;
}

.swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    background: var(--text-color-light) !important;
    opacity: 0.3 !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    background: var(--first-color) !important;
    opacity: 1 !important;
    transform: scale(1) !important;
}

body.dark-theme .swiper-pagination-bullet {
    background: var(--text-color) !important;
}

/* Active Slide */
.swiper-slide-active .services__card {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

body.dark-theme .swiper-slide-active .services__card {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

/* Responsive Adjustments */
@media screen and (min-width: 768px) {
    .services {
        padding: 1.8rem 0 0.8rem;
    }
    
    .services__card {
        padding: 0.8rem;
    }
    
    .services__icon {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
    
    .services__title {
        font-size: 1rem;
    }
    
    .services__description {
        font-size: 0.8rem;
    }
    
    .services__features {
        font-size: 0.75rem;
    }
    
    .services__button {
        font-size: 0.8rem;
    }
}

/* Animation when visible */
.services.animate .services__slide:nth-child(1) { transition-delay: 0.1s; }
.services.animate .services__slide:nth-child(2) { transition-delay: 0.2s; }
.services.animate .services__slide:nth-child(3) { transition-delay: 0.3s; }
.services.animate .services__slide:nth-child(4) { transition-delay: 0.4s; }



/*=============== EXPERIENCE ===============*/
.experience__container {
  row-gap: 2.5rem;
  justify-content: center;
  justify-items: center;
}

.experience__content {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1rem;
  justify-items: center;
  padding: 0 2rem;
}

.experience__number {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-5);
}

.experience__description {
  font-size: var(--small-font-size);
}

.experience__img {
  position: relative;
  padding-bottom: 2rem;
}

.experience__img-one, 
.experience__img-two {
  transition: var(--img-transition);
}

.experience__img-one:hover, 
.experience__img-two:hover {
  transform: var(--img-scale);
}

.experience__overlay {
  overflow: var(--img-hidden);
}

.experience__overlay:nth-child(1) {
  width: 263px;
  margin-right: 2rem;
}

.experience__overlay:nth-child(2) {
  width: 120px;
  position: absolute;
  top: 2rem;
  right: 0;
}

/*=============== VIDEO ===============*/
.video__container {
  padding-bottom: 1rem;
}

.video__description {
  text-align: center;
  margin-bottom: var(--mb-2-5);
}

.video__content {
  position: relative;
}

.video__button {
  position: absolute;
  right: 1rem;
  bottom: -1rem;
  padding: 1rem 1.5rem;
}

.video__button-icon {
  font-size: 1.2rem;
}

/*==================== PLACES ====================*/
.place {
    background-color: var(--body-color);
    padding: 4rem 0 2rem;
    transition: background-color 0.4s ease;
}

.place__header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.place__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    justify-items: center; /* Center the grid items */
    padding: 0 1rem;
}

.place__card {
    background: var(--white-color);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%; /* Ensure consistent width */
    max-width: 280px; /* Optional: Set max width for larger screens */
}

.place__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.place__image-container {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.place__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.place__card:hover .place__img {
    transform: scale(1.05);
}

.place__rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.3rem 0.6rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
    backdrop-filter: blur(4px);
}

.place__rating-icon {
    color: #FFD700;
    font-size: 0.9rem;
}

.place__content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.place__data {
    margin-bottom: 1rem;
    text-align: center; /* Center text content */
}

.place__title {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--title-color);
}

.place__subtitle {
    font-size: 0.8rem;
    color: var(--text-color-light);
    margin-bottom: 0.25rem;
}

.place__price {
    font-size: 1rem;
    color: var(--first-color);
    font-weight: var(--font-semi-bold);
}

.place__button {
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Center button */
    gap: 0.5rem;
    color: var(--first-color);
    font-weight: var(--font-semi-bold);
    margin: 0.5rem auto 0; /* Center horizontally */
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background: rgba(20, 80, 92, 0.08);
}

.place__button:hover {
    color: var(--white-color);
    background: var(--first-color);
    transform: translateX(4px);
}

/* Dark Mode */
body.dark-theme .place__card {
    background: var(--first-color-second);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

body.dark-theme .place__rating {
    background: rgba(0, 0, 0, 0.7);
    color: var(--white-color);
}

body.dark-theme .place__button {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
}

/* Responsive Grid */
@media screen and (min-width: 576px) {
    .place__container {
        grid-template-columns: repeat(2, 240px);
        justify-content: center;
    }
}

@media screen and (min-width: 768px) {
    .place__container {
        grid-template-columns: repeat(3, 240px);
    }
}

@media screen and (min-width: 1200px) {
    .place__container {
        grid-template-columns: repeat(4, 240px);
        gap: 2rem;
    }
    
    .place__card {
        max-width: 100%; /* Allow cards to fill grid cell */
    }
}


/*=============== SPONSORS ===============*/
.sponsor__container {
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  justify-items: center;
  row-gap: 3.5rem;
}

.sponsor__content:hover .sponsor__img {
  filter: invert(0.5);
}

.sponsor__img {
  width: 90px;
  filter: invert(0.7);
  transition: var(--img-transition);
}

/*=============== FOOTER ===============*/
.footer__container {
  row-gap: 5rem;
}

.footer__content {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  row-gap: 2rem;
}

.footer__title, 
.footer__subtitle {
  font-size: var(--h3-font-size);
}

.footer__title {
  margin-bottom: var(--mb-0-5);
}

.footer__description {
  margin-bottom: var(--mb-2);
}

.footer__social {
  font-size: 1.25rem;
  color: var(--title-color);
  margin-right: var(--mb-1-25);
}

.footer__subtitle {
  margin-bottom: var(--mb-1);
}

.footer__item {
  margin-bottom: var(--mb-0-75);
}

.footer__link {
  color: var(--text-color);
}

.footer__link:hover {
  color: var(--title-color);
}

.footer__rights {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  text-align: center;
}

.footer__copy, .footer__terms-link {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.footer__terms {
  display: flex;
  column-gap: 1.5rem;
  justify-content: center;
}

.footer__terms-link:hover {
  color: var(--text-color);
}

/*========== SCROLL UP ==========*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background-color: var(--first-color);
  padding: .5rem;
  display: flex;
  opacity: .9;
  z-index: var(--z-tooltip);
  transition: .4s;
}

.scrollup:hover {
  background-color: var(--first-color-alt);
  opacity: 1;
}

.scrollup__icon {
  color: var(--white-color);
  font-size: 1.2rem;
}

/* Show scroll */
.show-scroll {
  bottom: 5rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .60rem;
  background-color: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-color-light);
}

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .place__container {
    grid-template-columns: max-content;
    justify-content: center;
  }
  .experience__content {
    padding: 0;
  }
  .experience__overlay:nth-child(1) {
    width: 190px;
  }
  .experience__overlay:nth-child(2) {
    width: 80px;
  }
  .home__info {
    width: 190px;
    padding: 1rem;
  }
  .experience__img,
  .video__container {
    padding: 0;
  }
}

/* For medium devices */
@media screen and (min-width: 568px) {
  .video__container {
    display: grid;
    grid-template-columns: .6fr;
    justify-content: center;
  }
  .place__container {
    grid-template-columns: repeat(3, max-content);
  }
  .subscribe__form {
    width: 470px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__link {
    color: var(--white-color);
    text-transform: initial;
  }
  .nav__link:hover {
    color: var(--white-color);
  }
  .nav__dark {
    position: initial;
  }
  .nav__menu {
    display: flex;
    column-gap: 1rem;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 4rem;
  }
  .nav__toggle, .nav__close {
    display: none;
  }
  .change-theme-name {
    display: none;
  }
  .change-theme {
    color: var(--white-color);
  }
  .active-link::before {
    background-color: var(--white-color);
  }
  .scroll-header .nav__link {
    color: var(--text-color);
  }
  .scroll-header .active-link {
    color: var(--title-color);
  }
  .scroll-header .active-link::before {
    background-color: var(--title-color);
  }
  .scroll-header .change-theme {
    color: var(--text-color);
  }
  .section {
    padding: 7rem 0 2rem;
  }
  .home__container {
    height: 100vh;
    grid-template-rows: 1.8fr .5fr;
  }
  .home__data {
    align-self: flex-end;
  }
  .home__social {
    flex-direction: row;
    align-self: flex-end;
    margin-bottom: 3rem;
    column-gap: 2.5rem;
  }
  .home__info {
    bottom: 3rem;
  }
  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .about__data, .about__title {
    text-align: initial;
  }
  .about__title {
    margin-bottom: var(--mb-1-5);
  }
  .about__description {
    margin-bottom: var(--mb-2);
  }
  .discover__container {
    width: 610px;
    margin-left: auto;
    margin-right: auto;
  }
  .discover__container,
  .place__container {
    padding-top: 2rem;
  }
  .experience__overlay:nth-child(1) {
    width: 363px;
    margin-right: 4rem;
  }
  .experience__overlay:nth-child(2) {
    width: 160px;
  }
  .subscribe__bg {
    background: none;
    padding: 0;
  }
  .subscribe__container {
    background-color: var(--first-color-second);
    padding: 3.5rem 0;
  }
  .subscribe__input {
    padding: 0 .5rem;
  }
  .footer__rights {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  .home__container {
    grid-template-rows: 2fr .5fr;
  }
  .home__info {
    width: 328px;
    grid-template-columns: 1fr 2fr;
    column-gap: 2rem;
  }
  .home__info-title {
    font-size: var(--normal-font-size);
  }
  .home__info-img {
    width: 240px;
  }
  .about__img-one {
    width: 230px;
  }
  .about__img-two {
    width: 290px;
  }
  .discover__card {
    width: 237px;
  }
  .discover__container {
    width: 700px;
  }
  .discover__data {
    left: 1.5rem;
    bottom: 2rem;
  }
  .discover__title {
    font-size: var(--h2-font-size);
  }
  .experience__content {
    margin: var(--mb-1) 0;
    column-gap: 3.5rem;
  }
  .experience__overlay:nth-child(1) {
    width: 463px;
    margin-right: 7rem;
  }
  .experience__overlay:nth-child(2) {
    width: 220px;
    top: 3rem;
  }
  .video__container {
    grid-template-columns: .7fr;
  }
  .video__description {
    padding: 0 8rem;
  }
  .place__container {
    gap: 3rem 2rem;
  }
  .place__card, .place__img {
    height: 263px;
  }
  .footer__content {
    justify-items: center;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1024px;
  }
}

/* For tall screens on mobiles y desktop*/
@media screen and (min-height: 721px) {
  body {
    margin: 0;
  }
  .home__container, .home__img {
    height: 640px;
  }
}


/* NEW FLOATING ACTION BUTTON 4.0 */

.fabs {
  z-index: 9;
  position: fixed;
  right: 20px;
  bottom: 20px;
}

.action {
  background: #14505c;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 7px 0px rgb(243, 0, 0);
  transition: background-color 0.4s ease-in-out;
}

.action i {
  position: absolute;
  color: white;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
  cursor: pointer;
}

.action:hover {
  background-color: olivedrab;
}

.fbtn {
  position: absolute;
  height: 35px;
  width: 35px;
  border-radius: 50%;
}

.fbtn i {
  position: absolute;
  font-size: 18px;
  color: white;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.btns {
  position: absolute;
  bottom: 0px;
  margin-bottom: 5px;
  height: 35px;
  width: 35px;
  transition: 0.3s ease-in-out;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.btns.open {
  bottom: 50px;
}


/* NEW FLAOTING ACYTIONN BUTTON 4.0 ENDS */


/*==================== CAROUSEL ====================*/
.carousel-container {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.home__container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white-color);
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--white-color);
  opacity: 0.7;
  margin: 0 8px !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--first-color);
  opacity: 1;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  color: var(--white-color);
  background-color: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.5rem;
}

/* Animation for Text */
.home__data {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.swiper-slide-active .home__data {
  opacity: 1;
  transform: translateY(0);
}
/*==================== CAROUSEL ====================*/


/*==================== CALCULATOR ====================*/
.calculator {
    background-color: var(--body-color);
    padding: 4rem 0;
    transition: background-color 0.4s ease;
}

.calculator__content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white-color);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.calculator__group {
    margin-bottom: 2rem;
}

.calculator__label {
    display: block;
    margin-bottom: 1rem;
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
    font-size: 1.1rem;
}

.calculator__range {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--first-color);
    border-radius: 4px;
    outline: none;
    margin-bottom: 0.5rem;
}

.calculator__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--first-color);
    cursor: pointer;
    border: 4px solid var(--white-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.calculator__range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-color-light);
}

.calculator__bus-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.calculator__bus-option {
    border: 2px solid var(--border-color);
    border-radius: 0.8rem;
    padding: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.calculator__bus-option:hover {
    border-color: var(--first-color);
}

.calculator__bus-option.active {
    border-color: var(--first-color);
    background: rgba(20, 80, 92, 0.05);
}

.calculator__bus-option img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.calculator__bus-option h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: var(--title-color);
}

.calculator__bus-option p {
    font-size: 0.85rem;
    color: var(--first-color);
    font-weight: var(--font-semi-bold);
}

.calculator__results {
    background: rgba(20, 80, 92, 0.05);
    border-radius: 0.8rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.result-item.total {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: var(--font-semi-bold);
    font-size: 1.1rem;
}

.result-item.total span:last-child {
    color: var(--first-color);
    font-size: 1.3rem;
}

.calculator__button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

/* Experiment models */
/* === Fix for renamed bus model section === */
.calculator__bus-models {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem 0;
}

.calculator__bus-models::-webkit-scrollbar {
  height: 6px;
}

.calculator__bus-models::-webkit-scrollbar-thumb {
  background: var(--first-color, #2b4eff);
  border-radius: 10px;
}

/* Each bus card (same as before) */
.calculator__bus-models .calculator__bus-option {
  flex: 0 0 auto;
  border: 2px solid transparent;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  background: var(--container-color, #fff);
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  width: 140px;
}

.calculator__bus-models .calculator__bus-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0,0,0,0.08);
}

.calculator__bus-models .calculator__bus-option.active {
  border-color: var(--first-color, #2b4eff);
  box-shadow: 0 0 0 2px rgba(43,78,255,0.2);
}

/* Bus images & info */
.calculator__bus-models .calculator__bus-option img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #eee;
}

.calculator__bus-models .bus-info {
  padding: 0.5rem 0;
  font-weight: 600;
  font-size: 0.9rem;
}

.calculator__bus-models .bus-ac-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 1rem;
  color: #00aaff;
  display: none;
}

/* === Fix for AC/Non-AC toggle === */
.calculator__ac-options {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.8rem;
}

.calculator__ac-options .bus-type-option {
  border: 2px solid #ddd;
  border-radius: 1rem;
  background: #fff;
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
}

.calculator__ac-options .bus-type-option i {
  font-size: 1.2rem;
}

.calculator__ac-options .bus-type-option.active {
  background: var(--first-color, #2b4eff);
  color: #fff;
  border-color: var(--first-color, #2b4eff);
}

.calculator__ac-options .bus-type-option:hover {
  border-color: var(--first-color, #2b4eff);
  transform: translateY(-2px);
}

/* Experiment models end */


/* Dark Mode */
body.dark-theme .calculator__content {
    background: var(--first-color-second);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body.dark-theme .calculator__bus-option {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

body.dark-theme .calculator__bus-option.active {
    background: rgba(255, 255, 255, 0.1);
}

body.dark-theme .calculator__results {
    background: rgba(255, 255, 255, 0.05);
}

body.dark-theme .result-item.total {
    border-top-color: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media screen and (max-width: 576px) {
    .calculator__bus-types {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calculator__content {
        padding: 1.5rem;
    }
}

/*==================== DAYS CAROUSEL ====================*/
.days-carousel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
  width: 100%;
}

.days-carousel__container {
flex: 1;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* Hide scrollbar for all browsers */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.days-carousel__container::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
  background: transparent;
}

.days-carousel__track {
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
  padding: 0.5rem 0;
  /* Ensure these properties are present */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}


.day-option {
  flex: 0 0 auto;
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-color, #fff);
  border: 2px solid var(--border-color, #ccc);
  border-radius: 0.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.day-option:hover {
  border-color: var(--first-color, #00c896);
  color: var(--first-color, #00c896);
}

.day-option.active {
  background: var(--first-color, #00c896);
  color: var(--white-color, #fff);
  border-color: var(--first-color, #00c896);
  transform: scale(1.05);
}

.days-carousel__nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--first-color, #00c896);
  color: var(--white-color, #fff);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
}

.days-carousel__nav:hover {
  background: var(--first-color-alt, #00b386);
  transform: scale(1.1);
}

.days-carousel__nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Optional: Add a subtle gradient to indicate scrollable content */
.days-carousel {
  position: relative;
}

.days-carousel::after {
  content: '';
  position: absolute;
  right: 50px;
  top: 0;
  bottom: 0;
  width: 20px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, var(--body-color) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show gradient only when scrollable */
.days-carousel.scrollable::after {
  opacity: 1;
}

/* Make sure the track doesn't wrap */
.days-carousel__track {
    display: flex;
    gap: 0.75rem;
    padding: 0.5rem 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

/* Snap points for better scrolling */
.day-option {
    scroll-snap-align: start;
}

/* Disabled state for buttons */
.days-carousel__nav[disabled] {
    opacity: 0.5;
    pointer-events: none;
    background: var(--text-color-light);
}



.calculator__days-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-color-light);
    margin-top: 0.5rem;
}

.calculator__days-note i {
    color: var(--first-color);
}

/* Dark Mode */
body.dark-theme .day-option {
    background: var(--first-color-second);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-theme .day-option.active {
    background: var(--first-color);
}

/* Responsive */
@media screen and (max-width: 576px) {
    .day-option {
        flex: 0 0 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .days-carousel__nav {
        width: 30px;
        height: 30px;
    }
}

/*==================== BUS TYPE TOGGLE ====================*/
.bus-type-toggle {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.bus-type-option {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 0.8rem;
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: var(--font-semi-bold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.bus-type-option.active {
    border-color: var(--first-color);
    background: rgba(20, 80, 92, 0.1);
    color: var(--first-color);
}

.bus-type-option i {
    font-size: 1.2rem;
}

/* Dark Mode */
body.dark-theme .bus-type-option {
    background: var(--first-color-second);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-theme .bus-type-option.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--first-color);
}

/*==================== RESULTS ====================*/
.calculator__results {
    background: rgba(20, 80, 92, 0.05);
    border-radius: 0.8rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.result-item.total {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: var(--font-semi-bold);
    font-size: 1.1rem;
}

.result-item.total span:last-child {
    color: var(--first-color);
    font-size: 1.3rem;
}

/* Dark Mode */
body.dark-theme .calculator__results {
    background: rgba(255, 255, 255, 0.05);
}

body.dark-theme .result-item.total {
    border-top-color: rgba(255, 255, 255, 0.1);
}

/* States Carousel */
.states-carousel {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.states-carousel__container {
    flex: 1;
    overflow: hidden;
}

.states-carousel__track {
    display: flex;
    gap: 0.5rem;
    transition: transform 0.3s ease;
    padding: 0.5rem 0;
}

/* State selection styles */
.state-option {
    padding: 0.5rem 1rem;
    background: var(--white-color);
    border: 2px solid var(--border-color);
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: var(--font-semi-bold);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin: 0.25rem;
}

.state-option:hover {
    border-color: var(--first-color);
    color: var(--first-color);
}

.state-option.selected {
    background: var(--first-color);
    color: var(--white-color);
    border-color: var(--first-color);
    transform: scale(1.05);
}



.states-carousel__container {
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  scrollbar-width: none;          /* Firefox */
  -ms-overflow-style: none;  
}

.states-carousel__track {
  display: inline-flex;
  gap: 10px; /* space between state options */
}

.state-option {
  flex: 0 0 auto;
  padding: 8px 16px;
  background-color: #f0f0f0;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  transition: background-color 0.3s ease;
}




/* Dark Mode */
body.dark-theme .state-option {
    background: var(--first-color-second);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-theme .state-option.selected {
    background: var(--first-color);
    color: var(--white-color);
}


/* Results Section Updates */
.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.result-item.total {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: var(--font-semi-bold);
    font-size: 1.1rem;
}

.result-item.total span:last-child {
    color: var(--first-color);
    font-size: 1.3rem;
}

/* Visual indicator when the distance slider auto-adjusts */
#distance.auto-adjust {
    outline: 2px solid #ff6600;
    transition: outline 0.5s ease;
}

.auto-adjust {
  box-shadow: 0 0 10px 2px #00c896;
  transition: box-shadow 0.3s ease;
}


/* Bus AC icon */
.bus-ac-icon {
  display: none;
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  padding: 4px;
  z-index: 10;
}
.calculator__bus-option {
  position: relative;
}
.calculator__bus-option.ac-selected .bus-ac-icon {
  display: block;
}

/* Form Styles start */

/* Form Styles */
#booking-form {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

#booking-form input,
#booking-form textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 0.8rem;
  border: 2px solid var(--border-color, #e0e0e0);
  background: var(--input-color);
  color: var(--text-color);
  font-family: var(--body-font);
  transition: all 0.3s ease;
}

#booking-form input:focus,
#booking-form textarea:focus {
  border-color: var(--first-color);
  box-shadow: 0 0 0 3px rgba(20, 80, 92, 0.2);
  outline: none;
}

#booking-form input::placeholder,
#booking-form textarea::placeholder {
  color: var(--text-color-light);
  opacity: 0.8;
}

#booking-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Button Styles */
#booking-form button[type="submit"] {
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  border-radius: 0.8rem;
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(20, 80, 92, 0.2);
}

#booking-form button[type="submit"]:hover {
  background-color: var(--first-color-alt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 80, 92, 0.3);
}

#booking-form button[type="submit"]:active {
  transform: translateY(0);
}

/* Add a nice icon to the button */
#booking-form button[type="submit"]::after {
  content: "→";
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

#booking-form button[type="submit"]:hover::after {
  transform: translateX(3px);
}

/* Dark Mode Styles */
body.dark-theme #booking-form input,
body.dark-theme #booking-form textarea {
  background: var(--input-color);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-color);
}

body.dark-theme #booking-form input:focus,
body.dark-theme #booking-form textarea:focus {
  border-color: var(--first-color);
  box-shadow: 0 0 0 3px rgba(20, 80, 92, 0.3);
}

body.dark-theme #booking-form button[type="submit"] {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media screen and (min-width: 576px) {
  #booking-form {
    grid-template-columns: 1fr 1fr;
  }
  
  #booking-form textarea,
  #booking-form button[type="submit"] {
    grid-column: span 2;
  }
}

/* Form Styles end*/


/* WhatsApp Button Styles start*/
/* Update your existing WhatsApp button styles */
.whatsapp-button {
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 0.8rem;
  background-color: #25D366;
  color: white;
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex; /* Changed from inline-flex to flex */
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  box-sizing: border-box; /* Ensure padding is included in width */
}

/* If your form button has a specific max-width, add this too */
#booking-form button[type="submit"],
.whatsapp-button {
  max-width: 100%; /* Or specific px value if needed */
  width: 100%;
}

.whatsapp-button:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button:active {
  transform: translateY(0);
}

/* Container for both buttons */
.form-buttons {
  display: grid;
  gap: 1rem;
  width: 100%;
}

/* Make both buttons equal width */
.form-buttons > button {
  width: 100%;
}

/* Error styling to match your form */
.error-message {
  color: #ff4444;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Optional: Add this if your form inputs have transition */
#name, #phone, #message {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* WhatsApp Button Styles end*/