/* ============================================
   Tours Albania – Professional Tour & Transfer Site
   Colors: White (#FFFFFF) & Dark Blue (#1B2A4A)
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #1B2A4A;
  --blue-light: #2C3E6B;
  --blue-dark: #0F1A30;
  --accent: #3B82F6;
  --accent-hover: #2563EB;
  --white: #FFFFFF;
  --off-white: #F4F6FA;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --text: #1F2937;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(27,42,74,.10);
  --shadow-lg: 0 12px 40px rgba(27,42,74,.15);
  --transition: .3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--alt { background: var(--off-white); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { color: var(--blue); line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { color: var(--gray); }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-header p { margin-top: 12px; font-size: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.btn--primary { background: var(--accent); color: var(--white); }
.btn--primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn--outline:hover { background: var(--white); color: var(--blue); }
.btn--dark { background: var(--blue); color: var(--white); }
.btn--dark:hover { background: var(--blue-light); transform: translateY(-2px); }
.btn--whatsapp { background: #25D366; color: var(--white); }
.btn--whatsapp:hover { background: #1DA851; transform: translateY(-2px); }
.btn--sm { padding: 10px 24px; font-size: .9rem; }

/* ---------- Header / Navigation ---------- */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }
.header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  font-size: 1.4rem; font-weight: 800; color: var(--blue);
  display: flex; align-items: center; gap: 8px;
}
.logo span { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-weight: 500; color: var(--text); position: relative; }
.nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width var(--transition);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a:hover { color: var(--accent); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle svg { width: 28px; height: 28px; color: var(--blue); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  overflow: hidden;
  margin-top: 72px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 800"><circle cx="1200" cy="200" r="400" fill="rgba(59,130,246,.12)"/><circle cx="200" cy="600" r="300" fill="rgba(59,130,246,.08)"/></svg>') center/cover;
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-content .badge {
  display: inline-block; background: rgba(59,130,246,.2);
  color: var(--accent); padding: 6px 16px; border-radius: 50px;
  font-size: .85rem; font-weight: 600; margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content p { color: rgba(255,255,255,.8); font-size: 1.2rem; margin-bottom: 32px; max-width: 520px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Features / How It Works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.step-card {
  text-align: center; padding: 40px 24px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); transition: transform var(--transition);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  font-size: 1.4rem; font-weight: 800; margin-bottom: 20px;
}
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: .95rem; }

/* ---------- Tour Cards ---------- */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.tour-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tour-card__img {
  height: 220px; background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); font-size: 3rem; position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.tour-card__badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent); color: var(--white);
  padding: 4px 12px; border-radius: 50px; font-size: .8rem; font-weight: 600;
}
.tour-card__body { padding: 24px; }
.tour-card__body h3 { margin-bottom: 8px; }
.tour-card__body p { font-size: .95rem; margin-bottom: 16px; }
.tour-card__meta {
  display: flex; gap: 16px; margin-bottom: 16px;
  font-size: .85rem; color: var(--gray);
}
.tour-card__meta span { display: flex; align-items: center; gap: 4px; }
.tour-card__price { font-size: 1.3rem; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.tour-card__cash { font-size: .82rem; color: var(--gray); margin-bottom: 16px; }
.tour-card__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Transfer Cards ---------- */
.transfer-card {
  display: flex; align-items: center; gap: 32px;
  background: var(--white); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow); margin-bottom: 24px;
  transition: transform var(--transition);
}
.transfer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.transfer-card__icon {
  flex-shrink: 0; width: 72px; height: 72px;
  background: var(--off-white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.transfer-card__content { flex: 1; }
.transfer-card__content h3 { margin-bottom: 6px; }
.transfer-card__content p { font-size: .95rem; margin-bottom: 12px; }
.transfer-card__price { font-weight: 700; color: var(--blue); font-size: 1.1rem; }
.transfer-card__cash { font-size: .82rem; color: var(--gray); }

/* ---------- Booking Form ---------- */
.booking-section {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 80px 0;
}
.booking-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start;
}
.booking-info { color: var(--white); }
.booking-info h2 { color: var(--white); margin-bottom: 16px; }
.booking-info > p { color: rgba(255,255,255,.75); margin-bottom: 32px; }
.booking-info__list { margin-bottom: 32px; }
.booking-info__list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,.85); margin-bottom: 16px; font-size: .95rem;
}
.booking-info__list li .icon {
  flex-shrink: 0; width: 28px; height: 28px;
  background: rgba(59,130,246,.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
}

.booking-form {
  background: var(--white); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow-lg);
}
.booking-form h3 { margin-bottom: 24px; text-align: center; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 500; margin-bottom: 6px;
  font-size: .9rem; color: var(--text);
}
.form-group label .required { color: #EF4444; }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--gray-light); border-radius: 8px;
  font-size: 1rem; color: var(--text);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--accent); }
.form-control::placeholder { color: #9CA3AF; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note {
  background: var(--off-white); border-left: 4px solid var(--accent);
  padding: 14px 18px; border-radius: 0 8px 8px 0;
  font-size: .88rem; color: var(--gray); margin-bottom: 24px;
  line-height: 1.5;
}
.form-note strong { color: var(--text); }
.form-submit { text-align: center; }
.form-submit .btn { width: 100%; justify-content: center; padding: 16px; font-size: 1.05rem; }

/* ---------- Confirmation Modal ---------- */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.55); z-index: 2000;
  align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white); border-radius: var(--radius);
  padding: 48px 40px; max-width: 480px; width: 100%;
  text-align: center; box-shadow: var(--shadow-lg);
  animation: modalIn .3s ease;
}
@keyframes modalIn { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: scale(1); } }
.modal__icon { font-size: 3.5rem; margin-bottom: 16px; }
.modal h3 { margin-bottom: 12px; }
.modal p { margin-bottom: 24px; font-size: .95rem; }
.modal .btn { margin: 6px; }

/* ---------- Cancellation / Policy ---------- */
.policy-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow);
  border-left: 5px solid var(--accent);
}
.policy-card h3 { margin-bottom: 12px; }
.policy-card p { font-size: .95rem; margin-bottom: 8px; }
.policy-card ul { margin-top: 12px; padding-left: 20px; }
.policy-card ul li { list-style: disc; color: var(--gray); margin-bottom: 6px; font-size: .93rem; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow);
}
.testimonial-card__stars { color: #FBBF24; font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-card p { font-style: italic; margin-bottom: 16px; font-size: .95rem; }
.testimonial-card__author { font-weight: 600; color: var(--blue); font-size: .9rem; }

/* ---------- About ---------- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center;
}
.about-img {
  height: 400px; background: var(--blue-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); font-size: 4rem;
  background-size: cover; background-position: center;
}
.about-content h2 { margin-bottom: 16px; }
.about-content p { margin-bottom: 16px; }

/* ---------- Benefits Grid ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.benefit-card {
  display: flex; gap: 16px; padding: 24px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.benefit-card__icon {
  flex-shrink: 0; width: 48px; height: 48px;
  background: rgba(59,130,246,.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.benefit-card__text h4 { font-size: 1rem; margin-bottom: 4px; }
.benefit-card__text p { font-size: .88rem; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 64px 0; text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.75); margin-bottom: 32px; font-size: 1.1rem; }
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
  background: var(--blue-dark); color: rgba(255,255,255,.7);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-col h4 { color: var(--white); margin-bottom: 16px; font-size: 1rem; }
.footer-col p { font-size: .9rem; margin-bottom: 12px; }
.footer-col a { display: block; font-size: .9rem; margin-bottom: 8px; transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-col .social-links { display: flex; gap: 12px; margin-top: 12px; }
.footer-col .social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.1rem; transition: all var(--transition);
}
.footer-col .social-links a:hover { background: var(--accent); color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px; text-align: center; font-size: .85rem;
}

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}
.whatsapp-float__tooltip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: var(--white); color: var(--text);
  padding: 8px 16px; border-radius: 8px;
  font-size: .85rem; font-weight: 500;
  white-space: nowrap; box-shadow: var(--shadow);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 120px 0 60px; margin-top: 72px; text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.15rem; max-width: 560px; margin: 0 auto; }

/* ---------- Scroll Progress Bar ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--accent), #818CF8, var(--accent));
  background-size: 200% 100%;
  animation: shimmerBar 2s linear infinite;
  z-index: 1001; transition: width .1s linear;
}
@keyframes shimmerBar {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ---------- Section Tags ---------- */
.section-tag {
  display: inline-block; background: rgba(59,130,246,.1);
  color: var(--accent); padding: 6px 18px; border-radius: 50px;
  font-size: .8rem; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; margin-bottom: 12px;
}

/* ---------- Hero Enhancements ---------- */
.hero { position: relative; }
.hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-shape {
  position: absolute; border-radius: 50%;
  background: rgba(59,130,246,.08);
  animation: floatShape 20s ease-in-out infinite;
}
.hero-shape--1 { width: 500px; height: 500px; top: -10%; right: -5%; animation-delay: 0s; }
.hero-shape--2 { width: 300px; height: 300px; bottom: 10%; left: -3%; animation-delay: -4s; background: rgba(59,130,246,.06); }
.hero-shape--3 { width: 200px; height: 200px; top: 30%; right: 20%; animation-delay: -8s; background: rgba(129,140,248,.08); }
.hero-shape--4 { width: 120px; height: 120px; bottom: 25%; right: 10%; animation-delay: -12s; background: rgba(59,130,246,.1); }
.hero-shape--5 { width: 80px; height: 80px; top: 20%; left: 15%; animation-delay: -16s; background: rgba(255,255,255,.05); }

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -30px) scale(1.05); }
  50% { transform: translate(-15px, 20px) scale(.95); }
  75% { transform: translate(25px, 15px) scale(1.02); }
}

.hero-gradient-text {
  background: linear-gradient(135deg, #60A5FA, #818CF8, #A78BFA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge--glow {
  animation: badgePulse 3s ease-in-out infinite;
  border: 1px solid rgba(59,130,246,.3);
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59,130,246,.3); }
  50% { box-shadow: 0 0 20px 4px rgba(59,130,246,.15); }
}

.hero-trust {
  display: flex; align-items: center; gap: 20px; margin-top: 32px;
  flex-wrap: wrap;
}
.hero-trust__item {
  color: rgba(255,255,255,.75); font-size: .9rem;
}
.hero-trust__item strong { color: #fff; }
.hero-trust__divider {
  width: 1px; height: 20px; background: rgba(255,255,255,.25);
}

.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ----- Button Shine Effect ----- */
.btn--shine { position: relative; overflow: hidden; }
.btn--shine::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%;
  height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  animation: btnShine 3s ease-in-out infinite;
}
@keyframes btnShine {
  0% { left: -100%; }
  50%, 100% { left: 150%; }
}
.btn--lg { padding: 16px 40px; font-size: 1.05rem; }

/* ---------- Stats Bar ---------- */
.stats-bar {
  padding: 48px 0;
  background: var(--white);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; text-align: center;
}
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%;
  height: 60%; width: 1px; background: var(--gray-light);
}
.stat-number {
  font-size: 2.8rem; font-weight: 800; color: var(--blue);
  line-height: 1.1;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: .9rem; color: var(--gray); margin-top: 4px;
  font-weight: 500;
}

/* ---------- Premium Step Cards ---------- */
.steps-grid--connected { position: relative; }

.step-card--premium {
  position: relative; border: 1px solid var(--gray-light);
  background: var(--white);
  transition: all .3s ease;
}
.step-card--premium:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(59,130,246,.12);
}
.step-card--premium:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(59,130,246,.3);
}
.step-card--premium .step-number {
  transition: all .3s ease;
}

/* ---------- Destinations Marquee Strip ---------- */
.destinations-strip {
  background: var(--blue); padding: 16px 0; overflow: hidden;
}
.destinations-scroll {
  display: flex; gap: 24px; white-space: nowrap;
  animation: scrollMarquee 25s linear infinite;
  width: max-content;
}
.dest-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12); color: #fff;
  padding: 8px 20px; border-radius: 50px;
  font-size: .85rem; font-weight: 500;
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(4px);
  flex-shrink: 0;
}
@keyframes scrollMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Glowing Benefit Cards ---------- */
.benefit-card--glow {
  position: relative; border: 1px solid var(--gray-light);
  transition: all .3s ease;
}
.benefit-card--glow::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: var(--radius); opacity: 0;
  background: linear-gradient(135deg, var(--accent), #818CF8);
  z-index: -1; transition: opacity .3s ease;
  filter: blur(8px);
}
.benefit-card--glow:hover {
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(59,130,246,.15);
  transform: translateY(-4px);
}
.benefit-card--glow:hover::before { opacity: .3; }
.benefit-card--glow:hover .benefit-card__icon {
  background: rgba(59,130,246,.2);
  transform: scale(1.1);
}
.benefit-card__icon { transition: all .3s ease; }

/* ---------- Premium Testimonials ---------- */
.testimonial-card--premium {
  position: relative; overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: all .3s ease;
}
.testimonial-card--premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27,42,74,.12);
  border-color: rgba(59,130,246,.2);
}
.testimonial-card__quote {
  position: absolute; top: -8px; right: 16px;
  font-size: 5rem; font-weight: 800; line-height: 1;
  color: rgba(59,130,246,.08); font-family: Georgia, serif;
  pointer-events: none;
}
.testimonial-card__footer {
  display: flex; align-items: center; gap: 12px;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--gray-light);
}
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: #fff; font-weight: 700; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 600; color: var(--blue); font-size: .9rem;
}
.testimonial-card__origin {
  font-size: .8rem; color: var(--gray);
}

/* ---------- Premium CTA Banner ---------- */
.cta-banner--premium {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue), var(--blue-light));
  padding: 80px 0;
}
.cta-icon {
  font-size: 3rem; margin-bottom: 16px;
  animation: ctaBounce 2s ease-in-out infinite;
}
@keyframes ctaBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.cta-sub {
  margin-top: 20px; font-size: .9rem;
  color: rgba(255,255,255,.5) !important;
}
.cta-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cta-particle {
  position: absolute; border-radius: 50%;
  background: rgba(59,130,246,.15);
  animation: floatParticle 12s ease-in-out infinite;
}
.cta-particle--1 { width: 200px; height: 200px; top: -50px; left: 10%; animation-delay: 0s; }
.cta-particle--2 { width: 150px; height: 150px; bottom: -40px; right: 15%; animation-delay: -4s; background: rgba(129,140,248,.1); }
.cta-particle--3 { width: 100px; height: 100px; top: 30%; right: 30%; animation-delay: -8s; background: rgba(255,255,255,.05); }
@keyframes floatParticle {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.1); }
  66% { transform: translate(-20px, 30px) scale(.9); }
}

/* ---------- Cookie Consent Banner ---------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--blue-dark); color: var(--white);
  padding: 20px 24px; display: flex; align-items: center;
  justify-content: center; gap: 20px; z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  font-size: .9rem; flex-wrap: wrap; text-align: center;
}
.cookie-banner a { color: var(--accent); text-decoration: underline; }
.cookie-banner button {
  background: var(--accent); color: #fff; border: none;
  padding: 10px 28px; border-radius: var(--radius);
  cursor: pointer; font-weight: 600; font-size: .9rem;
  transition: background var(--transition);
}
.cookie-banner button:hover { background: var(--accent-hover); }

/* ---------- Price Calculator ---------- */
#priceCalc {
  display: none; background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
  border: 1px solid var(--accent); border-radius: var(--radius);
  padding: 16px 20px; margin-top: 12px;
  animation: fadeInUp .3s ease;
}
#priceCalc .price-label { font-size: .85rem; color: var(--gray); margin-bottom: 4px; }
#pricePerPerson { font-size: 1.1rem; font-weight: 700; color: var(--blue); display: block; }
#priceTotal { font-size: .95rem; color: var(--accent); font-weight: 600; display: block; margin-top: 4px; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Home Weather Widget ---------- */
#homeWeather {
  display: none; background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius); padding: 10px 20px;
  font-size: .9rem; color: var(--white); margin-top: 16px;
  display: inline-block;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .booking-wrapper { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { 
    position: fixed; top: 72px; left: 0; width: 100%;
    background: var(--white); flex-direction: column;
    padding: 24px; gap: 20px;
    transform: translateY(-120%);
    transition: transform var(--transition);
    box-shadow: var(--shadow);
  }
  .nav.open { transform: translateY(0); }
  .nav-toggle { display: block; }

  .hero { min-height: 80vh; }
  .hero-content h1 { font-size: 2rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-number { font-size: 2rem; }

  .hero-trust { gap: 12px; }
  .hero-trust__divider { display: none; }
  .hero-trust__item { font-size: .8rem; }

  .tours-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .transfer-card { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
