/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== FONT IMPORTS ===== */
/* @import url("https://fonts.googleapis.com/css2?family=Times+New+Roman:wght@400;700&display=swap"); */

.birthstone-regular {
  font-family: "Birthstone", cursive;
  font-weight: 400;
  font-style: normal;
}

/* // <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name */

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.montserrat-500 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* global class */
.icon_gradient {
  background: linear-gradient(#f5be2b 30%, #c67d13 85%);
}
.form_arrow_wrapper {
  position: relative;
}
.form_arrow_down {
  display: inline-block;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: url("../icons/down-arrow.png") center/contain no-repeat;
  width: 15px;
  height: 15px;
}
select {
  appearance: none;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* margin: 0;  */
}

/* global class */

/* ===== ROOT VARIABLES ===== */
:root {
  --primary-gold: #C57B13;
  --primary-brown: #aa6a11;
  --light-brown: #cd853f;
  --cream: #fff8dc;
  --white: #ffffff;
  --black: #000000;
  --gray: #666666;
  --light-gray: #f5f5f5;
  --green: #228b22;
  --dark-green: #006400;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--black);
  overflow-x: hidden;
}
/* ===== HEADER STYLES ===== */
.header {
  background: var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header__container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
  height: 70px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1001;
}

.header__logo img {
  height: 50px;
}

/* Mobile Toggle Button - Hidden by default */
.header__mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.header__hamburger {
  width: 100%;
  height: 2px;
  background: var(--black);
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Navigation Wrapper */
.header__nav-wrapper {
  margin-left: auto;
}

.header__nav {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.header__nav-link {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  font-size: 1rem;
}

.header__nav-link:hover {
  color: var(--primary-gold);
}

.header__contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-weight: 500;
  margin-left: 2rem;
  color: var(--black);
}

.header__contact:hover {
  color: var(--primary-gold);
}

.header__contact-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(#f5be2b 30%, #c67d13 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-size: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.header__contact-icon img {
  height: 70%;
}

.header__contact-text {
  display: inline;
}

/* Active mobile menu state */
.header__mobile-toggle.active .header__hamburger:nth-child(1) {
  transform: rotate(45deg) translate(8px, 6px)
}

.header__mobile-toggle.active .header__hamburger:nth-child(2) {
  opacity: 0;
}

.header__mobile-toggle.active .header__hamburger:nth-child(3) {
  transform:rotate(-45deg) translate(6px, -4px);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets and below (768px) */
@media (max-width: 768px) {
  .header__container {
    padding: 1rem;
    justify-content: space-between;
  }

  .header__mobile-toggle {
    display: flex;
    order: 3;
  }

  .header__logo {
    order: 1;
  }

  .header__contact {
    order: 2;
    margin-left: 0;
    margin-right: 1rem;
  }

  .header__nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    order: 4;
    margin-left: 0;
  }

  .header__nav-wrapper.active {
    transform: translateX(0);
  }

  .header__nav {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .header__nav-link {
    font-size: 1.5rem;
    padding: 1rem;
  }
}

/* Mobile phones (480px and below) */
@media (max-width: 480px) {
  .header__container {
    padding: 0.8rem;
    height: 60px;
  }

  .header__logo img {
    height: 40px;
  }

  .header__contact-text {
    display: none;
  }

  .header__contact {
    padding: 0.3rem;
    margin-right: 0.5rem;
  }

  .header__contact-icon {
    width: 35px;
    height: 35px;
  }

  .header__mobile-toggle {
    width: 25px;
    height: 18px;
  }
}

/* Extra small phones (360px and below) */
@media (max-width: 360px) {
  .header__container {
    padding: 0.5rem;
    height: 55px;
  }

  .header__logo img {
    height: 35px;
  }

  .header__mobile-toggle {
    width: 22px;
    height: 16px;
  }
}
/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../images/hero_bg.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 70px;
}

.hero__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.hero__content {
  flex: 1;
  color: var(--white);
}

.hero__title {
  font-size: 14rem;
  margin-bottom: 1rem;
  line-height: 126px;
}

.hero__subtitle {
  font-size: 5.6rem;
  margin-bottom: 1rem;
  white-space: nowrap;
}

.hero__description {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  max-width: 600px;
}

.hero__description strong {
  color: #f5be2b;
  font-weight: 600;
}

/* ===== BOOKING FORM ===== */
.booking-form {
  background: rgba(255, 255, 255, 0.7);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: 500px;
  margin-left: 2rem;
}

.booking-form__title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.booking-form__subtitle {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

/* Tab Navigation */
.booking-form__tabs {
  display: flex;
  margin-bottom: 1.5rem;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.booking-form__tab {
  flex: 1;
  padding: 1rem;
  border: none;
  background: var(--white);
  color: var(--black);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 50%;
  /* border-bottom: 3px solid transparent; */
}

.booking-form__tab:hover {
  /* background: var(--light-gray); */
}

.booking-form__tab--active {
  background: var(--black);
  color: var(--white);
  /* border-bottom-color: var(--primary-gold); */
}

/* Tab Content */
.booking-form__content {
  position: relative;
}

.booking-form__tab-panel {
  display: none;
}

.booking-form__tab-panel--active {
  display: block;
}

.booking-form__form {
  margin: 0;
}

.booking-form__group {
  margin-bottom: 1rem;
  position: relative;
}

.booking-form__input,
.booking-form__select,
.booking-form__textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.75);
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
}

.booking-form__textarea {
  resize: vertical;
  min-height: 100px;
}

/* Date input styling for Flatpickr */
.date-input {
  cursor: pointer;
}

.date-input::placeholder {
  color: #999;
  opacity: 1;
}

.date-input::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}

.date-input::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.date-input:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}

/* Mobile date input styling */
.date-input[type="date"] {
  color: #999;
}

.date-input[type="date"]:valid {
  color: #000;
}

.date-input[type="date"]::-webkit-datetime-edit-text {
  color: #999;
}

.date-input[type="date"]::-webkit-datetime-edit-month-field,
.date-input[type="date"]::-webkit-datetime-edit-day-field,
.date-input[type="date"]::-webkit-datetime-edit-year-field {
  color: #999;
}

.date-input[type="date"]:valid::-webkit-datetime-edit-text,
.date-input[type="date"]:valid::-webkit-datetime-edit-month-field,
.date-input[type="date"]:valid::-webkit-datetime-edit-day-field,
.date-input[type="date"]:valid::-webkit-datetime-edit-year-field {
  color: #000;
}

/* Fallback placeholder label */
.date-placeholder-label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #000!important;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1;
  opacity: 1; /* Always visible by default */
  font-size: 1rem!important; /* Match input font size */
  font-weight: 400; /* Match input font weight */
  font-family: inherit; /* Match input font family */
  line-height: 1; /* Match input line height */
}

.date-input:focus + .date-placeholder-label,
.date-input:not(:placeholder-shown) + .date-placeholder-label {
  opacity: 0;
  transform: translateY(-50%) scale(0.8);
}

/* Date picker icon */
.date-picker-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #999;
  pointer-events: none;
  z-index: 1;
}

/* Ensure fallback label is visible on mobile */
@media (max-width: 768px) {
  .date-placeholder-label {
    opacity: 1 !important;
    display: block !important;
    font-size: 0.9rem; /* Match responsive input font size */
  }
  
  .date-input:focus + .date-placeholder-label {
    opacity: 0.3 !important; /* Slightly visible on focus */
  }
  
  .date-picker-icon {
    font-size: 1.1rem;
  }
}

.booking-form__group {
  position: relative;
}

/* Flatpickr calendar styling */
.flatpickr-calendar {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.flatpickr-day.selected {
  background: #c67d13;
  border-color: #c67d13;
}

.flatpickr-day.selected:hover {
  background: #a66a0f;
  border-color: #a66a0f;
}

.booking-form__h5 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.booking-form__button {
  width: 100%;
  background: linear-gradient(#f5be2b 30%, #c67d13 85%);
  color: var(--black);
  padding: 1rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.booking-form__button:hover {
  opacity: 0.8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.booking-form__button--black {
  background: var(--black);
  color: var(--white);
}

.booking-form__button--black:hover {
  background: var(--black);
  color: var(--white);
  opacity: 0.8;
}

/* ===== WELCOME SECTION ===== */
.welcome {
  padding: 2rem 0;
  padding-top: 0;
  background: var(--white);
  position: relative;
}

.welcome::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 0;
  height: 100%;
  display: block;
  width: 100%;
  background: url("../images/leaf_left.png") no-repeat;
  pointer-events: none;
  z-index: 1;

}

.welcome::after {
  content: "";
  position: absolute;
  top: 2rem;
  right: 0;
  height: 100%;
  display: block;
  width: 100%;
  background: url("../images/leaf_right.png") no-repeat;
  background-position-x: right;
  pointer-events: none;
  z-index: 1;
}

.welcome__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.welcome__title {
  font-size: 8rem;
  color: #c68626;
  margin-bottom: 1rem;
  line-height: 80px;
  padding-top: 2rem;
}

.welcome__subtitle {
  font-size: 3.5rem;
  color: var(--black);
  margin-bottom: 2rem;
}

.welcome__title_wrapper {
  text-align: center;
  position: relative;
  z-index: -1;
}
.welcome__title_inner {
  display: inline-block;
  position: relative;
  background: #fcf5f5;
  padding-left: 3rem;
  padding-right: 3rem;
}

.welcome__tagline {
  font-size: 1.5rem;
  color: var(--black);
  max-width: 100%;
  margin: 0 auto 1.5rem;
  line-height: 33.3px;
}

.welcome__intro {
  font-size: 1.1rem;
  color: var(--black);
  text-align: center;
  margin: 0 auto 3rem;
  line-height: 1.6;
  font-weight: 500;
  max-width: 800px;
}

.welcome__intro strong {
  color: var(--primary-gold);
  font-weight: 600;
}

.welcome__content {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
}

.welcome__text {
  color: var(--black);
  line-height: 1.6;
  font-size: 1.6rem;
  text-align: justify;
}

.welcome__text p {
  margin-bottom: 1rem;
}

.welcome__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 100%;
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 2rem 0;
  background: var(--white);
  position: relative;
}

.services::after {
  content: "";
  position: absolute;
  top: -3rem;
  right: 0;
  height: 100%;
  display: block;
  width: 100%;
  background: url("../images/flower.png") no-repeat;
  background-position-x: right;
  pointer-events: none;
  opacity: .4;
}

.services__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.services__title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--black);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 4rem;
  margin-bottom: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-card__content {
  padding-top: 1.5rem;
}

.service-card__title {
  font-size: 1.7rem;
  color: var(--black);
  margin-bottom: 1rem;
  font-weight: bold;
  white-space: nowrap;
  overflow: visible;
  text-overflow: unset;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  justify-content: space-between;
  align-items: center;
}
.service-card__tags img {
  height: 20px;
}

.service-card__tag {
  padding: 0.2rem 0.8rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.service-card__tag--available {
  background: #12a87b;
  color: var(--white);
}

.service-card__tag--expert {
  background: var(--black);
  color: var(--white);
}

.service-card__tag--book {
  background: var(--primary-gold);
  color: var(--white);
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 2rem 0;
  background: var(--white);
  position: relative;
}

/* .contact::before {
  content: "";
  position: absolute;
  top: 8rem;
  left: 0;
  height: 100%;
  display: block;
  width: 100%;
  background: url("../images/single_leaf_left.png") no-repeat;
  pointer-events: none;
}

.contact::after {
  content: "";
  position: absolute;
  top: 8rem;
  right: 0;
  height: 100%;
  display: block;
  width: 100%;
  background: url("../images/single_leaf_right.png") no-repeat;
  background-position-x: right;
  pointer-events: none;
} */

.contact__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 550px 550px;
  gap: 4rem;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.contact__form {
  background: #C67D13;
  padding: 3rem;
  border-radius: 15px;
  color: var(--black);
}

.contact__form-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact__form-subtitle {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.contact__form-group {
  margin-bottom: 1.5rem;
}

.contact__form_h5 {
  margin-bottom: 12px;
  font-size: 1rem;
}
.contact__form-input {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid rgba(0, 0, 0, 0.75);

}

.contact__form-button {
  background: var(--black);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact__form-button:hover {
  background: var(--primary-brown);
}

.contact__info {
  padding: 2rem 0;
}

.contact__info-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--black);
}

.contact__info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact__info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
}
.contact__info-icon img {
  height: 60%;
}

.contact__info-text {
  color: var(--black);
  line-height: 1.4;
}

.contact__info-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact__info-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ===== THANK YOU SECTION ===== */
.thankyou-section {
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.thankyou__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

.thankyou_nav_wrapper {
  width: 100%;
  background: #F3F3F3;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 7rem;
  padding-bottom: 1rem;
}

.thankyou__nav {
  margin-bottom: 0;
  text-align: left;
}

.thankyou__nav-link {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-left: 2rem;
}

.thankyou__nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 2px;
  background: #666;
}

.thankyou__nav-link:hover {
  color: #333;
}

.thankyou__nav-link:hover::before {
  background: #333;
}

.thankyou__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 0;
}

.thankyou__title {
  font-size: 10rem;
  color: var(--primary);
  margin-bottom: 0;
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
}

.thankyou__image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

.thankyou__img {
  max-width: 100%;
  height: auto;
  display: block;
}

.thankyou__description {
  font-size: 2rem;
  color: #333;
  font-weight: bold;
  margin: 0;
}

/* Thank You Section Responsive */
@media (max-width: 1200px) {
  .thankyou-section {
    padding: 0;
  }
  .thankyou_nav_wrapper {
    padding: 0;
    padding-bottom: 1rem;
    padding-top: 6rem;
  }
  
  .thankyou__title {
    font-size: 8rem;
  }
  
  .thankyou__content {
    padding: 3rem 0;
  }
}

@media (max-width: 992px) {
  .thankyou_nav_wrapper {
    padding: 0;
    padding-bottom: 1rem;
    padding-top: 6rem;
  }
  
  .thankyou__title {
    font-size: 6rem;
  }
  
  .thankyou__content {
    padding: 2.5rem 0;
  }
}

@media (max-width: 768px) {
  .thankyou-section {
    padding: 0;
    min-height: 0;
  }
  .thankyou__container {
    padding: 0 1rem;
  }

  .thankyou_nav_wrapper {
    padding: 0;
    padding-bottom: 1rem;
    padding-top: 6rem;
  }

  .thankyou__nav {
    margin-bottom: 0;
  }

  .thankyou__nav-link {
    font-size: 0.8rem;
    padding-left: 1.5rem;
  }

  .thankyou__nav-link::before {
    width: 1.2rem;
  }

  .thankyou__title {
    font-size: 4rem;
    margin-bottom: 2rem;
  }

  .thankyou__content {
    padding: 2rem 0;
  }

  .thankyou__image {
    margin-bottom: 2rem;
  }

  .thankyou__description {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .thankyou_nav_wrapper {
    padding: 0;
    padding-bottom: 1rem;
    padding-top: 6rem;
  }

  .thankyou__nav {
    margin-bottom: 0;
  }

  .thankyou__nav-link {
    font-size: 0.75rem;
    padding-left: 1.2rem;
  }

  .thankyou__nav-link::before {
    width: 1rem;
    height: 1.5px;
  }

  .thankyou__title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }

  .thankyou__content {
    padding: 1.5rem 0;
  }

  .thankyou__image {
    margin-bottom: 1.5rem;
  }

  .thankyou__img {
    max-width: 90%;
  }

  .thankyou__description {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .thankyou_nav_wrapper {
    padding: 0;
    padding-bottom: .5rem;
    padding-top: 5.5rem;
  }

  .thankyou__nav {
    margin-bottom: 1rem;
  }

  .thankyou__nav-link {
    font-size: 0.7rem;
    padding-left: 1rem;
  }

  .thankyou__nav-link::before {
    width: 0.8rem;
    height: 1px;
  }

  .thankyou__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .thankyou__content {
    padding: 1rem 0;
  }

  .thankyou__image {
    margin-bottom: 1rem;
  }

  .thankyou__img {
    max-width: 85%;
  }

  .thankyou__description {
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  .thankyou_nav_wrapper {
    padding: 0;
    padding-bottom: .5rem;
    padding-top: 5.5rem;
  }

  .thankyou__nav-link {
    font-size: 0.65rem;
    padding-left: 0.8rem;
  }

  .thankyou__nav-link::before {
    width: 0.6rem;
  }

  .thankyou__title {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .thankyou__content {
    padding: 0.8rem 0;
  }

  .thankyou__img {
    max-width: 80%;
  }

  .thankyou__description {
    font-size: 0.75rem;
  }
}

/* ===== CALL TO ACTION SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #f5be2b 0%, #c67d13 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('./images/leaf_left.png') no-repeat left top,
              url('./images/leaf_right.png') no-repeat right bottom;
  background-size: 200px, 200px;
  opacity: 0.1;
  z-index: 1;
}

.cta__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.cta__content {
  max-width: 800px;
  margin: 0 auto;
}

.cta__title {
  font-size: 8rem;
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta__subtitle {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta__description {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta__description strong {
  color: #fff;
  font-weight: 600;
}

.cta__buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.65rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta__button--primary {
  background: #fff;
  color: #c67d13;
}

.cta__button--primary:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta__button--secondary {
  background: #25D366;
  color: #fff;
}

.cta__button--secondary:hover {
  background: #20b358;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta__button img {
  width: 20px;
  height: 20px;
}

.cta__button-text {
  display: inline;
}

.cta__button-now {
  display: inline;
}

.cta__features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
}

.cta__feature-icon {
  font-size: 1.5rem;
}

/* Responsive CTA */
@media (max-width: 768px) {
  .cta-section {
    padding: 3rem 0;
  }
  
  .cta__title {
    font-size: 2.5rem;
  }
  
  .cta__subtitle {
    font-size: 1.5rem;
  }
  
  .cta__description {
    font-size: 1rem;
  }
  
  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta__button {
    width: 100%;
    max-width: 350px;
    justify-content: center;
    font-size: 1.5rem;
    padding: 0.8rem 1.5rem;
    white-space: nowrap;
  }

  .cta__button-now {
    display: none;
  }
  
  .cta__features {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
  animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp img {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/* Mobile responsive for floating button */
@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 15px;
    right: 15px;
    width: 55px;
    height: 55px;
  }
  
  .floating-whatsapp img {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .floating-whatsapp {
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
  }
  
  .floating-whatsapp img {
    width: 28px;
    height: 28px;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 2rem 0 2rem;
  padding-bottom: 0;
}

.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer__logo img {
  height: 80px;
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer__section-title {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--primary-gold);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer__logo img{
  height: 50px;
}
.footer__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
}

.footer__logo-text {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-gold);
}

.footer__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer__phone:hover{
  text-decoration: underline;
}

.footer__phone-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.footer__phone-icon img {
  height: 60%;
}

.footer__bottom {
  text-align: center;
  color: var(--white);
  background: #c57c13;
  padding: 0.5rem;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large tablets and small desktops (1024px and below) */
@media (max-width: 1024px) {
  .hero__container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2rem;
  }
  

  .hero__content {
    order: 1;
  }

  .booking-form {
    order: 2;
    margin-left: 0;
    margin-top: 0;
    width: 100%;
    max-width: 500px;
  }

  .hero__title {
    font-size: 10.92rem;
    line-height: 127px;
  }

  .hero__subtitle {
    font-size: 4.16rem;
  }

  .welcome__title,
  .cta__title  {
    font-size: 5rem;
    line-height: 60px;
  }

  .welcome__subtitle {
    font-size: 2.5rem;
  }

  .welcome__tagline {
    font-size: 1.5rem;
  }

  .welcome__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .welcome__text {
    font-size: 1.6rem;
  }

  .contact__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .footer__content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
  .header__container {
    /* flex-direction: column; */
    gap: 1rem;
    padding: 1rem;
  }

  .header__nav {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header__contact {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .hero {
    margin-top: 70px;
    padding: 1rem 0;
    min-height: 80vh;
    height: auto;
  }

  .hero__title {
    font-size: 5.82rem;
    line-height: 73px;
    margin-bottom: 0.5rem;
  }

  .hero__subtitle {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }

  .booking-form {
    width: 100%;
    max-width: none;
    padding: 1.5rem;
    margin: 0 -1rem;
  }

  .booking-form__button {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .booking-form__tabs {
    margin-bottom: 1rem;
  }

  /* .booking-form__tab {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  } */

  .welcome {
    padding: 1rem 0;
  }

  .welcome::before,
  .welcome::after {
    display: none;
  }

  .welcome__title {
    font-size: 3.5rem;
    line-height: 45px;
    padding-top: 1rem;
  }

  .welcome__subtitle {
    font-size: 2rem;
  }

  .welcome__tagline {
    font-size: 1.2rem;
    padding: 0 1rem;
  }

  .welcome__text {
    font-size: 1.28rem;
    padding: 0 1rem;
  }

  .services {
    padding: 1rem 0;
  }

  .services::after {
    display: none;
  }

  .services__title {
    font-size: 2rem;
  }

  .service-card__title {
    font-size: 1.4rem;
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .contact {
    padding: 1rem 0;
  }

  

  .contact__form {
    padding: 2rem;
  }

  .contact__form-title {
    font-size: 1.5rem;
  }

  .contact__info-title {
    font-size: 1.5rem;
  }

  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer__logo img {
    height: 60px;
  }
}

/* Large phones (480px and below) */
@media (max-width: 480px) {
  .header__container {
    padding: 0.5rem 1rem;
  }
/* 
  .header__nav {
    display: none;
  } */

  .header__contact {
    font-size: 0.9rem;
    padding: 0.2rem 0.5rem;
  }

  .header__contact span {
    display: none;
  }

  .header__logo img {
    height: 35px;
  }

  .hero {
    margin-top: 60px;
    padding: 0.5rem 0;
    min-height: 70vh;
  }

  .hero__container {
    padding: 0.2rem;
    gap: 0rem;
  }

  .hero__title {
    font-size: 5.1rem;
    line-height: 51px;
    margin-bottom: 0.3rem;
  }

  .hero__subtitle {
    font-size: 1.56rem;
    margin-bottom: 0.5rem;
  }

  .hero__description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .booking-form {
    padding: 0.4rem;
    margin: 0.5rem -0.5rem 0 -0.5rem;
  }

  .booking-form__title {
    font-size: 1.2rem;
  }

  .booking-form__subtitle {
    font-size: 0.8rem;
  }

  .booking-form__input,
  .booking-form__select {
    padding: 0.7rem;
    font-size: 0.85rem;
  }

  .booking-form__button,
  .booking-form__tab {
    padding: 0.8rem;
    font-size: 0.9rem;
    margin-top: 0;
  }

  .booking-form__input,
  .booking-form__select,
  .booking-form__textarea {
    padding: 0.8rem 1rem;
  }

  .welcome {
    padding: 1rem 0;
  }

  .welcome__title {
    font-size: 2.5rem;
    line-height: 35px;
  }

  .welcome__subtitle {
    font-size: 1.5rem;
  }

  .welcome__title_inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .welcome__tagline {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  .welcome__text {
    font-size: 1.08rem;
    padding: 0 0.5rem;
  }

  .welcome__image {
    max-width: 250px;
    margin: 0 auto;
  }

  .services {
    padding: 1rem 0;
  }

  .services__container {
    padding: 0 1rem;
  }

  .services__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .services__grid {
    padding: 0;
  }

  .service-card {
    margin: 0;
  }

  .service-card__content {
    padding-top: 1rem;
  }

  .service-card__title {
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
  }

  .service-card__tags {
    flex-direction: column;
    gap: 0.3rem;
    align-items: stretch;
  }

  .service-card__tag {
    justify-content: center;
    padding: 0.5rem;
    font-size: 0.75rem;
  }

  .contact {
    padding: 1rem 0;
  }

  .contact__container {
    padding: 0 1rem;
    gap: 1.5rem;
  }

  .contact__form {
    padding: 1.5rem;
  }

  .contact__form-title {
    font-size: 1.3rem;
  }

  .contact__form-subtitle {
    font-size: 0.9rem;
  }

  .contact__form-input {
    padding: 0.8rem;
    font-size: 1rem;
  }

  .contact__form-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .contact__info {
    padding: 1rem 0;
  }

  .contact__info-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .contact__info-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .contact__info-text {
    font-size: 0.9rem;
  }

  .footer {
    padding: 2rem 0 0;
  }

  .footer__container {
    padding: 0 1rem;
  }

  .footer__content {
    gap: 1.5rem;
  }

  .footer__section-title {
    font-size: 1.1rem;
  }

  .footer__links {
    font-size: 0.9rem;
  }

  .footer__phone {
    font-size: 1rem;
    justify-content: center;
  }

  .footer__bottom {
    font-size: 0.8rem;
    padding: 1rem 0.5rem;
  }

  .cta__button {
    max-width: 320px;
    font-size: 1.35rem;
    padding: 0.7rem 1.2rem;
  }
}

/* Extra small phones (360px and below) */
@media (max-width: 360px) {
  .hero {
    margin-top: 55px;
  }

  .hero__title {
    font-size: 2.91rem;
    line-height: 44px;
    margin-bottom: 0.2rem;
  }

  .hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
  }

  .hero__description {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .welcome__title {
    font-size: 2rem;
    line-height: 30px;
  }

  .welcome__subtitle {
    font-size: 1.2rem;
  }

  .welcome__tagline {
    font-size: 0.9rem;
  }

  .welcome__text {
    font-size: 0.96rem;
  }

  .services__title {
    font-size: 1.3rem;
  }

  .service-card__title {
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
  }

  .service-card__image {
    height: 200px;
  }

  .contact__form-title,
  .contact__info-title {
    font-size: 1.1rem;
  }

  .footer__section-title {
    font-size: 1rem;
  }

  .cta__button {
    max-width: 300px;
    font-size: 1.275rem;
    padding: 0.6rem 1rem;
  }

  .booking-form {
    margin: 0.5rem -0.3rem 0 -0.3rem;
    padding: 0.4rem;
  }

  .booking-form__input,
  .booking-form__select,
  .booking-form__textarea {
    padding: 0.7rem 0.9rem;
  }
}