/* ================================================================
   VIP TAXI SZCZECIN – style.css
   Paleta: pastelowa premium dla kobiet 35+
   Czcionki: Cormorant Garamond (display) + Nunito (body)
   ================================================================ */

/* ──────────────────────────────────────────
   CSS VARIABLES
   ────────────────────────────────────────── */
:root {
  /* Kolory główne */
  --cream:        #FDF8F5;
  --blush:        #F5E8E4;
  --blush-mid:    #EDCFC8;
  --blush-deep:   #D4A49A;
  --rose:         #C07872;
  --rose-dark:    #9A5A54;
  --champagne:    #C9A96A;
  --champagne-lt: #EDD9A3;
  --dusty-mauve:  #B49BA0;

  /* Neutralne */
  --white:        #FFFFFF;
  --bg-soft:      #FAF5F2;
  --border:       #EDE0DB;
  --border-mid:   #D8C8C2;
  --text-dark:    #2C2020;
  --text-mid:     #5C4A47;
  --text-light:   #9A8A87;
  --footer-bg:    #2A1F1D;
  --footer-mid:   #3A2D2A;

  /* Typografia */
  --ff-display:  'Cormorant Garamond', Georgia, serif;
  --ff-body:     'Nunito', 'Segoe UI', sans-serif;

  /* Sizing */
  --nav-h:       80px;
  --radius:      14px;
  --radius-sm:   8px;
  --radius-lg:   24px;
  --shadow-sm:   0 2px 12px rgba(44,32,32,0.07);
  --shadow-md:   0 8px 32px rgba(44,32,32,0.12);
  --shadow-lg:   0 20px 60px rgba(44,32,32,0.16);
  --transition:  0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ──────────────────────────────────────────
   BASE RESET & GLOBAL
   ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
  background: var(--cream);
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color var(--transition); }

/* ──────────────────────────────────────────
   SECTION UTILITIES
   ────────────────────────────────────────── */
.section-padding    { padding: 100px 0; }
.section-bg-soft    { background: var(--bg-soft); }

.section-tag {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
  padding: 6px 16px;
  background: rgba(192,120,114,0.1);
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--rose);
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
}

.section-lead {
  font-size: 18px;
  color: var(--text-mid);
  margin-bottom: 20px;
  font-weight: 500;
}
.section-body { font-size: 15.5px; margin-bottom: 30px; }
.section-header { margin-bottom: 10px; }

/* ──────────────────────────────────────────
   BUTTONS
   ────────────────────────────────────────── */
.btn-primary-rose {
  background: var(--rose);
  color: var(--white);
  border-radius: 100px;
  padding: 14px 34px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  border: 2px solid var(--rose);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-primary-rose:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,120,114,0.35);
}

.btn-outline-rose {
  background: transparent;
  color: var(--rose);
  border: 2px solid var(--rose);
  border-radius: 100px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-outline-rose:hover {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}

/* ──────────────────────────────────────────
   NAVBAR
   ────────────────────────────────────────── */
#mainNav {
  height: var(--nav-h);
  background: rgba(253,248,245,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  z-index: 1000;
}
#mainNav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
#mainNav.scrolled-dark {
  background: rgba(42,31,29,0.97);
}

.navbar-brand {
  font-family: var(--ff-display);
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.brand-vip  { font-weight: 700; color: var(--rose); font-size: 26px; }
.brand-taxi { font-weight: 400; color: var(--text-dark); }
.brand-city { font-size: 13px; font-weight: 300; color: var(--text-light); margin-left: 4px; font-family: var(--ff-body); letter-spacing: 1px; text-transform: uppercase; }

.nav-link {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--text-mid) !important;
  padding: 8px 14px !important;
  letter-spacing: 0.3px;
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--rose) !important;
}
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.dropdown-menu {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 10px;
  min-width: 250px;
  animation: dropDown 0.2s ease;
}
@keyframes dropDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dropdown-item {
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 500;
  transition: all 0.2s;
}
.dropdown-item:hover {
  background: var(--blush);
  color: var(--rose-dark);
}
.dropdown-item i { color: var(--rose); }

/* CTA button in nav */
.btn-nav-cta {
  background: var(--rose);
  color: var(--white) !important;
  border-radius: 100px;
  padding: 10px 22px !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: 2px solid var(--rose);
  transition: all var(--transition);
}
.btn-nav-cta:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(192,120,114,0.4);
}

/* Hamburger */
.navbar-toggler {
  border: none;
  padding: 8px;
  background: none;
  outline: none !important;
  box-shadow: none !important;
}
.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger-icon span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(253,248,245,0.98);
    backdrop-filter: blur(20px);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 16px 0;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-link::after { display: none; }
  .dropdown-menu { box-shadow: none; border: none; background: var(--blush); }
  .btn-nav-cta { margin: 10px 14px 6px; }
}

/* ──────────────────────────────────────────
   HERO
   ────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--blush-mid); /* fallback gdy brak zdjęcia */
  transition: transform 0.1s ease-out;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(45,28,25,0.72) 0%,
    rgba(45,28,25,0.40) 55%,
    rgba(192,120,114,0.12) 100%
  );
}
.hero-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.hero-dec-1 {
  width: 600px; height: 600px;
  background: var(--champagne);
  top: -200px; right: -100px;
  animation: floatDec 8s ease-in-out infinite;
}
.hero-dec-2 {
  width: 400px; height: 400px;
  background: var(--blush-deep);
  bottom: -150px; right: 20%;
  animation: floatDec 10s ease-in-out infinite reverse;
}
@keyframes floatDec {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h) + 20px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #6ddf8a;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(109,223,138,0.4);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(109,223,138,0.4); }
  70%  { box-shadow: 0 0 0 8px rgba(109,223,138,0); }
  100% { box-shadow: 0 0 0 0 rgba(109,223,138,0); }
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--champagne-lt);
}

.hero-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.82);
  max-width: 500px;
  margin-bottom: 38px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}

.btn-hero-primary {
  background: var(--rose);
  color: var(--white);
  border-radius: 100px;
  padding: 16px 38px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid var(--rose);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-hero-primary:hover {
  background: var(--champagne);
  border-color: var(--champagne);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(197,169,106,0.45);
}

.btn-hero-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-radius: 100px;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-3px);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}
.hero-feature i { color: var(--champagne-lt); font-size: 16px; }

/* Hero floating card */
.hero-card {
  background: rgba(253,248,245,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 320px;
  box-shadow: var(--shadow-lg);
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}
.hero-card-header i { font-size: 18px; }
.hero-card-link { display: block; }
.hero-card-link p { font-size: 16px; font-weight: 600; color: var(--text-dark); }
.hero-card-sub { font-size: 13px; color: var(--text-light); margin-bottom: 16px !important; }
.hero-card-btn {
  display: inline-flex;
  align-items: center;
  background: var(--rose);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  margin-bottom: 20px;
}
.hero-card-link:hover .hero-card-btn {
  background: var(--rose-dark);
  transform: translateX(4px);
}
.hero-card-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.hero-stat { text-align: center; flex: 1; }
.hero-stat-num { font-family: var(--ff-display); font-size: 28px; font-weight: 700; color: var(--text-dark); }
.hero-stat span:not(.hero-stat-num):not(.hero-stat-label) { font-size: 14px; color: var(--rose); font-weight: 700; }
.hero-stat-label { display: block; font-size: 11px; color: var(--text-light); letter-spacing: 0.5px; }
.hero-stat-divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 3px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(6px); opacity: 0.3; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ──────────────────────────────────────────
   TRUST BAR
   ────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 20px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--blush); }
.trust-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blush), var(--blush-mid));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  color: var(--rose);
}
.trust-text strong { display: block; font-size: 14px; color: var(--text-dark); font-weight: 700; }
.trust-text span   { font-size: 12.5px; color: var(--text-light); }

/* ──────────────────────────────────────────
   ABOUT
   ────────────────────────────────────────── */
.about-image-wrap {
  position: relative;
}
.about-img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  height: 560px;
  box-shadow: var(--shadow-lg);
}
.about-image-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-mid) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--rose);
}
.about-image-placeholder i { font-size: 64px; opacity: 0.5; }
.about-image-placeholder span { font-size: 14px; color: var(--text-light); }

/* Pokazuj placeholder gdy img nie załadowany */
.about-img[src="images/about-car.jpg"] ~ .about-image-placeholder { display: none; }

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.about-badge-float i  { font-size: 24px; color: var(--champagne); margin-bottom: 4px; display: block; }
.about-badge-float strong { font-family: var(--ff-display); font-size: 32px; color: var(--text-dark); display: block; line-height: 1; }
.about-badge-float span  { font-size: 12px; color: var(--text-light); }

.about-img-deco {
  position: absolute;
  top: -24px; left: -24px;
  width: 180px; height: 180px;
  border: 2px solid var(--blush-mid);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.about-feature-icon {
  width: 44px; height: 44px;
  background: var(--blush);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rose);
  font-size: 18px;
}
.about-feature strong { display: block; font-size: 15px; color: var(--text-dark); font-weight: 700; margin-bottom: 2px; }
.about-feature p { font-size: 13.5px; color: var(--text-light); margin: 0; }

/* ──────────────────────────────────────────
   SERVICES
   ────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blush-mid);
}
.service-card-featured {
  border-color: var(--champagne);
  box-shadow: 0 4px 24px rgba(197,169,106,0.2);
}

.service-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-mid) 100%);
}
.service-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-image img { transform: scale(1.06); }
.service-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  color: rgba(192,120,114,0.35);
}
.service-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--rose);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.service-badge-gold { background: var(--champagne); color: var(--text-dark); }

.service-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-icon-sm {
  width: 40px; height: 40px;
  background: var(--blush);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  font-size: 17px;
  margin-bottom: 14px;
}
.service-title { font-size: 19px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.service-desc  { font-size: 14px; color: var(--text-light); margin-bottom: 16px; line-height: 1.65; }
.service-list  {
  list-style: none;
  padding: 0; margin: 0 0 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.service-list li { font-size: 13.5px; color: var(--text-mid); display: flex; align-items: center; gap: 8px; }
.service-list i  { color: var(--rose); font-size: 12px; flex-shrink: 0; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--rose);
  margin-top: auto;
  transition: gap var(--transition), color var(--transition);
}
.service-link:hover { color: var(--rose-dark); gap: 10px; }

/* ──────────────────────────────────────────
   FLEET
   ────────────────────────────────────────── */
.fleet-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--blush), var(--blush-mid));
  min-height: 340px;
  box-shadow: var(--shadow-md);
}
.fleet-img { width: 100%; height: 100%; object-fit: cover; }
.fleet-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(192,120,114,0.5);
  font-size: 64px;
}
.fleet-img-placeholder span { font-size: 14px; color: var(--text-light); }
.fleet-subtitle { font-family: var(--ff-display); font-size: 28px; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; }
.fleet-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.fleet-feature:hover { border-color: var(--blush-mid); box-shadow: var(--shadow-sm); }
.fleet-feature i { font-size: 20px; color: var(--rose); flex-shrink: 0; width: 24px; text-align: center; }
.fleet-feature strong { display: block; font-size: 14px; color: var(--text-dark); font-weight: 700; }
.fleet-feature span  { font-size: 12px; color: var(--text-light); }

/* ──────────────────────────────────────────
   PRICING
   ────────────────────────────────────────── */
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.price-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.price-card-featured {
  border: 2px solid var(--rose);
  box-shadow: 0 8px 32px rgba(192,120,114,0.2);
}
.price-card-featured-label {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.price-icon { font-size: 28px; color: var(--rose); }
.price-card-header h3 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin: 0; }
.price-card-body { flex: 1; margin-bottom: 24px; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}
.price-row:last-child { border-bottom: none; }
.price-row span:first-child { color: var(--text-mid); }
.price-val { font-weight: 700; color: var(--text-dark); font-size: 15px; }
.btn-price {
  display: block;
  text-align: center;
  padding: 12px 24px;
  background: var(--blush);
  color: var(--rose-dark);
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--blush-mid);
  transition: all var(--transition);
  margin-top: auto;
}
.btn-price:hover {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}
.btn-price-featured {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}
.btn-price-featured:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
}
.price-note { font-size: 13.5px; color: var(--text-light); font-style: italic; }

/* ──────────────────────────────────────────
   REVIEWS
   ────────────────────────────────────────── */
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--blush-mid);
}
.review-stars { color: var(--champagne); font-size: 15px; margin-bottom: 16px; letter-spacing: 2px; }
.review-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blush-mid), var(--blush-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
}
.review-avatar-b { background: linear-gradient(135deg, var(--dusty-mauve), #a0768a); }
.review-avatar-c { background: linear-gradient(135deg, var(--champagne), #c5956a); }
.review-author strong { display: block; font-size: 14px; color: var(--text-dark); }
.review-author span  { font-size: 12px; color: var(--text-light); }

/* ──────────────────────────────────────────
   CTA SECTION
   ────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--rose-dark) 0%, #7a3e3a 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-text h2 { font-family: var(--ff-display); font-size: 38px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.cta-text p  { color: rgba(255,255,255,0.75); font-size: 16px; margin: 0; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-cta-phone {
  background: var(--white);
  color: var(--rose-dark);
  border-radius: 100px;
  padding: 16px 34px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid var(--white);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-cta-phone:hover {
  background: var(--champagne-lt);
  border-color: var(--champagne-lt);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-cta-wa {
  background: #25d366;
  color: var(--white);
  border-radius: 100px;
  padding: 16px 30px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid #25d366;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-cta-wa:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-2px);
}

/* ──────────────────────────────────────────
   CONTACT
   ────────────────────────────────────────── */
.contact-items { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  color: var(--text-mid);
}
.contact-item:hover {
  border-color: var(--blush-mid);
  box-shadow: var(--shadow-sm);
  color: var(--text-dark);
  transform: translateX(4px);
}
.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--blush);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--rose);
  flex-shrink: 0;
}
.contact-icon-wa { background: #e8faf0; color: #25d366 !important; }
.contact-item strong { display: block; font-size: 14px; color: var(--text-dark); font-weight: 700; }
.contact-item span  { font-size: 13.5px; color: var(--text-light); }

.contact-social { display: flex; gap: 10px; }
.social-btn {
  width: 44px; height: 44px;
  background: var(--blush);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--rose);
  transition: all var(--transition);
}
.social-btn:hover { background: var(--rose); color: var(--white); border-color: var(--rose); transform: translateY(-3px); }
.social-btn-wa:hover { background: #25d366 !important; border-color: #25d366 !important; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-label { font-size: 13.5px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-input {
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14.5px;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: var(--ff-body);
}
.form-input::placeholder { color: var(--text-light); }
.form-input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(192,120,114,0.15);
  outline: none;
  background: var(--white);
}
.form-check-input:checked { background-color: var(--rose); border-color: var(--rose); }
.form-check-label { font-size: 13px; color: var(--text-light); }
.form-check-label a { color: var(--rose); font-weight: 600; }

.btn-submit {
  background: var(--rose);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid var(--rose);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-submit:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,120,114,0.4);
}
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.form-success-msg {
  background: #e8faf0;
  border: 1px solid #a3d9b5;
  border-radius: var(--radius);
  padding: 14px 18px;
  color: #2d7a4a;
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 20px;
}
.form-error-msg {
  background: #fff0f0;
  border: 1px solid #f0a0a0;
  border-radius: var(--radius);
  padding: 14px 18px;
  color: #c62828;
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* Visit counter */
.visit-counter {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--blush);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-light);
}
.counter-val { font-weight: 700; color: var(--rose); margin-left: 6px; }

/* ──────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────── */
.site-footer { background: var(--footer-bg); }
.footer-top { padding: 70px 0 50px; }

.footer-brand {
  font-family: var(--ff-display);
  font-size: 28px;
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 16px;
}
.footer-brand .brand-vip  { color: var(--blush-deep); font-size: 30px; font-weight: 700; }
.footer-brand .brand-taxi { color: rgba(255,255,255,0.9); font-weight: 400; }
.footer-brand .brand-city { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 1.5px; text-transform: uppercase; font-family: var(--ff-body); }

.footer-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; max-width: 320px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--rose); border-color: var(--rose); color: var(--white); transform: translateY(-3px); }

.footer-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--blush-deep); }

.footer-contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-contact li { display: flex; align-items: flex-start; }
.footer-contact a, .footer-contact span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--blush-deep); }
.footer-contact i { color: var(--rose); width: 16px; flex-shrink: 0; margin-top: 2px; }

.footer-address { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.6); }

.footer-ext-label { font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
.footer-external { display: flex; flex-direction: column; gap: 4px; }
.footer-external a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-external a:hover { color: var(--blush-deep); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  background: rgba(0,0,0,0.2);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom-links { display: flex; align-items: center; gap: 12px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); font-size: 13px; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--blush-deep); }
.footer-bottom-links span { color: rgba(255,255,255,0.2); }

/* ──────────────────────────────────────────
   FLOATING PHONE BUTTON
   ────────────────────────────────────────── */
.float-phone-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  background: var(--rose);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 6px 24px rgba(192,120,114,0.5);
  transition: all var(--transition);
  animation: phoneRing 3s ease-in-out infinite;
}
.float-phone-btn:hover {
  background: var(--rose-dark);
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(192,120,114,0.6);
}
@keyframes phoneRing {
  0%, 90%, 100% { transform: rotate(0deg); }
  92%            { transform: rotate(-15deg); }
  94%            { transform: rotate(15deg); }
  96%            { transform: rotate(-10deg); }
  98%            { transform: rotate(8deg); }
}

/* ──────────────────────────────────────────
   BACK TO TOP
   ────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 998;
  width: 44px; height: 44px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-mid);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--rose); color: var(--white); border-color: var(--rose); }

/* ──────────────────────────────────────────
   AOS OVERRIDES
   ────────────────────────────────────────── */
[data-aos] { will-change: transform, opacity; }

/* ──────────────────────────────────────────
   ACCESSIBILITY
   ────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 4px;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ──────────────────────────────────────────
   IMAGE PLACEHOLDERS – ukrywamy gdy img załadowany
   ────────────────────────────────────────── */
img.loaded + .service-image-placeholder,
img.loaded + .fleet-img-placeholder,
img.loaded + .about-image-placeholder { display: none !important; }

/* ──────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────── */
@media (max-width: 1199px) {
  .hero-title { font-size: clamp(40px, 5.5vw, 72px); }
  .about-img { height: 450px; }
}

@media (max-width: 991px) {
  .section-padding { padding: 70px 0; }
  .hero-section .hero-content { padding-bottom: 80px; }
  .cta-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .about-badge-float { bottom: -14px; right: 10px; }
}

@media (max-width: 767px) {
  :root { --nav-h: 68px; }
  .section-padding { padding: 56px 0; }
  .hero-title { font-size: clamp(36px, 9vw, 56px); }
  .trust-item { flex-direction: column; text-align: center; padding: 18px 12px; }
  .trust-text strong { font-size: 12px; }
  .contact-form-wrap { padding: 24px; }
  .footer-top { padding: 50px 0 40px; }
  .float-phone-btn { bottom: 20px; right: 20px; }
  .back-to-top { bottom: 84px; right: 20px; }
}

@media (max-width: 575px) {
  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { text-align: center; justify-content: center; }
  .cta-actions { flex-direction: column; width: 100%; }
  .btn-cta-phone, .btn-cta-wa { text-align: center; justify-content: center; width: 100%; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .about-img-deco { display: none; }
}

/* ──────────────────────────────────────────
   PRINT
   ────────────────────────────────────────── */
@media print {
  .float-phone-btn, .back-to-top, #mainNav,
  .scroll-indicator, .cta-section, .hero-overlay { display: none !important; }
  body { background: white; color: #000; }
  .hero-section { min-height: auto; padding: 40px 0; }
}
