:root {
  --site-primary: #0f5cbb;
  --site-primary-dark: #0a3e80;
  --site-accent: #13b7d6;
  --site-bg: #f4f7fb;
  --site-surface: #ffffff;
  --site-text: #1f2937;
  --site-muted: #6b7280;
  --site-border: rgba(15, 92, 187, 0.12);
  --site-radius: 22px;
  --site-radius-sm: 14px;
  --site-shadow: 0 15px 45px rgba(15, 92, 187, 0.12);
  --site-shadow-soft: 0 10px 30px rgba(2, 24, 43, 0.08);
  --site-gradient: linear-gradient(135deg, #0f5cbb 0%, #13b7d6 100%);
}

html {
  overflow-x: hidden;
}

body {
  background: linear-gradient(180deg, #f8fbff 0%, var(--site-bg) 100%);
  color: var(--site-text);
  line-height: 1.75;
}

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

a {
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

header {
  gap: 18px;
  padding: 16px 28px !important;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand .logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  padding: 4px;
}

.main-nav {
  margin-inline: auto;
}

.main-nav ul {
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  white-space: nowrap;
}

.controls {
  margin-inline-start: auto;
}

.controls a,
.btn,
button,
.card-footer a,
.view-all,
.contact-cta a,
.contact-form-card button,
.booking-form button,
.submit-button,
.empty-state a {
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
}

.controls a:hover,
.btn:hover,
.card-footer a:hover,
.view-all:hover,
.contact-cta a:hover,
.contact-form-card button:hover,
.booking-form button:hover,
.submit-button:hover,
.empty-state a:hover {
  transform: translateY(-2px);
}

.page-loader {
  backdrop-filter: blur(4px);
}

.hero-section,
.page-hero,
.page-header {
  border-radius: 0 0 30px 30px;
}

.hero-section {
  min-height: 530px;
  margin-bottom: 56px !important;
}

.hero-content,
.page-hero,
.page-header {
  padding-inline: 20px;
}

.hero-content {
  width: min(900px, calc(100% - 32px));
}

.hero-content h1,
.page-hero h1,
.page-header h1 {
  line-height: 1.2;
}

.page-hero,
.page-header {
  text-align: center;
  background: var(--site-gradient);
  color: #fff;
  padding: 70px 20px;
  margin-bottom: 36px;
  box-shadow: var(--site-shadow);
}

.page-hero p,
.page-header p,
.hero-content p {
  max-width: 760px;
  margin-inline: auto;
}

.features-section,
.about-intro,
.values-section,
.team-section,
.booking-form-section,
.map-section,
.social-section,
.content-section,
.contact-form-card,
.contact-info-card,
.flight-details,
.room-detail-container,
.filters-section,
.gallery-filter,
.contact-wrapper,
.rooms-preview,
.flights-grid,
.gallery-grid,
.contact-strip,
.contact-cta {
  position: relative;
}

.features-section,
.about-intro,
.values-section,
.team-section,
.booking-form-section,
.map-section,
.social-section,
.content-section,
.contact-form-card,
.contact-info-card,
.flight-details,
.contact-strip,
.contact-cta,
.filters-section,
.gallery-filter {
  background: var(--site-surface);
  border: 1px solid var(--site-border);
  border-radius: var(--site-radius);
  box-shadow: var(--site-shadow-soft);
}

.rooms-preview,
.values-section,
.map-section,
.social-section,
.features-section,
.about-intro,
.team-section,
.contact-wrapper,
.content-section,
.booking-form-section,
.flight-details {
  margin-bottom: 32px;
}

.about-intro,
.values-section,
.team-section,
.map-section,
.social-section,
.content-section,
.booking-form-section,
.contact-cta,
.contact-strip,
.flight-details,
.features-section {
  padding: 28px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}

.contact-info-card,
.contact-form-card {
  padding: 28px;
  height: 100%;
}

.contact-info-items,
.contact-items,
.social-links,
.action-buttons {
  display: grid;
  gap: 16px;
}

.contact-info-item,
.contact-item,
.social-link,
.value-item,
.mv-card,
.info-card,
.feature-item {
  background: #f8fbff;
  border: 1px solid rgba(15, 92, 187, 0.08);
  border-radius: 18px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 16px 18px;
  align-items: flex-start;
}

.contact-info-item .icon,
.contact-item img,
.social-link img {
  flex-shrink: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}

.contact-item img,
.social-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contact-strip {
  background: var(--site-gradient);
  color: #fff;
  margin: 34px auto;
  overflow: hidden;
}

.contact-strip h3,
.contact-cta h3 {
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 38px);
}

.contact-items {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 18px;
}

.social-section {
  text-align: center;
}

.social-links {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 18px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 18px;
  color: var(--site-text);
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--site-shadow-soft);
}

.map-container iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

.mission-vision-grid,
.values-grid,
.team-grid,
.features-grid,
.rooms-grid,
.gallery-grid,
.flights-grid,
.trip-info {
  display: grid;
  gap: 20px;
}

.mission-vision-grid,
.values-grid,
.gallery-grid,
.flights-grid,
.rooms-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.trip-info {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-block: 22px;
}

.feature-card,
.mv-card,
.value-item,
.team-member,
.info-card,
.feature-item {
  padding: 22px;
  box-shadow: var(--site-shadow-soft);
}

.team-member {
  background: #fff;
  border: 1px solid var(--site-border);
  border-radius: 18px;
}

.room-card,
.flight-card,
.gallery-item {
  background: #fff;
  border: 1px solid var(--site-border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--site-shadow-soft);
}

.room-card .image-wrapper,
.flight-card .image-wrapper,
.gallery-item .image-wrapper,
.flight-image-wrapper,
.image-gallery {
  position: relative;
  overflow: hidden;
}

.room-card .image-wrapper,
.flight-card .image-wrapper,
.gallery-item .image-wrapper {
  aspect-ratio: 4 / 3;
}

.room-card img,
.flight-card img,
.gallery-item img,
.flight-image-wrapper img,
.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.room-card .content,
.flight-card .content,
.flight-content {
  padding: 22px;
}

.room-card h3,
.flight-card h2,
.flight-title,
.room-title {
  margin-bottom: 10px;
  color: var(--site-primary-dark);
}

.room-card .description,
.flight-description,
.room-description,
.about-intro p,
.content-section p,
.content-section li,
.contact-info-card p,
.contact-form-card .desc {
  color: var(--site-muted);
}

.badge,
.image-badge,
.flight-badge {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  background: rgba(255,255,255,0.92);
  color: var(--site-primary-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.price,
.room-price,
.flight-price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--site-primary);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 30px);
  margin: 12px 0 16px;
}

.room-price-section,
.flight-price-section {
  background: #f8fbff;
  border: 1px solid rgba(15, 92, 187, 0.12);
  border-radius: 18px;
  padding: 18px 20px;
  margin: 18px 0 22px;
}

.price-label,
.flight-price-label {
  color: var(--site-muted);
  font-size: 14px;
  margin-bottom: 6px;
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.features-list span,
.feature-item {
  font-size: 14px;
}

.features-list span {
  background: #eff6ff;
  color: var(--site-primary-dark);
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 92, 187, 0.1);
}

.card-footer a,
.view-all,
.empty-state a,
.btn,
.contact-cta a,
.contact-form-card button,
.booking-form button,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 14px;
  background: var(--site-gradient);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(15, 92, 187, 0.24);
  border: 0;
  cursor: pointer;
}

.btn-back {
  background: #eef4ff;
  color: var(--site-primary-dark);
  box-shadow: none;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #15b86a 0%, #0f9a57 100%);
}

.btn-details {
  background: var(--site-gradient);
}

.buttons,
.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.view-all-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.empty-state {
  padding: 36px 24px;
  text-align: center;
  background: #fff;
  border: 1px dashed rgba(15, 92, 187, 0.2);
  border-radius: var(--site-radius);
  box-shadow: var(--site-shadow-soft);
}

.empty-state .icon {
  font-size: 50px;
  margin-bottom: 14px;
}

.filters-section,
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  padding: 22px;
}

.filter-group {
  flex: 1 1 250px;
}

.filter-group label,
.form-label,
.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--site-primary-dark);
}

.filter-group input,
.filter-group select,
.form-input,
.form-group input,
.form-group textarea,
.booking-form input,
.booking-form textarea,
.booking-form select,
.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid rgba(15, 92, 187, 0.16);
  border-radius: 14px;
  outline: none;
  font: inherit;
  color: var(--site-text);
}

.form-group textarea,
.booking-form textarea,
.contact-form-card textarea {
  min-height: 140px;
  resize: vertical;
}

.filter-group input:focus,
.filter-group select:focus,
.form-input:focus,
.form-group input:focus,
.form-group textarea:focus,
.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus,
.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: var(--site-primary);
  box-shadow: 0 0 0 4px rgba(15, 92, 187, 0.12);
}

.results-count {
  padding: 12px 16px;
  background: #eff6ff;
  color: var(--site-primary-dark);
  border-radius: 14px;
  font-weight: 700;
  min-width: max-content;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 24px 0;
  color: var(--site-muted);
}

.breadcrumb a {
  color: var(--site-primary);
  font-weight: 700;
}

.room-detail-container {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 30px;
  align-items: start;
  margin-bottom: 32px;
}

.flight-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.image-gallery,
.flight-image-wrapper {
  min-height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #eaf2ff;
}

.main-image,
.flight-image-wrapper img {
  min-height: 100%;
  aspect-ratio: 4 / 3;
}

.room-info {
  background: #fff;
  border: 1px solid var(--site-border);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--site-shadow-soft);
}

.booking-form-section form,
.booking-form {
  display: grid;
  gap: 18px;
}

.booking-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-form .full-width,
.booking-form .submit-button,
.booking-form button {
  grid-column: 1 / -1;
}

.form-group,
.booking-form .form-group {
  display: grid;
  gap: 8px;
}

.contact-form-card form {
  display: grid;
  gap: 18px;
}

.success-message,
.success-box,
.warning-box,
.info-box,
.highlight-box {
  padding: 18px 20px;
  border-radius: 18px;
  margin: 18px 0;
}

.success-message,
.success-box {
  background: #ecfdf3;
  color: #0c7a43;
  border: 1px solid rgba(12, 122, 67, 0.15);
}

.warning-box {
  background: #fff8eb;
  color: #9a6700;
  border: 1px solid rgba(154, 103, 0, 0.16);
}

.info-box {
  background: #eef7ff;
  color: #0f5cbb;
  border: 1px solid rgba(15, 92, 187, 0.14);
}

.highlight-box {
  background: linear-gradient(180deg, #f8fbff 0%, #eef7ff 100%);
  border: 1px solid rgba(15, 92, 187, 0.12);
}

.content-section h2,
.content-section h3,
.about-intro h2,
.values-section h2,
.team-section h2,
.map-section h2,
.social-section h2,
.features-section h2,
.booking-form-section h3,
.flight-features h3 {
  color: var(--site-primary-dark);
  margin-bottom: 14px;
}

.content-section ul,
.content-section ol {
  padding-inline-start: 22px;
  margin: 10px 0 0;
}

.content-section li + li {
  margin-top: 8px;
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gallery-item figcaption {
  padding: 14px 16px 18px;
  font-weight: 700;
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 92, 187, 0.4);
  color: #fff;
  opacity: 0;
  transition: opacity .25s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.zoom-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  font-size: 24px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 16, 31, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: min(92vw, 1000px);
  max-height: 82vh;
  border-radius: 18px;
  overflow: hidden;
}

.lightbox-content img {
  max-height: 82vh;
  object-fit: contain;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.lightbox-close {
  top: 20px;
  inset-inline-end: 20px;
}

.lightbox-nav.prev {
  inset-inline-start: 20px;
}

.lightbox-nav.next {
  inset-inline-end: 20px;
}

.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  max-width: 90vw;
  text-align: center;
}

.contact-cta {
  text-align: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 36px;
}

footer {
  margin-top: 34px;
  padding: 26px 20px 36px;
  text-align: center;
  color: var(--site-muted);
}

.scroll-top,
.floating-currency-btn {
  inset-inline-end: 24px !important;
}

.floating-currency-btn {
  bottom: 22px !important;
}

.scroll-top {
  bottom: 102px !important;
}

@media (max-width: 1100px) {
  .room-detail-container,
  .contact-wrapper,
  .flight-details {
    grid-template-columns: 1fr;
  }

  .room-info {
    padding: 22px;
  }
}

@media (max-width: 860px) {
  header {
    padding: 14px 18px !important;
  }

  .menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-inline-start: auto;
  }

  .controls {
    width: 100%;
    justify-content: flex-end;
    margin-top: 8px;
    margin-inline-start: 0;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    inset-inline: 0;
    width: 100%;
    background: linear-gradient(180deg, #0f5cbb 0%, #0d4d9b 100%);
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 16px 30px rgba(0,0,0,0.18);
  }

  .main-nav.active {
    max-height: 80vh;
    padding: 12px 0;
  }

  .main-nav ul {
    width: 100%;
    flex-direction: column !important;
    gap: 0 !important;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 14px 20px !important;
    border-radius: 0 !important;
  }

  .hero-section {
    min-height: 430px;
  }

  .hero-content h1,
  .page-hero h1,
  .page-header h1 {
    font-size: clamp(28px, 7vw, 40px) !important;
  }

  .hero-content p,
  .page-hero p,
  .page-header p {
    font-size: 16px !important;
  }

  .about-intro,
  .values-section,
  .team-section,
  .map-section,
  .social-section,
  .content-section,
  .booking-form-section,
  .contact-cta,
  .contact-strip,
  .features-section,
  .contact-info-card,
  .contact-form-card,
  .filters-section,
  .gallery-filter {
    padding: 22px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container,
  .contact-cta {
    width: min(100%, calc(100% - 22px));
  }

  .brand {
    max-width: calc(100% - 62px);
    font-size: 18px !important;
  }

  .brand .logo {
    width: 42px;
    height: 42px;
  }

  .hero-section {
    min-height: 380px;
  }

  .hero-content,
  .page-hero,
  .page-header {
    padding-inline: 14px;
  }

  .hero-content .cta-button,
  .view-all,
  .btn,
  .contact-cta a,
  .contact-form-card button,
  .booking-form button,
  .submit-button,
  .card-footer a,
  .empty-state a {
    width: 100%;
  }

  .buttons,
  .action-buttons {
    flex-direction: column;
  }

  .filters-section,
  .gallery-filter {
    align-items: stretch;
  }

  .results-count {
    width: 100%;
    text-align: center;
  }

  .feature-card,
  .mv-card,
  .value-item,
  .team-member,
  .info-card,
  .feature-item,
  .contact-info-item,
  .contact-item,
  .social-link,
  .about-intro,
  .values-section,
  .team-section,
  .map-section,
  .social-section,
  .content-section,
  .booking-form-section,
  .contact-cta,
  .contact-strip,
  .features-section,
  .contact-info-card,
  .contact-form-card,
  .room-info,
  .room-card .content,
  .flight-card .content,
  .flight-content {
    padding: 18px;
  }

  .gallery-grid,
  .rooms-grid,
  .flights-grid,
  .contact-items,
  .social-links,
  .mission-vision-grid,
  .values-grid,
  .features-grid,
  .trip-info {
    grid-template-columns: 1fr;
  }

  .floating-currency-btn {
    width: 58px !important;
    height: 58px !important;
    font-size: 12px !important;
    inset-inline-end: 14px !important;
    bottom: 16px !important;
  }

  .scroll-top {
    width: 44px !important;
    height: 44px !important;
    inset-inline-end: 14px !important;
    bottom: 84px !important;
  }
}
