@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600&display=swap');

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

:root {
  --dark-blue: #0B3C5D;
  --teal: #2EC4B6;
  --yellow: #F4B400;
  --white: #FFFFFF;
  --light-bg: #e4ecf2;
  --text-dark: #0B1F2E;
  --text-mid: #3A5068;
  --text-light: #7A90A4;
  --card-shadow: 0 4px 24px rgba(11, 60, 93, 0.10);
  --card-shadow-hover: 0 12px 40px rgba(11, 60, 93, 0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  background: linear-gradient(135deg, #e4ecf2 0%, #d7e0e8 45%, #e4eef5 100%);
  background-attachment: fixed;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: transparent;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(46, 196, 182, 0.12), transparent 24%),
    radial-gradient(circle at 80% 15%, rgba(244, 180, 0, 0.08), transparent 20%),
    radial-gradient(circle at 50% 80%, rgba(46, 196, 182, 0.06), transparent 18%);
  pointer-events: none;
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== NAVBAR ===== */
.navbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 60, 93, 0.97);
  backdrop-filter: blur(12px);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  border-bottom: 1px solid rgba(46, 196, 182, 0.2);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform var(--transition);
}

.nav-logo:hover {
  transform: translateY(-2px);
}

.nav-logo span {
  color: var(--teal);
}

.nav-logo .logo-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  position: relative;
  transition: transform var(--transition) filter var(--transition);
  overflow: hidden;
}

.nav-logo:hover .logo-icon {
  transform: scale(1.08);
}

.nav-logo .logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
  transition: filter var(--transition);
}

.nav-logo:hover .logo-img {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover:not(.nav-cta),
.nav-links a.active:not(.nav-cta) {
  color: var(--teal);
  background: rgba(46, 196, 182, 0.15);
}

.nav-links a.active:not(.nav-cta) {
  color: var(--teal);
}

/* ===== DROPDOWN ===== */
.nav-dropdown,
.nav-currency-dropdown,
.nav-user-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}

.nav-dropdown-btn:hover,
.nav-dropdown-btn.active {
  color: var(--white);
  background: rgba(46, 196, 182, 0.15);
}

.nav-dropdown-btn.active {
  color: var(--teal);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  background: rgba(11, 60, 93, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(46, 196, 182, 0.25);
  border-radius: var(--radius-sm);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown-btn:focus+.dropdown-menu,
.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  border-radius: 0;
  transition: all var(--transition);
}

.dropdown-menu a:first-child {
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.dropdown-menu a:last-child {
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.dropdown-menu a:hover {
  background: rgba(46, 196, 182, 0.2);
  color: var(--teal);
}

.nav-currency-dropdown .dropdown-menu {
  min-width: 120px;
  right: 0;
  left: auto;
}

.nav-cta {
  background: var(--yellow) !important;
  color: var(--dark-blue) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 30px !important;
}

.nav-cta:hover {
  background: #e6a800 !important;
  color: var(--dark-blue) !important;
}

.nav-user-dropdown {
  position: relative;
}

.nav-user-btn {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer !important;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  padding: 0.5rem 1rem !important;
}

.nav-user-btn.logged-in {
  background: var(--yellow) !important;
  color: var(--dark-blue) !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  transition: background var(--transition) !important;
}

.nav-user-btn.logged-in:hover {
  background: #e6a800 !important;
}

.nav-user-dropdown .dropdown-menu {
  right: 0;
  left: auto;
}

.user-dropdown-menu {
  display: none;
}

.nav-cta.logged-in {
  background: var(--yellow) !important;
  color: var(--dark-blue) !important;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-cta.logged-in:hover {
  background: #e6a800 !important;
}

.nav-login {
  border: 1.5px solid rgba(46, 196, 182, 0.5) !important;
  color: var(--teal) !important;
  font-weight: 600 !important;
  padding: 0.5rem 1rem !important;
  border-radius: 30px !important;
  background: transparent !important;
  transition: all var(--transition) !important;
}

.nav-login:hover {
  background: rgba(46, 196, 182, 0.15) !important;
  border-color: var(--teal) !important;
  color: var(--white) !important;
}

/* ===== LANGUAGE SWITCHER ===== */
.nav-lang-dropdown {
  margin: 0 0.25rem;
}

.nav-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.45rem 0.75rem !important;
  border: 1px solid rgba(46, 196, 182, 0.3) !important;
  background: rgba(46, 196, 182, 0.08) !important;
  border-radius: 24px !important;
  color: rgba(255, 255, 255, 0.92) !important;
}

.nav-lang-btn:hover,
.nav-lang-btn.active {
  background: rgba(46, 196, 182, 0.18) !important;
  border-color: rgba(46, 196, 182, 0.55) !important;
  color: var(--white) !important;
}

.nav-lang-btn .lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-lang-btn .lang-flag img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

.nav-lang-btn .lang-code {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-lang-btn .lang-caret {
  font-size: 0.55rem;
  opacity: 0.7;
  margin-left: 2px;
}

.lang-dropdown-menu {
  min-width: 200px;
  right: 0;
  left: auto;
  max-height: 70vh;
  overflow-y: auto;
}

.lang-dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  padding: 0.65rem 1rem !important;
}

.lang-dropdown-menu a .lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lang-dropdown-menu a .lang-flag img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

.lang-dropdown-menu a .lang-name {
  flex: 1;
}

.lang-dropdown-menu a.active {
  background: rgba(46, 196, 182, 0.2);
  color: var(--teal);
}

.lang-dropdown-menu a.active::after {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: transparent;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
  border-radius: 2px;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--dark-blue);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent, rgba(3, 16, 32, 0.14));
  z-index: 3;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1565008576549-57569a49371d?w=1600&q=80') center/cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero:hover .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(3, 16, 32, 0.24) 0%, rgba(3, 16, 32, 0.52) 55%, rgba(3, 16, 32, 0.72) 100%);
  box-shadow: inset 0 0 75px rgba(0, 0, 0, 0.25);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 196, 182, 0.12);
  border: 1px solid rgba(46, 196, 182, 0.35);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(46, 196, 182, 0.1);
}

.hero-badge::before {
  content: '✦';
  font-size: 10px;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -1.5px;
}

.hero-highlight {
  color: var(--yellow);
  background: linear-gradient(135deg, #F4B400 0%, #FFE082 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-style: normal;
  text-shadow: 0 2px 12px rgba(244, 180, 0, 0.22);
  position: relative;
}

.nav-currency-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.45rem 0.75rem !important;
  border: 1px solid rgba(46, 196, 182, 0.3) !important;
  background: rgba(46, 196, 182, 0.08) !important;
  border-radius: 24px !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
}

.nav-currency-btn:hover,
.nav-currency-btn.active {
  background: rgba(46, 196, 182, 0.18) !important;
  border-color: rgba(46, 196, 182, 0.55) !important;
  color: var(--white) !important;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2.2rem;
  font-weight: 300;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--dark-blue);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244, 180, 0, 0.45);
  background: #e6a800;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.btn-outline:hover {
  border-color: var(--teal);
  background: rgba(46, 196, 182, 0.12);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero-scroll span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-dot {
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot::after {
  content: '';
  width: 4px;
  height: 8px;
  background: var(--teal);
  border-radius: 2px;
  animation: scrollBounce 1.8s infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  60% {
    transform: translateY(8px);
    opacity: 0.3;
  }
}

/* ===== SECTION COMMON ===== */
section {
  padding: 5rem 2rem;
}

section:not(.hero) {
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(11, 60, 93, 0.08);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark-blue);
  letter-spacing: -0.8px;
  line-height: 1.2;
}

.section-header p {
  color: var(--text-mid);
  margin-top: 0.75rem;
  font-size: 1.05rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.divider {
  width: 48px;
  height: 4px;
  background: var(--teal);
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* Unified page surface backgrounds */
.filter-section {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(11, 60, 93, 0.08);
  margin: 2rem 0;
  padding: 3rem 2rem;
}

/* Reusable surface variants for unified color system */
.surface-panel {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(11, 60, 93, 0.06);
}

.surface-panel-dark {
  background: linear-gradient(180deg, rgba(11, 60, 93, 0.9), rgba(11, 60, 93, 0.8));
  color: var(--white);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(11, 60, 93, 0.12);
}

.surface-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
}

/* ===== SLIDER ARROWS ===== */
.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(11, 60, 93, 0.1);
  color: var(--dark-blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(11, 60, 93, 0.1);
}

.slider-arrow:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(46, 196, 182, 0.3);
}

.slider-arrow:active {
  transform: scale(0.95);
}

.slider-arrow-dark {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.slider-arrow-dark:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 1.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(11, 60, 93, 0.2);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.slider-dot.active,
.slider-dot:hover {
  background: var(--teal);
  transform: scale(1.2);
}

/* ===== VIEW ALL BUTTON ===== */
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark-blue);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-view-all svg {
  transition: transform var(--transition);
}

.btn-view-all:hover {
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 196, 182, 0.35);
}

.btn-view-all:hover svg {
  transform: translateX(4px);
}

/* ===== FEATURED SECTION ===== */
.featured-section {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(2px);
  position: relative;
  overflow: hidden;
}

.featured-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.featured-slider {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 360px;
}

.featured-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  transition: box-shadow var(--transition);
  border: 1px solid rgba(11, 60, 93, 0.06);
  display: none;
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  height: 480px;
  grid-template-rows: 1fr;
}

.featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(40, 167, 69, 0.1) 100%);
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.featured-card.active {
  display: grid;
}

.featured-card:hover {
  box-shadow: var(--card-shadow-hover), 0 0 30px rgba(255, 193, 7, 0.3);
}

.featured-img {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-card:hover .featured-img img {
  transform: scale(1.06);
}

.featured-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--yellow);
  color: var(--dark-blue);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-ribbon {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  z-index: 10;
  transform: rotate(12deg);
}

.featured-ribbon::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid #f7931e;
  border-top: 4px solid #f7931e;
  border-bottom: 4px solid transparent;
}

.featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  padding: 1.5rem 1rem 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.featured-card:hover .featured-overlay {
  opacity: 1;
}

.featured-quick-info {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

.quick-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.quick-icon {
  font-size: 0.9rem;
}

.quick-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dark-blue);
}

.featured-body {
  padding: 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 255, 0.98) 100%);
  position: relative;
  overflow-y: auto;
  justify-content: flex-start;
}

.featured-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.03) 0%, rgba(40, 167, 69, 0.02) 100%);
  border-radius: 0 20px 20px 0;
  z-index: -1;
}

.featured-body::after {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--teal) 0%, var(--yellow) 100%);
  border-radius: 2px;
  opacity: 0.6;
}

.featured-body .tag {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.featured-body .tag::before {
  content: '⭐';
  font-size: 1rem;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.featured-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1.2;
  margin-bottom: 0.6rem;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--dark-blue) 0%, #2c5aa0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.featured-body p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.featured-price {
  text-align: right;
}

.price-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.price-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark-blue);
  background: linear-gradient(135deg, var(--dark-blue) 0%, #2c5aa0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.featured-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--dark-blue) 0%, #2c5aa0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.featured-description {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 500;
}

.tour-highlights {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.tour-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(46, 196, 182, 0.1) 0%, rgba(255, 193, 7, 0.08) 100%);
  border: 1px solid rgba(46, 196, 182, 0.15);
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.tour-highlight:hover {
  background: linear-gradient(135deg, rgba(46, 196, 182, 0.15) 0%, rgba(255, 193, 7, 0.12) 100%);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(46, 196, 182, 0.2);
}

.highlight-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, #28a745 100%);
  box-shadow: 0 0 0 4px rgba(46, 196, 182, 0.12);
  flex-shrink: 0;
}

.featured-highlights {
  margin-bottom: 1.5rem;
}

.tour-highlight--featured {
  background: linear-gradient(135deg, rgba(46, 196, 182, 0.14) 0%, rgba(255, 255, 255, 0.96) 100%);
  border-color: rgba(46, 196, 182, 0.22);
  color: var(--dark-blue);
  box-shadow: 0 8px 20px rgba(11, 60, 93, 0.06);
}

.tour-highlight--more {
  justify-content: center;
  min-width: 46px;
}

.featured-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(11, 60, 93, 0.05);
  backdrop-filter: blur(10px);
}

.featured-meta-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
  border: 1px solid rgba(11, 60, 93, 0.08);
  box-shadow: 0 2px 8px rgba(11, 60, 93, 0.04);
  transition: all 0.3s ease;
  text-align: center;
  min-height: 44px;
}

.featured-meta-item:hover {
  transform: translateY(-2px);
  border-color: rgba(46, 196, 182, 0.25);
  box-shadow: 0 8px 20px rgba(11, 60, 93, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(46, 196, 182, 0.05) 100%);
}

.featured-meta .icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(11, 60, 93, 0.08) 0%, rgba(46, 196, 182, 0.15) 100%);
  color: var(--dark-blue);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.featured-meta-item:nth-child(1) .icon {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 237, 177, 0.9) 100%);
  color: #d4a017;
}

.featured-meta-item:nth-child(2) .icon {
  background: linear-gradient(135deg, rgba(63, 128, 255, 0.18) 0%, rgba(219, 235, 255, 0.95) 100%);
  color: #3f80ff;
}

.featured-meta-item:nth-child(3) .icon {
  background: linear-gradient(135deg, rgba(46, 196, 182, 0.2) 0%, rgba(217, 255, 248, 0.9) 100%);
  color: #2ec4b6;
}

.featured-meta-item:nth-child(4) .icon,
.featured-meta-item:nth-child(5) .icon {
  background: linear-gradient(135deg, rgba(255, 111, 97, 0.16) 0%, rgba(255, 232, 228, 0.95) 100%);
  color: #ff6f61;
}

.featured-meta-text {
  font-size: 0.78rem;
  color: var(--dark-blue);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.featured-meta-label {
  color: var(--text-light);
  font-weight: 600;
  margin-right: 0.2rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-features {
  margin-bottom: 1.2rem;
}

.features-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.features-title::before {
  content: '✨';
  font-size: 1rem;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.featured-actions {
  margin-top: auto;
}

.action-badges {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}

.action-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(11, 60, 93, 0.1);
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-mid);
}

.badge-icon {
  font-size: 0.8rem;
}

.badge-text {
  font-size: 0.7rem;
}

.featured-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  background: linear-gradient(135deg, var(--yellow) 0%, #e6a800 100%);
  color: var(--dark-blue);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(244, 180, 0, 0.3);
}

.featured-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 180, 0, 0.4);
  background: linear-gradient(135deg, #e6a800 0%, #d49400 100%);
}

.cta-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.featured-cta:hover .cta-arrow {
  transform: translateX(4px);
}

/* ===== BATUMI TOURS SECTION ===== */
.batumi-tours-section {
  background: linear-gradient(180deg, #ecf4fa 0%, #e4eaf0 100%);
  border-top: 1px solid rgba(11, 60, 93, 0.08);
}

.batumi-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.batumi-slider {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 420px;
}

.batumi-slider {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 420px;
}

.batumi-slide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.batumi-card {
  background: #f7fbff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 45px rgba(11, 60, 93, 0.10);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(11, 60, 93, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 420px;
}

.batumi-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 55px rgba(46, 196, 182, 0.22);
}

.batumi-img {
  position: relative;
  min-height: 210px;
  overflow: hidden;
}

.batumi-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.batumi-card:hover .batumi-img img {
  transform: scale(1.08);
}

.batumi-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #1e9ebd 0%, #2ec4b6 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 18px rgba(46, 196, 182, 0.28);
}

.batumi-body {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(250, 255, 255, 0.97);
}

.batumi-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 0.85rem;
}

.batumi-desc {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.3rem;
  min-height: 88px;
}

.batumi-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.batumi-info-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 600;
}

.batumi-info-item strong {
  color: var(--dark-blue);
  font-weight: 800;
}

.batumi-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.batumi-price-label {
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.batumi-price-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal);
}

.batumi-cta {
  background: var(--dark-blue);
  color: var(--white);
  padding: 0.82rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform var(--transition), background var(--transition);
}

.batumi-cta:hover {
  background: var(--teal);
  transform: translateY(-1px);
}

.batumi-slide {
  display: none;
}

.batumi-slide.active {
  display: grid;
}

@media (max-width: 900px) {
  .batumi-slide {
    grid-template-columns: 1fr;
  }

  .batumi-card {
    min-height: auto;
  }
}

.batumi-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.batumi-desc {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.batumi-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.batumi-price-label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
}

.batumi-price-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--teal);
}

.batumi-cta {
  background: var(--dark-blue);
  color: var(--white);
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition);
}

.batumi-cta:hover {
  background: var(--teal);
}

@media (max-width: 900px) {
  .batumi-card {
    grid-template-columns: 1fr;
    height: auto;
  }

  .batumi-img {
    min-height: 250px;
  }

  .batumi-body {
    padding: 1.5rem;
  }
}

/* ===== TOURS SLIDER WRAPPER ===== */
.tours-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.tours-slider-wrapper .slider-arrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
}

.tours-slider-wrapper .slider-arrow-left {
  left: -24px;
}

.tours-slider-wrapper .slider-arrow-right {
  right: -24px;
}

/* ===== CARS SLIDER WRAPPER ===== */
.cars-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.cars-slider-wrapper .slider-arrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
}

.cars-slider-wrapper .slider-arrow-left {
  left: -24px;
}

.cars-slider-wrapper .slider-arrow-right {
  right: -24px;
}

/* ===== TRANSPORT SLIDER WRAPPER ===== */
.transport-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  width: 100%;
}

.transport-slider-wrapper .slider-arrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
}

.transport-slider-wrapper .slider-arrow-left {
  left: 0px;
}

.transport-slider-wrapper .slider-arrow-right {
  right: 0px;
}

/* ===== DOMESTIC TOURS SECTION ===== */
.domestic-tours-section {
  background: rgba(255, 255, 255, 0.60);
}

.domestic-tours-grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  flex: 1;
}

.domestic-tours-grid::-webkit-scrollbar {
  display: none;
}

/* Chrome/Safari */
.domestic-tours-grid .tour-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  min-height: 400px;
}

/* ===== INTERNATIONAL TOURS SECTION ===== */
.international-tours-section {
  background: rgba(255, 255, 255, 0.75);
}

.international-tours-grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  flex: 1;
}

.international-tours-grid::-webkit-scrollbar {
  display: none;
}

/* Chrome/Safari */
.international-tours-grid .tour-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  min-height: 400px;
  background: linear-gradient(135deg, var(--white) 0%, rgba(46, 196, 182, 0.02) 100%);
  border: 2px solid rgba(46, 196, 182, 0.1);
  position: relative;
}

.international-tours-grid .tour-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(46, 196, 182, 0.03) 0%, rgba(244, 180, 0, 0.02) 100%);
  border-radius: var(--radius);
  pointer-events: none;
}

.international-tours-grid .tour-card:hover {
  border-color: rgba(46, 196, 182, 0.3);
  box-shadow: 0 15px 35px rgba(46, 196, 182, 0.15);
}

.international-tours-grid .tour-card-badge {
  background: linear-gradient(135deg, var(--yellow) 0%, #e6a800 100%);
  color: var(--dark-blue);
  border: none;
  box-shadow: 0 2px 8px rgba(244, 180, 0, 0.3);
}

/* ===== TOUR CARD ===== */
.tour-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(11, 60, 93, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.tour-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}

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

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

.tour-card-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.save-tour-btn {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition);
  color: var(--dark-blue);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.save-tour-btn svg {
  width: 18px;
  height: 18px;
}

.save-tour-btn:hover {
  transform: scale(1.1);
  color: var(--yellow);
}

.save-tour-btn.active {
  color: var(--yellow);
  transform: scale(1.05);
}

.save-tour-btn.active svg {
  fill: currentColor;
}

/* ===== TOAST NOTIFICATION ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 25000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success {
  background: #28a745;
  color: white;
}

.toast.error {
  background: #dc3545;
  color: white;
}

.toast.info {
  background: var(--dark-blue);
  color: white;
}

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 26000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.badge-oneday {
  background: rgba(46, 196, 182, 0.15);
  color: #0e9488;
  border: 1px solid rgba(46, 196, 182, 0.3);
}

.badge-full {
  background: rgba(244, 180, 0, 0.18);
  color: #b38000;
  border: 1px solid rgba(244, 180, 0, 0.35);
}

.tour-card-body {
  padding: 1.25rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.tour-card-desc {
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(11, 60, 93, 0.07);
  padding-top: 1rem;
}

.tour-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark-blue);
}

.tour-price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
}

.btn-sm {
  background: var(--teal);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.45rem 1rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.btn-sm:hover {
  background: #22a99d;
  transform: scale(1.04);
}

.btn-dark {
  background: var(--dark-blue);
}

.btn-dark:hover {
  background: #0a2e47;
}

/* ===== TRANSPORT SECTION ===== */
.transport-section {
  background: var(--dark-blue);
}

.transport-section .section-header h2 {
  color: var(--white);
}

.transport-section .section-header p {
  color: rgba(255, 255, 255, 0.65);
}

.transport-section .section-tag {
  color: var(--teal);
}

.transport-section .divider {
  background: var(--yellow);
}

.transport-hero {
  position: relative;
  padding: 3rem 0 4rem;
}

.transport-hero__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.transport-hero__title {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  margin-bottom: 0.5rem;
  text-align: center;
  width: 100%;
}

.transport-hero__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  max-width: 540px;
  line-height: 1.65;
  margin: 0 auto 2.5rem;
}

/* Horizontal photo strip — all same width, overlapping left→right */
.transport-photos-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  padding-bottom: 1rem;
}

.transport-photo {
  position: relative;
  flex: 0 0 440px;
  width: 440px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Each photo after the first overlaps the previous — tighter */
.transport-photo+.transport-photo {
  margin-left: -160px;
}

.transport-photo-1 {
  z-index: 1;
  transform: rotate(-3deg) translateY(14px);
}

.transport-photo-2 {
  z-index: 2;
  transform: rotate(2deg) translateY(5px);
}

.transport-photo-3 {
  z-index: 3;
  transform: rotate(-1.5deg) translateY(9px);
}

.transport-photo-4 {
  z-index: 4;
  transform: rotate(2.5deg) translateY(0px);
}

.transport-photo:hover {
  transform: rotate(0deg) translateY(-20px) scale(1.05) !important;
  z-index: 10;
}

.transport-photo img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  filter:
    brightness(1.15) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1)) drop-shadow(0 22px 44px rgba(0, 0, 0, 0.12));
}

.transport-photo:hover img {
  filter:
    brightness(1.08) drop-shadow(0 0 14px rgba(255, 255, 255, 0.18)) drop-shadow(0 12px 28px rgba(0, 0, 0, 0.5)) drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
}

@media (max-width: 1200px) {
  .transport-photo {
    flex: 0 0 420px;
    width: 420px;
  }

  .transport-photo+.transport-photo {
    margin-left: -130px;
  }

  .transport-photo img {
    height: 320px;
  }
}

@media (max-width: 900px) {
  .transport-hero__title {
    font-size: clamp(1.3rem, 5vw, 2rem);
    margin-bottom: 0.4rem;
  }

  .transport-hero__desc {
    font-size: 0.88rem;
    margin-bottom: 1.8rem;
  }

  .transport-photo {
    flex: 0 0 280px;
    width: 280px;
  }

  .transport-photo+.transport-photo {
    margin-left: -100px;
  }

  .transport-photo img {
    height: 250px;
  }
}

/* ===== MOBILE: 1 photo at a time, horizontal swipe ===== */
@media (max-width: 540px) {
  .transport-photos-row {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 0 1rem 1rem;
    gap: 0;
    scrollbar-width: none;
  }

  .transport-photos-row::-webkit-scrollbar {
    display: none;
  }

  .transport-photo {
    flex: 0 0 85vw;
    width: 85vw;
    scroll-snap-align: center;
    /* reset rotation on mobile */
    transform: none !important;
  }

  .transport-photo+.transport-photo {
    margin-left: 1rem;
  }

  .transport-photo img {
    height: 280px;
  }
}


/* ===== CAR CARD ===== */
.car-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.car-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(46, 196, 182, 0.4);
}

.car-card-img {
  height: 200px;
  overflow: hidden;
}

.car-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.car-card-body {
  padding: 1.25rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.car-type-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  background: rgba(46, 196, 182, 0.15);
  color: var(--teal);
  border: 1px solid rgba(46, 196, 182, 0.3);
}

.car-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.car-card-info {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.car-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.car-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--teal);
  font-size: 1.1rem;
  letter-spacing: -0.2px;
  padding-bottom: 2px;
  border-bottom: 2px solid rgba(46, 196, 182, 0.3);
}

.price-prefix-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  margin-right: 4px;
}

/* სპეციალური სტილი შეთანხმებითი ფასისთვის */
.price-negotiable {
  color: var(--yellow);
  font-weight: 700;
  border-bottom: 1px solid rgba(244, 180, 0, 0.4);
}

.car-features {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.car-feature {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* ===== STORIES SECTION ===== */
.stories-section {
  background: var(--light-bg);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

#stories-grid {
  grid-template-columns: repeat(3, 1fr);
}

#stories-grid .post-card:nth-child(n+4) {
  display: none;
}

/* ===== POST CARD ===== */
.post-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(11, 60, 93, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}

.post-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-card-img img {
  transform: scale(1.07);
}

.post-category {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--dark-blue);
  color: var(--white);
}

.post-card-body {
  padding: 1.4rem;
}

.post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.post-meta span {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}

.post-card-text {
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.post-read-more {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.post-card:hover .post-read-more {
  gap: 8px;
}

/* ===== MAP SECTION ===== */
.map-section {
  padding: 0;
}

.map-container {
  position: relative;
}

.map-overlay-info {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 5;
  background: rgba(11, 60, 93, 0.93);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(46, 196, 182, 0.2);
  max-width: 280px;
}

.map-overlay-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.map-location {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.map-location:last-child {
  border-bottom: none;
}

.map-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.map-location span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.map-link {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.map-link:hover {
  color: var(--teal);
}

.map-svg-wrapper {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
  aspect-ratio: 920 / 580;
  height: auto;
}

.georgia-map-frame,
.georgia-map-img {
  width: min(100%, 920px);
  height: 100%;
  display: block;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.15);
  border-radius: 28px;
  background: #f8fbff;
  overflow: hidden;
}

.georgia-map-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.map-region-label {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 180px;
  background: rgba(15, 23, 42, 0.98);
  color: #f8fafc;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 0.85rem 1.1rem;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  opacity: 0;
  transform: translate(-50%, -110%);
  transition: opacity 0.15s ease, transform 0.15s ease;
  pointer-events: none;
  z-index: 3;
}

.map-region-label.visible {
  opacity: 1;
  transform: translate(-50%, -110%);
}

.map-pin {
  position: absolute;
  top: 60%;
  left: 20.4%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  transform: translate(-50%, -50%);
  z-index: 4;
  pointer-events: none;
}

.map-pin-title {
  background: rgba(255, 255, 255, 0.98);
  color: #0b3c5d;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
  white-space: nowrap;
  margin-left: 8px;
}

.map-pin-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff3b30;
  box-shadow: 0 0 0 6px rgba(255, 59, 48, 0.18);
}

.georgia-map-svg path.land {
  stroke: #cbd5e1;
  stroke-width: 0.6;
  transition: fill 0.25s ease, fill-opacity 0.25s ease, transform 0.15s ease;
}

.georgia-map-svg path#GE-AB {
  fill: #c2c2c2;
}

.georgia-map-svg path#GE-AJ {
  fill: #9b9b9b;
}

.georgia-map-svg path#GE-GU {
  fill: #d0d0d0;
}

.georgia-map-svg path#GE-IM {
  fill: #7f7f7f;
}

.georgia-map-svg path#GE-KA {
  fill: #bbbbbb;
}

.georgia-map-svg path#GE-KK {
  fill: #8c8c8c;
}

.georgia-map-svg path#GE-MM {
  fill: #e0e0e0;
}

.georgia-map-svg path#GE-RL {
  fill: #a1a1a1;
}

.georgia-map-svg path#GE-SJ {
  fill: #cdcdcd;
}

.georgia-map-svg path#GE-SK {
  fill: #d9d9d9;
}

.georgia-map-svg path#GE-SZ {
  fill: #707070;
}

.georgia-map-svg path#GE-TB {
  fill: #e6e6e6;
}

.georgia-map-svg path.land:hover {
  fill: #475569 !important;
  fill-opacity: 0.75 !important;
  transform: scale(1.01);
  cursor: pointer;
}

.georgia-map-svg path.batumi-region {
  fill: #ff3b30 !important;
  fill-opacity: 0.95 !important;
}

.map-frame {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
}

/* ===== WEATHER SECTION ===== */
.weather-section {
  background: var(--dark-blue);
  padding: 3.5rem 2rem;
}

.weather-widget {
  max-width: 1000px;
  margin: 0 auto;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

@media (max-width: 768px) {
  .weather-widget {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
}

.weather-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 22px;
  padding: 2.2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.weather-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(46, 196, 182, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.weather-left h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.3rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.weather-left .city {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.weather-temp {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin: 0.4rem 0;
}

.weather-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: capitalize;
}

.weather-details {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.weather-detail {
  display: flex;
  align-items: center;
  gap: 6px;
}

.weather-detail span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.weather-icon-large {
  font-size: 4.5rem;
  line-height: 1;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
}

.weather-loading {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  grid-column: 1/-1;
  text-align: center;
}

.weather-error {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  grid-column: 1/-1;
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: #061e30;
  padding: 3rem 2rem 1.5rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.social-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.65rem;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--teal);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-contact-item .icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  margin: 0;
}

.footer-bottom a {
  color: var(--teal);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--dark-blue);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.25rem;
}

.breadcrumb a,
.breadcrumb span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

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

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.2);
}

.breadcrumb .current {
  color: var(--teal);
}

/* ===== ABOUT PAGE ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: 1.5rem;
  right: -1.5rem;
  background: var(--dark-blue);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--card-shadow-hover);
}

.about-img-accent .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal);
}

.about-img-accent p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 500;
}

.about-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.about-text p {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-box {
  text-align: center;
  padding: 1rem;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
}

.stat-box .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--teal);
}

.stat-box p {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 0.25rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.75rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(11, 60, 93, 0.06);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}

.team-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.team-card-body {
  padding: 1.25rem;
}

.team-card-body h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark-blue);
}

.team-card-body p {
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.2rem;
}

/* ===== CONTACT PAGE ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.contact-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(46, 196, 182, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-item-text h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-blue);
}

.contact-item-text p {
  color: var(--text-mid);
  font-size: 0.88rem;
  margin-top: 0.2rem;
}

.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(11, 60, 93, 0.06);
}

.contact-form h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  border: 1.5px solid rgba(11, 60, 93, 0.12);
  border-radius: var(--radius-sm);
  background: var(--light-bg);
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
}

.form-success {
  display: none;
  text-align: center;
  padding: 1rem;
  background: rgba(46, 196, 182, 0.1);
  border-radius: var(--radius-sm);
  color: var(--teal);
  font-weight: 600;
}

/* ===== CARS PAGE ===== */
.cars-full-section {
  background: var(--white);
}

.cars-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
  align-items: stretch;
}

/* ===== POSTS PAGE ===== */
.posts-full-section {
  background: var(--light-bg);
}

.posts-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* ===== MODAL ===== */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 28, 42, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(6px);
}

.modal-backdrop.open {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: 20px;
  max-width: 540px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  background: var(--light-bg);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.modal-close:hover {
  background: rgba(11, 60, 93, 0.12);
}

.modal h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.modal .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--teal);
  margin-bottom: 1rem;
}

.modal p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .featured-card.active {
    grid-template-columns: 1fr;
  }

  .featured-img {
    min-height: 280px;
  }

  .about-intro {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .car-full-card {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 2rem;
  }

  .weather-widget {
    grid-template-columns: 1fr;
  }

  #stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #stories-grid .post-card:nth-child(n+4) {
    display: none;
  }

  .tours-slider-wrapper .slider-arrow-left,
  .cars-slider-wrapper .slider-arrow-left {
    left: 8px;
  }

  .tours-slider-wrapper .slider-arrow-right,
  .cars-slider-wrapper .slider-arrow-right {
    right: 8px;
  }

  .domestic-tours-grid .tour-card,
  .international-tours-grid .tour-card {
    flex: 0 0 300px;
    min-height: 380px;
  }

  .cars-grid .car-card {
    flex: 0 0 280px;
  }
}

@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }

  .footer-brand p {
    max-width: 460px;
  }
}

/* ===== All responsive rules are in mobile.css ===== */

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  background: var(--light-bg);
}

.reviews-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.reviews-slider {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(11, 60, 93, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author {
  font-weight: 700;
  color: var(--dark-blue);
  font-size: 0.95rem;
}

.review-stars {
  color: var(--yellow);
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.review-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  font-style: normal;
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  display: block;
}

/* ===== GLOBAL LOADERS (translation + card loading) ===== */
@keyframes gtSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes gtFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gtFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}

/* Full-page blocking loader shown while switching languages. Covers the
   entire viewport so the user never sees a half-translated page. */
.gt-lang-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  background: rgba(11, 60, 93, 0.97);
  color: var(--white);
  font-family: 'Poppins', 'Montserrat', sans-serif;
  text-align: center;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: gtFadeIn 0.15s ease-out;
}

.gt-lang-overlay.is-visible {
  display: flex;
}

.gt-lang-overlay.is-hiding {
  animation: gtFadeOut 0.2s ease-in forwards;
}

.gt-lang-overlay__brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.3px;
  color: var(--teal);
  margin-bottom: 0.1rem;
}

.gt-lang-overlay__spinner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 4px solid rgba(46, 196, 182, 0.25);
  border-top-color: var(--teal);
  animation: gtSpin 0.85s linear infinite;
}

.gt-lang-overlay__text {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.gt-lang-overlay__subtext {
  font-size: 0.82rem;
  font-weight: 400;
  opacity: 0.7;
  max-width: 280px;
  line-height: 1.5;
}

/* lock scroll while the overlay is on screen */
html.gt-lang-switching,
html.gt-lang-switching body {
  overflow: hidden !important;
  height: 100% !important;
}

/* inline card-grid loader (used while Firestore + first render happens) */
.gt-card-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 3rem 1.5rem;
  width: 100%;
  min-height: 180px;
  grid-column: 1 / -1;
  color: var(--text-mid);
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.gt-card-loader--dark {
  color: rgba(255, 255, 255, 0.75);
}

.gt-card-loader__spinner {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid rgba(46, 196, 182, 0.2);
  border-top-color: var(--teal);
  animation: gtSpin 0.9s linear infinite;
}

.gt-card-loader--dark .gt-card-loader__spinner {
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--teal);
}

.gt-card-loader__dots {
  display: inline-block;
  min-width: 1.2em;
  text-align: left;
}

.gt-card-loader__dots::after {
  content: '';
  animation: gtDots 1.2s steps(4, end) infinite;
}

@keyframes gtDots {
  0% {
    content: '';
  }

  25% {
    content: '.';
  }

  50% {
    content: '..';
  }

  75% {
    content: '...';
  }

  100% {
    content: '';
  }
}

/* dim cards briefly while re-rendering after a language switch */
.gt-rerendering [data-no-translate] {
  transition: opacity 0.2s ease;
  opacity: 0.55;
}