@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --tg-primary: #0c2340;
  --tg-accent: #0891b2;
  --tg-accent2: #06b6d4;
  --tg-warm: #f59e0b;
  --tg-bg: #ffffff;
  --tg-bg-alt: #ecfdf5;
  --tg-text: #1e293b;
  --tg-text-light: #64748b;
  --tg-border: #e2e8f0;
  --tg-error: #dc2626;
  --tg-success: #16a34a;
  --tg-white: #ffffff;
  --tg-overlay: rgba(12, 35, 64, 0.75);
  --tg-shadow: 0 4px 24px rgba(12, 35, 64, 0.08);
  --tg-shadow-lg: 0 12px 40px rgba(12, 35, 64, 0.12);
  --tg-radius: 8px;
  --tg-radius-lg: 16px;
  --tg-transition: 0.3s ease;
  --tg-max-width: 1200px;
  --tg-header-h: 64px;
  --tg-font-heading: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --tg-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--tg-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--tg-text);
  background: var(--tg-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--tg-font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--tg-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--tg-accent);
  text-decoration: none;
  transition: color var(--tg-transition);
}

a:hover { color: var(--tg-accent2); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol { list-style: none; }

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

.tg-container {
  width: 100%;
  max-width: var(--tg-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.tg-section {
  padding: 80px 0;
}

.tg-section--alt {
  background: var(--tg-bg-alt);
}

.tg-section--dark {
  background: var(--tg-primary);
  color: var(--tg-white);
}

.tg-section--dark h2,
.tg-section--dark h3 {
  color: var(--tg-white);
}

.tg-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.tg-section-header p {
  color: var(--tg-text-light);
  font-size: 1.1rem;
}

.tg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--tg-radius);
  transition: all var(--tg-transition);
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1.4;
}

.tg-btn--primary {
  background: var(--tg-accent);
  color: var(--tg-white);
  border-color: var(--tg-accent);
}

.tg-btn--primary:hover {
  background: var(--tg-accent2);
  border-color: var(--tg-accent2);
  color: var(--tg-white);
}

.tg-btn--warm {
  background: var(--tg-warm);
  color: var(--tg-primary);
  border-color: var(--tg-warm);
}

.tg-btn--warm:hover {
  background: #d97706;
  border-color: #d97706;
  color: var(--tg-white);
}

.tg-btn--outline {
  background: transparent;
  color: var(--tg-accent);
  border-color: var(--tg-accent);
}

.tg-btn--outline:hover {
  background: var(--tg-accent);
  color: var(--tg-white);
}

.tg-btn--outline-white {
  background: transparent;
  color: var(--tg-white);
  border-color: var(--tg-white);
}

.tg-btn--outline-white:hover {
  background: var(--tg-white);
  color: var(--tg-primary);
}

.tg-btn--sm {
  padding: 8px 20px;
  font-size: 0.9rem;
}

.tg-btn--lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.tg-btn--block {
  width: 100%;
}

/* ========== HEADER ========== */

.tg-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--tg-header-h);
  background: var(--tg-white);
  box-shadow: 0 1px 0 var(--tg-border);
  z-index: 1000;
  transition: box-shadow var(--tg-transition), background var(--tg-transition);
}

.tg-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(12, 35, 64, 0.1);
}

.tg-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--tg-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.tg-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.tg-header__logo-icon {
  width: 36px;
  height: 36px;
}

.tg-header__logo-text {
  font-family: var(--tg-font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--tg-primary);
  line-height: 1;
}

.tg-header__logo-text span {
  color: var(--tg-accent);
}

.tg-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.tg-nav__item {
  position: relative;
}

.tg-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--tg-text);
  text-decoration: none;
  border-radius: 6px;
  transition: color var(--tg-transition), background var(--tg-transition);
}

.tg-nav__link:hover,
.tg-nav__link--active {
  color: var(--tg-accent);
  background: rgba(8, 145, 178, 0.06);
}

.tg-nav__chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--tg-transition);
}

.tg-nav__item:hover .tg-nav__chevron,
.tg-nav__item:focus-within .tg-nav__chevron {
  transform: rotate(180deg);
}

.tg-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--tg-white);
  border: 1px solid var(--tg-border);
  border-radius: var(--tg-radius);
  box-shadow: var(--tg-shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--tg-transition);
}

.tg-nav__item:hover .tg-nav__dropdown,
.tg-nav__item:focus-within .tg-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tg-nav__dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--tg-text);
  transition: background var(--tg-transition), color var(--tg-transition);
}

.tg-nav__dropdown a:hover {
  background: var(--tg-bg-alt);
  color: var(--tg-accent);
}

.tg-header__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.tg-header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--tg-primary);
  text-decoration: none;
  padding: 8px 20px;
  border: 2px solid var(--tg-accent);
  border-radius: var(--tg-radius);
  transition: all var(--tg-transition);
}

.tg-header__phone:hover {
  background: var(--tg-accent);
  color: var(--tg-white);
}

.tg-header__phone svg {
  width: 18px;
  height: 18px;
}

.tg-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.tg-burger__line {
  width: 100%;
  height: 2px;
  background: var(--tg-primary);
  border-radius: 2px;
  transition: all var(--tg-transition);
}

.tg-burger.is-active .tg-burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.tg-burger.is-active .tg-burger__line:nth-child(2) {
  opacity: 0;
}

.tg-burger.is-active .tg-burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== MOBILE NAV ========== */

.tg-mobile-nav {
  display: none;
  position: fixed;
  top: var(--tg-header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--tg-white);
  padding: 24px;
  overflow-y: auto;
  z-index: 999;
}

.tg-mobile-nav.is-visible {
  display: block;
}

.tg-mobile-nav__link {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--tg-text);
  border-bottom: 1px solid var(--tg-border);
  text-decoration: none;
}

.tg-mobile-nav__link:hover {
  color: var(--tg-accent);
}

.tg-mobile-nav__group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--tg-primary);
  border-bottom: 1px solid var(--tg-border);
  cursor: pointer;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  text-align: left;
}

.tg-mobile-nav__group-title svg {
  width: 18px;
  height: 18px;
  transition: transform var(--tg-transition);
}

.tg-mobile-nav__group-title.is-expanded svg {
  transform: rotate(180deg);
}

.tg-mobile-nav__sub {
  display: none;
  padding-left: 16px;
}

.tg-mobile-nav__sub.is-visible {
  display: block;
}

.tg-mobile-nav__sub a {
  display: block;
  padding: 10px 0;
  font-size: 1rem;
  color: var(--tg-text-light);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.tg-mobile-nav__sub a:hover {
  color: var(--tg-accent);
}

.tg-mobile-nav__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding: 14px;
  background: var(--tg-accent);
  color: var(--tg-white);
  border-radius: var(--tg-radius);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
}

/* ========== HERO ========== */

.tg-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--tg-white);
  margin-top: var(--tg-header-h);
  overflow: hidden;
}

.tg-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tg-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--tg-overlay);
}

.tg-hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 80px 24px 120px;
}

.tg-hero__badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(245, 158, 11, 0.2);
  color: var(--tg-warm);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.tg-hero__title {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--tg-white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.tg-hero__subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.7;
}

.tg-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== BOOKING STRIP ========== */

.tg-booking-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(255, 255, 255, 0.97);
  border-top: 3px solid var(--tg-accent);
  padding: 20px 0;
}

.tg-booking-strip__inner {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  max-width: var(--tg-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.tg-booking-strip__field {
  flex: 1;
  min-width: 0;
}

.tg-booking-strip__field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--tg-text-light);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.tg-booking-strip__field input,
.tg-booking-strip__field select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--tg-border);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--tg-text);
  background: var(--tg-white);
  transition: border-color var(--tg-transition);
}

.tg-booking-strip__field input:focus,
.tg-booking-strip__field select:focus {
  outline: none;
  border-color: var(--tg-accent);
}

.tg-booking-strip .tg-btn {
  flex-shrink: 0;
  padding: 10px 28px;
  height: 42px;
}

/* ========== PAGE HERO (subpages) ========== */

.tg-page-hero {
  background: var(--tg-primary);
  color: var(--tg-white);
  padding: 100px 0 60px;
  margin-top: var(--tg-header-h);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tg-page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.tg-page-hero__title {
  font-size: 2.8rem;
  color: var(--tg-white);
  margin-bottom: 12px;
}

.tg-page-hero__subtitle {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

.tg-page-hero--image {
  background-size: cover;
  background-position: center;
  position: relative;
}

.tg-page-hero--image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--tg-overlay);
}

.tg-page-hero--image .tg-container {
  position: relative;
  z-index: 2;
}

/* ========== BREADCRUMBS ========== */

.tg-breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.tg-breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
}

.tg-breadcrumbs a:hover {
  color: var(--tg-white);
}

.tg-breadcrumbs span {
  color: rgba(255, 255, 255, 0.5);
}

.tg-breadcrumbs .tg-breadcrumbs__current {
  color: var(--tg-warm);
}

/* ========== SERVICE CARDS ========== */

.tg-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tg-service-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--tg-white);
  border-radius: var(--tg-radius-lg);
  box-shadow: var(--tg-shadow);
  transition: transform var(--tg-transition), box-shadow var(--tg-transition);
}

.tg-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tg-shadow-lg);
}

.tg-service-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--tg-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tg-service-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--tg-accent);
}

.tg-service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.tg-service-card p {
  color: var(--tg-text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ========== DESTINATION CARDS ========== */

.tg-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tg-dest-card {
  border-radius: var(--tg-radius-lg);
  overflow: hidden;
  background: var(--tg-white);
  box-shadow: var(--tg-shadow);
  transition: transform var(--tg-transition), box-shadow var(--tg-transition);
}

.tg-dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tg-shadow-lg);
}

.tg-dest-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tg-dest-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tg-dest-card:hover .tg-dest-card__image img {
  transform: scale(1.08);
}

.tg-dest-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--tg-warm);
  color: var(--tg-primary);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 6px;
}

.tg-dest-card__body {
  padding: 24px;
}

.tg-dest-card__body h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.tg-dest-card__body p {
  color: var(--tg-text-light);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.tg-dest-card__meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--tg-text-light);
  margin-bottom: 16px;
}

.tg-dest-card__meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ========== TOUR CARDS ========== */

.tg-tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tg-tour-card {
  border-radius: var(--tg-radius-lg);
  overflow: hidden;
  background: var(--tg-white);
  box-shadow: var(--tg-shadow);
  transition: transform var(--tg-transition), box-shadow var(--tg-transition);
}

.tg-tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tg-shadow-lg);
}

.tg-tour-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.tg-tour-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tg-tour-card__price {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--tg-accent);
  color: var(--tg-white);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 8px 16px;
  border-radius: 6px;
}

.tg-tour-card__price small {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.85;
}

.tg-tour-card__body {
  padding: 24px;
}

.tg-tour-card__body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.tg-tour-card__duration {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--tg-accent);
  font-weight: 600;
  margin-bottom: 10px;
}

.tg-tour-card__body p {
  color: var(--tg-text-light);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.tg-tour-card__includes {
  margin-bottom: 16px;
}

.tg-tour-card__includes li {
  padding: 4px 0;
  font-size: 0.9rem;
  color: var(--tg-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tg-tour-card__includes li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--tg-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ========== FLIGHT CARDS ========== */

.tg-flight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tg-flight-card {
  display: flex;
  align-items: center;
  background: var(--tg-white);
  border: 1px solid var(--tg-border);
  border-radius: var(--tg-radius);
  padding: 24px;
  transition: border-color var(--tg-transition), box-shadow var(--tg-transition);
}

.tg-flight-card:hover {
  border-color: var(--tg-accent);
  box-shadow: var(--tg-shadow);
}

.tg-flight-card__route {
  flex: 1;
}

.tg-flight-card__cities {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.tg-flight-card__city {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--tg-primary);
}

.tg-flight-card__arrow {
  color: var(--tg-accent);
  font-size: 1.2rem;
}

.tg-flight-card__details {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--tg-text-light);
}

.tg-flight-card__pricing {
  text-align: right;
  flex-shrink: 0;
  padding-left: 24px;
}

.tg-flight-card__pricing .tg-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--tg-accent);
  display: block;
  margin-bottom: 8px;
}

.tg-flight-card__pricing .tg-price small {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--tg-text-light);
}

/* ========== CRUISE CARDS ========== */

.tg-cruise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.tg-cruise-card {
  border-radius: var(--tg-radius-lg);
  overflow: hidden;
  background: var(--tg-white);
  box-shadow: var(--tg-shadow);
}

.tg-cruise-card__image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.tg-cruise-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tg-cruise-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--tg-primary);
  color: var(--tg-white);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 6px;
}

.tg-cruise-card__body {
  padding: 28px;
}

.tg-cruise-card__body h3 {
  margin-bottom: 12px;
}

.tg-cruise-card__meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.tg-cruise-card__meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--tg-text-light);
}

.tg-cruise-card__itinerary {
  margin-bottom: 16px;
}

.tg-cruise-card__itinerary h4 {
  font-size: 0.9rem;
  color: var(--tg-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.tg-cruise-card__itinerary p {
  font-size: 0.95rem;
  color: var(--tg-text);
  margin-bottom: 0;
}

.tg-cruise-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--tg-border);
}

.tg-cruise-card__price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--tg-accent);
}

.tg-cruise-card__price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--tg-text-light);
  display: block;
}

/* ========== SEARCH FORM ========== */

.tg-search-form {
  background: var(--tg-white);
  border-radius: var(--tg-radius-lg);
  padding: 32px;
  box-shadow: var(--tg-shadow-lg);
  margin-bottom: 48px;
}

.tg-search-form h3 {
  margin-bottom: 20px;
  text-align: center;
}

.tg-search-form__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.tg-search-form__grid--wide {
  grid-template-columns: repeat(5, 1fr);
}

/* ========== STATS BAR ========== */

.tg-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 48px 0;
}

.tg-stats__item {
  text-align: center;
}

.tg-stats__number {
  font-family: var(--tg-font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--tg-accent);
  line-height: 1.1;
  margin-bottom: 8px;
}

.tg-stats__label {
  font-size: 0.95rem;
  color: var(--tg-text-light);
}

.tg-section--dark .tg-stats__number {
  color: var(--tg-warm);
}

.tg-section--dark .tg-stats__label {
  color: rgba(255, 255, 255, 0.75);
}

/* ========== PROCESS STEPS ========== */

.tg-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: process-step;
}

.tg-process-step {
  text-align: center;
  counter-increment: process-step;
}

.tg-process-step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--tg-accent);
  color: var(--tg-white);
  font-family: var(--tg-font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
}

.tg-process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.tg-process-step p {
  color: var(--tg-text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ========== TESTIMONIALS ========== */

.tg-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tg-testimonial {
  background: var(--tg-white);
  border-radius: var(--tg-radius-lg);
  padding: 32px;
  box-shadow: var(--tg-shadow);
  position: relative;
}

.tg-testimonial__quote {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  line-height: 1;
  color: rgba(8, 145, 178, 0.12);
  font-family: Georgia, serif;
}

.tg-testimonial__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: var(--tg-warm);
}

.tg-testimonial__stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.tg-testimonial__text {
  font-size: 1rem;
  color: var(--tg-text);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.7;
}

.tg-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tg-testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.tg-testimonial__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--tg-primary);
}

.tg-testimonial__role {
  font-size: 0.85rem;
  color: var(--tg-text-light);
}

/* ========== FAQ ========== */

.tg-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.tg-faq-item {
  border: 1px solid var(--tg-border);
  border-radius: var(--tg-radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.tg-faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 24px;
  background: var(--tg-white);
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--tg-primary);
  cursor: pointer;
  transition: background var(--tg-transition);
}

.tg-faq-item__question:hover {
  background: var(--tg-bg-alt);
}

.tg-faq-item__question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--tg-accent);
  transition: transform var(--tg-transition);
}

.tg-faq-item.is-open .tg-faq-item__question svg {
  transform: rotate(180deg);
}

.tg-faq-item__answer {
  display: none;
  padding: 0 24px 18px;
  color: var(--tg-text-light);
  line-height: 1.7;
}

.tg-faq-item.is-open .tg-faq-item__answer {
  display: block;
}

.tg-faq-item__answer a {
  color: var(--tg-accent);
  text-decoration: underline;
}

/* ========== CTA SECTION ========== */

.tg-cta {
  background: linear-gradient(135deg, var(--tg-primary) 0%, #143659 100%);
  color: var(--tg-white);
  padding: 80px 0;
  text-align: center;
}

.tg-cta h2 {
  color: var(--tg-white);
  margin-bottom: 16px;
}

.tg-cta p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 32px;
}

.tg-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== NEWSLETTER ========== */

.tg-newsletter {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.tg-newsletter input {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--tg-radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--tg-white);
  font-size: 1rem;
}

.tg-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.tg-newsletter input:focus {
  outline: none;
  border-color: var(--tg-accent2);
}

/* ========== FORMS ========== */

.tg-form {
  max-width: 640px;
  margin: 0 auto;
}

.tg-form--wide {
  max-width: 100%;
}

.tg-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.tg-form__group {
  margin-bottom: 16px;
}

.tg-form__group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--tg-text);
  margin-bottom: 6px;
}

.tg-form__group input,
.tg-form__group select,
.tg-form__group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--tg-border);
  border-radius: 6px;
  font-size: 1rem;
  color: var(--tg-text);
  background: var(--tg-white);
  transition: border-color var(--tg-transition), box-shadow var(--tg-transition);
}

.tg-form__group input:focus,
.tg-form__group select:focus,
.tg-form__group textarea:focus {
  outline: none;
  border-color: var(--tg-accent);
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.12);
}

.tg-form__group textarea {
  min-height: 120px;
  resize: vertical;
}

.tg-form__group input.tg-error,
.tg-form__group select.tg-error,
.tg-form__group textarea.tg-error {
  border-color: var(--tg-error);
}

.tg-form__error-msg {
  font-size: 0.8rem;
  color: var(--tg-error);
  margin-top: 4px;
  display: none;
}

.tg-form__group.has-error .tg-form__error-msg {
  display: block;
}

/* ========== CONTACT D: SPLIT DARK/LIGHT ========== */

.tg-contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.tg-contact-dark {
  background: var(--tg-primary);
  color: var(--tg-white);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tg-contact-dark h2 {
  color: var(--tg-white);
  margin-bottom: 24px;
}

.tg-contact-dark p {
  opacity: 0.8;
  margin-bottom: 32px;
}

.tg-contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.tg-contact-info-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(8, 145, 178, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tg-contact-info-item__icon svg {
  width: 20px;
  height: 20px;
  color: var(--tg-accent2);
}

.tg-contact-info-item__text h4 {
  color: var(--tg-white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.tg-contact-info-item__text p {
  font-size: 0.95rem;
  opacity: 0.75;
  margin-bottom: 0;
}

.tg-contact-info-item__text a {
  color: var(--tg-accent2);
}

.tg-contact-light {
  background: var(--tg-bg-alt);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tg-contact-light h3 {
  margin-bottom: 24px;
}

.tg-contact-light .tg-form {
  max-width: 100%;
}

/* ========== FOOTER ========== */

.tg-footer {
  background: var(--tg-primary);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 64px;
}

.tg-footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--tg-transition);
}

.tg-footer a:hover {
  color: var(--tg-accent2);
}

.tg-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}

.tg-footer__brand p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.tg-footer__social {
  display: flex;
  gap: 12px;
}

.tg-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background var(--tg-transition);
}

.tg-footer__social a:hover {
  background: var(--tg-accent);
}

.tg-footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  color: var(--tg-white);
}

.tg-footer__heading {
  font-family: var(--tg-font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--tg-white);
  margin-bottom: 20px;
}

.tg-footer__links li {
  margin-bottom: 10px;
}

.tg-footer__links a {
  font-size: 0.9rem;
}

.tg-footer__contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  align-items: flex-start;
}

.tg-footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--tg-accent2);
}

.tg-footer__disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  font-size: 0.8rem;
  opacity: 0.6;
  line-height: 1.6;
  text-align: center;
}

.tg-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.tg-footer__bottom-links {
  display: flex;
  gap: 24px;
}

.tg-footer__bottom-links a {
  font-size: 0.85rem;
}

.tg-footer__badges {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ========== COOKIE BANNER ========== */

.tg-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--tg-primary);
  color: var(--tg-white);
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.tg-cookie.is-visible {
  transform: translateY(0);
}

.tg-cookie__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--tg-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.tg-cookie__text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.tg-cookie__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.tg-cookie__actions .tg-btn {
  padding: 8px 24px;
  font-size: 0.9rem;
}

/* ========== BACK TO TOP ========== */

.tg-back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--tg-accent);
  color: var(--tg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--tg-transition);
  z-index: 998;
  border: none;
  cursor: pointer;
}

.tg-back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tg-back-top:hover {
  background: var(--tg-accent2);
}

.tg-back-top svg {
  width: 20px;
  height: 20px;
}

/* ========== THANK YOU / 404 ========== */

.tg-message-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  margin-top: var(--tg-header-h);
}

.tg-message-page__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--tg-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tg-message-page__icon svg {
  width: 40px;
  height: 40px;
  color: var(--tg-accent);
}

.tg-message-page h1 {
  margin-bottom: 16px;
}

.tg-message-page p {
  color: var(--tg-text-light);
  max-width: 500px;
  margin: 0 auto 32px;
}

.tg-message-page__code {
  font-family: var(--tg-font-heading);
  font-size: 6rem;
  font-weight: 800;
  color: var(--tg-accent);
  line-height: 1;
  margin-bottom: 12px;
}

.tg-message-page__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ========== LEGAL PAGES ========== */

.tg-legal {
  padding: 60px 0;
}

.tg-legal__content {
  max-width: 800px;
  margin: 0 auto;
}

.tg-legal__content h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--tg-border);
}

.tg-legal__content h3 {
  font-size: 1.2rem;
  margin-top: 24px;
  margin-bottom: 12px;
}

.tg-legal__content p {
  color: var(--tg-text);
  margin-bottom: 16px;
}

.tg-legal__content ul,
.tg-legal__content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.tg-legal__content li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--tg-text);
}

.tg-legal__content ol li {
  list-style: decimal;
}

.tg-legal__meta {
  font-size: 0.9rem;
  color: var(--tg-text-light);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--tg-border);
}

/* ========== ABOUT PAGE ========== */

.tg-about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.tg-about-story__content h2 {
  margin-bottom: 20px;
}

.tg-about-story__visual {
  background: linear-gradient(135deg, var(--tg-accent), var(--tg-accent2));
  border-radius: var(--tg-radius-lg);
  padding: 48px;
  color: var(--tg-white);
  text-align: center;
}

.tg-about-story__visual .tg-stats__number {
  color: var(--tg-white);
  font-size: 3rem;
}

.tg-about-story__visual .tg-stats__label {
  color: rgba(255, 255, 255, 0.85);
}

.tg-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tg-value-card {
  padding: 32px;
  background: var(--tg-white);
  border-radius: var(--tg-radius-lg);
  box-shadow: var(--tg-shadow);
  text-align: center;
}

.tg-value-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  background: var(--tg-bg-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tg-value-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--tg-accent);
}

.tg-value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.tg-value-card p {
  color: var(--tg-text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.tg-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.tg-team-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--tg-white);
  border-radius: var(--tg-radius-lg);
  box-shadow: var(--tg-shadow);
}

.tg-team-card__avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--tg-accent);
  color: var(--tg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--tg-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.tg-team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.tg-team-card__title {
  font-size: 0.85rem;
  color: var(--tg-accent);
  font-weight: 600;
  margin-bottom: 10px;
}

.tg-team-card p {
  color: var(--tg-text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ========== TIMELINE ========== */

.tg-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}

.tg-timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--tg-border);
}

.tg-timeline__item {
  position: relative;
  padding-bottom: 32px;
}

.tg-timeline__item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--tg-accent);
  border-radius: 50%;
  border: 3px solid var(--tg-bg-alt);
}

.tg-timeline__year {
  font-family: var(--tg-font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--tg-accent);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.tg-timeline__item h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.tg-timeline__item p {
  color: var(--tg-text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ========== SEASONAL OFFERS ========== */

.tg-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.tg-offer-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: var(--tg-white);
  border-radius: var(--tg-radius-lg);
  overflow: hidden;
  box-shadow: var(--tg-shadow);
  transition: box-shadow var(--tg-transition);
}

.tg-offer-card:hover {
  box-shadow: var(--tg-shadow-lg);
}

.tg-offer-card__image {
  height: 100%;
  min-height: 200px;
}

.tg-offer-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tg-offer-card__body {
  padding: 24px;
}

.tg-offer-card__season {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.tg-offer-card__season--summer { background: #fef3c7; color: #92400e; }
.tg-offer-card__season--winter { background: #dbeafe; color: #1e40af; }
.tg-offer-card__season--spring { background: #dcfce7; color: #166534; }
.tg-offer-card__season--fall { background: #ffedd5; color: #9a3412; }

.tg-offer-card__body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.tg-offer-card__body p {
  color: var(--tg-text-light);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.tg-offer-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tg-offer-card__price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--tg-accent);
}

.tg-offer-card__price small {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--tg-text-light);
}

/* ========== FAQ CATEGORIES ========== */

.tg-faq-cats {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tg-faq-cat {
  padding: 8px 20px;
  border: 1px solid var(--tg-border);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--tg-text);
  cursor: pointer;
  transition: all var(--tg-transition);
  background: var(--tg-white);
}

.tg-faq-cat:hover,
.tg-faq-cat.is-active {
  background: var(--tg-accent);
  color: var(--tg-white);
  border-color: var(--tg-accent);
}

/* ========== ANIMATION ========== */

.tg-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.tg-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1200px) {
  .tg-footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .tg-footer__grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  .tg-nav,
  .tg-header__cta {
    display: none;
  }

  .tg-burger {
    display: flex;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }

  .tg-hero { min-height: 500px; }
  .tg-hero__title { font-size: 2.4rem; }
  .tg-hero__content { padding: 60px 24px 140px; }

  .tg-booking-strip__inner {
    flex-wrap: wrap;
  }
  .tg-booking-strip__field {
    flex: 1 1 calc(50% - 6px);
  }

  .tg-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tg-dest-grid,
  .tg-tour-grid,
  .tg-testimonial-grid,
  .tg-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tg-flight-grid {
    grid-template-columns: 1fr;
  }

  .tg-process-grid,
  .tg-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .tg-about-story {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tg-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tg-contact-split {
    grid-template-columns: 1fr;
  }

  .tg-contact-dark,
  .tg-contact-light {
    padding: 40px 24px;
  }

  .tg-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .tg-page-hero__title { font-size: 2.2rem; }

  .tg-search-form__grid,
  .tg-search-form__grid--wide {
    grid-template-columns: repeat(2, 1fr);
  }

  .tg-cruise-grid {
    grid-template-columns: 1fr;
  }

  .tg-offer-grid {
    grid-template-columns: 1fr;
  }

  .tg-offer-card {
    grid-template-columns: 180px 1fr;
  }
}

@media (max-width: 768px) {
  .tg-section { padding: 56px 0; }

  .tg-hero__title { font-size: 2rem; }
  .tg-hero__subtitle { font-size: 1rem; }
  .tg-hero { min-height: 440px; }

  .tg-booking-strip__field {
    flex: 1 1 100%;
  }

  .tg-booking-strip .tg-btn {
    width: 100%;
  }

  .tg-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tg-dest-grid,
  .tg-tour-grid,
  .tg-testimonial-grid,
  .tg-values-grid {
    grid-template-columns: 1fr;
  }

  .tg-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .tg-stats__number { font-size: 2rem; }

  .tg-process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tg-team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tg-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .tg-footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .tg-footer__bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .tg-page-hero {
    padding: 80px 0 40px;
  }

  .tg-page-hero__title { font-size: 1.8rem; }

  .tg-form__row {
    grid-template-columns: 1fr;
  }

  .tg-search-form__grid,
  .tg-search-form__grid--wide {
    grid-template-columns: 1fr;
  }

  .tg-cookie__inner {
    flex-direction: column;
    text-align: center;
  }

  .tg-offer-card {
    grid-template-columns: 1fr;
  }

  .tg-offer-card__image {
    min-height: 160px;
  }

  .tg-flight-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .tg-flight-card__pricing {
    text-align: left;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    justify-content: space-between;
  }

  .tg-newsletter {
    flex-direction: column;
  }

  .tg-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .tg-message-page__actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  body { font-size: 15px; }

  .tg-container { padding: 0 16px; }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.2rem; }

  .tg-hero__title { font-size: 1.7rem; }
  .tg-hero__content { padding: 48px 16px 130px; }

  .tg-hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .tg-stats { grid-template-columns: 1fr 1fr; }

  .tg-faq-item__question {
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .tg-back-top {
    bottom: 20px;
    right: 20px;
  }

  .tg-message-page__code { font-size: 4rem; }

  .tg-search-form { padding: 20px; }

  .tg-contact-dark,
  .tg-contact-light {
    padding: 32px 16px;
  }
}

@media print {
  .tg-header,
  .tg-cookie,
  .tg-back-top,
  .tg-burger,
  .tg-mobile-nav {
    display: none;
  }

  .tg-hero {
    margin-top: 0;
    min-height: auto;
    color: var(--tg-text);
  }

  .tg-hero__bg { display: none; }

  .tg-hero__title,
  .tg-hero__subtitle {
    color: var(--tg-text);
  }

  .tg-section { padding: 24px 0; }

  .tg-footer { padding-top: 24px; }

  body { font-size: 12pt; }
  a { text-decoration: underline; }
}
