/* ==========================================================================
   Premium Travel Club — master stylesheet
   Single file: layout, components, responsive, motion
   ========================================================================== */

:root {
  --color-navy: #0a1a3a;
  --color-navy-deep: #061028;
  --color-blue: #0a3a6b;
  --color-blue-mid: #21558b;
  --color-blue-light: #2d6ba8;
  --color-white: #ffffff;
  --color-off-white: #f5f6f8;
  --color-text: #333333;
  --color-text-muted: #666666;
  --color-border: rgba(255, 255, 255, 0.35);
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --container-max: 1200px;
  --header-height: 112px;
  --transition-fast: 0.2s ease;
  --transition-med: 0.35s ease;
  --shadow-header: 0 8px 32px rgba(0, 0, 0, 0.18);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  width: min(92%, var(--container-max));
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   Fixed header (sticky behavior: remains visible on scroll)
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: box-shadow var(--transition-med), background var(--transition-med);
}

.site-header--scrolled {
  box-shadow: var(--shadow-header);
}

.site-header--scrolled .main-nav {
  background:#fff;;
}

/* Top bar */

.top-bar {
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 0.8125rem;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  gap: 1rem;
}

.top-bar__contact {
  margin: 0;
}

.top-bar__label {
  letter-spacing: 0.04em;
}

.top-bar__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar__link {
  background: none;
  border: none;
  color: inherit;
  font-size: inherit;
  padding: 0;
  position: relative;
  transition: opacity var(--transition-fast);
}

.top-bar__link::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.35rem;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255, 255, 255, 0.85);
}

.top-bar__link--member::after {
  display: none;
}

.top-bar__link:hover {
  opacity: 0.85;
}

/* Main navigation */

.main-nav {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--transition-med);
}

.main-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 72px;
}

.main-nav__brand {
  flex-shrink: 0;
  transition: opacity var(--transition-fast);
}

.main-nav__brand:hover {
  opacity: 0.92;
}

.main-nav__logo {
  height: 40px;
  width: auto;
}

.main-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(10, 26, 58, 0.35);
  border-radius: 4px;
  background: transparent;
  color: var(--color-white);
}

.main-nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #0a1a3a;
  margin: 0 auto;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.main-nav__menu {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.main-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem 1.75rem;
}

.main-nav__link {
  color:#0a1a3a;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.35rem 0;
  position: relative;
}

.main-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #2ea0b8;
  transition: width var(--transition-med);
}

.main-nav__link:hover::after,
.main-nav__link:focus-visible::after,
.main-nav__link--active::after {
  width: 100%;
}

.main-nav__link:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 4px;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(160deg, var(--color-blue-mid), var(--color-navy));
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
  object-position: center;
}

@media (prefers-reduced-motion: reduce) {
  .hero__video {
    display: none;
  }

  .hero__media {
    background:
      linear-gradient(135deg, rgba(10, 26, 58, 0.35), transparent),
      url("images/hero-bg.jpg") center / cover no-repeat,
      linear-gradient(160deg, var(--color-blue-mid), var(--color-navy));
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(6, 16, 40, 0.45) 0%,
    rgba(6, 16, 40, 0.55) 50%,
    rgba(6, 16, 40, 0.65) 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-height) + 2rem) 1rem 4rem;
  max-width: 720px;
}

.hero__play {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: transform var(--transition-med), background var(--transition-med), box-shadow var(--transition-med);
}

.hero__play:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.hero__play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--color-white);
  margin-left: 6px;
  transition: border-width var(--transition-fast), width var(--transition-fast), height var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.hero__play--paused .hero__play-icon {
  width: 6px;
  height: 22px;
 margin-left: -14px;
  border: none;
  border-radius: 1px;
  background: var(--color-white);
  box-shadow: 14px 0 0 var(--color-white);
}

.hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
}

.hero__title {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.hero__subtitle {
  margin: 0;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  opacity: 0.88;
  font-weight: 400;
}

.hero__scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 13rem;
  color: inherit;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: opacity var(--transition-fast), transform var(--transition-med);
}

.hero__scroll:hover {
  opacity: 0.85;
  transform: translateY(4px);
}

.hero__scroll-arrow {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--color-white), transparent);
  position: relative;
}

.hero__scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid var(--color-white);
}

/* --------------------------------------------------------------------------
   Sections — reveal animation
   -------------------------------------------------------------------------- */

.section--reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section--reveal.section--visible {
  opacity: 1;
  transform: translateY(0);
}

.section {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

/* --------------------------------------------------------------------------
   Vacations
   -------------------------------------------------------------------------- */

.vacation {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: #fff;
}

.vacation__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.vacation__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.vacation__figure {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.vacation__img {
  width: 100%;
  height: clamp(180px, 22vw, 260px);
  object-fit: cover;
  transition: transform 0.55s ease;
}

.vacation__figure:hover .vacation__img {
  transform: scale(1.05);
}

.vacation__tag {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blue);
}

.vacation__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.vacation__text {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.vacation__text--accent {
  font-weight: 600;
  color: var(--color-blue);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  transition: background var(--transition-med), color var(--transition-med), transform var(--transition-fast);
}

.btn--primary {
  background: var(--color-blue);
  color: var(--color-white);
}

.btn--primary:hover {
  background: #082d54;
  transform: translateY(-1px);
}

.btn--primary:active {
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Hotel tabs: toolbar over image + card grid (see js/hotel-tabs.js)
   -------------------------------------------------------------------------- */

.hotel-tabs {
  padding: 0;
}

.hotel-tabs__intro {
  text-align: center;
  padding: clamp(3rem, 6vw, 4rem) 1rem 1.75rem;
  background:#f6f7f9;
}

.hotel-tabs__tag {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blue);
}

.hotel-tabs__title {
  margin: 0;
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 700;
  color: var(--color-text);
}

.hotel-tabs__toolbar {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.hotel-tabs__bg {
  position: absolute;
  inset: 0;
  background: url("images/filter-bg.jpg") center / cover no-repeat;
  filter: grayscale(100%);
  transform: scale(1.02);
}

.hotel-tabs__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 55, 100, 0.82) 0%,
    rgba(10, 26, 58, 0.88) 100%
  );
}

.hotel-tabs__toolbar-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.5rem;
}

.hotel-tabs__bar-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.hotel-tabs__bar {
  display: flex;
  min-width: min(920px, 100%);
  margin: 0 auto;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  overflow: hidden;
}

.hotel-tabs__tab {
  flex: 1 1 0;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.25rem 0.65rem;
  min-height: 118px;
  border: none;
  border-right: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  transition:
    background 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.25s ease,
    box-shadow 0.35s ease;
}

.hotel-tabs__tab:last-child {
  border-right: none;
}

.hotel-tabs__tab:hover:not(.hotel-tabs__tab--active) {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.hotel-tabs__tab:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
  z-index: 1;
}

.hotel-tabs__tab--active {
  background: var(--color-white);
  color: var(--color-blue);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.hotel-tabs__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.hotel-tabs__label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.35;
}

.hotel-tabs__destination {
  align-self: flex-end;
  margin-top: 0;
}

.hotel-tabs__select {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border: none;
  background: none;
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity var(--transition-fast);
  cursor: pointer;
}

.hotel-tabs__select:hover {
  opacity: 0.85;
}

.hotel-tabs__chevron {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
}

/* Tab panel + transition surface */
.hotel-tabs__body {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3.5rem, 6vw, 4.5rem);
  background: #f6f7f9;
}

.hotel-tabs__panels {
  min-height: 12rem;
}

.hotel-tabs__surface {
  transition:
    opacity 0.42s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.hotel-tabs__surface--exit {
  opacity: 0;
  transform: translateY(12px);
}

.hotel-tabs__surface--enter {
  opacity: 0;
  transform: translateY(10px);
}

@media (prefers-reduced-motion: reduce) {
  .hotel-tabs__surface {
    transition: none;
  }

  .hotel-tabs__surface--exit,
  .hotel-tabs__surface--enter {
    transform: none;
  }
}

.hotel-tabs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}

/* Hotel cards — alternating media/text (checkerboard) */
.hotel-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.hotel-card:hover {
  box-shadow: 0 20px 50px rgba(10, 58, 107, 0.12);
  transform: translateY(-3px);
}

.hotel-card__body {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hotel-card__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.hotel-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.85rem;
}

.hotel-card__stars {
  color: #c9a227;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.hotel-card__location {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.hotel-card__desc {
  margin: 0 0 1.25rem;
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.hotel-card__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: 2px;
  transition:
    background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease;
}

.hotel-card__cta:hover {
  background: var(--color-blue);
  color: var(--color-white);
  border-color: var(--color-blue);
}

.hotel-card__cta-arrow {
  transition: transform 0.25s ease;
}

.hotel-card__cta:hover .hotel-card__cta-arrow {
  transform: translateX(4px);
}

.hotel-card__media {
  position: relative;
  min-height: 200px;
  flex-shrink: 0;
}

.hotel-card__img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.hotel-card:hover .hotel-card__img {
  transform: scale(1.04);
}

.hotel-card--text-first .hotel-card__body {
  order: 1;
}

.hotel-card--text-first .hotel-card__media {
  order: 2;
}

.hotel-card--media-first .hotel-card__media {
  order: 1;
}

.hotel-card--media-first .hotel-card__body {
  order: 2;
}

/* --------------------------------------------------------------------------
   Destinations
   -------------------------------------------------------------------------- */

.destinations {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: var(--color-white);
}

.destinations__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.destinations__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blue);
}

.destinations__title {
  margin: 0;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text);
}

.destinations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.destination-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.destination-card__link {
  display: block;
  height: 100%;
  color: var(--color-white);
}

.destination-card__media {
  position: absolute;
  inset: 0;
}

.destination-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.destination-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 16, 40, 0.75) 0%,
    rgba(6, 16, 40, 0.15) 55%,
    transparent 100%
  );
  transition: opacity var(--transition-med);
}

.destination-card:hover .destination-card__img {
  transform: scale(1.06);
}

.destination-card__name {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  right: 1.25rem;
  margin: 0;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   Testimonials slider
   -------------------------------------------------------------------------- */

.testimonials {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
  background: var(--color-off-white);
}

.testimonials__layout {
  max-width: 880px;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 2.5rem;
	padding: 100px 0 0 0 ;
}

.testimonials__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:#fff
}

.testimonials__title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color:#fff;
}

.testimonials__widget {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    width: 55%;
    margin: 0 auto;
}

.testimonials__viewport {
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.testimonials__track {
  display: flex;
  width: 300%;
  transition: transform 0.55s ease;
}

.testimonials__slide {
  flex: 0 0 33.333%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  width: 33.333%;
}

.testimonials__quote {
  margin: 0;
}

.testimonials__quote p {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  font-style: italic;
}

.testimonials__quote footer {
  font-size: 0.875rem;
  font-style: normal;
}

.testimonials__author {
  display: block;
  font-weight: 700;
  font-style: normal;
  color: var(--color-blue);
}

.testimonials__role {
  display: block;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.testimonials__avatar-wrap {
  flex-shrink: 0;
}

.testimonials__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-off-white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.testimonials__nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(10, 58, 107, 0.25);
  background: var(--color-white);
  color: var(--color-blue);
  font-size:2.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.testimonials__nav:hover {
  background: var(--color-blue);
  color: var(--color-white);
  border-color: var(--color-blue);
}

.testimonials__nav:active {
  transform: scale(0.96);
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(219, 231, 255, 0.25);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.testimonials__dot--active {
  background:#fff;
  transform: scale(1.15);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--color-navy-deep);
  color: rgba(255, 255, 255, 0.88);
  padding-top: 3rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__logo {
  height: 36px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.site-footer__blurb {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 280px;
}

.site-footer__heading {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
}

.site-footer__list li {
  margin-bottom: 0.5rem;
}

.site-footer__list a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.site-footer__list a:hover {
  color: var(--color-white);
}

.site-footer__bottom {
  padding: 1.25rem 0;
}

.site-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__social {
  display: flex;
  gap: 0.75rem;
}

.site-footer__social-link {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
  font-weight: 700;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.site-footer__social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
}

/* --------------------------------------------------------------------------
   Responsive — tablet
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .destinations__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destination-card {
    min-height: 240px;
  }

  .testimonials__slide {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonials__avatar-wrap {
    justify-self: center;
  }
}

@media (max-width: 900px) {
  .vacation__grid {
    grid-template-columns: 1fr;
  }

  .vacation__gallery {
    order: 2;
  }

  .vacation__copy {
    order: 1;
  }

  .hotel-tabs__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hotel-tabs__destination {
    align-self: center;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

/* --------------------------------------------------------------------------
   Responsive — mobile navigation
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {
  .top-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0;
  }

  .main-nav__toggle {
    display: flex;
  }

  .main-nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .main-nav__menu--open {
    max-height: 420px;
  }

  .main-nav__inner {
    position: relative;
    flex-wrap: wrap;
  }

  .main-nav__list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 0.75rem 0 1.25rem;
    gap: 0;
  }

  .main-nav__link {
    display: block;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav__link::after {
    display: none;
  }

  .hero__content {
    padding-top: calc(var(--header-height) + 1rem);
  }

  .hotel-tabs__bar {
    flex-direction: column;
    min-width: 0;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: visible;
  }

  .hotel-tabs__tab {
    flex: none;
    width: 100%;
    min-width: 0;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
  }

  .hotel-tabs__tab:last-child {
    border-bottom: none;
  }

  .hotel-tabs__grid {
    grid-template-columns: 1fr;
  }

  .destinations__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__widget {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .testimonials__nav {
    display: none;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }
	.main-nav__link {
  color:#fff;
	}
}



/* ================= GLOBAL ================= */


.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    margin-bottom: 15px;
}

/* ================= HEADER ================= */
.header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav__list {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav a {
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.nav a:hover,
.nav a.active {
    color: #0077cc;
}

/* ================= HERO ================= */
.hero {
    height: 60vh;
    background: url("images/banner.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
}

/* ================= ABOUT ================= */
.section__header {
    text-align: center;
    margin-bottom: 40px;
}

.about__content {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

/* ================= SPLIT ================= */
.split__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.split--reverse .split__grid {
    direction: rtl;
}

.split--reverse .split__content {
    direction: ltr;
}

.split__image img {
    width: 100%;
    border-radius: 10px;
}

/* ================= STATS ================= */
.stats {
    background: #f7f7f7;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat h3 {
    font-size: 36px;
    color: #0077cc;
}

/* ================= FEATURES ================= */
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ================= FOOTER ================= */
.footer {
    background: #111;
    color: #fff;
    padding: 50px 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .split__grid,
    .features__grid,
    .stats__grid,
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav__list {
        display: none;
    }

    .hero h1 {
        font-size: 32px;
    }

    .split__grid,
    .features__grid,
    .stats__grid,
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 50px 0;
    }
}


/***/

.about-details {
  background: #e9e9e9;
  padding: 80px 0;
}

.container2 {
  width: 1200px;
  max-width: 90%;
  margin: auto;
  display: flex;
  gap: 60px;
}

/* LEFT SIDE GRID */
.about-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  flex: 1;
}

.about-card {
  background: #f1f1f1;
  padding: 25px;
}

.text-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.text-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* IMAGE CARDS */
.image-card {
  padding: 0;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RIGHT SIDE */
.about-right {
  flex: 1;
}

.about-right .small-title {
  font-size: 12px;
  font-weight: 600;
  color: #0a2a66;
  letter-spacing: 1px;
}

.about-right h2 {
  font-size: 42px;
  margin: 10px 0 20px;
  color: #333;
}

.about-right p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .container2 {
    flex-direction: column;
  }

  .about-left {
    grid-template-columns: 1fr;
  }
}

.inner-banner {
  background: url("../images/AboutUs.jpg") no-repeat center center/cover;
  height: 450px;
  position: relative;
  display: flex;
  align-items: center;
}
.inner-banner-hotel {
  background: url("../images/HomeImage.jpg") no-repeat center center/cover;
  height: 450px;
  position: relative;
  display: flex;
  align-items: center;
}

.inner-banner-benefits {
  background: url("../images/ContactUsNew.jpg") no-repeat center center/cover;
  height: 450px;
  position: relative;
  display: flex;
  align-items: center;
}

/* DARK OVERLAY */
.banner-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
	    text-align: center;
    color: #fff;
}

/* CONTENT */
.inner-banner .container {
  text-align: center;
  color: #fff;
}

/* TITLE */
.inner-banner h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* BREADCRUMB */
.inner-banner p {
  font-size: 14px;
  opacity: 0.9;
}

/****/

.testimonials {
  position: relative;
  background: url("../images/AboutUsMid.jpg") no-repeat center center/cover;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* adjust darkness here */
  z-index: 1;
}

.testimonials * {
  position: relative;
  z-index: 2;
}

/* BLUE OVERLAY */
.testimonials .overlay {
  background: rgba(10, 35, 75, 0.85);
  padding: 80px 0;
}

/* HEADINGS */
.sub-title {
  text-align: center;
  color: #cfd8e3;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.main-title {
  text-align: center;
  color: #fff;
  font-size: 40px;
  margin-bottom: 50px;
}

/* CARD LAYOUT */
.testimonial-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.testimonial-card {
  background: #fff;
  width: 320px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* IMAGE */
.testimonial-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* TEXT */
.testimonial-card .content {
  padding: 20px;
}

.testimonial-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .testimonial-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  display: flex;
  gap: 25px;
  justify-content: center;
}

/* CARD */
.card {
  background: #fff;
  width: 320px;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card p {
  padding: 20px;
  font-size: 14px;
  color: #555;
}

/* DOTS */
.dots {
  text-align: center;
  margin-top: 20px;
}

.dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dots .active {
  background: #0a2a66;
}

/****/

/* ===============================
   HOME HOTELS
================================ */
.home-hotels {
  padding: 80px 20px;
  background: #f5f5f5;
  text-align: center;
}

.home-hotels .container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.sub-title {
  color: #1e3a8a;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.main-title {
  font-size: 42px;
  margin-bottom: 50px;
  color: #222;
}

/* ROW */
.hotel-row {
  display: flex;
  align-items: stretch;
  margin-bottom: 40px;
  gap: 20px;
}

/* REVERSE ROW */
.hotel-row.reverse {
  flex-direction: row-reverse;
}

/* CONTENT */
.hotel-content {
  flex: 1;
  background: #fff;
  padding: 30px;
  text-align: left;
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hotel-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.rating {
  color: #f4a100;
  font-size: 14px;
  margin-bottom: 15px;
}

.rating span {
  color: #666;
  margin-left: 10px;
}

.hotel-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid #1e3a8a;
  color: #1e3a8a;
  font-size: 13px;
  text-decoration: none;
  width: fit-content;
  transition: 0.3s;
}

.btn:hover {
  background: #1e3a8a;
  color: #fff;
}

/* IMAGE */
.hotel-image {
  flex: 1;
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ===============================
   HOTEL TOP NAV
================================ */
.hotel-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  font-size: 14px;
}

.hotel-nav a {
  text-decoration: none;
  color: #666;
  position: relative;
  padding-bottom: 5px;
  transition: 0.3s;
}

/* HOVER EFFECT */
.hotel-nav a:hover {
  color: #1e3a8a;
}

/* ACTIVE TAB */
.hotel-nav a.active {
  color: #1e3a8a;
  font-weight: 500;
}

/* UNDERLINE ANIMATION */
.hotel-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #1e3a8a;
  transition: 0.3s;
}

.hotel-nav a:hover::after,
.hotel-nav a.active::after {
  width: 100%;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .hotel-row,
  .hotel-row.reverse {
    flex-direction: column;
  }

  .main-title {
    font-size: 32px;
  }
}


/* ===============================
   MEXICO SECTION
================================ */
.mexico-section {
  padding: 80px 20px;
  background-color: rgba(var(--bs-light-rgb), 1);
  text-align: center;
}

.mexico-section .container {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.mexico-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

/* COLUMN */
.mexico-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CENTER OFFSET (optional slight lift) */
.mexico-col.center {
  transform: translateY(-20px);
}

/* CARD */
.hotel-card {
  background: #fff;
  border: 1px solid #ddd;
  text-align: left;
}

.hotel-content {
  padding: 25px;
}

.hotel-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.rating {
  color: #f4a100;
  font-size: 14px;
  margin-bottom: 12px;
}

.rating span {
  color: #666;
  margin-left: 8px;
}

.hotel-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #1e3a8a;
  color: #1e3a8a;
  font-size: 12px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #1e3a8a;
  color: #fff;
}

/* IMAGE */
.hotel-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* TITLES (reuse if already defined) */
.sub-title {
  color: #1e3a8a;
  font-size: 12px;
  letter-spacing: 2px;
}

.main-title {
  font-size: 40px;
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .mexico-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mexico-col.center {
    transform: none;
  }
}

@media (max-width: 600px) {
  .mexico-grid {
    grid-template-columns: 1fr;
  }
}


/* ===============================
   SPAIN SECTION
================================ */
.spain-section {
  padding: 80px 20px;
  background-color: rgba(var(--bs-light-rgb), 1);
  text-align: center;
}

.spain-section .container {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.spain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

/* COLUMN */
.spain-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD */
.hotel-card {
  background: #fff;
  border: 1px solid #ddd;
  text-align: left;
}

.hotel-content {
  padding: 25px;
}

.hotel-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.rating {
  color: #f4a100;
  font-size: 14px;
  margin-bottom: 12px;
}

.rating span {
  color: #666;
  margin-left: 8px;
}

.hotel-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #1e3a8a;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #1e3a8a;
  color: #fff;
}

/* IMAGE */
.hotel-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .spain-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .spain-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   BENEFITS SECTION
================================ */
.benefits {
  background-color: rgba(var(--bs-light-rgb), 1);
}

/* TOP SECTION */
.benefits-top {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 80px 20px;
}

.benefits-image {
  flex: 1;
}

.benefits-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.benefits-content {
  flex: 1;
}

.benefits-content h2 {
  font-size: 42px;
  margin: 10px 0 20px;
}

.benefits-content p {
  color: #555;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* BOTTOM SECTION */
.benefits-bottom {
  padding: 80px 20px;
  background: #f8f9fa;
  text-align: center;
}

.sub-title.center {
  text-align: center;
}

.main-title {
  font-size: 40px;
  margin: 10px 0 50px;
}

/* GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  text-align: left;
}

/* ITEM */
.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* ICON */
.icon-box {
  min-width: 80px;
  height: 80px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  width: 35px;
}

/* TEXT */
.benefit-item h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.benefit-item p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .benefits-top {
    flex-direction: column;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-content h2 {
    font-size: 32px;
  }
}


/* ===============================
   CONTACT PAGE
================================ */
.contact {
  background: rgba(var(--bs-light-rgb), 1);
}

/* HERO */
.contact-hero {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
}

.contact-hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.contact-hero p {
  color: #666;
}

/* MAIN */
.contact-main {
  display: flex;
  gap: 40px;
  padding: 60px 20px;
}

/* LEFT INFO */
.contact-info {
  flex: 1;
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.contact-info p {
  color: #555;
  margin-bottom: 20px;
}

.info-item {
  margin-bottom: 20px;
}

.info-item strong {
  display: block;
  margin-bottom: 5px;
}

/* FORM */
.contact-form {
  flex: 1;
  background: #fff;
  padding: 30px;
  border: 1px solid #ddd;
}

.contact-form h3 {
  margin-bottom: 20px;
}

/* INPUTS */
.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  font-size: 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1e3a8a;
}

/* BUTTON */
.contact-form button {
  margin-top: 10px;
  padding: 12px 20px;
  border: none;
  background: #1e3a8a;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #142a63;
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-main {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-hero h1 {
    font-size: 32px;
  }
}


/****/
.award-page {
  padding: 80px 20px;
  background: #ffffff; /* CLEAN WHITE BACKGROUND */
  color: #1e293b;
  font-family: 'Poppins', sans-serif;
}

.award-container {
  max-width: 1200px;
  margin: auto;
}

.award-header {
  text-align: center;
  margin-bottom: 60px;
}

.award-header h1 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #0f172a;
}

.award-header p {
  color: #64748b;
}

/* GRID */
.award-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* CARD */
.award-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: 0.4s ease;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.award-card i {
  font-size: 34px;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #38bdf8, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.award-card h3 {
  margin-bottom: 10px;
  color: #0f172a;
}

.award-card p {
  font-size: 14px;
  color: #64748b;
}

.award-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* STATS */
.award-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  text-align: center;
  margin: 80px 0;
  gap: 20px;
}

.stat h2 {
  font-size: 36px;
  background: linear-gradient(45deg, #38bdf8, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat p {
  color: #64748b;
}

/* CTA */
.award-cta {
  text-align: center;
  margin-top: 40px;
}

.award-cta h2 {
  color: #0f172a;
}

.award-cta p {
  color: #64748b;
}

.award-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 28px;
  background: linear-gradient(45deg, #38bdf8, #6366f1);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.award-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .award-header h1 {
    font-size: 30px;
  }

  .award-card {
    padding: 20px;
  }
}