/*=============== FONTS ===============*/
/* Fonts are loaded via <link> tags in `includes/header.php` for performance. */

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

  /*========== Colors (NEW PREMIUM PALETTE) ==========*/
  /* Refined Blue for focused use */
  --brand-blue: hsl(208, 82%, 47%); /* A deeper, more confident blue */
  --brand-blue-light: hsl(208, 82%, 96%); /* Very light tint for backgrounds */
  --brand-blue-alt: hsl(208, 82%, 42%);

  /* Premium Accent */
  --accent-gold: hsl(38, 60%, 65%);

  /* Typography */
  --text-charcoal: hsl(210, 20%, 22%); /* Softer than pure black */
  --text-charcoal-light: hsl(210, 15%, 45%);
  --text-gray: hsl(210, 10%, 65%);
  
  /* Neutrals */
  --neutral-white: #fff;
  --neutral-ivory: hsl(40, 25%, 98%); /* Main body background */
  --container-bg: #fff; /* Cards and containers */
  --neutral-border: hsl(210, 16%, 93%); /* For borders and dividers */
  --shadow: 0 4px 16px hsla(210, 24%, 15%, .07);
  --card-shadow: 0 8px 24px hsla(210, 24%, 15%, .1);

  /* Legacy token aliases (temporary compat for older CSS/templates) */
  --first-color: var(--brand-blue);
  --first-color-alt: var(--brand-blue-alt);
  --title-color: var(--text-charcoal);
  --text-color: var(--text-charcoal-light);
  --text-color-light: var(--text-gray);
  --white-color: var(--neutral-white);
  --container-color: var(--container-bg);

  /* Bootstrap theme bridge (Bootstrap is loaded before this stylesheet) */
  --bs-body-font-family: var(--body-font);
  --bs-body-color: var(--text-charcoal-light);
  --bs-body-bg: var(--neutral-ivory);
  --bs-primary: var(--brand-blue);
  --bs-primary-rgb: 22, 126, 218;
  --bs-warning: var(--accent-gold);
  --bs-warning-rgb: 219, 180, 112;
  --bs-link-color: var(--brand-blue);
  --bs-link-hover-color: var(--brand-blue-alt);
  --bs-border-color: var(--neutral-border);

  /*========== Font and typography ==========*/
  --body-font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --title-font: "Cormorant Garamond", "Times New Roman", serif;
  --biggest-font-size: 2.25rem;
  --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;

  /*========== z-index HIERARCHY ==========*/
  --z-back: -1;
  --z-normal: 1;
  --z-tooltip: 10;
  --z-header: 50;
  --z-mobile-menu: 100;
  --z-fixed: var(--z-mobile-menu);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--neutral-ivory); /* CHANGED */
  color: var(--text-charcoal-light); /* CHANGED */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: .3s; /* For dark mode */
}

h1, h2, h3 {
  color: var(--text-charcoal); /* CHANGED */
  font-weight: var(--font-medium);
  font-family: var(--title-font);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: .75rem;
  padding-right: .75rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

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

/* Page title spacing (for fixed navbar on inner pages) */
.page__title-area {
  padding-top: calc(var(--header-height) + 4.5rem);
  padding-bottom: 3rem;
  background:
      radial-gradient(900px 240px at 20% 10%, hsla(208, 82%, 47%, 0.08), transparent 60%),
      radial-gradient(700px 240px at 80% 0%, hsla(38, 60%, 65%, 0.10), transparent 60%),
      linear-gradient(180deg, #fff, var(--neutral-ivory));
  border-bottom: 1px solid var(--neutral-border);
}

.page__title-container {
  text-align: center;
}

.page__title {
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: .75rem;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .85rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--neutral-border);
  border-radius: 999px;
  box-shadow: var(--shadow);
  color: var(--text-charcoal-light);
  font-size: var(--small-font-size);
}

.breadcrumb a {
  color: var(--text-charcoal);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--brand-blue);
}

.breadcrumb span {
  color: var(--text-gray);
}

/* Add scroll-margin-top to all sections with an ID for sticky nav */
#about, #popular, #explore, #gallery, #testimonials, #contact {
    scroll-margin-top: calc(var(--header-height) + 1rem);
}

.section__title {
  font-size: var(--h1-font-size);
  font-family: var(--title-font);
  font-weight: var(--font-bold);
  text-align: center;
  margin-bottom: 2rem;
}

.section__subtitle {
  max-width: 62ch;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--text-charcoal-light);
  font-size: 1rem;
}

.section__title + .section__subtitle {
  margin-top: -1.25rem;
}

.main {
  overflow: hidden; /* For animation */
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0 0 1.25rem 1.25rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color .25s ease, box-shadow .25s ease, border-color .25s ease, transform .25s ease;
}

.scroll-header {
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.nav {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: .65rem 1rem;
  min-height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--text-charcoal);
  font-weight: var(--font-semi-bold);
  font-family: var(--title-font);
}

.nav__logo-img {
  max-height: 44px;
}

.nav__buttons {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.nav__buttons .nav__button {
  padding: .75rem 1.25rem;
  border-radius: 999px;
}

.nav__toggle,
.nav__close {
  display: flex;
  font-size: 1.6rem;
  color: var(--text-charcoal);
  cursor: pointer;
}

/* Mobile Menu (floating panel) */
.nav__menu {
  position: fixed;
  top: calc(var(--header-height) + 1rem);
  left: 50%;
  width: calc(100% - 2rem);
  max-width: 420px;
  padding: 4rem 2rem 2.5rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  transform: translateX(-50%) translateY(-6px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  z-index: var(--z-mobile-menu);
}

.nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.75rem;
}

.nav__link {
  color: var(--text-charcoal); /* CHANGED */
  font-weight: var(--font-medium);
  padding: .35rem .6rem;
  border-radius: .75rem;
  transition: color .3s;
}

.nav__link:hover,
.active-link {
  color: var(--brand-blue); /* CHANGED */
}

.nav__close {
  position: absolute;
  top: .9rem;
  right: 1.1rem;
  font-size: 2rem;
}

/* Overlay behind menu */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
  z-index: calc(var(--z-mobile-menu) - 1);
}

/* Show menu */
.nav__menu.show-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.nav__menu.show-menu + .nav__overlay {
  opacity: 1;
  pointer-events: auto;
}

/*=============== HOME (HERO SECTION) ===============*/
.home {
  position: relative;
  min-height: 90vh; /* Use min-height instead of fixed height */
  display: flex; /* Use flexbox for alignment */
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.home__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-back);
}

.home__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    animation: zoom 20s infinite;
}

.home__slide.active {
    opacity: 1;
}

/* Dark overlay for better text readability */
.home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.65)); /* Darker Overlay */
    z-index: var(--z-normal);
}

.home__container {
    position: relative;
    z-index: var(--z-normal); /* Ensure content is above the overlay */
}

.home__data {
  text-align: center;
  color: var(--neutral-white); /* CHANGED */
}

.home__data-subtitle {
  display: block;
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
  margin-bottom: .5rem;
}

.home__data-title {
  font-size: var(--biggest-font-size);
  font-family: var(--title-font);
  color: var(--neutral-white); /* CHANGED */
  font-weight: var(--font-bold);
  margin-bottom: 2rem;
}

.home__data-title b {
    color: var(--brand-blue); /* CHANGED */
}

/* Keyframe animations for hero slider */
@keyframes zoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}


/*=============== BUTTON ===============*/
.button {
  display: inline-block;
  background-color: var(--brand-blue); /* CHANGED */
  color: var(--neutral-white); /* CHANGED */
  padding: 1rem 2rem;
  border-radius: .5rem;
  font-weight: var(--font-semi-bold);
  transition: .3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px hsla(208, 82%, 47%, 0.2);
}

.button:hover {
  background-color: var(--brand-blue-alt); /* CHANGED */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsla(208, 82%, 47%, 0.3);
}

.button--flex {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
}

/*=============== BOOTSTRAP THEME (SITE) ===============*/
/* Keep overrides scoped to Bootstrap buttons (requires `.btn`). */
.btn.btn-primary {
  --bs-btn-bg: var(--brand-blue);
  --bs-btn-border-color: var(--brand-blue);
  --bs-btn-hover-bg: var(--brand-blue-alt);
  --bs-btn-hover-border-color: var(--brand-blue-alt);
  --bs-btn-active-bg: var(--brand-blue-alt);
  --bs-btn-active-border-color: var(--brand-blue-alt);
  --bs-btn-focus-shadow-rgb: 22, 126, 218;
}

.btn.btn-outline-primary {
  --bs-btn-color: var(--brand-blue);
  --bs-btn-border-color: hsla(208, 82%, 47%, 0.35);
  --bs-btn-hover-bg: var(--brand-blue);
  --bs-btn-hover-border-color: var(--brand-blue);
  --bs-btn-hover-color: var(--neutral-white);
  --bs-btn-active-bg: var(--brand-blue-alt);
  --bs-btn-active-border-color: var(--brand-blue-alt);
  --bs-btn-focus-shadow-rgb: 22, 126, 218;
}

/*=============== ABOUT ===============*/
.about__container {
  row-gap: 2.5rem;
}
.text-justify {
    text-align: justify;
}

.about-page .about__container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
    gap: 2.5rem;
}
.about-page .about__data {
    max-width: 720px;
}
.about-page .about__img {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}
.about-page .about__img-overlay {
    position: static;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}
.about-page .about__img-one,
.about-page .about__img-two {
    width: 100%;
    height: auto;
    position: static;
}
.about-page .about__img-two {
    width: 80%;
    justify-self: end;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}
.info-card {
    background-color: var(--container-bg); /* CHANGED */
    padding: 1.75rem;
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
    height: 100%;
}
.info-card h3 {
    margin-bottom: .5rem;
}
.info-card__icon {
    font-size: 2.5rem;
    color: var(--brand-blue); /* CHANGED */
    margin-bottom: .75rem;
    display: block;
}
.about__presence {
    max-width: 900px;
    margin: 0 auto;
}

.about__description {
  margin-bottom: 2rem;
}

.about__img-center {
    display: flex;
    align-items: center;     /* vertical center */
    justify-content: center; /* horizontal center */
}


.about__img {
  width: 280px;
  justify-self: center;
  position: relative;
}
.about__img-overlay {
    position: absolute;
    border-radius: .75rem;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}
.about__img-one {
    width: 280px;
}
.about__img-two {
    width: 200px;
    position: absolute;
    right: -1.5rem;
    bottom: -3.5rem;
    border: 5px solid var(--neutral-ivory); /* CHANGED */
    border-radius: .75rem;
   
}


/*=============== POPULAR ===============*/
.popular--premium {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(900px 280px at 15% 12%, hsla(208, 82%, 47%, 0.10), transparent 60%),
        radial-gradient(760px 260px at 85% 10%, hsla(38, 60%, 65%, 0.12), transparent 62%),
        linear-gradient(180deg, #fff, var(--neutral-ivory)) !important;
    border-top: 1px solid var(--neutral-border);
    border-bottom: 1px solid var(--neutral-border);
}

.popular__container {
    padding-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.popular__card {
    position: relative;
    background: var(--container-bg);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.popular__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
    border-color: rgba(22, 126, 218, 0.25);
}
.popular__card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: var(--text-charcoal-light);
}

.popular__card a:focus-visible {
    outline: 3px solid hsla(208, 82%, 47%, 0.35);
    outline-offset: 3px;
    border-radius: 1.35rem;
}

.popular__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, hsl(208, 60%, 96%), hsl(40, 30%, 97%));
}

.popular__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.55), transparent 60%);
    opacity: 0.65;
    transition: opacity .25s ease;
    pointer-events: none;
}

.popular__card:hover .popular__media::after {
    opacity: 0.9;
}

.popular__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.popular__img--placeholder {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(400px 220px at 30% 25%, rgba(255, 255, 255, 0.65), transparent 60%),
        linear-gradient(135deg, rgba(22, 126, 218, 0.12), rgba(219, 180, 112, 0.14));
}

.popular__card:hover .popular__img {
    transform: scale(1.06);
}

.popular__data {
    padding: 1.1rem 1.15rem 1.2rem;
}

.popular__title {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
    margin-bottom: .75rem;
    color: var(--text-charcoal);
}

.popular__title .bx {
    color: var(--brand-blue);
    font-size: 1.2rem;
}

.popular__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

.popular__subtitle {
    display: inline-flex;
    align-items: center;
    padding: .4rem .75rem;
    border-radius: 999px;
    border: 1px solid var(--neutral-border);
    background: rgba(255, 255, 255, 0.65);
    color: var(--text-charcoal-light);
    font-size: var(--small-font-size);
}

.popular__arrow {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, hsl(208, 70%, 60%), var(--brand-blue));
    color: var(--neutral-white);
    box-shadow: 0 10px 18px hsla(208, 82%, 47%, 0.18);
    transition: transform .25s ease, box-shadow .25s ease;
}

.popular__card:hover .popular__arrow {
    transform: translateX(2px);
    box-shadow: 0 14px 22px hsla(208, 82%, 47%, 0.24);
}

.popular__empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-charcoal-light);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--neutral-border);
    border-radius: 1rem;
    padding: 1.25rem 1rem;
    box-shadow: var(--shadow);
}


/*=============== CTA ===============*/
.cta__section {
    background-image: linear-gradient(to right, hsl(208, 60%, 55%), hsl(208, 82%, 47%)); /* REFINED */
    padding: 6rem 0;
    text-align: center;
}
.cta__content {
    color: var(--neutral-white); /* CHANGED */
}
.cta__title,
.cta__description {
    color: var(--neutral-white); /* CHANGED */
}
.cta__title {
    font-size: var(--h1-font-size);
    font-family: var(--title-font);
    margin-bottom: 1rem;
}
.cta__description {
    margin-bottom: 2rem;
}
.cta__section .button {
    background-color: var(--neutral-white); /* CHANGED */
    color: var(--brand-blue); /* CHANGED */
}
.cta__section .button:hover {
    background-color: var(--neutral-ivory); /* CHANGED */
}

/* Explore section with CTA background */
.explore--cta {
    background-color: var(--brand-blue-light); /* REFINED */
}
.explore--cta .section__title {
    color: var(--text-charcoal); /* REFINED */
}


/*=============== EXPLORE ===============*/
.explore__container {
    padding-bottom: 2rem;
}
.explore__item {
    text-align: center;
    background-color: var(--container-bg); /* CHANGED */
    border-radius: 1rem;
    padding: 1rem .5rem .9rem;
    border: 1px solid rgba(33, 37, 41, 0.08);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.explore__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(208, 70%, 60%), var(--brand-blue)); /* REFINED */
    display: grid;
    place-items: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4),
        0 12px 20px hsla(208, 82%, 47%, 0.25);
    overflow: hidden;
}
.explore__icon-img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    display: block;
}
.explore__icon-bx {
    color: var(--neutral-white); /* CHANGED */
    font-size: 1.6rem;
    line-height: 1;
}
.explore__label {
    font-size: 0.95rem;
    font-weight: var(--font-semi-bold);
    color: var(--text-charcoal); /* CHANGED */
    line-height: 1.2;
}
.explore__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
    border-color: hsla(208, 82%, 47%, 0.3);
}
.explore__empty {
    text-align: center;
    color: var(--text-charcoal-light); /* CHANGED */
}

@media (max-width: 991.98px) {
    .explore__icon {
        width: 64px;
        height: 64px;
    }
    .explore__icon-bx {
        font-size: 1.5rem;
    }
    .explore__label {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .explore__item {
        padding: .85rem .4rem .8rem;
    }
    .explore__icon {
        width: 58px;
        height: 58px;
    }
    .explore__icon-bx {
        font-size: 1.35rem;
    }
    .explore__label {
        font-size: 0.85rem;
    }
}

/*=============== GALLERY ===============*/
.gallery__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.15);
    background: #0f172a;
    aspect-ratio: 4 / 3;
}
.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}
.gallery__item:hover .gallery__img {
    transform: scale(1.08);
}
.gallery__title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85), transparent);
    color: var(--neutral-white); /* CHANGED */
    padding: 1.5rem 1rem 1rem;
    font-size: var(--h3-font-size);
    text-shadow: 0 4px 10px rgba(15, 23, 42, 0.45);
}
.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.35), transparent 55%);
    opacity: 0;
    transition: opacity .35s ease;
}
.gallery__item:hover::after {
    opacity: 1;
}
.gallery__empty {
    text-align: center;
    color: var(--text-charcoal-light); /* CHANGED */
}

@media (max-width: 991.98px) {
    .gallery__container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 575.98px) {
    .gallery__container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
    .gallery__title {
        font-size: 0.95rem;
        padding: 1.2rem .9rem .8rem;
    }
}

/*=============== TESTIMONIALS ===============*/
.testimonial__card {
    background-color: var(--container-bg); /* CHANGED */
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
    margin-bottom: 1rem;
}
.testimonial__header {
    display: flex;
    align-items: center;
    column-gap: 1rem;
    margin-bottom: 1rem;
}
.testimonial__img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial__img--placeholder {
    background: linear-gradient(135deg, hsl(208, 70%, 60%), var(--brand-blue)); /* REFINED */
    color: var(--neutral-white); /* CHANGED */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-semi-bold);
    font-size: 1.1rem;
    box-shadow: 0 10px 18px hsla(208, 82%, 47%, 0.25);
}
.testimonial__name {
    font-size: var(--h3-font-size);
    font-weight: var(--font-medium);
}
.testimonial__location {
    font-size: var(--small-font-size);
    color: var(--text-gray); /* CHANGED */
}
.testimonial__rating,
.package-card__rating {
    display: flex;
    column-gap: .25rem;
    color: var(--accent-gold); /* CHANGED */
    margin-bottom: 1rem;
}
.package-card__rating .text-muted {
    margin-left: 0.5rem;
    color: var(--text-gray) !important;
}
.testimonial__description {
    font-style: italic;
}
.testimonial__empty {
    text-align: center;
    color: var(--text-charcoal-light); /* CHANGED */
    grid-column: 1 / -1;
}

.testimonials-page .testimonial__card {
    padding: 0;
    margin-bottom: 0;
}


/*=============== CONTACT ===============*/
.contact__container {
    row-gap: 3rem;
}
.contact__info {
    display: flex;
    align-items: center;
    column-gap: .75rem;
    margin-bottom: 1.5rem;
}
.contact__info i {
    font-size: 1.5rem;
    color: var(--brand-blue); /* CHANGED */
}
.contact__info-title {
    font-size: var(--h3-font-size);
}
.contact__info-data {
    font-size: var(--small-font-size);
    color: var(--text-gray); /* CHANGED */
}
.map__container {
    margin-top: 3rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.contact__form {
    background-color: var(--container-bg); /* CHANGED */
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
}
.contact__form .input__container {
    position: relative;
    margin-bottom: 2rem;
    height: 4rem;
}
.contact__form .input__container--textarea {
    height: 11rem;
}
.contact__form .input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--text-gray); /* CHANGED */
    background: none;
    color: var(--text-charcoal); /* CHANGED */
    padding: 1.5rem;
    border-radius: .75rem;
    outline: none;
    z-index: 1;
}
.contact__form .label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--container-bg); /* REFINED */
    color: var(--text-charcoal); /* CHANGED */
    font-size: var(--small-font-size);
    padding: 0 .5rem;
    transition: .3s;
}
.contact__form textarea.input {
    resize: none;
    height: 100%;
}
.input:focus {
    border-color: var(--brand-blue); /* CHANGED */
}
.input:focus + .label {
    top: -.5rem;
    left: .8rem;
    font-size: var(--smaller-font-size);
    z-index: 10;
    color: var(--brand-blue); /* CHANGED */
    background-color: var(--container-bg); /* Ensure label bg matches form bg */
}
.input:not(:placeholder-shown).input:not(:focus) + .label{
    top: -.5rem;
    left: .8rem;
    font-size: var(--smaller-font-size);
    z-index: 10;
}

/* Contact section on CTA background */
.contact--cta {
    background-color: var(--brand-blue-light); /* REFINED */
}
.contact--cta .section__title,
.contact--cta .contact__info-title {
    color: var(--text-charcoal); /* REFINED */
}
.contact--cta .contact__info-data {
    color: var(--text-charcoal-light); /* REFINED */
}
.contact--cta .contact__info i {
    color: var(--brand-blue); /* REFINED */
}

@media (max-width: 575.98px) {
    .contact__form {
        padding: 1.5rem;
    }
    .about__img-one {
   display: none;
}
}

/*=============== FOOTER ===============*/
.footer {
  padding: 4rem 0 2rem;
  background-color: hsl(210, 20%, 22%); /* REFINED to match text-charcoal */
  color: var(--neutral-white); /* CHANGED */
}
.footer__container {
  row-gap: 3.5rem;
}
.footer__content {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  row-gap: 2rem;
}
.footer__title,
.footer__subtitle {
  color: var(--neutral-white); /* CHANGED */
}
.footer__title {
  font-size: var(--h2-font-size);
  font-family: var(--title-font);
  margin-bottom: 1rem;
}
.footer__subtitle {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
}
.footer__description {
  margin-bottom: 1.5rem;
}
.footer__social {
  font-size: 1.25rem;
  color: var(--neutral-white); /* CHANGED */
  margin-right: 1rem;
  transition: color .3s;
}
.footer__social:hover {
  color: var(--brand-blue); /* CHANGED */
}
.footer__item {
  margin-bottom: .75rem;
}
.footer__link {
  color: var(--text-gray); /* CHANGED */
  transition: color .3s;
}
.footer__link:hover {
  color: var(--neutral-white); /* CHANGED */
}
.footer__rights {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid var(--text-gray); /* CHANGED */
}
.footer__copy,
.footer__terms-link {
  font-size: var(--small-font-size);
  color: var(--text-gray); /* CHANGED */
}
.footer__terms {
  display: flex;
  column-gap: 1.5rem;
  justify-content: center;
}
.footer__terms-link:hover {
  color: var(--neutral-white); /* CHANGED */
}


/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -30%;
  background-color: var(--brand-blue); /* CHANGED */
  display: inline-flex;
  padding: .5rem;
  border-radius: .25rem;
  z-index: var(--z-tooltip);
  opacity: .8;
  transition: .4s;
}
.scrollup:hover {
  opacity: 1;
}
.scrollup__icon {
  font-size: 1.25rem;
  color: var(--neutral-white); /* CHANGED */
}
/* Show Scroll Up */
.show-scroll {
  bottom: 3rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .6rem;
  background-color: hsl(210, 8%, 85%); /* Warmed up */
  border-radius: .5rem;
}
::-webkit-scrollbar-thumb {
  background-color: hsl(210, 8%, 70%); /* Warmed up */
  border-radius: .5rem;
}
::-webkit-scrollbar-thumb:hover {
  background-color: hsl(210, 8%, 60%); /* Warmed up */
}

/*==================== MEDIA QUERIES (MOBILE FIRST) ====================*/

/* For small devices (e.g., small phones) */
@media screen and (max-width: 340px) {
  .container {
    padding-left: .5rem;
    padding-right: .5rem;
  }
  .home__data-title {
    font-size: 1.8rem;
  }
}

/* For medium devices (e.g., tablets) */
@media screen and (min-width: 767px) {
  :root {
    --biggest-font-size: 4rem;
    --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;
  }

  .section {
    padding: 7rem 0 2rem;
  }
  
  .header {
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    border-radius: 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-bottom: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(255, 255, 255, 0.78);
  }

  .scroll-header {
    background: rgba(255, 255, 255, 0.92);
  }

  .nav {
    padding: .6rem 1.5rem;
  }
  .nav__toggle,
  .nav__close,
  .nav__overlay {
    display: none; /* Hide mobile menu icons */
  }
  .nav__menu {
      position: static; /* Reset mobile menu position */
      top: auto;
      left: auto;
      display: flex;
      flex: 1;
      justify-content: center;
      width: auto;
      max-width: none;
      transform: none;
      background: none;
      padding: 0;
      border: 0;
      box-shadow: none;
      opacity: 1;
      pointer-events: auto;
      transition: none;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 3rem;
    row-gap: 0;
  }
  
  .home {
      min-height: 100vh;
      padding-top: calc(var(--header-height) + 1.5rem);
  }

  .about__container {
      grid-template-columns: 1fr 1fr;
      align-items: center;
      column-gap: 4rem;
  }
  .about__data {
      text-align: left;
  }
  .about__img {
      width: 400px;
  }
  .about__img-one {
      width: 400px;
  }
  .about__img-two {
      width: 280px;
  }
  
  .testimonial__container {
      grid-template-columns: repeat(2, 1fr);
      column-gap: 2rem;
  }
  .contact__container {
      grid-template-columns: repeat(2, 1fr);
      align-items: flex-start;
      column-gap: 3rem;
  }
  .footer__content {
      grid-template-columns: repeat(4, 1fr);
  }
  .footer__rights {
      flex-direction: row;
      justify-content: space-between;
  }
}

/* For large devices (e.g., desktops) */
@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  
  .home__data-title {
      margin-bottom: 3rem;
  }
  .popular__container {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.75rem;
  }
  .cta__section {
      padding: 8rem 0;
  }
  .footer__container {
      padding-top: 3rem;
  }
}





/* Section */
.international {
   background: radial-gradient(circle at top, #fbfcff, #3a5def);
    color: #fff;
    padding: 100px 0;
}

/* Loader Wrapper */
.loader-wrapper {
    margin-top: 50px;
}

/* Runway */
.flight-loader {
    position: relative;
    width: 300px;
    height: 80px;
    margin: auto;
    overflow: hidden;
}

/* Runway line */
.runway {
    position: absolute;
    bottom: 20px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #38bdf8, transparent);
    animation: runwayMove 1s linear infinite;
}

/* Plane */
.plane {
    position: absolute;
    bottom: 10px;
    left: -40px;
    font-size: 48px;
    color: #fff;
    animation: fly 4s ease-in-out infinite;
}

/* Fly animation */
@keyframes fly {
    0% {
        left: -40px;
        transform: translateY(0) rotate(-10deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
    100% {
        left: 100%;
        transform: translateY(0) rotate(10deg);
        opacity: 0;
    }
}

/* Runway animation */
@keyframes runwayMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 300px 0;
    }
}

/* Text */
.coming-text {
    margin-top: 25px;
    font-size: 24px;
    color: #000000;
    letter-spacing: 1px;
    font-weight: 600;
    letter-spacing:0.6px;
}

/* Glow effect */
.plane i {
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.8);
}

.page-btn {
    display: inline-block;
    margin: 5px;
    padding: 8px 14px;
    border-radius: 8px;
    background: #1e293b;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.page-btn:hover {
    background: #38bdf8;
}

.page-btn.active {
    background: gold;
    color: #000;
}