/* ═══════════════════════════════════════════════
   VARIABLES
═══════════════════════════════════════════════ */
:root {
  --sky:      #daeaf7;
  --sky-deep: #b8d4ed;
  --ice:      #eef5fb;
  --snow:     #f4f8fc;
  --alpine:   #2a6496;
  --alpine-d: #1a4a72;
  --alpine-l: #3a7ab0;
  --frost:    #5b9ec9;
  --slate:    #3d5468;
  --ink:      #16293a;
  --mist:     #cde3f0;
  --white:    #ffffff;
  --wrap:     1360px;   /* max-width for content inside wide sections */
  --pad:      4rem;     /* horizontal padding */
  --gap:      1.5rem;
}

/* ═══════════════════════════════════════════════
   BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--snow);
  color: var(--ink);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
}

/* Wide sections stretch full viewport */
/* Content inside is capped at --wrap */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;

}

/* ═══════════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════════ */
.topbar {
  background: var(--alpine-d);
  padding: 0.55rem 0;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-left {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.topbar-left a,
.topbar-left span {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.topbar-left a:hover { color: #fff; }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.topbar-right a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: color .2s;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}
.topbar-right a:hover,
.topbar-right a.active {
  color: #fff;
  background: rgba(255,255,255,.12);
}
.topbar-right .sep { color: rgba(255,255,255,.2); font-size: 0.7rem; }

/* ═══════════════════════════════════════════════
   NAV — DESKTOP (full width)
═══════════════════════════════════════════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--mist);
  box-shadow: 0 4px 30px rgba(42,100,150,.1);
}

.nav-wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 100px;
}

/* Logo */
.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--alpine-d);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  padding-right: 2rem;

  border-right: 1px solid var(--mist);
   letter-spacing: -0.01em;
}
.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--alpine), var(--frost));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(42,100,150,.3);
}
.nav-logo-text span {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--frost);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 1px;
}

/* Menu */
.nav-menu {
  display: flex;
  list-style: none;
  align-items: stretch;
 
}

.nav-menu > li {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-menu > li > a,
.nav-menu > li > .nav-drop-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0 0.9rem;
  color: var(--slate);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.01em;
  border-bottom: 3px solid transparent;
  border-top: 3px solid transparent;
  transition: color .22s, border-color .22s;
  background: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.nav-menu > li > a:hover,
.nav-menu > li > .nav-drop-btn:hover,
.nav-menu > li:hover > .nav-drop-btn {
  color: var(--alpine);
  border-bottom-color: var(--alpine);
    color: var(--alpine);
  font-weight: 600;
  background: rgba(42,100,150,.06);
  border-radius: 0;
}

.nav-menu > li.nav-hl > a {
  color: var(--alpine);
  font-weight: 600;
  background: rgba(42,100,150,.06);
  border-radius: 0;
}

.caret {
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 2px;
  transition: transform .25s;
  flex-shrink: 0;
}
.nav-menu > li:hover .caret { transform: rotate(180deg); }

/* Dropdown */
.dd {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: #fff;
  border: 1px solid var(--mist);
  border-top: 3px solid var(--alpine);
  border-radius: 0 0 12px 12px;
  min-width: 230px;
  box-shadow: 0 16px 50px rgba(42,100,150,.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: 600;
}
.nav-menu > li:hover .dd,
.nav-menu > li:focus-within .dd {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.dd a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.78rem 1.3rem;
  color: var(--slate);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 400;
  border-bottom: 1px solid var(--ice);
  transition: background .18s, color .18s, padding-left .2s;
}
.dd a:last-child { border-bottom: none; }
.dd a:hover {
  background: var(--ice);
  color: var(--alpine);
  padding-left: 1.7rem;
}
.dd-wide {
  min-width: 350px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0.5rem 0;
}
.dd-wide a:nth-last-child(-n+2) { border-bottom: none; }

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 1.5rem;
  border-left: 1px solid var(--mist);
  margin-left: 0.5rem;
  flex-shrink: 0;
}
.nav-phone {
  color: var(--alpine-d);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color .2s;
}
.nav-phone:hover { color: var(--alpine); }
.nav-cta {
  background: linear-gradient(135deg, var(--alpine), var(--alpine-l));
  color: #fff;
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
  transition: all .22s;
  box-shadow: 0 4px 14px rgba(42,100,150,.3);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--alpine-d), var(--alpine));
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(42,100,150,.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--alpine-d);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════
   MOBILE NAV
═══════════════════════════════════════════════ */
.mob-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 800;
}
.mob-nav.open { display: flex; }
.mob-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22,41,58,.55);
  backdrop-filter: blur(5px);
}
.mob-panel {
  position: relative;
  z-index: 1;
  background: #fff;
  width: min(360px, 92vw);
  height: 100%;
  overflow-y: auto;
  box-shadow: 6px 0 50px rgba(22,41,58,.2);
  display: flex;
  flex-direction: column;
}
.mob-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: var(--alpine-d);
}
.mob-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mob-logo-ico {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,.15);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
}
.mob-close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,.8);
  font-size: 1.6rem;
  line-height: 1;
  padding: 0;
  transition: color .2s;
}
.mob-close:hover { color: #fff; }
.mob-contact {
  padding: 1rem 1.5rem;
  background: var(--ice);
  border-bottom: 1px solid var(--mist);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.mob-contact a {
  color: var(--alpine);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color .2s;
}
.mob-contact a:hover { color: var(--alpine-d); }
.mob-links {
  list-style: none;
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 0;
}
.mob-links > li > a,
.mob-links > li > .mob-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  border-bottom: 1px solid var(--ice);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid var(--ice);
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background .18s, color .18s;
}
.mob-links > li > a:hover,
.mob-links > li > .mob-toggle:hover { background: var(--ice); color: var(--alpine); }
.mob-arrow {
  font-size: 0.75rem;
  color: var(--frost);
  transition: transform .28s;
}
.mob-toggle.expanded .mob-arrow { transform: rotate(90deg); }
.mob-sub {
  display: none;
  flex-direction: column;
  background: var(--ice);
  border-bottom: 1px solid var(--mist);
}
.mob-sub.open { display: flex; }
.mob-sub a {
  padding: 0.72rem 1.5rem 0.72rem 2.8rem;
  color: var(--slate);
  text-decoration: none;
  font-size: 0.83rem;
  border-bottom: 1px solid rgba(42,100,150,.07);
  transition: background .18s, color .18s;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.mob-sub a:last-child { border-bottom: none; }
.mob-sub a:hover { background: var(--sky); color: var(--alpine); }
.mob-book {
  padding: 1.3rem 1.5rem;
  border-top: 1px solid var(--mist);
}
.mob-lang {
  padding: 1.1rem 1.5rem;
  border-top: 1px solid var(--mist);
  background: var(--ice);
}
.mob-lang-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.mob-lang-btns {
  display: flex;
  gap: 0.6rem;
  flex-wrap: nowrap;
}
.mob-lang-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.6rem 0.6rem;
  border-radius: 12px;
  min-width: 52px;
  border: 1.5px solid var(--mist);
  background: #fff;
  color: var(--slate);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all .2s;
  flex: 1;
}
.mob-lang-btn:hover {
  border-color: var(--alpine);
  color: var(--alpine);
  background: var(--sky);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(42,100,150,.12);
}
.mob-lang-btn.active {
  background: var(--alpine);
  border-color: var(--alpine);
  color: #fff;
  box-shadow: 0 3px 10px rgba(42,100,150,.25);
}
.mob-flag { font-size: 2rem; line-height: 1; }
.mob-lang-code { display: none; }
.mob-lang-btns { display: flex; gap: 0.6rem; flex-wrap: nowrap; }

/* ═══════════════════════════════════════════════
   HERO SLIDER — FULL WIDTH
═══════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-4 { background-image: url("https://images.unsplash.com/photo-1548777123-e216912df7d8?w=1920&q=85"); background-size: cover; background-position: center 40%; }
.slide-5 { background-image: url("https://images.unsplash.com/photo-1517420704952-d9f39e95b43e?w=1920&q=85"); background-size: cover; background-position: center; }
.slide-1 { background-image: url("https://images.unsplash.com/photo-1551524559-8af4e6624178?w=1920&q=85"); background-size: cover; background-position: center top; }
.slide-2 { background-image: url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=85"); background-size: cover; background-position: center; }
.slide-3 { background-image: url("https://images.unsplash.com/photo-1491555103944-7c647fd857e6?w=1920&q=85"); background-size: cover; background-position: center 30%; }

/*.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5,15,30,.82) 0%,
    rgba(5,15,30,.55) 55%,
    rgba(5,15,30,.22) 100%
  );
  z-index: 2;
}

/* decorative circles on slides */
.slide::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,158,201,.18) 0%, transparent 70%);
  right: -100px; top: -100px;
  z-index: 1;
}
.slide::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  right: 80px; bottom: 40px;
  z-index: 1;
}

.slide-mountains {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  pointer-events: none;
}

/* Snow */
.snow-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  overflow: hidden;
}
.flake {
  position: absolute;
  background: rgba(255,255,255,.8);
  border-radius: 50%;
  animation: fall linear infinite;
}
@keyframes fall {
  0%   { transform: translateY(-20px); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(115%) translateX(18px); opacity: 0; }
}

/* Hero content */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
}
.hero-text {
  max-width: var(--wrap);
  margin: 0 auto;
  width: 100%;
  /* animation handled per-slide via .slide-content */
}
.hero-text-inner {     
  padding-top: 200px;
    text-align: center; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  font-weight: 500;
  margin-bottom: 1.8rem;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  background: #52b788;
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.5); opacity: .5; }
}

.hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  text-shadow: 5px 5px  5px #000000;
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
}
.hero-text h2 {
  
  font-family: 'Poppins', sans-serif;
   font-size: clamp(1.6rem, 4.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.08;
  color: rgb(231, 173, 10);
  text-shadow: 2px 3px 2px #000000;
  margin-bottom: 1.4rem;
  letter-spacing: 0.02em;
}

.hero-text p {
  color: rgb(70 32 32 / 78%);
  font-size: 1.28rem;
    font-size: clamp(1.0rem, 4.5vw, 1.28rem);
  line-height: 1.2;
  margin-bottom: 1.4rem;
  font-weight: 500;
}

.hero-actions {  gap: 1rem; flex-wrap: wrap; text-align: center;}

/* Slider controls */
.slider-dots {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 0.6rem;
}
.sdot {
  width: 32px; height: 4px;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  transition: background .3s, width .3s;
  padding: 0;
  border-radius: 2px;
}
.sdot.active { background: #fff; width: 56px; }

.slider-arrows {
  position: absolute;
  right: var(--pad);
  bottom: 25px;
  z-index: 6;
  display: flex;
  gap: 0.6rem;
}
.sarrow {
  width: 46px; height: 46px;
  border: 1.5px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background .22s, border-color .22s;
}
.sarrow:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════════════
   BOOKING FORM — full width dark band
═══════════════════════════════════════════════ */
.booking-band {
  background: #ffffff;
  padding: 0;
}
.booking-head {
   background: var(--alpine-d);
  text-align: center;
  padding: 2.5rem 0 2rem;
  color: #fff;
}
.bk-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.booking-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.booking-form {
  background: rgba(255,255,255,.07);
  border-top: 1px solid rgba(255,255,255,.1);

}
.booking-form .wrap-form {
  max-width: var(--wrap);
  margin: 0 auto;
}

.bf-row {
  display: grid;
  gap: 1.4rem;
  margin-bottom: 1.4rem;
}
.bf-r3 { grid-template-columns: 1fr 1fr 1fr; }
.bf-r2btn { grid-template-columns: 1fr 1.2fr auto; align-items: end; }

.bf-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.bf-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: 0.04em;
}
.bf-label small {
  font-size: 0.74rem;
  font-weight: 400;
  color: rgba(255,255,255,.5);
}

.bf-sel-wrap { position: relative; }
.bf-sel-wrap::after {
  content: '▾';
  position: absolute;
  right: 1rem; top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.55);
  pointer-events: none;
  font-size: 0.9rem;
}

.bf-select,
.bf-input {
  width: 100%;
  padding: 0.88rem 1.1rem;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 8px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  outline: none;
  transition: border-color .22s, background .22s;
  appearance: none;
  -webkit-appearance: none;
}
.bf-select option { background: var(--alpine-d); color: #fff; }
.bf-select:focus,
.bf-input:focus {
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.16);
}
.bf-input::placeholder { color: rgba(255,255,255,.4); }

.bf-submit {
  background: #fff;
  color: var(--alpine-d);
  padding: 0.88rem 2.2rem;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background .22s, transform .2s, box-shadow .22s;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.bf-submit:hover {
  background: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.28);
}

/* ═══════════════════════════════════════════════
   BADGES — full width strip
═══════════════════════════════════════════════ */
.badges {
  background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf0 100%);
  border-top: 1px solid #dde3ea;
  border-bottom: 1px solid #dde3ea;
  width: 100%;
}

.wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 28px;
  color: #2c3a4a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
}

/* Masaüstü: dikey ayırıcı */
.badge-item + .badge-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: #b0bcc8;
}

.badge-item i {
  font-size: 26px;
  color: #C8A951;
  flex-shrink: 0;
}

/* Mobil */
@media (max-width: 640px) {
  .wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .badge-item {
    justify-content: center; /* ← flex-start yerine center */
    align-items: center;
    padding: 16px 22px;
  }

  .badge-item i {
    font-size: 22px;
    min-width: 26px;
  }

  /* Mobilde: gradient yatay ayırıcı */
  
  .badge-item + .badge-item::before {
    display: none;
  }

  .badge-item + .badge-item::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  
    width: 60%;
    height: 1px;
    background: linear-gradient(to right, transparent, #b0bcc8 20%, #b0bcc8 80%, transparent);
  }
}

/* ═══════════════════════════════════════════════
   SECTION HELPERS
═══════════════════════════════════════════════ */
.section { padding: 4rem 0; }
.section-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--frost);
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--alpine-d);
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--alpine);
  font-family: 'Playfair Display', serif;
}
.section-body {
  color: var(--slate);
  line-height: 1.85;
  font-size: 1rem;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════
   ABOUT — full width with alternating bg
═══════════════════════════════════════════════ */
.about { background: #ffffff }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 6rem;
  align-items: center;
}
.about-list {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: var(--slate);
  font-weight: 400;
  line-height: 1.6;
}
.about-point-dot {
  width: 8px; height: 8px;
  background: var(--alpine);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.about-visual {
  position: relative;
}
.about-card {
  background: linear-gradient(145deg, var(--alpine-d) 0%, var(--alpine) 100%);
  border-radius: 20px;
  padding: 2.8rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(42,100,150,.25);
}
.about-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}
.about-card::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 150px; height: 150px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.about-card-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 0.6rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.about-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}
.about-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
  font-weight: 300;
  position: relative;
  z-index: 1;
  margin-bottom: 1.8rem;
}
.airports-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
}
.apt-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
}


/* ═══════════════════════════════════════════════
   SERVICES — full width, 4 col
═══════════════════════════════════════════════ */
.services { background: var(--ice); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.svc-card {
  background: #fff;
  border: 1.5px solid var(--mist);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
  box-shadow: 0 4px 16px rgba(42,100,150,.06);
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--alpine), var(--frost));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(42,100,150,.15);
  border-color: var(--sky-deep);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 50px; height: 50px;
  background: var(--ice);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  transition: background .3s, transform .3s;
}
.svc-card:hover .svc-icon {
  background: var(--alpine);
  transform: scale(1.05);
}
.svc-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--alpine-d);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.svc-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--slate);
  font-weight: 400;
}

/* ═══════════════════════════════════════════════
   PRICING — light gradient bg, 4 col
═══════════════════════════════════════════════ */
.pricing {
  background: linear-gradient(180deg, #fff 0%, var(--ice) 100%);
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(42,100,150,.04) 0%, transparent 70%);
  border-radius: 50%;
}
/* ═══════════════════════════════════════════════
   SKI RESORT CARDS (photo + logo + price)
═══════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.price-card {
  background: #fff;
  border: 1.5px solid var(--mist);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 4px 18px rgba(42,100,150,.07);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(42,100,150,.16);
  border-color: var(--frost);
}
/* Photo area */
.price-photo {
  position: relative;
  height: 215px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a3a5c 0%, #2a6496 100%);
  flex-shrink: 0;
}
.price-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.price-card:hover .price-photo-img { transform: scale(1.06); }
/* SVG mountain illustration fallback */
.price-photo-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* Resort logo badge */
.price-logo-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 14px rgba(0,0,0,.18);
  min-width: 60px;
  min-height: 34px;
}
.price-logo-text {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--alpine-d);
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.2;
  text-transform: uppercase;
}
/* Snow tag top-right */
.price-snow-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(216,50,50,.82);
  color: #fff;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}
.price-snow-tag-two {
  position: absolute;
  bottom: 50px;
  right: 12px;
  background: rgba(150,126,42,.82);
  color: #fff;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}
/* Body */
.price-body {
  padding: 1.3rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.price-dest {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.price-from-tag {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-bottom: 0.8rem;
}
.price-from-tag .tag-von {
  background: var(--alpine);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px 0 0 4px;
  letter-spacing: 0.05em;
}
.price-from-tag .tag-airport {
  background: var(--ink);
  color: rgba(255,255,255,.85);
  font-size: 0.68rem;
  font-weight: 500;
  padding: 0.2rem 0.7rem;
  border-radius: 0 4px 4px 0;
  letter-spacing: 0.02em;
}
.price-bestpreis {
  font-size: 0.72rem;
  font-weight: 700;
  color: #e84545;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.price-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.1rem;
}
.price-old {
  font-size: 1.15rem;
  font-weight: 500;
  color: #e84545;
  text-decoration: line-through;
  text-decoration-color: #e84545;
  margin-right: 0.7rem;
}
.price-pipe {
  color: var(--mist);
  font-size: 1.4rem;
  font-weight: 200;
  margin-right: 0.7rem;
  line-height: 1;
}
.price-new {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.price-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all .22s;
  margin-top: auto;
}
.price-book:hover {
  background: var(--ink);
  color: #fff;
}

/* Special card */
.price-card-special {
  background: linear-gradient(145deg, var(--alpine-d), var(--alpine));
  border-color: var(--alpine);
  display: flex;
  flex-direction: column;
  padding: 1.8rem;
}
.price-card-special .price-dest { color: #fff; font-size: 1.3rem; }
.price-card-special .price-route { color: rgba(255,255,255,.6); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.6rem; }
.price-card-special p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}
.btn-white-sm {
  background: #fff;
  color: var(--alpine);
  padding: 0.75rem 1.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  transition: background .22s;
}
.btn-white-sm:hover { background: var(--ice); }

/* ═══════════════════════════════════════════════
   FAQ ACCORDION — 2-col, full width
═══════════════════════════════════════════════ */
.faq { background: var(--ice); }
.faq-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 3.5rem;
}
.faq-col { display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
  border: 1.5px solid var(--mist);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item:hover { border-color: var(--sky-deep); }
.faq-item.open {
  border-color: var(--alpine);
  box-shadow: 0 8px 30px rgba(42,100,150,.1);
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.6rem;
  background: var(--sky);
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--alpine-d);
  text-align: left;
  transition: background .22s, color .22s;
  gap: 1rem;
  line-height: 1.4;
}
.faq-item.open .faq-btn {
  background: var(--alpine);
  color: #fff;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(42,100,150,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--alpine);
  transition: background .22s, transform .32s, color .22s;
}
.faq-item.open .faq-icon {
  background: rgba(255,255,255,.2);
  color: #fff;
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-body { max-height: 350px; }
.faq-answer {
  padding: 1.3rem 1.6rem;
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--slate);
  font-weight: 400;
  border-top: 1.5px solid var(--mist);
  background: #fff;
}

/* ═══════════════════════════════════════════════
   CTA — full width gradient
═══════════════════════════════════════════════ */
.cta {
  background: linear-gradient(135deg, var(--alpine-d) 0%, var(--alpine) 55%, var(--frost) 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 65%);
}
.cta-sf {
  position: absolute;
  color: rgba(255,255,255,.04);
  font-size: 220px;
  pointer-events: none;
  line-height: 1;
}
.cta-sf:nth-child(1) { top: -50px; left: 2%; }
.cta-sf:nth-child(2) { bottom: -70px; right: 2%; font-size: 180px; }
.cta-inner { position: relative; z-index: 1; }
.cta .section-label { color: rgba(255,255,255,.5); }
.cta .section-title { color: #fff; margin: 0 auto 1rem; }
.cta-sub {
  color: rgba(255,255,255,.68);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn-primary {
  background: linear-gradient(135deg, var(--alpine), var(--alpine-l));
  color: #fff;
  padding: 1rem 2.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 8px;
  transition: all .25s;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(42,100,150,.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--alpine-d), var(--alpine));
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(42,100,150,.4);
}
.btn-primary-gold {
  background: linear-gradient(5deg, #d1a40a, #9a8119);
  color: #fff;
  padding: 1rem 2.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 8px;
  transition: all .25s;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(42,100,150,.3);
}
.btn-primary-gold:hover {
  background: linear-gradient(5deg, #0a7cd1, #113c66);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(42,100,150,.4);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,.45);
  color: #fff;
  padding: 1rem 2.2rem;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all .25s;
  display: inline-block;
  background: rgba(255,255,255,.1);
}
.btn-outline:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.8);
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--alpine-d);
  padding: 1rem 2.2rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all .25s;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}
.btn-white:hover {
  background: var(--ice);
  transform: translateY(-2px);
}
.btn-white-leistungen {
  background: #fff;
  text-align: center;
  color: var(--alpine-d);
  padding: 1rem 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all .25s;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}
.btn-white-leistungen:hover {
  background: var(--alpine-d);
  color: #fff;
  transform: translateY(-2px);
}
.btn-ghost {
  border: 2px solid rgba(255,255,255,.4);
  color: #fff;
  padding: 1rem 2.2rem;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all .25s;
  display: inline-block;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   FOOTER — full width
═══════════════════════════════════════════════ */
footer {
  background: var(--alpine-d);
  color: rgba(255,255,255,.55);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3.5rem;
  padding: 4rem var(--pad) 3rem;
  max-width: var(--wrap);
  margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  letter-spacing: -0.01em;
}
.footer-logo-dot {
  width: 8px; height: 8px;
  background: var(--frost);
  border-radius: 50%;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.4rem;
}
.footer-cl {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sky-deep);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  transition: color .22s;
}
.footer-cl:hover { color: #fff; }
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  margin-bottom: 0.55rem;
  transition: color .22s;
}
.footer-col a:hover { color: var(--sky-deep); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem var(--pad);
  max-width: var(--wrap);
  margin: 0 auto;
  font-size: 0.82rem;
  color: rgba(255,255,255,.28);
}
.footer-bottom a {
  color: rgba(255,255,255,.28);
  text-decoration: none;
  margin-left: 1.5rem;
  transition: color .22s;
}
.footer-bottom a:hover { color: var(--sky-deep); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media(max-width:1200px) {
  :root { --pad: 2.5rem; }
  .nav-menu > li > a,
  .nav-menu > li > .nav-drop-btn { padding: 0 0.65rem; font-size: 0.78rem; }
  .nav-phone { display: none; }
}

@media(max-width:1000px) {
  :root { --pad: 2rem; }
  .nav-menu { display: none; }
  .lang-dropdown { display: none !important; }
  .hamburger { display: flex; }
  .nav-right { border-left: none; margin-left: 0; padding-left: 0; }
  .nav-logo { border-right: none; padding-left: 0.9rem; padding-right: 1rem}
  .nav-phone { display: none; }
  .nav-cta { display: none; }
  .topbar { display: none; }
  .hero-slider { height: 560px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .bf-r3 { grid-template-columns: 1fr 1fr; }
  .bf-r2btn { grid-template-columns: 1fr 1fr; }
  .bf-submit { grid-column: 1 / -1; width: 100%; }
  .faq-cols { grid-template-columns: 1fr; }

}

@media(max-width:680px) {
  :root { --pad: 1.4rem; }
  .hero-slider { height: 460px; }
  .hero-text h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-text p { font-size: 1.0rem; padding: 0px 30px }
  .hero-actions a { text-align: center; }
  .slider-dots { bottom: 15px; }
  .slider-arrows { bottom: 20px; right: 1.4rem; }
  .badges .wrap { gap: 1.2rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .bf-r3 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
  .footer-bottom a { margin: 0 0.6rem; }
  .section { padding: 4rem 0; }
}

@media(max-width:440px) {
  :root { --pad: 1rem; }
  .hero-slider { height: 550px; }
  .hero-text h1 { font-size: 1.9rem; }
  .badges .wrap { flex-direction: column; align-items: center; gap: 0.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .airports-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .section { padding: 3rem 0; }
}

/* ═══════════════════════════════════════════════
   LEISTUNGEN IMAGE CARDS
═══════════════════════════════════════════════ */
.leistungen {
  background: #1a3a52;
  background-image: linear-gradient(160deg, #0d2a45 0%, #1a4a72 50%, #1e3d5c 100%);
  padding: 5rem 0;
}
.leistungen .section-label { color: rgba(168,212,240,.7); }
.leistungen .section-title { color: #fff; }
.leistungen .section-title em { color: #7ec8e3; font-style: normal; }

.leistungen-intro {
  text-align: center;
  margin-bottom: 3rem;
}
.leistungen-intro .section-label { display: inline-block; }
.leistungen-intro .section-title { margin-top: 0.5rem; }
.leistungen-intro p {
  color: rgba(255,255,255,.65);
  font-size: 0.95rem;
  margin: 0.8rem auto 0;
}

.leis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.leis-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
}
.leis-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,.45);
}

.leis-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.leis-card:hover .leis-card-bg { transform: scale(1.06); }

/* gradient overlays per card */
.leis-card-bg-vip     { background-image: url("https://images.unsplash.com/photo-1600320254374-ce2d293cc86f?w=800&q=80"); background-size:cover; background-position:center; }
.leis-card-bg-stadt   { background-image: url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=800&q=80"); background-size:cover; background-position:center; }
.leis-card-bg-airport { background-image: url("https://images.unsplash.com/photo-1529074963764-98f45c47344b?w=800&q=80"); background-size:cover; background-position:center; }
.leis-card-bg-bahn    { background-image: url("https://images.unsplash.com/photo-1474487548417-781cb71495f3?w=800&q=80"); background-size:cover; background-position:center; }
.leis-card-bg-ausflug { background-image: url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=800&q=80"); background-size:cover; background-position:center; }
.leis-card-bg-boten   { background-image: url("https://images.unsplash.com/photo-1568992687947-868a62a9f521?w=800&q=80"); background-size:cover; background-position:center; }

/* SVG illustration layer */
.leis-card-illus {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.25;
  pointer-events: none;
  font-size: 5rem;
  transition: opacity .3s;
}
.leis-card:hover .leis-card-illus { opacity: 0.15; }

.leis-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.35) 55%,
    rgba(0,0,0,.05) 100%
  );
  transition: background .3s;
}
.leis-card:hover .leis-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.5) 55%,
    rgba(0,0,0,.1) 100%
  );
}

.leis-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.6rem 1.6rem 1.4rem;
  z-index: 2;
}

.leis-card-icon {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}

.leis-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

.leis-card-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
  margin-bottom: 0.9rem;
  font-weight: 400;
}

.leis-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all .25s;
  backdrop-filter: blur(4px);
}
.leis-card:hover .leis-card-btn {
  background: var(--alpine);
  border-color: var(--alpine);
  transform: translateX(3px);
}

/* decorative top badge */
.leis-card-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  z-index: 2;
}

@media(max-width:1000px) {
  .leis-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:680px) {
  .leis-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .leis-card { min-height: 240px; }
}
@media(max-width:440px) {
  .leis-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   REFERENZEN (TESTIMONIALS)
═══════════════════════════════════════════════ */
.referenzen {
  background: var(--snow);
  padding: 5rem 0;
}
.referenzen-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
}
.referenzen-header-left {}
.referenzen-header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  padding-top: 0.5rem;
}
.ref-nav-btn {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--mist);
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--slate);
  transition: all .22s;
  box-shadow: 0 2px 8px rgba(42,100,150,.06);
}
.ref-nav-btn:hover {
  border-color: var(--alpine);
  color: var(--alpine);
  background: var(--sky);
  box-shadow: 0 4px 16px rgba(42,100,150,.14);
}

.ref-rating-summary {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}
.ref-stars-big {
  display: flex;
  gap: 2px;
}
.ref-stars-big .star { color: #f5b731; font-size: 1.1rem; }
.ref-score {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.ref-count {
  font-size: 0.8rem;
  color: var(--slate);
}
.ref-source {
  font-size: 0.75rem;
  color: var(--frost);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.ref-track-wrap {
  overflow: hidden;
  position: relative;
}
.ref-track {
  display: flex;
  gap: 1.4rem;
  transition: transform .45s cubic-bezier(.25,.8,.25,1);
}
.ref-card {
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: 16px;
  padding: 1.8rem;
  width: calc(33.333% - 0.95rem);
  min-width: calc(33.333% - 0.95rem);
  flex-shrink: 0;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(42,100,150,.06);
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.ref-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(42,100,150,.13);
}
.ref-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}
.ref-stars {
  display: flex;
  gap: 2px;
}
.ref-stars .star { color: #f5b731; font-size: 1rem; }
.ref-quote-icon {
  width: 34px;
  height: 34px;
  background: var(--alpine-d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.ref-text {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 1.4rem;
  font-style: italic;
  position: relative;
}
.ref-author {
  border-top: 1px solid var(--ice);
  padding-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.ref-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--alpine) 0%, var(--frost) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
  text-transform: uppercase;
}
.ref-author-info {}
.ref-author-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.ref-author-via {
  font-size: 0.72rem;
  color: var(--frost);
  font-weight: 500;
}

.ref-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.ref-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mist);
  border: none;
  cursor: pointer;
  transition: all .25s;
  padding: 0;
}
.ref-dot.active {
  background: var(--alpine);
  width: 24px;
  border-radius: 4px;
}

@media(max-width:1000px) {
  .ref-card { width: calc(50% - 0.7rem); min-width: calc(50% - 0.7rem); }
}
@media(max-width:600px) {
  .ref-card { width: 100%; min-width: 100%; }
  .referenzen-header { flex-direction: column; gap: 1rem; }
  .referenzen-header-right { align-self: flex-end; }
}

/* ═══════════════════════════════════════════════
   TOPBAR SOCIAL MEDIA
═══════════════════════════════════════════════ */
.topbar-follow {
  color: rgba(255,255,255,.45);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 0.2rem;
}
.topbar-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  color: rgba(255,255,255,.55) !important;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  text-decoration: none;
  transition: all .22s;
  padding: 0 !important;
}
.topbar-social:hover {
  background: rgba(255,255,255,.18) !important;
  color: #fff !important;
  transform: translateY(-1px);
}
.topbar-social-wa:hover {
  background: rgba(37,211,102,.3) !important;
  border-color: rgba(37,211,102,.4) !important;
}

/* ═══════════════════════════════════════════════
   NAV LANGUAGE DROPDOWN
═══════════════════════════════════════════════ */
.lang-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.6rem;
  background: var(--ice);
  border: 1.5px solid var(--mist);
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate);
  transition: all .22s;
  white-space: nowrap;
}
.lang-btn:hover {
  border-color: var(--alpine);
  color: var(--alpine);
  background: var(--sky);
}
.lang-btn[aria-expanded="true"] {
  border-color: var(--alpine);
  color: var(--alpine);
  background: var(--sky);
}
.lang-flag { font-size: 1.4rem; line-height: 1; }
.lang-code { display: none; }
.lang-caret {
  color: var(--frost);
  transition: transform .25s;
  flex-shrink: 0;
}
.lang-btn[aria-expanded="true"] .lang-caret { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1.5px solid var(--mist);
  border-radius: 12px;
  min-width: 170px;
  box-shadow: 0 12px 40px rgba(42,100,150,.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .22s, transform .22s, visibility .22s;
  z-index: 700;
  overflow: hidden;
}
.lang-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.lang-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.72rem 1rem;
  color: var(--slate);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  border-bottom: 1px solid var(--ice);
  transition: background .18s, color .18s;
}
.lang-item:last-child { border-bottom: none; }
.lang-item:hover { background: var(--ice); color: var(--alpine); }
.lang-item.active { color: var(--alpine); font-weight: 700; background: rgba(42,100,150,.04); }
.lang-item-flag { font-size: 1.2rem; line-height: 1; flex-shrink: 0; }
.lang-item-name { flex: 1; }
.lang-item-check { color: var(--alpine); font-size: 0.8rem; opacity: 0; }
.lang-item.active .lang-item-check { opacity: 1; }

/* Hide old nav-phone and nav-cta (replaced by lang dropdown) */
.nav-phone { display: none !important; }
.nav-cta { display: none !important; }

/* Adjust nav-right for new content */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  border-left: 1px solid var(--mist);
  margin-left: 0.5rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   NAV HOME ICON
═══════════════════════════════════════════════ */
.nav-menu > li > a svg {
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
  transition: transform .2s;
}
.nav-menu > li > a:hover svg { transform: scale(1.15); }



/* ── PER-SLIDE TEXT ANIMATION ── */
.slide-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: none;
}
.slide.active .slide-content {
  opacity: 1;
  pointer-events: all;
  animation: heroTextIn .9s cubic-bezier(.22,1,.36,1) both;
}
@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── LANG DROPDOWN FLAG-ONLY ── */
.lang-code { display: none; }
.lang-btn { padding: 0.4rem 0.7rem; gap: 0.3rem; }
.lang-flag { font-size: 1.4rem; }

/* ── SKI RESORT LOGO BADGE SVG ── */
.price-logo-badge {
  min-width: 70px;
  min-height: 42px;
  padding: 5px 8px;
}
.price-logo-badge svg { display:block; }
.price-logo-text {
  font-size: 0.6rem;
  font-weight: 900;
  line-height: 1.1;
}


/* ═══════════════════════════════════════════════
   VEHICLE CARDS
═══════════════════════════════════════════════ */
.vehicles { background: var(--ice); }

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.vehicle-card {
  background: #fff;
  border: 1.5px solid var(--mist);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(42,100,150,.07);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(42,100,150,.15);
}

.vehicle-header {
  padding: 1rem 1.6rem;
  display: flex;
  align-items: center;
}
.vehicle-header-taxi     { background: linear-gradient(135deg, var(--alpine-d) 0%, var(--alpine) 100%); }
.vehicle-header-minibus  { background: linear-gradient(135deg, #1a6e5a 0%, #2a9e84 100%); }
.vehicle-header-executive{ background: linear-gradient(135deg, #2a2a4a 0%, #4a4a7a 100%); }

.vehicle-header-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

.vehicle-img-wrap {
  background: #ffffff;
  padding: 2rem 2.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.vehicle-img-wrap img {
  width: 100%;
  object-fit: contain;
  display: block;
  transition: transform .4s ease;
}
.vehicle-card:hover .vehicle-img-wrap img { transform: scale(1.05); }

.vehicle-body {
  padding: 1.4rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid var(--ice);
}
.vehicle-pax {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.vehicle-desc {
  font-size: 0.84rem;
  color: var(--slate);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.3rem;
}
.vehicle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all .22s;
}
.vehicle-btn:hover {
  background: var(--alpine-d);
  border-color: var(--alpine-d);
  color: #fff;
}

/* ═══════════════════════════════════════════════
   TRANSFER SERVICES CARDS
═══════════════════════════════════════════════ */
.transfer-services { background: #fff; }

.tsvc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.tsvc-card {
  background: #fff;
  border: 1.5px solid var(--mist);
  border-radius: 16px;
  padding: 1.8rem 1.6rem 1.6rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(42,100,150,.05);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.tsvc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(42,100,150,.13);
}

.tsvc-bg-deco {
  position: absolute;
  top: -30px; right: -30px;
  width: 110px; height: 110px;
  background: linear-gradient(135deg, var(--alpine-d), var(--frost));
  border-radius: 50%;
  opacity: 0.07;
  pointer-events: none;
}

.tsvc-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--alpine-d), var(--alpine));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(42,100,150,.25);
}

.tsvc-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}
.tsvc-card p {
  font-size: 0.84rem;
  color: var(--slate);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.2rem;
}
.tsvc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  border: 1.5px solid var(--mist);
  border-radius: 7px;
  color: var(--alpine);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: all .22s;
  margin-top: auto;
}
.tsvc-btn:hover {
  background: var(--alpine-d);
  border-color: var(--alpine-d);
  color: #fff;
}

/* ═══════════════════════════════════════════════
   ABOUT CARD PHOTO UPDATE
═══════════════════════════════════════════════ */
.about-card {
  background: linear-gradient(145deg, var(--alpine-d) 0%, var(--alpine) 100%);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(42,100,150,.25);
  padding: 0;
}
.about-card-photo {
  width: 100%;
  height: 400px;
  overflow: hidden;
  flex-shrink: 0;
}
.about-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.about-card:hover .about-card-photo img { transform: scale(1.05); }
.about-card-content {
  padding: 2rem 2.4rem 2.4rem;
  position: relative;
  z-index: 1;
}
.about-card-content::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  pointer-events: none;
}

/* Responsive */
@media(max-width:1000px) {
  .vehicles-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .tsvc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:680px) {
  .vehicles-grid { grid-template-columns: 1fr; max-width: 100%; }
  .tsvc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:440px) {
  .tsvc-grid { grid-template-columns: 1fr; }
  .vehicles-grid { grid-template-columns: 1fr; }
}



/* ═══════════════════════════════════════════════
   SUBPAGE SHARED STYLES
═══════════════════════════════════════════════ */
.subpage-hero {
  background: linear-gradient(135deg, #0d2a45 0%, #1a4a72 60%, #2a6496 100%);
  padding: 4rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.subpage-hero::before {
  content:'';position:absolute;width:600px;height:600px;border-radius:50%;
  background:radial-gradient(circle,rgba(91,158,201,.15) 0%,transparent 70%);
  right:-100px;top:-100px;
}
.subpage-hero-inner { position:relative;z-index:2; }
.subpage-hero-breadcrumb {
  display:flex;align-items:center;justify-content:center;
  gap:0.5rem;margin-bottom:1.5rem;
}
.subpage-hero-breadcrumb a{color:rgba(255,255,255,.6);text-decoration:none;font-size:.82rem;}
.subpage-hero-breadcrumb a:hover{color:#fff;}
.subpage-hero-breadcrumb span{color:rgba(255,255,255,.4);font-size:.82rem;}
.subpage-hero-icon{font-size:3rem;margin-bottom:0.8rem;display:block;}
.subpage-hero h1{font-size:clamp(2rem,5vw,3.2rem);font-weight:800;color:#fff;margin-bottom:0.8rem;line-height:1.15;}
.subpage-hero p{font-size:1.05rem;color:rgba(255,255,255,.72);max-width:580px;margin:0 auto;line-height:1.7;}

/* ── Content blocks ── */
.content-section{padding:5rem 0;background:#fff;}
.content-section:nth-child(even){background:var(--snow);}
.content-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;}
.content-grid.reverse{direction:rtl;}
.content-grid.reverse > *{direction:ltr;}
.content-visual{
  border-radius:20px;overflow:hidden;
  box-shadow:0 20px 60px rgba(42,100,150,.15);
  position:relative;min-height:320px;
}
.content-visual img{width:100%;height:100%;object-fit:cover;display:block;min-height:320px;}
.content-text .section-label{margin-bottom:0.5rem;}
.content-text h2{font-size:clamp(1.6rem,3vw,2.4rem);font-weight:800;line-height:1.2;margin-bottom:1rem;}
.content-text p{color:var(--slate);line-height:1.75;margin-bottom:1rem;font-size:.95rem;}
.feature-list{list-style:none;margin:1.5rem 0 2rem;}
.feature-list li{
  display:flex;align-items:flex-start;gap:0.8rem;
  padding:0.6rem 0;border-bottom:1px solid var(--sky);
  font-size:.9rem;color:var(--slate);
}
.feature-list li:last-child{border-bottom:none;}
.feature-list li::before{
  content:'+';width:22px;height:22px;border-radius:50%;
  background:var(--alpine);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:.7rem;font-weight:700;flex-shrink:0;margin-top:1px;
}

/* ── Booking strip ── */
.booking-strip{background:linear-gradient(135deg,#0d2a45,#2a6496);padding:4rem 0;text-align:center;}
.booking-strip h2{color:#fff;font-size:1.9rem;font-weight:800;margin-bottom:0.8rem;}
.booking-strip p{color:rgba(255,255,255,.7);margin-bottom:2rem;font-size:.95rem;}
.booking-strip .btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;}

/* ── Form styles ── */
.form-section{padding:5rem 0;background:var(--snow);}
.form-card{background:#fff;border-radius:20px;padding:3rem;box-shadow:0 8px 40px rgba(42,100,150,.1);margin:0 auto;}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.2rem;}
.form-group{display:flex;flex-direction:column;gap:0.4rem;}
.form-group.full{grid-column:1/-1;}
.form-label{font-size:.82rem;font-weight:600;color:var(--slate);letter-spacing:.02em;}
.form-input,.form-select,.form-textarea{
  padding:.8rem 1rem;border:1.5px solid var(--mist);border-radius:8px;
  font-family:'Poppins',sans-serif;font-size:.9rem;color:var(--ink);
  background:#fff;transition:border-color .2s,box-shadow .2s;outline:none;
}
.form-input:focus,.form-select:focus,.form-textarea:focus{
  border-color:var(--alpine);box-shadow:0 0 0 3px rgba(42,100,150,.1);
}
.form-textarea{resize:vertical;min-height:120px;}
.form-submit{
  width:100%;padding:1rem;background:linear-gradient(135deg,var(--alpine),var(--alpine-l));
  color:#fff;border:none;border-radius:8px;font-family:'Poppins',sans-serif;
  font-size:.9rem;font-weight:700;letter-spacing:.05em;cursor:pointer;
  transition:all .25s;box-shadow:0 4px 16px rgba(42,100,150,.3);margin-top:.5rem;
}
.form-submit:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(42,100,150,.4);}

/* ── Contact cards ── */
.contact-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:3rem;}
.contact-card{
  background:#fff;border:1.5px solid var(--mist);border-radius:16px;padding:2rem;
  text-align:center;transition:all .3s;box-shadow:0 4px 16px rgba(42,100,150,.05);
}
.contact-card:hover{transform:translateY(-4px);box-shadow:0 12px 36px rgba(42,100,150,.12);}
.contact-card-icon{font-size:2.2rem;margin-bottom:0.8rem;display:block;}
.contact-card h3{font-size:1rem;font-weight:700;color:var(--ink);margin-bottom:.4rem;}
.contact-card a,.contact-card p{color:var(--alpine);font-size:.9rem;text-decoration:none;font-weight:500;}
.contact-card a:hover{color:var(--alpine-d);}

/* ── Info grid ── */
.info-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:3rem;}
.info-card{background:#fff;border:1.5px solid var(--mist);border-radius:16px;padding:1.8rem;box-shadow:0 4px 16px rgba(42,100,150,.05);}
.info-card-icon{font-size:2rem;margin-bottom:.8rem;display:block;}
.info-card h3{font-weight:700;color:var(--ink);margin-bottom:.5rem;font-size:1.05rem;}
.info-card p{font-size:.85rem;color:var(--slate);line-height:1.65;}

/* ── Legal ── */
.legal-section{padding:5rem 0;background:#fff;}
.legal-content h2{font-size:1.5rem;font-weight:700;color:var(--ink);}
.legal-content h3{font-size:1.1rem;font-weight:600;margin:1.5rem 0 .5rem;color:var(--alpine-d);}
.legal-content p,.legal-content li{font-size:.92rem;color:var(--slate);line-height:1.8;margin-bottom:.7rem;}
.legal-content ul{padding-left:1.5rem;}

/* ── Ski resort page ── */
.ski-hero{position:relative;height:500px;overflow:hidden;background:#0d2a45; padding: 2rem 0 4rem;}
.ski-hero img{width:100%;height:100%;object-fit:cover;display:block;}
.ski-hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to right,rgba(5,15,30,.82) 0%,rgba(5,15,30,.45) 60%,rgba(5,15,30,.15) 100%);
  display:flex;align-items:center;
}
.ski-hero-content{padding:0 var(--pad);max-width:var(--wrap);margin:0 auto;width:100%;}
.ski-hero-logo{
  background:rgba(255,255,255,.95);border-radius:14px;padding:10px 16px;
  display:inline-flex;align-items:center;justify-content:center;
  margin-bottom:1.5rem;box-shadow:0 4px 20px rgba(0,0,0,.2);
}
.ski-hero-logo span{font-size:.9rem;font-weight:900;color:var(--alpine-d);letter-spacing:-.01em;text-transform:uppercase;}
.ski-hero-content h1{color:#fff;font-size:clamp(2.2rem,5vw,4rem);font-weight:800;margin-bottom:.8rem;line-height:1.1;}
.ski-hero-content p{color:rgba(255,255,255,.75);font-size:1rem;max-width:480px;line-height:1.7;margin-bottom:2rem;}
.ski-meta{display:flex;gap:1rem;flex-wrap:wrap;}
.ski-meta-tag{
  background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.25);
  color:#fff;border-radius:100px;padding:.35rem .9rem;font-size:.75rem;font-weight:600;
  backdrop-filter:blur(6px);letter-spacing:.05em;
}
.ski-info-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:1.2rem;}
.ski-info-card{
  background:#fff;border:1.5px solid var(--mist);border-radius:14px;
  padding:1.0rem 0.4rem;text-align:center;box-shadow:0 4px 14px rgba(42,100,150,.06);
  transition:transform .3s;
}
.ski-info-card:hover{transform:translateY(-3px);}
.ski-info-icon{font-size:1.8rem;margin-bottom:.5rem;display:block;}
.ski-info-label{font-size:.72rem;font-weight:600;color:var(--slate);text-transform:uppercase;letter-spacing:.08em;margin-bottom:.2rem;}
.ski-info-value{font-size:1.1rem;font-weight:800;color:var(--ink);}

/* ── FAQ page ── */
.faq-page{padding:5rem 0;background:var(--snow);}
.faq-page-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.4rem;margin-top:3rem;}
.faq-cat-title{font-size:.72rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:var(--alpine);margin:2.5rem 0 1rem;grid-column:1/-1;}

/* ── Booking page ── */
.booking-page{padding:5rem 0;background:var(--snow);}
.booking-page-card{
  background:#fff;border-radius:20px;overflow:hidden;
  box-shadow:0 8px 40px rgba(42,100,150,.1);
  max-width:900px;margin:0 auto;
}
.booking-page-head{
  background:linear-gradient(135deg,var(--alpine-d),var(--alpine));
  padding:2.5rem 3rem;color:#fff;
}
.booking-page-head h2{font-size:1.8rem;font-weight:800;margin-bottom:.4rem;}
.booking-page-head p{opacity:.75;font-size:.9rem;}
.booking-page-body{padding:2.5rem 3rem;}
.bp-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:1rem;margin-bottom:1rem;}
.bp-grid-2{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1rem;}
.bp-full{margin-bottom:1rem;}
.bp-label{font-size:.8rem;font-weight:600;color:var(--slate);letter-spacing:.02em;margin-bottom:.35rem;display:block;}
.bp-input,.bp-select{
  width:100%;padding:.8rem 1rem;border:1.5px solid var(--mist);border-radius:8px;
  font-family:'Poppins',sans-serif;font-size:.9rem;color:var(--ink);
  background:#fff;transition:border-color .2s,box-shadow .2s;outline:none;
}
.bp-input:focus,.bp-select:focus{border-color:var(--alpine);box-shadow:0 0 0 3px rgba(42,100,150,.1);}
.bp-submit{
  width:100%;padding:1.1rem;
  background:linear-gradient(135deg,var(--alpine),var(--alpine-l));
  color:#fff;border:none;border-radius:10px;font-family:'Poppins',sans-serif;
  font-size:1rem;font-weight:700;letter-spacing:.05em;cursor:pointer;
  transition:all .25s;box-shadow:0 4px 16px rgba(42,100,150,.3);margin-top:.5rem;
}
.bp-submit:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(42,100,150,.4);}
.bp-note{font-size:.78rem;color:var(--slate);text-align:center;margin-top:1rem;opacity:.7;}

/* ── Map embed ── */
.map-section{padding:5rem 0;background:#fff;}
.map-wrap{border-radius:20px;overflow:hidden;box-shadow:0 8px 40px rgba(42,100,150,.1);height:420px;}
.map-wrap iframe{width:100%;height:100%;border:0;display:block;}

/* Tarife page extras */
.tarife-intro{max-width:680px;margin:0 auto;text-align:center;}
.tarife-intro p{color:var(--slate);font-size:1rem;line-height:1.75;margin-top:1rem;}

@media(max-width:1000px){
  .content-grid{grid-template-columns:1fr;gap:2.5rem;}
  .contact-cards,.info-grid{grid-template-columns:1fr 1fr;}
  .ski-info-grid{grid-template-columns:1fr 1fr;}
  .faq-page-grid{grid-template-columns:1fr;}
  .bp-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:640px){
  .contact-cards,.info-grid{grid-template-columns:1fr;}
  .form-card,.booking-page-body,.booking-page-head{padding:1.5rem;}
  .bp-grid,.bp-grid-2{grid-template-columns:1fr;}
  .ski-info-grid{grid-template-columns:1fr 1fr;}
  .ski-hero{height:380px;}
}
