/* Transfers.ski Lovable-style redesign — scoped under body.ts-redesign */

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

body.ts-redesign {
  --ts-primary: #2563eb;
  --ts-primary-hover: #1d4ed8;
  --ts-primary-light: #dbeafe;
  --ts-bg: #f8fafc;
  --ts-bg-dark: #0f172a;
  --ts-text: #1e293b;
  --ts-text-muted: #64748b;
  --ts-border: #e2e8f0;
  --ts-white: #ffffff;
  --ts-radius: 12px;
  --ts-radius-lg: 16px;
  --ts-radius-xl: 24px;
  --ts-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  --ts-shadow-md: 0 4px 24px rgba(15, 23, 42, 0.08);
  --ts-shadow-lg: 0 8px 40px rgba(15, 23, 42, 0.12);
  --ts-glass: rgba(255, 255, 255, 0.82);
  --ts-glass-border: rgba(255, 255, 255, 0.5);
  --ts-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ts-container: 1200px;
  --ts-header-h: 72px;
  margin: 0;
  font-family: var(--ts-font) !important;
  color: var(--ts-text);
  background: var(--ts-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.ts-redesign h1,
body.ts-redesign h2,
body.ts-redesign h3,
body.ts-redesign h4,
body.ts-redesign h5,
body.ts-redesign h6 {
  font-family: var(--ts-font) !important;
  font-weight: 700;
  line-height: 1.2;
}

body.ts-redesign .form-control,
body.ts-redesign .ts-field input,
body.ts-redesign .ts-field select {
  display: block;
  width: 100%;
  height: auto;
  padding: 12px 14px;
  font-size: 0.9rem;
  font-family: var(--ts-font) !important;
  line-height: 1.4;
  color: var(--ts-text);
  background-color: var(--ts-white);
  border: 1px solid var(--ts-border);
  border-radius: var(--ts-radius);
  box-shadow: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

body.ts-redesign .ts-booking-card .form-control {
  appearance: auto;
}

body.ts-redesign .form-control:focus,
body.ts-redesign .ts-field input:focus,
body.ts-redesign .ts-field select:focus {
  border-color: var(--ts-primary);
  box-shadow: 0 0 0 3px var(--ts-primary-light);
  outline: none;
}

body.ts-redesign .ts-section a.ts-service-card,
body.ts-redesign .ts-section a.ts-dest-card {
  color: inherit;
  text-decoration: none;
}

body.ts-redesign .ts-section a.ts-service-card:hover,
body.ts-redesign .ts-section a.ts-dest-card:hover {
  text-decoration: none;
}

body.ts-redesign .ts-service-card__list {
  list-style: none;
  padding-left: 0;
}

body.ts-redesign .ts-service-card__list li {
  list-style: none;
}

body.ts-redesign img {
  max-width: 100%;
  height: auto;
}

body.ts-redesign .ftco_navbar,
.ts-redesign #ftco-navbar {
  display: none !important;
}

.ts-redesign .hero-wrap {
  display: none !important;
}

.ts-redesign .ftco-footer {
  display: none !important;
}

/* Header */
.ts-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--ts-header-h);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ts-border);
}

.ts-header__inner {
  max-width: var(--ts-container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ts-logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ts-text);
  text-decoration: none;
  white-space: nowrap;
}

.ts-logo span {
  color: var(--ts-primary);
}

.ts-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.ts-nav__link,
.ts-nav__toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ts-text);
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.ts-nav__link:hover,
.ts-nav__toggle:hover,
.ts-nav__link.active {
  background: var(--ts-bg);
  color: var(--ts-primary);
}

.ts-nav__dropdown {
  position: relative;
}

.ts-nav__menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--ts-white);
  border: 1px solid var(--ts-border);
  border-radius: var(--ts-radius);
  box-shadow: var(--ts-shadow-md);
  padding: 8px;
  z-index: 100;
}

.ts-nav__dropdown.open .ts-nav__menu {
  display: block;
}

.ts-nav__menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--ts-text);
  text-decoration: none;
  font-size: 0.875rem;
}

.ts-nav__menu a:hover {
  background: var(--ts-bg);
  color: var(--ts-primary);
}

.ts-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ts-header__login {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .ts-header__login {
    display: none;
  }
}

.ts-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.ts-btn--primary {
  background: var(--ts-primary);
  color: var(--ts-white);
}

.ts-btn--primary:hover {
  background: var(--ts-primary-hover);
  color: var(--ts-white);
}

.ts-btn--outline {
  background: transparent;
  border: 2px solid var(--ts-white);
  color: var(--ts-white);
}

.ts-btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--ts-white);
}

.ts-btn--white {
  background: var(--ts-white);
  color: var(--ts-primary);
}

.ts-btn--white:hover {
  background: #f1f5f9;
  color: var(--ts-primary-hover);
}

.ts-btn--outline-blue {
  background: transparent;
  border: 2px solid var(--ts-primary);
  color: var(--ts-primary);
}

.ts-btn--outline-blue:hover {
  background: var(--ts-primary-light);
  color: var(--ts-primary);
}

.ts-btn--sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.ts-btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.ts-btn--block {
  width: 100%;
}

.ts-lang {
  position: relative;
}

.ts-lang__toggle {
  width: 40px;
  height: 28px;
  border: 1px solid var(--ts-border);
  border-radius: 4px;
  padding: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
}

.ts-lang__toggle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ts-lang__menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--ts-white);
  border: 1px solid var(--ts-border);
  border-radius: var(--ts-radius);
  box-shadow: var(--ts-shadow-md);
  padding: 8px;
  min-width: 80px;
}

.ts-lang.open .ts-lang__menu {
  display: block;
}

.ts-lang__menu a {
  display: block;
  padding: 6px 10px;
  text-decoration: none;
  color: var(--ts-text);
  font-size: 0.8rem;
}

.ts-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.ts-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ts-text);
  border-radius: 2px;
}

/* Hero */
.ts-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--ts-header-h) + 40px) 24px 60px;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.ts-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, rgba(37, 99, 235, 0.25) 100%);
}

.ts-hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
}

.ts-hero--short {
  min-height: 280px;
  padding-top: calc(var(--ts-header-h) + 32px);
  padding-bottom: 40px;
}

.ts-hero--short .ts-hero__title {
  font-size: 2rem;
}

.ts-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--ts-white);
  margin: 0 0 16px;
  line-height: 1.15;
}

.ts-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Booking card — solid white on homepage (Lovable) */
.ts-booking-card {
  text-align: left;
  max-width: 960px;
  margin: 0 auto;
}

.ts-hero .ts-booking-card {
  background: var(--ts-white);
  backdrop-filter: none;
  border: none;
  border-radius: var(--ts-radius-lg);
  padding: 32px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
}

.ts-booking-card__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.ts-booking-card__row--2 {
  grid-template-columns: 1fr 1fr;
}

.ts-booking-card__row--4 {
  grid-template-columns: 1fr 80px 80px;
}

.ts-field {
  margin-bottom: 16px;
}

.ts-booking-card__row .ts-field {
  margin-bottom: 0;
}

.ts-field--icon {
  position: relative;
}

.ts-field--icon input,
.ts-field--icon select {
  padding-left: 42px;
  background-repeat: no-repeat;
  background-position: 14px center;
  background-size: 18px 18px;
}

.ts-field--from input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%232563eb'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15 11a3 3 0 11-6 0 3 3 0 016 0z'/%3E%3C/svg%3E");
}

.ts-field--to input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2316a34a'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15 11a3 3 0 11-6 0 3 3 0 016 0z'/%3E%3C/svg%3E");
}

.ts-field--pax select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0z'/%3E%3C/svg%3E");
}

.ts-btn--search {
  border-radius: var(--ts-radius);
  font-size: 1.05rem;
  padding: 16px 32px;
}

.ts-trip-type {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}

.ts-trip-type label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  margin: 0;
}

.ts-trip-type input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--ts-primary);
}

.ts-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ts-text);
  margin-bottom: 6px;
}

.ts-field input,
.ts-field select,
.ts-field .form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--ts-border);
  border-radius: var(--ts-radius);
  font-size: 0.9rem;
  font-family: var(--ts-font);
  background: var(--ts-white);
  color: var(--ts-text);
}

.ts-field input:focus,
.ts-field select:focus {
  outline: none;
  border-color: var(--ts-primary);
  box-shadow: 0 0 0 3px var(--ts-primary-light);
}

.ts-check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.ts-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  cursor: pointer;
}

.ts-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--ts-primary);
}

.ts-flex-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--ts-primary-light);
  color: var(--ts-primary);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Sections */
.ts-section {
  padding: 72px 24px;
}

.ts-section--white {
  background: var(--ts-white);
}

.ts-section--gray {
  background: var(--ts-bg);
}

.ts-container {
  max-width: var(--ts-container);
  margin: 0 auto;
}

.ts-section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.ts-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--ts-primary-light);
  color: var(--ts-primary);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.ts-section__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ts-text);
}

.ts-section__subtitle {
  font-size: 1rem;
  color: var(--ts-text-muted);
  margin: 0;
}

.ts-section__title--left,
.ts-section__subtitle--left {
  text-align: left;
}

.ts-section__cta-row {
  text-align: center;
  margin-top: 40px;
}

.ts-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ts-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ts-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Service card */
.ts-service-card {
  background: var(--ts-white);
  border: 1px solid var(--ts-border);
  border-radius: var(--ts-radius-lg);
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.ts-service-card:hover {
  box-shadow: var(--ts-shadow-md);
  transform: translateY(-2px);
  color: inherit;
  text-decoration: none;
}

.ts-service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--ts-primary-light);
  border-radius: var(--ts-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.ts-service-card__icon-wrap {
  margin-bottom: 16px;
}

.ts-service-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.ts-service-card__desc {
  font-size: 0.875rem;
  color: var(--ts-text-muted);
  margin: 0 0 16px;
}

.ts-service-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ts-service-card__list li {
  font-size: 0.8rem;
  color: var(--ts-primary);
  padding: 4px 0;
}

.ts-service-card__list li::before {
  content: '• ';
}

/* Destination card */
.ts-dest-card {
  background: var(--ts-white);
  border-radius: var(--ts-radius-lg);
  overflow: hidden;
  box-shadow: var(--ts-shadow);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.ts-dest-card:hover {
  box-shadow: var(--ts-shadow-md);
  transform: translateY(-3px);
  color: inherit;
  text-decoration: none;
}

.ts-dest-card__img {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.ts-dest-card__price {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ts-primary);
  color: var(--ts-white);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.ts-dest-card__country {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.ts-dest-card__body {
  padding: 20px;
}

.ts-dest-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.ts-dest-card__intro {
  font-size: 0.85rem;
  color: var(--ts-text-muted);
  margin: 0 0 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ts-dest-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ts-primary);
}

/* Overlay destination cards (homepage) */
.ts-dest-grid {
  gap: 20px;
}

.ts-dest-card--overlay {
  position: relative;
  display: block;
  border-radius: var(--ts-radius-lg);
  overflow: hidden;
  min-height: 260px;
  text-decoration: none;
  color: var(--ts-white);
  box-shadow: var(--ts-shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}

.ts-dest-card--overlay:hover {
  box-shadow: var(--ts-shadow-lg);
  transform: translateY(-4px);
  color: var(--ts-white);
  text-decoration: none;
}

.ts-dest-card--overlay .ts-dest-card__img {
  position: absolute;
  inset: 0;
  height: 100%;
  min-height: 260px;
}

.ts-dest-card--overlay .ts-dest-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.55) 55%, rgba(15, 23, 42, 0.88) 100%);
}

.ts-dest-card--overlay .ts-dest-card__price {
  position: absolute;
  top: 14px;
  right: 14px;
  left: auto;
  background: var(--ts-primary);
  color: var(--ts-white);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
}

.ts-dest-card--overlay .ts-dest-card__country {
  position: static;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.2);
  color: var(--ts-white);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 8px;
  backdrop-filter: blur(4px);
}

.ts-dest-card--overlay .ts-dest-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--ts-white);
}

.ts-dest-card--overlay .ts-dest-card__intro {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 10px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ts-dest-card--overlay .ts-dest-card__link {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.8rem;
}

/* Accommodation card */
.ts-acc-card {
  background: var(--ts-white);
  border: 1px solid var(--ts-border);
  border-radius: var(--ts-radius-lg);
  padding: 32px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  box-shadow: var(--ts-shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}

.ts-acc-card:hover {
  box-shadow: var(--ts-shadow-md);
  transform: translateY(-2px);
}

.ts-acc-card__icon {
  font-size: 2.75rem;
  margin-bottom: 12px;
  line-height: 1;
}

.ts-acc-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.ts-acc-card__desc {
  font-size: 0.875rem;
  color: var(--ts-text-muted);
  line-height: 1.55;
  margin: 0 0 auto;
  flex: 1;
}

.ts-acc-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--ts-border);
}

.ts-acc-card__emoji {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.ts-acc-card__rating {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.ts-acc-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ts-primary);
  margin: 16px 0;
}

.ts-acc-card__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ts-text);
  margin: 0;
  text-align: left;
}

/* Why Choose split layout */
.ts-why-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.ts-why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ts-why-split__media {
  border-radius: var(--ts-radius-lg);
  min-height: 480px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--ts-shadow-lg);
}

.ts-why-split__content .ts-section__title {
  margin-bottom: 8px;
}

.ts-why-split__content .ts-section__subtitle {
  margin-bottom: 28px;
}

.ts-why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.ts-why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ts-why-feature__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--ts-radius);
  background: var(--ts-primary-light);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
}

.ts-why-feature__icon--shield {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%232563eb'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z'/%3E%3C/svg%3E");
}

.ts-why-feature__icon--clock {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%232563eb'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E");
}

.ts-why-feature__icon--van {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%232563eb'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7h8m-8 4h4m-6 8h12a2 2 0 002-2V9a2 2 0 00-2-2H6a2 2 0 00-2 2v8a2 2 0 002 2z'/%3E%3C/svg%3E");
}

.ts-why-feature__icon--snow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%232563eb'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 3v18m-4-4l4 4 4-4M8 7l4-4 4 4'/%3E%3C/svg%3E");
}

.ts-why-feature__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 4px;
}

.ts-why-feature__desc {
  font-size: 0.875rem;
  color: var(--ts-text-muted);
  margin: 0;
  line-height: 1.5;
}

.ts-stats--inline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px 0 0;
  border-top: 1px solid var(--ts-border);
  text-align: left;
}

.ts-stats--inline .ts-stat__num {
  font-size: 2rem;
}

/* Feature card (legacy) */
.ts-feature-card {
  text-align: center;
  padding: 24px;
}

.ts-feature-card__icon {
  width: 56px;
  height: 56px;
  background: var(--ts-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

.ts-feature-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.ts-feature-card__desc {
  font-size: 0.875rem;
  color: var(--ts-text-muted);
  margin: 0;
}

/* Stats */
.ts-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
  padding: 48px 0;
}

.ts-stat__num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ts-primary);
}

.ts-stat__label {
  font-size: 0.9rem;
  color: var(--ts-text-muted);
}

/* Testimonial */
.ts-testimonial {
  background: var(--ts-white);
  border: 1px solid var(--ts-border);
  border-radius: var(--ts-radius-lg);
  padding: 28px;
  box-shadow: var(--ts-shadow);
}

.ts-testimonial__stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.ts-testimonial__stars .ts-star {
  color: #f59e0b;
}

.ts-testimonial__quote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ts-text);
  margin: 0 0 20px;
  font-style: italic;
}

.ts-testimonial__author {
  font-weight: 700;
  font-size: 0.9rem;
}

.ts-testimonial__loc {
  font-size: 0.8rem;
  color: var(--ts-text-muted);
}

/* CTA band */
.ts-cta {
  background: linear-gradient(180deg, #2563eb 0%, #38bdf8 100%);
  padding: 72px 24px;
  text-align: center;
}

.ts-cta__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ts-white);
  margin: 0 0 12px;
}

.ts-cta__subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 28px;
}

.ts-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.ts-cta__contact {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.ts-cta__contact a {
  color: var(--ts-white);
}

/* Footer */
.ts-footer {
  background: var(--ts-bg-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 24px 32px;
}

.ts-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--ts-container);
  margin: 0 auto 48px;
}

.ts-footer__brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ts-white);
  margin: 0 0 12px;
}

.ts-footer__brand span {
  color: #60a5fa;
}

.ts-footer__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.ts-footer__social {
  display: flex;
  gap: 12px;
}

.ts-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ts-white);
  text-decoration: none;
}

.ts-footer__heading {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ts-white);
  margin: 0 0 16px;
}

.ts-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ts-footer__links li {
  margin-bottom: 10px;
}

.ts-footer__links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
}

.ts-footer__links a:hover {
  color: var(--ts-white);
}

.ts-footer__bottom {
  max-width: var(--ts-container);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

.ts-footer__bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-left: 16px;
}

/* Location / airport grid */
.ts-loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.ts-loc-grid a {
  display: block;
  padding: 12px 16px;
  background: var(--ts-white);
  border: 1px solid var(--ts-border);
  border-radius: var(--ts-radius);
  color: var(--ts-text);
  text-decoration: none;
  font-size: 0.875rem;
  transition: border-color 0.15s, color 0.15s;
}

.ts-loc-grid a:hover {
  border-color: var(--ts-primary);
  color: var(--ts-primary);
}

/* Hot deal card */
.ts-deal-card {
  display: grid;
  grid-template-columns: 120px 120px 1fr 60px 100px;
  gap: 16px;
  align-items: center;
  background: var(--ts-white);
  border: 1px solid var(--ts-border);
  border-radius: var(--ts-radius);
  padding: 16px 20px;
  margin-bottom: 12px;
}

.ts-deal-card .btn,
.ts-deal-card input[type="submit"] {
  background: var(--ts-primary);
  color: var(--ts-white);
  border: none;
  border-radius: var(--ts-radius);
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
}

/* Page content */
.ts-page-content {
  padding: 40px 24px 72px;
}

.ts-page-content .container {
  max-width: var(--ts-container);
}

.ts-prose {
  max-width: 800px;
  line-height: 1.7;
}

.ts-prose h2,
.ts-prose h3,
.ts-prose h4 {
  margin-top: 1.5em;
}

.ts-card-panel {
  background: var(--ts-white);
  border: 1px solid var(--ts-border);
  border-radius: var(--ts-radius-lg);
  padding: 32px;
  box-shadow: var(--ts-shadow);
}

/* Booking form page */
.ts-redesign .ftco-section.bg-light {
  background: var(--ts-bg) !important;
  padding: 40px 24px 72px !important;
}

.ts-redesign .ftco-section.bg-light > .container {
  max-width: var(--ts-container);
}

.ts-redesign .hotel-single form,
.ts-redesign .ts-booking-full {
  background: var(--ts-white);
  border: 1px solid var(--ts-border);
  border-radius: var(--ts-radius-lg);
  padding: 32px;
  box-shadow: var(--ts-shadow);
}

.ts-redesign .form-control {
  border-radius: var(--ts-radius);
  border-color: var(--ts-border);
  font-family: var(--ts-font);
}

.ts-redesign .btn-primary,
.ts-redesign input.btn-primary {
  background: var(--ts-primary) !important;
  border-color: var(--ts-primary) !important;
  border-radius: 999px !important;
  font-weight: 600;
}

.ts-redesign .btn-primary:hover {
  background: var(--ts-primary-hover) !important;
}

.ts-redesign .table {
  border-radius: var(--ts-radius);
  overflow: hidden;
}

.ts-redesign .table thead th {
  background: var(--ts-bg);
  border-color: var(--ts-border);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Offers page */
.ts-redesign .box {
  background: var(--ts-white);
  border: 1px solid var(--ts-border);
  border-radius: var(--ts-radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--ts-shadow);
}

.ts-redesign .box-info {
  border: none;
}

.ts-redesign .table-shared {
  border-radius: var(--ts-radius);
  overflow: hidden;
}

.ts-redesign .table-shared-head th {
  background: var(--ts-bg);
}

/* Payment */
.ts-redesign .paymentdiv {
  background: var(--ts-white);
  border: 1px solid var(--ts-border);
  border-radius: var(--ts-radius-lg);
  padding: 32px;
  max-width: 520px;
  box-shadow: var(--ts-shadow);
}

.ts-redesign #submit {
  background: var(--ts-primary) !important;
  border-radius: 999px !important;
  padding: 12px 32px !important;
  border: none !important;
  font-weight: 600;
}

/* Contact */
.ts-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.ts-contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.ts-contact-info p {
  margin: 0;
  font-size: 0.9rem;
}

.ts-contact-info span {
  display: block;
  font-weight: 600;
  color: var(--ts-text-muted);
  font-size: 0.8rem;
  margin-bottom: 4px;
}

/* Blog */
.ts-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ts-blog-card {
  background: var(--ts-white);
  border-radius: var(--ts-radius-lg);
  overflow: hidden;
  border: 1px solid var(--ts-border);
  text-decoration: none;
  color: inherit;
  display: block;
}

.ts-blog-card:hover {
  box-shadow: var(--ts-shadow-md);
  color: inherit;
  text-decoration: none;
}

.ts-blog-card__img {
  height: 160px;
  background-size: cover;
  background-position: center;
}

.ts-blog-card__body {
  padding: 20px;
}

/* Reviews */
.ts-review-item {
  background: var(--ts-white);
  border: 1px solid var(--ts-border);
  border-radius: var(--ts-radius-lg);
  padding: 24px;
  margin-bottom: 16px;
}

/* Cookie alert override */
.ts-redesign .cookiealert {
  background: rgba(15, 23, 42, 0.6) !important;
}

/* Mobile nav overlay */
.ts-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--ts-header-h);
  background: var(--ts-white);
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
}

.ts-mobile-nav.open {
  display: block;
}

.ts-mobile-nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--ts-border);
  color: var(--ts-text);
  text-decoration: none;
  font-weight: 500;
}

/* Form2 page - no duplicate hero padding */
.ts-redesign .ts-hero--short + .ts-page-content .ts-booking-page {
  margin-top: -20px;
}

.ts-redesign .wrapper .box,
.ts-redesign .wrapper .container {
  max-width: var(--ts-container);
}

.ts-redesign .content-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ts-text);
}

.ts-redesign .glyphicon {
  display: none;
}

.ts-redesign .table-shared {
  width: 100%;
  border-collapse: collapse;
}

.ts-redesign .table-shared th,
.ts-redesign .table-shared td {
  padding: 12px;
  border: 1px solid var(--ts-border);
}

.ts-redesign .btn-danger {
  background: #dc2626 !important;
  border-color: #dc2626 !important;
  border-radius: 999px !important;
}

.ts-redesign .btn-success {
  background: #16a34a !important;
  border-color: #16a34a !important;
  border-radius: 999px !important;
}

.ts-redesign .alert-success {
  background: #dcfce7;
  border-color: #bbf7d0;
  color: #166534;
  border-radius: var(--ts-radius);
}

.ts-redesign .alert-danger {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
  border-radius: var(--ts-radius);
}

@media (max-width: 1024px) {
  .ts-why-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ts-why-split__media {
    min-height: 320px;
  }
  .ts-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .ts-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .ts-booking-card__row {
    grid-template-columns: 1fr 1fr;
  }
  .ts-booking-card__row--4 {
    grid-template-columns: 1fr 80px 80px;
  }
}

@media (max-width: 768px) {
  .ts-nav {
    display: none;
  }
  .ts-mobile-toggle {
    display: flex;
  }
  .ts-header__actions .ts-btn--primary span {
    display: none;
  }
  .ts-grid-4,
  .ts-grid-3,
  .ts-blog-grid {
    grid-template-columns: 1fr;
  }
  .ts-booking-card__row,
  .ts-booking-card__row--2,
  .ts-booking-card__row--4 {
    grid-template-columns: 1fr;
  }
  .ts-stats {
    grid-template-columns: 1fr;
  }
  .ts-stats--inline {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ts-footer__grid {
    grid-template-columns: 1fr;
  }
  .ts-contact-grid {
    grid-template-columns: 1fr;
  }
  .ts-deal-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .ts-hero {
    min-height: auto;
    padding-bottom: 40px;
  }
}

.ts-redesign section.content,
.ts-redesign section.ftco-section {
  max-width: var(--ts-container);
  margin-left: auto;
  margin-right: auto;
}

.ts-redesign #accordion .card {
  border: 1px solid var(--ts-border);
  border-radius: var(--ts-radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.ts-redesign #accordion .card-header {
  background: var(--ts-white);
  border-bottom: none;
  padding: 0;
}

.ts-redesign #accordion .card-link {
  display: block;
  padding: 16px 20px;
  color: var(--ts-text);
  text-decoration: none;
  font-weight: 600;
}

.ts-redesign #accordion .card-body {
  padding: 0 20px 16px;
  color: var(--ts-text-muted);
}

.ts-redesign #ftco-loader {
  display: none !important;
}
