@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #0448a7;
  --brand-gradient: linear-gradient(135deg, #0448a7 0%, #093e70 100%);
  --brand-gradient-soft: linear-gradient(135deg, rgba(4, 72, 167, 0.08) 0%, rgba(14, 165, 233, 0.05) 100%);
  --fs-lg: 1.25rem;
  --fs-md: 0.9375rem;
  --fs-sm: 0.8125rem;
  --shadow-soft: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 8px 32px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(15, 23, 42, 0.04);
  --shadow-card-hover: 0 24px 56px -16px rgba(4, 72, 167, 0.18), 0 0 0 1px rgba(4, 72, 167, 0.06);
  --golden-gradient: linear-gradient(
    135deg,
    rgb(255, 214, 135) 0%,
    /* Your Light Gold */ rgb(252, 194, 101) 50%,
    /* Your Medium Gold */ rgb(181, 122, 38) 100% /* New Deep Bronze Anchor */
  );
  --bg-color: rgb(240, 243, 245);
  --icon-color: rgb(135, 150, 161);
  --text-strong: rgba(15, 23, 42, 0.92);
  --text-muted: rgba(15, 23, 42, 0.68);
  --surface: #ffffff;
  --surface-2: rgba(15, 23, 42, 0.04);
  --border-soft: rgba(15, 23, 42, 0.08);
  --primary-soft: rgba(37, 99, 235, 0.14);
  --card-overlay-gradient: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(5, 18, 36, 0.9) 45%,
    rgba(6, 31, 64, 0.6) 100%
  );
  --text-color: rgb(252, 194, 101);
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(10px, -15px) scale(1.02); }
  50% { transform: translate(-8px, 10px) scale(0.98); }
  75% { transform: translate(15px, 5px) scale(1.01); }
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0); opacity: 0.4; }
  50% { transform: translate(-20px, -20px); opacity: 0.6; }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  font-family: "Poppins", sans-serif;
}

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  overflow-x: hidden;
  max-width: 100vw;
}

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

svg {
  max-width: 100%;
}

/* Common section styles – use in every section */
.section {
  padding: 3rem 0;
  overflow-x: hidden;
}


.section-header {
  text-align: center;
  width: 100%;
  margin-bottom: 2rem;
}

.section-title {
  position: relative;
  display: inline-block;
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text-strong);
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -0.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, #0448a7, #0ea5e9);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(4, 72, 167, 0.3);
}

.section-description {
  font-size: var(--fs-md);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Buttons */

.btn {
    font-size: var(--fs-sm);
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 20px;
}

.btn-primary {
    background: var(--brand-gradient);
    border: none;
}

.btn-primary-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: #ffffff;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.btn-golden {
  background-image: var(--golden-gradient);
  border: none;
  color: #3b2a10;
  font-weight: 600;
  padding-inline: 28px;
  box-shadow: 0 14px 30px rgba(181, 122, 38, 0.35);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-golden:hover,
.btn-golden:focus {
  color: #2b1f0b;
  box-shadow: 0 18px 40px rgba(181, 122, 38, 0.55);
  transform: translateY(-2px);
}

.btn-primary {
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(4, 72, 167, 0.4);
}

/* Header */

header {
  position: relative;
  z-index: 1030;
}

/* Mobile & Tablet header */
.header-mobile {
  background: #fff;
}

.header-mobile .header-top {
  padding: 10px 0;
  font-size: 0.8125rem;
}

.header-nav-mobile {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.header-nav-mobile .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.header-mobile-logo {
  display: flex;
  align-items: center;
}

.header-mobile-logo .navbar-logo {
  max-height: 40px;
  width: auto;
}

.header-mobile-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-mobile-actions .favorites-trigger {
  padding: 8px 12px;
  font-size: 0.9rem;
}

.header-mobile-actions .favorites-trigger .badge {
  font-size: 0.6rem;
}

.header-mobile-toggler {
  padding: 0.4rem 0.5rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
}

.header-mobile-toggler:focus {
  box-shadow: none;
}

.header-mobile-menu {
  background: #fff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.header-mobile-menu-inner {
  padding: 1rem 0 1.5rem;
}

.header-mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.header-mobile-nav li {
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.header-mobile-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 12px 1rem;
  color: var(--text-strong);
  text-decoration: none;
  font-size: var(--fs-md);
  font-weight: 500;
  transition: background 0.2s;
}

.header-mobile-nav a:hover {
  background: rgba(4, 72, 167, 0.06);
  color: var(--primary-color);
}

.header-mobile-nav .nav-link-icon {
  width: 32px;
  height: 32px;
  font-size: 0.9rem;
}

.header-mobile-phone {
  padding: 1rem 1rem;
  margin-bottom: 1rem;
}

.header-mobile-phone a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: var(--fs-md);
  text-decoration: none;
}

.header-mobile-phone a i {
  font-size: 1.1rem;
}

.header-mobile-menu-inner .btn {
  margin: 0 1rem;
  max-width: calc(100% - 2rem);
}

/* Offcanvas mobile nav */
.offcanvas-mobile-nav {
  background: #ffffff;
  border-left: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: -12px 0 30px rgba(15, 23, 42, 0.25);
}

.offcanvas-mobile-nav .offcanvas-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: linear-gradient(135deg, rgba(4, 72, 167, 0.08) 0%, rgba(14, 165, 233, 0.04) 100%);
}

.offcanvas-mobile-nav .offcanvas-title {
  font-size: var(--fs-md);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-strong);
}

.offcanvas-mobile-nav .offcanvas-body {
  padding: 1.25rem 0 1.75rem;
}

.offcanvas-mobile-nav .header-mobile-menu-inner {
  padding: 0;
}

.offcanvas-mobile-nav .header-mobile-nav a {
  padding-inline: 1.5rem;
}

.offcanvas-mobile-nav .header-mobile-phone {
  padding-inline: 1.5rem;
}

.offcanvas-mobile-nav .header-mobile-menu-inner .btn {
  margin-inline: 1.5rem;
  max-width: calc(100% - 3rem);
}

@media (max-width: 575px) {
  .offcanvas-mobile-nav {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .offcanvas-mobile-nav {
    width: 340px;
    max-width: 82vw;
    border-radius: 18px 0 0 18px;
    overflow: hidden;
  }
}

.navbar {
  padding: 16px 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.navbar .container-fluid {
  flex-wrap: wrap;
}

.navbar-toggler {
  padding: 0.35rem 0.5rem;
  font-size: 0.9rem;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(15,23,42,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand img,
.navbar-logo {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.header-top {
  background: var(--brand-gradient);
  color: white;
  text-align: center;
  font-size: var(--fs-md);
  font-weight: 600;
  padding: 12px 0px;
  position: relative;
}

.header-top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.header-top span {
  display: block;
  padding: 0 0.5rem;
}

.promo-slide-up {
  animation: promoSlideUp 0.4s ease-out;
}

@keyframes promoSlideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-strong);
  padding: 8px 12px !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 10px;
  background-color: rgba(4, 72, 167, 0.03);
  box-shadow: 0 4px 8px rgba(15, 23, 42, 0.03);
  transition: color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.nav-link-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 72, 167, 0.06);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: all 0.25s ease;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--primary-color);
  background-color: rgba(4, 72, 167, 0.08);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.09);
}

.nav-link:hover .nav-link-icon,
.nav-link:focus .nav-link-icon,
.nav-link.active .nav-link-icon {
  background: var(--brand-gradient);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(4, 72, 167, 0.35);
}

.header-phone {
  gap: 10px;
}

.header-phone-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.075);
}

.header-phone-icon i {
  color: var(--primary-color);
  font-size: 18px;
}

.header-phone-text {
  line-height: 1;
}

.header-phone-label {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  font-weight: 500;
}

.header-phone-number {
  font-size: var(--fs-md);
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
  margin-top: 5px;
}

/* Favorites dropdown */
.favorites-dropdown-wrap {
  position: relative;
}

.favorites-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 360px;
  max-width: calc(100vw - 2rem);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2), 0 0 0 1px rgba(15, 23, 42, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1100;
  overflow: hidden;
}

.favorites-dropdown-wrap.is-open .favorites-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.favorites-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(4, 72, 167, 0.06) 0%, rgba(14, 165, 233, 0.04) 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.favorites-dropdown-title {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--text-strong);
  margin: 0;
}

.favorites-dropdown-count {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  font-weight: 500;
}

.favorites-dropdown-list {
  max-height: 320px;
  overflow-y: auto;
  padding: 0.5rem 0;
}

.favorites-dropdown-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}

.favorites-dropdown-item:hover {
  background: rgba(4, 72, 167, 0.04);
}

.favorites-item-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.favorites-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.favorites-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.favorites-item-title {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-strong);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.favorites-item-price {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--primary-color);
}

.favorites-item-remove {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.favorites-item-remove:hover {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

.favorites-dropdown-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.favorites-dropdown-footer .btn {
  padding: 0.6rem 1rem;
}

/* Desktop dropdown - large screens */
@media (min-width: 1200px) {
  .header-desktop .favorites-dropdown {
    width: 380px;
    max-width: calc(100vw - 2rem);
  }
}

/* Desktop dropdown - medium screens (lg) */
@media (min-width: 992px) and (max-width: 1199px) {
  .header-desktop .favorites-dropdown {
    width: 340px;
    max-width: calc(100vw - 2rem);
  }
}

/* Desktop hidden on tablet/mobile - fallback */
@media (max-width: 991px) {
  .header-desktop .favorites-dropdown {
    right: auto;
    left: 50%;
    transform: translate(-50%, -10px);
    width: min(360px, calc(100vw - 2rem));
  }
  .header-desktop .favorites-dropdown-wrap.is-open .favorites-dropdown {
    transform: translate(-50%, 0);
  }
}

/* Mobile/tablet dropdown - right aligned */
.favorites-dropdown-wrap-mobile .favorites-dropdown {
  right: 0;
  left: auto;
  width: min(360px, calc(100vw - 2rem));
}

.favorites-dropdown-wrap-mobile.is-open .favorites-dropdown {
  transform: translateY(0);
}

/* Tablet dropdown */
@media (min-width: 576px) and (max-width: 991px) {
  .favorites-dropdown-wrap-mobile .favorites-dropdown {
    width: min(360px, calc(100vw - 2rem));
  }
}

/* Mobile dropdown - small screens */
@media (max-width: 575px) {
  .header-mobile-logo .navbar-logo {
    max-height: 36px;
  }
  .header-mobile-actions .favorites-trigger {
    padding: 6px 10px;
    font-size: 0.85rem;
  }
  .favorites-dropdown-wrap-mobile .favorites-dropdown {
    position: fixed;
    left: 50%;
    right: auto;
    top: 60px;
    width: 100vw;
    max-width: 100vw;
    transform: translate(-50%, -10px);
    border-radius: 0 0 16px 16px;
  }
  .favorites-dropdown-wrap-mobile.is-open .favorites-dropdown {
    transform: translate(-50%, 0);
  }
  .favorites-dropdown-header,
  .favorites-dropdown-footer {
    padding: 0.75rem 1rem;
  }
  .favorites-dropdown-item {
    padding: 0.6rem 1rem;
    gap: 0.75rem;
  }
  .favorites-item-thumb {
    width: 48px;
    height: 48px;
  }
  .favorites-dropdown-list {
    max-height: min(320px, 50vh);
  }
}

/* Extra small screens */
@media (max-width: 375px) {
  .favorites-dropdown-wrap-mobile .favorites-dropdown {
    top: 64px;
  }
  .favorites-dropdown-header,
  .favorites-dropdown-footer {
    padding: 0.6rem 0.75rem;
  }
  .favorites-dropdown-title {
    font-size: var(--fs-sm);
  }
  .favorites-dropdown-item {
    padding: 0.5rem 0.75rem;
    gap: 0.5rem;
  }
  .favorites-item-thumb {
    width: 44px;
    height: 44px;
  }
  .favorites-item-title {
    font-size: 0.75rem;
  }
  .favorites-item-price {
    font-size: 0.75rem;
  }
}

/* Header responsive */
@media (max-width: 1199px) {
  .navbar .navbar-nav {
    gap: 0.4rem;
  }
  .nav-link {
    padding: 6px 10px !important;
  }
  .navbar .btn {
    padding: 8px 14px;
    font-size: 0.75rem;
  }
  .navbar .btn .me-2 {
    margin-right: 0.4rem !important;
  }
}

/* Desktop header – shrink nav items on medium-wide screens (992px–1259px) */
@media (min-width: 992px) and (max-width: 1259px) {
  .header-desktop .navbar-nav {
    gap: 0.15rem;
  }
  .header-desktop .nav-link {
    font-size: 0.68rem;
    padding: 4px 6px !important;
  }
  .header-desktop .nav-link-icon {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }
  .header-desktop .navbar .btn {
    padding: 5px 8px;
    font-size: 0.68rem;
  }
  .header-desktop .header-phone-label {
    display: none;
  }
  .header-desktop .header-phone-number {
    font-size: 0.78rem;
  }
}

@media (max-width: 991px) {
  .navbar {
    padding: 12px 0;
  }
  .navbar .navbar-collapse {
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    margin-top: 0.5rem;
  }
  .navbar .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-bottom: 1rem;
  }
  .navbar .nav-item {
    width: 100%;
  }
  .navbar .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 14px !important;
  }
  .navbar .d-flex.gap-3 {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    width: 100%;
  }
  .nav-link-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
    flex-shrink: 0;
  }
  .header-phone {
    flex: 1;
    min-width: 180px;
  }
  .header-phone-text {
    display: flex !important;
  }
}

@media (max-width: 767px) {
  .header-top {
    padding: 10px 0;
    font-size: 0.8125rem;
  }
  .header-top span {
    padding: 0 0.75rem;
  }
  .navbar {
    padding: 10px 0;
  }
  .navbar-brand img,
  .navbar-logo {
    max-height: 40px;
  }
  .navbar .btn span:not(.visually-hidden) {
    font-size: 0.65rem;
  }
  .navbar .btn .me-2 {
    margin-right: 0.35rem !important;
  }
  .navbar .btn i {
    font-size: 0.9rem;
  }
  .header-phone-label {
    display: none;
  }
  .header-phone-number {
    font-size: 0.8125rem;
  }
  .header-phone-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .navbar .d-flex.gap-3 {
    flex-direction: column;
    align-items: stretch;
  }
  .header-phone {
    min-width: 100%;
    justify-content: center;
  }
  .header-phone-text {
    align-items: center !important;
  }
  .navbar .btn {
    width: 100%;
    justify-content: center;
  }
  .navbar .btn-primary.position-relative {
    order: -1;
  }
}

@media (max-width: 480px) {
  .header-top {
    font-size: 0.75rem;
    padding: 8px 0;
  }
  .navbar-brand img,
  .navbar-logo {
    max-height: 36px;
  }
  .nav-link {
    font-size: 0.75rem;
    padding: 8px 12px !important;
  }
  .nav-link-icon {
    width: 26px;
    height: 26px;
    font-size: 0.75rem;
  }
  .navbar .btn {
    padding: 8px 12px;
    font-size: 0.7rem;
  }
  .navbar .btn .me-2 {
    margin-right: 0 !important;
  }
  .navbar .btn-primary .btn-text {
    display: none;
  }
}

@media (max-width: 320px) {
  .header-top span {
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }
  .navbar-brand img,
  .navbar-logo {
    max-height: 32px;
  }
  .nav-link {
    padding: 6px 10px !important;
  }
}


/* Hero Section */

.hero-section {
  position: relative;
  color: #ffffff;
  padding: 0;
  overflow: hidden;
}

.hero-section .carousel {
  position: relative;
  z-index: 1;
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
  display: none;
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.25;
  animation: float 18s ease-in-out infinite;
  pointer-events: none;
}

.hero-orb-1 {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, rgba(4, 72, 167, 0.5) 0%, rgba(14, 165, 233, 0.35) 100%);
  top: 5%;
  left: 3%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, rgba(252, 194, 101, 0.35) 0%, rgba(181, 122, 38, 0.25) 100%);
  bottom: 15%;
  right: 5%;
  animation-delay: -6s;
}

.hero-orb-3 {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  top: 40%;
  right: 25%;
  animation-delay: -12s;
}

@media (max-width: 767px) {
  .hero-section .carousel-caption {
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%) !important;
    width: 100%;
    max-width: 100%;
    padding: 0 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero-section .carousel-caption .hero-title,
  .hero-section .carousel-caption .hero-subtitle {
    text-align: center;
  }
  .hero-orb { filter: blur(50px); width: 120px; height: 120px; }
  .hero-orb-1 { width: 140px; height: 140px; }
  .hero-orb-2 { width: 100px; height: 100px; }
  .hero-orb-3 { width: 80px; height: 80px; }
}

.hero-section .carousel-item {
  position: relative;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
  min-height: 280px;
}

.hero-section .carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.hero-section .carousel-item img,
.tour-card-thumb img,
.hotel-card-thumb img {
  max-width: none;
}

.hero-section .carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: auto !important;
  right: auto !important;
  width: 100%;
  max-width: 540px;
  padding: 0 1.5rem;
  text-align: center;
  z-index: 3;
}

.hero-section .carousel-caption .hero-title,
.hero-section .carousel-caption .hero-subtitle,
.hero-section .carousel-caption .hero-cta-group {
  margin-left: auto;
  margin-right: auto;
}

.hero-section .hero-cta-group {
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.hero-title {
  font-size: var(--fs-lg);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: var(--fs-md);
  font-weight: 400;
  opacity: 0.92;
  margin-bottom: 20px;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

/* ===== About Section – Modern UX/UI ===== */
.section-about {
  position: relative;
  padding: 3rem 0;
  overflow: hidden;
}

.decor-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.75;
  animation: float 20s ease-in-out infinite;
}

.about-bg-pattern {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}

.about-bg-pattern .decor-orb-1 {
  width: 380px;
  height: 380px;
  background: linear-gradient(135deg, rgba(4, 72, 167, 0.28) 0%, rgba(14, 165, 233, 0.2) 100%);
  top: -15%;
  right: -8%;
  animation-delay: 0s;
}

.about-bg-pattern .decor-orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(252, 194, 101, 0.25) 0%, rgba(181, 122, 38, 0.18) 100%);
  bottom: -10%;
  left: -8%;
  animation-delay: -7s;
}

.about-bg-pattern .decor-orb-3 {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, rgba(4, 72, 167, 0.2) 0%, rgba(14, 165, 233, 0.12) 100%);
  top: 40%;
  left: -5%;
  animation-delay: -14s;
}

.about-bg-pattern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(4, 72, 167, 0.08), transparent);
}

.section-about-header {
  margin-bottom: 2rem !important;
}

.section-badge {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-color);
  padding: 0.4rem 1rem;
  background: rgba(4, 72, 167, 0.08);
  border: 1px solid rgba(4, 72, 167, 0.15);
  border-radius: 100px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.section-badge:hover {
  background: rgba(4, 72, 167, 0.12);
  border-color: rgba(4, 72, 167, 0.25);
}

.section-about .section-title {
  font-size: var(--fs-lg);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-about .section-title::after {
  width: 56px;
  height: 4px;
  bottom: -0.5rem;
}

.section-about .section-description {
  font-size: var(--fs-md);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 auto;
}

/* Content card – glassmorphism */
.about-content-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.about-content-card:hover {
  box-shadow: var(--shadow-card-hover);
}

/* About content row – equal height */
.about-content-row {
  align-items: stretch;
}

.about-content-row .col-lg-6 {
  display: flex;
  flex-direction: column;
}

.about-content-row .col-lg-6 > * {
  flex: 1;
  min-height: 0;
}

/* Image grid – bento style */
.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
  min-height: 0;
}

.about-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-grid-item:hover {
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.about-grid-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4, 72, 167, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.about-grid-item:hover::before {
  opacity: 1;
}

.about-grid-img {
  width: 100%;
  height: 100%;
  min-height: 100px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.about-grid-item:hover .about-grid-img {
  transform: scale(1.06);
  filter: brightness(1.02);
}

/* Visa Support – modern premium card */
.visa-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(15, 23, 42, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 0;
}

.visa-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0448a7, #0ea5e9);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.visa-card:hover {
  box-shadow: 0 24px 48px -16px rgba(4, 72, 167, 0.2), 0 0 0 1px rgba(4, 72, 167, 0.08);
  transform: translateY(-4px);
}

.visa-card:hover::before {
  opacity: 1;
}

.visa-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.visa-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0448a7 0%, #0c63c4 100%);
  color: #fff;
  border-radius: 14px;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(4, 72, 167, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visa-card:hover .visa-card-icon {
  transform: scale(1.06);
  box-shadow: 0 10px 28px rgba(4, 72, 167, 0.45);
}

.visa-card-heading {
  flex: 1;
  min-width: 0;
}

.visa-card-tag {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary-color);
  margin-bottom: 0.15rem;
  text-transform: uppercase;
}

.visa-card-title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text-strong);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.visa-card-body {
  padding: 1.5rem 1.5rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.visa-card-text {
  font-size: var(--fs-md);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 1.25rem 0;
}

.visa-card-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.visa-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  background: #f8fafc;
  border-radius: 12px;
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--text-strong);
  cursor: default;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.visa-feature:hover {
  background: linear-gradient(135deg, rgba(4, 72, 167, 0.06) 0%, rgba(14, 165, 233, 0.04) 100%);
  border-color: rgba(4, 72, 167, 0.12);
  transform: translateX(4px);
  box-shadow: 0 2px 12px rgba(4, 72, 167, 0.08);
}

.visa-feature-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.visa-feature:hover .visa-feature-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #0448a7, #0ea5e9);
  box-shadow: 0 0 0 4px rgba(4, 72, 167, 0.2);
}

.visa-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-md);
  font-weight: 600;
  padding: 0.7rem 1.25rem;
  background: var(--brand-gradient);
  color: #fff !important;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 4px 16px rgba(4, 72, 167, 0.35);
}

.visa-card-btn:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(4, 72, 167, 0.45);
}

.visa-card-btn i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.visa-card-btn:hover i {
  transform: translateX(4px);
}

/* ===== Son Turlar Section ===== */
.section-tours {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.tours-bg-pattern {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}

.tours-bg-pattern .decor-orb-1 {
  width: 360px;
  height: 360px;
  background: linear-gradient(135deg, rgba(4, 72, 167, 0.25) 0%, rgba(14, 165, 233, 0.18) 100%);
  top: -12%;
  left: -10%;
  animation-delay: -3s;
}

.tours-bg-pattern .decor-orb-2 {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, rgba(252, 194, 101, 0.22) 0%, rgba(181, 122, 38, 0.15) 100%);
  bottom: -12%;
  right: -8%;
  animation-delay: -10s;
}

.tours-bg-pattern .decor-orb-3 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(4, 72, 167, 0.2) 0%, rgba(14, 165, 233, 0.12) 100%);
  top: 50%;
  right: -5%;
  animation-delay: -17s;
}

.tours-bg-pattern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(4, 72, 167, 0.08), transparent);
}

.section-tours-header {
  margin-bottom: 2rem !important;
}

.section-tours .section-title {
  font-size: var(--fs-lg);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-tours .section-title::after {
  width: 56px;
  height: 4px;
  bottom: -0.5rem;
}

.section-tours .section-description {
  font-size: var(--fs-md);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 auto;
}

.tours-content-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 1.5rem 1.5rem 2rem;
  box-shadow: var(--shadow-card);
  transition: all 0.4s ease;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.tours-content-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.tours-slider-wrapper {
  position: relative;
  padding: 0 0 2rem;
  overflow: hidden;
}

/* Swiper customization */
.tours-swiper {
  overflow: hidden;
}

.tours-swiper .swiper-slide {
  height: auto;
}

.tours-swiper .swiper-wrapper {
  align-items: stretch;
}

.tours-swiper .swiper-slide > * {
  height: 100%;
  min-width: 0;
}

.tours-swiper .swiper-slide {
  min-width: 0;
}

.tours-swiper-pagination {
  position: relative !important;
  margin-top: 1.25rem;
}

.tours-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(4, 72, 167, 0.25);
  opacity: 1;
  transition: all 0.3s ease;
}

.tours-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary-color);
  width: 28px;
  border-radius: 5px;
}

/* Tour Card */
.tour-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.tour-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: rgba(4, 72, 167, 0.08);
}

.tour-card-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  aspect-ratio: 16/10;
}

.tour-card-sale-tag {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.55rem;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
  line-height: 1.2;
}

.tour-favorite-btn {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  color: #dc2626;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.tour-favorite-btn:hover {
  background: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tour-favorite-btn i {
  transition: transform 0.2s ease;
}

.tour-favorite-btn:active i {
  transform: scale(1.2);
}

.tour-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tour-card:hover .tour-card-thumb img {
  transform: scale(1.05);
}

.tour-card-body {
  padding: 0.9rem 1rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.tour-card-title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text-strong);
  margin: 0 0 0.35rem 0;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.tour-card-subtitle {
  font-size: var(--fs-md);
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0 0 0.75rem 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  flex-wrap: wrap;
}

.tour-card-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tour-card-price-old {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
}

.tour-card-price-current {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--primary-color);
}

.tour-card-price-text {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--primary-color);
}

.tour-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  background: var(--brand-gradient);
  color: #fff !important;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(4, 72, 167, 0.25);
}

.tour-card-btn:hover {
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(4, 72, 167, 0.35);
}

.tour-card-btn i {
  font-size: 0.6rem;
  transition: transform 0.3s ease;
}

.tour-card-btn:hover i {
  transform: translateX(2px);
}

/* ===== Otellər Section ===== */
.section-hotels {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.hotels-bg-pattern {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}

.hotels-bg-pattern .decor-orb-1 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, rgba(4, 72, 167, 0.26) 0%, rgba(14, 165, 233, 0.18) 100%);
  bottom: -15%;
  left: -10%;
  animation-delay: -5s;
}

.hotels-bg-pattern .decor-orb-2 {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, rgba(252, 194, 101, 0.22) 0%, rgba(181, 122, 38, 0.16) 100%);
  top: -10%;
  right: -10%;
  animation-delay: -12s;
}

.hotels-bg-pattern .decor-orb-3 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(4, 72, 167, 0.22) 0%, rgba(14, 165, 233, 0.14) 100%);
  top: 55%;
  left: -5%;
  animation-delay: -19s;
}

.hotels-bg-pattern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(4, 72, 167, 0.08), transparent);
}

.section-hotels-header {
  margin-bottom: 2rem !important;
}

.section-hotels .section-title {
  font-size: var(--fs-lg);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-hotels .section-title::after {
  width: 56px;
  height: 4px;
  bottom: -0.5rem;
}

.section-hotels .section-description {
  font-size: var(--fs-md);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 auto;
}

.hotels-content-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 1.5rem 1.5rem 2rem;
  box-shadow: var(--shadow-card);
  transition: all 0.4s ease;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hotels-content-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.hotels-slider-wrapper {
  position: relative;
  padding: 0 0 2rem;
  overflow: hidden;
}

.hotels-swiper {
  overflow: hidden;
}

.hotels-swiper .swiper-slide {
  height: auto;
}

.hotels-swiper .swiper-wrapper {
  align-items: stretch;
}

.hotels-swiper .swiper-slide > * {
  height: 100%;
  min-width: 0;
}

.hotels-swiper .swiper-slide {
  min-width: 0;
}

.hotels-swiper-pagination {
  position: relative !important;
  margin-top: 1.25rem;
}

.hotels-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(4, 72, 167, 0.25);
  opacity: 1;
  transition: all 0.3s ease;
}

.hotels-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary-color);
  width: 28px;
  border-radius: 5px;
}

/* Hotel Card */
.hotel-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.hotel-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: rgba(4, 72, 167, 0.08);
}

.hotel-card-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  aspect-ratio: 16/10;
}

.hotel-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hotel-card:hover .hotel-card-thumb img {
  transform: scale(1.05);
}

.hotel-card-body {
  padding: 0.9rem 1rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hotel-card-stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0.4rem;
}

.hotel-card-stars i {
  font-size: 0.7rem;
  color: #f59e0b;
}

.hotel-card-title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text-strong);
  margin: 0 0 0.35rem 0;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.hotel-card-subtitle {
  font-size: var(--fs-md);
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0 0 0.6rem 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hotel-card-prestige {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.hotel-prestige-badge {
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  background: var(--primary-soft);
  color: var(--primary-color);
  border-radius: 6px;
}

.hotel-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  background: var(--brand-gradient);
  color: #fff !important;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(4, 72, 167, 0.25);
}

.hotel-card-btn:hover {
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(4, 72, 167, 0.35);
}

.hotel-card-btn i {
  font-size: 0.6rem;
  transition: transform 0.3s ease;
}

.hotel-card-btn:hover i {
  transform: translateX(2px);
}

/* ===== Hədiyyə Kartları Section ===== */
.section-giftcards {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.giftcards-bg-pattern {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}

.section-giftcards .container-fluid {
  position: relative;
  z-index: 1;
}

.giftcards-bg-pattern .decor-orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(4, 72, 167, 0.28) 0%, rgba(14, 165, 233, 0.2) 100%);
  top: 50%;
  left: 50%;
  margin-left: -200px;
  margin-top: -200px;
  animation: pulse-soft 8s ease-in-out infinite;
}

.giftcards-bg-pattern .decor-orb-2 {
  width: 260px;
  height: 260px;
  background: linear-gradient(135deg, rgba(252, 194, 101, 0.25) 0%, rgba(181, 122, 38, 0.18) 100%);
  top: 5%;
  right: -5%;
  animation-delay: -4s;
}

.giftcards-bg-pattern .decor-orb-3 {
  width: 240px;
  height: 240px;
  background: linear-gradient(135deg, rgba(4, 72, 167, 0.22) 0%, rgba(14, 165, 233, 0.15) 100%);
  bottom: 5%;
  left: -8%;
  animation-delay: -8s;
}

.giftcards-bg-pattern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(4, 72, 167, 0.08), transparent);
}

.giftcards-row {
  align-items: center;
}

.giftcards-content {
  text-align: left;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.giftcards-content .section-badge {
  margin-bottom: 0.75rem;
}

.giftcards-content .section-title {
  text-align: left;
}

.giftcards-content .section-title::after {
  left: 0;
  transform: none;
}

.giftcards-text {
  font-size: var(--fs-md);
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 1.5rem 0;
}

.giftcards-cta {
  font-size: var(--fs-md);
  padding: 0.65rem 1.25rem;
}

/* Gift cards stack */
.giftcards-stack {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  overflow: visible;
  perspective: 1400px;
}

.giftcard {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1.85 / 1;
  background: radial-gradient(circle at 0% 0%, rgba(255,255,255,0.18) 0%, transparent 45%), var(--brand-gradient);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(4, 72, 167, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.16);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.giftcard-500 {
  transform: translateY(8px) rotate(-5deg);
  z-index: 1;
}

.giftcard-1000 {
  transform: translateY(-8px) rotate(4deg);
  z-index: 2;
}

.giftcard:hover {
  transform: translateY(0) rotate(0deg) scale(1.035);
  z-index: 5;
  box-shadow: 0 26px 70px rgba(4, 72, 167, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.giftcard-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='1' fill='%23ffffff' opacity='0.12'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='0.6' fill='%23ffffff' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 20px 20px, 40px 40px;
  opacity: 1;
}

.giftcard-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.giftcard-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 1;
  pointer-events: none;
}

.giftcard-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.giftcard-logo-img {
  max-width: 130px;
  height: auto;
  max-height: 65px;
  object-fit: contain;
  filter: brightness(1.15) contrast(1.05);
}

.giftcard-value {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--fs-md);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.giftcard-gold-curve {
  position: absolute;
  bottom: -18%;
  right: -18%;
  width: 52%;
  height: 62%;
  background: var(--golden-gradient);
  opacity: 0.25;
  border-radius: 50% 0 0 50%;
  transform: rotate(-20deg);
}

/* ===== Əlaqə Section ===== */
.section-contact {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

/* ===== Tur Single Page ===== */
.section-tour-single {
  position: relative;
  padding: 3rem 0 3rem;
  overflow: hidden;
}

.tour-single-bg-pattern {
  position: absolute;
  inset: 0;
  background: #f3f4f6;
  pointer-events: none;
  z-index: 0;
}

.section-tour-single .container-fluid {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.tour-single-bg-pattern .decor-orb-1 {
  width: 360px;
  height: 360px;
  background: linear-gradient(135deg, rgba(4, 72, 167, 0.22) 0%, rgba(14, 165, 233, 0.16) 100%);
  top: -15%;
  right: -10%;
}

.tour-single-bg-pattern .decor-orb-2 {
  width: 260px;
  height: 260px;
  background: linear-gradient(135deg, rgba(252, 194, 101, 0.22) 0%, rgba(181, 122, 38, 0.16) 100%);
  bottom: -10%;
  left: -10%;
}

.tour-single-breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.tour-single-breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.tour-single-breadcrumb span {
  opacity: 0.8;
}

.tour-single-header {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
  max-width: 680px;
}

.tour-single-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(4, 72, 167, 0.06);
  color: var(--primary-color);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.hotel-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.hotel-stars .fa-star {
  color: #d4a012;
  font-size: 0.95rem;
}

.hotel-stars-label {
  margin-left: 0.35rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-strong);
}

.tour-single-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  margin-bottom: 0.75rem;
}

.tour-single-subtitle {
  font-size: var(--fs-md);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.hotel-contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.hotel-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.9rem 0.5rem 0.5rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

a.hotel-contact-item:hover {
  background: rgba(4, 72, 167, 0.06);
  border-color: rgba(4, 72, 167, 0.12);
  box-shadow: 0 4px 12px rgba(4, 72, 167, 0.08);
  color: inherit;
}

.hotel-contact-item-location {
  cursor: default;
}

.hotel-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary-soft);
  color: var(--primary-color);
  border-radius: 10px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

a.hotel-contact-item:hover .hotel-contact-icon {
  background: var(--primary-color);
  color: #fff;
}

.hotel-contact-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  min-width: 0;
}

.hotel-contact-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  line-height: 1.2;
}

.hotel-contact-value {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-strong);
  line-height: 1.35;
  word-break: break-word;
}

a.hotel-contact-item .hotel-contact-value {
  color: var(--primary-color);
}

a.hotel-contact-item:hover .hotel-contact-value {
  color: var(--primary-color);
}

.tour-single-row {
  position: relative;
  z-index: 1;
}

.tour-gallery-wrapper {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

.tour-gallery-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 0.75rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.tour-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

@media (max-width: 991px) {
  .tour-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .tour-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.tour-gallery-item {
  border: none;
  padding: 0;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  position: relative;
  isolation: isolate;
  /* Hamı eyni formatda görünsün deyə sabit kvadrat nisbət */
  aspect-ratio: 1 / 1;
}

.tour-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.25));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.tour-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.25s ease;
}

.tour-gallery-item:hover img {
  transform: scale(1.04);
}

.tour-gallery-item:hover::after {
  opacity: 1;
}

.tour-lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 1400;
}

.tour-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.tour-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
}

.tour-lightbox-content {
  position: relative;
  z-index: 1;
  max-width: min(1000px, 96vw);
  max-height: 90vh;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  background: #000;
}

.tour-lightbox-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.tour-lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.75);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.tour-lightbox-close:hover {
  background: rgba(4, 72, 167, 0.95);
  transform: scale(1.05);
}

.tour-description-row {
  position: relative;
  z-index: 1;
}

.tour-description-card,
.tour-info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.25rem 1.25rem 1.35rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.tour-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 0.75rem;
}

.tour-section-subtitle {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--text-strong);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.tour-description-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.tour-feature-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-strong);
}

.tour-feature-list-muted {
  color: var(--text-muted);
}

.tour-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.8rem;
}

.tour-info-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.tour-info-list .label {
  color: var(--text-muted);
}

.tour-info-list .value {
  font-weight: 600;
  color: var(--text-strong);
  text-align: right;
}

@media (max-width: 991px) {
  .section-tour-single {
    padding: 2.75rem 0 3rem;
  }
  .tour-single-header {
    margin-bottom: 1.5rem;
  }
  .tour-gallery-card {
    padding: 0.75rem;
  }
  .tour-gallery-thumbs .swiper-slide {
    height: 60px;
  }
  .tour-price-card {
    margin-top: 0.5rem;
  }
  .tour-description-card,
  .tour-info-card {
    padding: 1.25rem 1.25rem 1.35rem;
  }
}

@media (max-width: 575px) {
  .tour-single-breadcrumb {
    font-size: 0.7rem;
  }
  .tour-single-title {
    font-size: 1.05rem;
  }
  .tour-description-card p {
    font-size: 0.8rem;
  }
  .tour-feature-list,
  .tour-info-list {
    font-size: 0.78rem;
  }
  .tour-info-list li {
    flex-direction: column;
    align-items: flex-start;
  }
  .tour-info-list .value {
    text-align: left;
  }
}

.contact-bg-pattern {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}

.contact-bg-pattern .decor-orb-1 {
  width: 360px;
  height: 360px;
  background: linear-gradient(135deg, rgba(4, 72, 167, 0.26) 0%, rgba(14, 165, 233, 0.18) 100%);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.contact-bg-pattern .decor-orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(252, 194, 101, 0.24) 0%, rgba(181, 122, 38, 0.16) 100%);
  bottom: -10%;
  right: -10%;
  animation-delay: -9s;
}

.contact-bg-pattern .decor-orb-3 {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, rgba(4, 72, 167, 0.2) 0%, rgba(14, 165, 233, 0.14) 100%);
  top: 45%;
  right: -5%;
  animation-delay: -18s;
}

.contact-bg-pattern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(4, 72, 167, 0.08), transparent);
}

.section-contact-header {
  margin-bottom: 2rem !important;
}

.section-contact .section-title {
  font-size: var(--fs-lg);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-contact .section-title::after {
  width: 56px;
  height: 4px;
  bottom: -0.5rem;
}

.section-contact .section-description {
  font-size: var(--fs-md);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 auto;
}

.contact-content-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: all 0.4s ease;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.contact-content-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  min-height: 100%;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.contact-card:hover {
  background: linear-gradient(135deg, rgba(4, 72, 167, 0.04) 0%, rgba(4, 72, 167, 0.02) 100%);
  border-color: rgba(4, 72, 167, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(4, 72, 167, 0.12);
}

.contact-card-address {
  cursor: default;
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  color: var(--primary-color);
  border-radius: 14px;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  transition: all 0.35s ease;
}

.contact-card:hover .contact-card-icon {
  background: var(--brand-gradient);
  color: #fff;
  transform: scale(1.05);
}

.contact-card-title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text-strong);
  margin: 0 0 0.4rem 0;
  letter-spacing: -0.02em;
}

.contact-card-text {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 0.25rem 0;
  line-height: 1.4;
}

a.contact-card:hover .contact-card-text {
  color: var(--primary-color);
}

.contact-card-hint {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: var(--brand-gradient);
  color: rgba(255, 255, 255, 0.9);
  padding: 3rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  pointer-events: none;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo img {
  max-height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: var(--fs-md);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 280px;
}

@media (max-width: 767px) {
  .decor-orb {
    filter: blur(45px);
    opacity: 0.8;
  }
  .about-bg-pattern .decor-orb-1,
  .tours-bg-pattern .decor-orb-1,
  .hotels-bg-pattern .decor-orb-1 {
    width: 200px;
    height: 200px;
  }
  .about-bg-pattern .decor-orb-2,
  .tours-bg-pattern .decor-orb-2,
  .hotels-bg-pattern .decor-orb-2 {
    width: 150px;
    height: 150px;
  }
  .about-bg-pattern .decor-orb-3,
  .tours-bg-pattern .decor-orb-3,
  .hotels-bg-pattern .decor-orb-3 {
    width: 120px;
    height: 120px;
  }
  .giftcards-bg-pattern .decor-orb-1 {
    width: 260px;
    height: 260px;
    margin-left: -130px;
    margin-top: -130px;
  }
  .giftcards-bg-pattern .decor-orb-2,
  .giftcards-bg-pattern .decor-orb-3 {
    width: 140px;
    height: 140px;
  }
  .contact-bg-pattern .decor-orb-1 {
    width: 220px;
    height: 220px;
  }
  .contact-bg-pattern .decor-orb-2,
  .contact-bg-pattern .decor-orb-3 {
    width: 150px;
    height: 150px;
  }
}

.footer-nav-title {
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1rem;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.footer-nav-list a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: var(--fs-md);
  transition: color 0.2s ease;
}

.footer-nav-list a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: #fff;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
}

.footer-copyright {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.75);
}

.footer-credit {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-credit-logo {
  display: inline-flex;
  align-items: center;
}

.footer-credit-logo img {
  height: 20px;
  width: auto;
  vertical-align: middle;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.25s ease;
}

.footer-credit-logo:hover img {
  opacity: 1;
}

@media (max-width: 767.98px) {
  .section-about {
    padding: 2.5rem 0;
  }

  .section-about-header {
    margin-bottom: 1.5rem !important;
  }

  .section-about .section-title {
    font-size: var(--fs-lg);
  }

  .section-badge {
    font-size: 0.65rem;
    padding: 0.35rem 0.85rem;
    letter-spacing: 0.12em;
  }

  .about-content-card {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .about-grid-item {
    border-radius: 12px;
  }

  .about-grid-img {
    min-height: 90px;
    border-radius: 12px;
  }

  .visa-card {
    border-radius: 16px;
  }

  .visa-card-header {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1.25rem;
  }

  .visa-card-body {
    padding: 1.25rem 1.25rem 1.35rem;
  }

  .visa-feature:hover {
    transform: translateY(-2px);
  }

  .about-content-row .col-lg-6 > * {
    flex: none;
  }

  /* Tours section mobile */
  .section-tours {
    padding: 2.5rem 0;
  }

  .tours-content-card {
    padding: 1.5rem 1rem 2.5rem;
    border-radius: 20px;
  }

  .tours-slider-wrapper {
    padding: 0 0 1.75rem;
  }

  .tour-card-title {
    font-size: var(--fs-lg);
  }

  .tour-card-body {
    padding: 0.8rem 0.9rem 0.9rem;
  }

  .tour-card-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 0.5rem;
  }

  .tour-card-price-block {
    justify-content: center;
  }

  .tour-card-sale-tag {
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.2rem 0.45rem;
    font-size: 0.7rem;
  }

  /* Hotels mobile */
  .section-hotels {
    padding: 2.5rem 0;
  }

  .hotels-content-card {
    padding: 1.5rem 1rem 2rem;
  }

  .hotel-card-title {
    font-size: var(--fs-lg);
  }

  .hotel-card-body {
    padding: 0.8rem 0.9rem 0.9rem;
  }

  .hotel-card-prestige {
    margin-bottom: 0.65rem;
  }

  /* Contact mobile */
  .section-contact {
    padding: 2.5rem 0;
  }

  .contact-content-card {
    padding: 1.5rem 1rem;
  }

  .contact-card-icon {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .contact-card-text {
    font-size: var(--fs-sm);
  }

  /* Hero mobile */
  .hero-section .carousel,
  .hero-section .carousel-inner,
  .hero-section .carousel-item {
    min-height: 260px;
  }

  .hero-title {
    font-size: 1.1rem;
  }

  .hero-subtitle {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  .hero-cta-group .btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  /* Contact cards mobile - 2 per row */
  .contact-card {
    padding: 1rem 0.5rem;
  }

  /* Footer mobile */
  .site-footer {
    padding: 2rem 0 1.25rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-top: 1.25rem;
  }

  .footer-credit {
    flex-wrap: wrap;
  }

  /* Gift cards mobile */
  .section-giftcards {
    padding: 2.5rem 0;
  }

  .giftcards-content {
    text-align: center;
  }

  .giftcards-content .section-title {
    text-align: center;
  }

  .giftcards-content .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .giftcards-stack {
    min-height: 200px;
    margin-top: 2rem;
  }

  .giftcard {
    max-width: 300px;
  }

  .giftcard-logo-img {
    max-width: 110px;
    max-height: 55px;
  }

  .services-section {
    padding: 56px 0;
  }

  .services-cta-pill {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}

/* Media Queries */

/* Container responsive padding */
.container-fluid {
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
  max-width: 100%;
}

main {
  width: 100%;
  overflow-x: hidden;
}

/* Extra small phones: 0px - 320px */
@media (max-width: 320px) {
  :root {
    --fs-lg: 1rem;
    --fs-md: 0.8125rem;
    --fs-sm: 0.6875rem;
  }
  .container-fluid {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .navbar-brand img,
  .navbar-logo {
    max-height: 32px;
  }
  .contact-card {
    padding: 0.75rem 0.35rem;
  }
  .contact-card-title {
    font-size: 0.75rem;
  }
  .contact-card-text {
    font-size: 0.65rem;
  }
  .giftcard {
    max-width: 260px;
  }
  .giftcard-value {
    font-size: 0.7rem;
  }
  .footer-tagline {
    max-width: 100%;
  }
  .hero-section .carousel,
  .hero-section .carousel-inner,
  .hero-section .carousel-item {
    min-height: 220px;
  }
  .tour-card-sale-tag {
    top: 0.35rem;
    left: 0.35rem;
    padding: 0.15rem 0.35rem;
    font-size: 0.625rem;
  }
  .tour-card-price-old {
    font-size: 0.625rem;
  }
  .tour-card-price-current {
    font-size: var(--fs-sm);
  }
  .tour-card-body {
    padding: 0.6rem 0.75rem 0.75rem;
  }
  .tour-card-btn {
    font-size: 0.65rem;
    padding: 0.35rem 0.6rem;
  }
}

@media (max-width: 480px) {
  .header-top span {
    white-space: normal;
    text-align: center;
  }
  .tours-content-card {
    padding: 1rem 0.75rem 2rem;
  }
  .tour-card-title {
    font-size: 0.95rem;
  }
  .tour-card-subtitle {
    -webkit-line-clamp: 2;
  }
}

/* Small phones: 321px - 480px */
@media (min-width: 321px) and (max-width: 480px) {
  :root {
    --fs-lg: 1.125rem;
    --fs-md: 0.875rem;
    --fs-sm: 0.75rem;
  }
}

/* Common phone widths: 360px - 414px */
@media (min-width: 360px) and (max-width: 414px) {
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Medium / large phones: 481px - 575px */
@media (min-width: 481px) and (max-width: 575px) {
  .container-fluid {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* Small tablets: 576px - 767px */
@media (min-width: 576px) and (max-width: 767px) {
  .container-fluid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Tablets (portrait): 768px - 991px */
@media (min-width: 768px) and (max-width: 991px) {
  .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .hero-section .carousel,
  .hero-section .carousel-inner,
  .hero-section .carousel-item {
    min-height: 320px;
  }
}

/* Small laptops: 992px - 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
  .container-fluid {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .hero-section .carousel,
  .hero-section .carousel-inner,
  .hero-section .carousel-item {
    min-height: 380px;
  }
}

/* Laptops / desktops: 1200px - 1439px */
@media (min-width: 1200px) and (max-width: 1439px) {
  .container-fluid {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .hero-section .carousel,
  .hero-section .carousel-inner,
  .hero-section .carousel-item {
    height: 420px;
  }
}

/* Large desktops: 1440px - 1919px */
@media (min-width: 1440px) and (max-width: 1919px) {
  .container-fluid {
    padding-left: clamp(3rem, 5vw, 5rem);
    padding-right: clamp(3rem, 5vw, 5rem);
  }
  .hero-section .carousel,
  .hero-section .carousel-inner,
  .hero-section .carousel-item {
    height: 520px;
  }
}

/* Very large / 4K screens: 1920px and up */
@media (min-width: 1920px) {
  .container-fluid {
    padding-left: clamp(4rem, 8vw, 8rem);
    padding-right: clamp(4rem, 8vw, 8rem);
  }
  .hero-section .carousel,
  .hero-section .carousel-inner,
  .hero-section .carousel-item {
    height: 580px;
  }
}
