/* ============================================
   USŁUGI DRONEM OSTRÓDA — Style CSS
   Nowoczesna, responsywna, luksusowa strona
   ============================================ */

/* --- Reset i podstawy --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Kolory */
  --color-primary: #0f172a;
  --color-primary-light: #1e293b;
  --color-accent: #3b82f6;
  --color-accent-hover: #2563eb;
  --color-gold: #d4a853;
  --color-gold-light: #e8c97a;
  --color-gold-glow: rgba(212, 168, 83, 0.15);
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-text: #1e293b;
  --color-text-light: #64748b;
  --color-border: #e2e8f0;
  --color-success: #10b981;

  /* Typografia */
  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Inne */
  --max-width: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--color-accent-hover);
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

/* --- Kontener --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* --- Sekcje --- */
.section {
  padding: var(--space-3xl) 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-dark {
  background: var(--color-primary);
  color: #fff;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

/* --- Nagłówek sekcji z złotą linią --- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-md);
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  border-radius: 2px;
}

.section-header p {
  color: var(--color-text-light);
  margin-top: var(--space-md);
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Nawigacja --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.navbar.scrolled {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}

.navbar.scrolled:hover {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled .nav-link {
  color: var(--color-text);
}

.navbar.scrolled:hover .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.navbar.scrolled .nav-link:hover {
  color: var(--color-primary);
}

.navbar.scrolled:hover .nav-link:hover {
  color: #fff;
}

.navbar.scrolled .navbar-toggle span {
  background: var(--color-text);
}

.navbar.scrolled:hover .navbar-toggle span {
  background: #fff;
}

.navbar.scrolled .nav-cta {
  color: #fff;
  background: var(--color-gold);
}

.navbar.scrolled:hover .nav-cta {
  color: var(--color-primary);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
}

.navbar-logo:hover {
  color: var(--color-gold);
}

.navbar-logo {
  position: relative;
}

.navbar-logo-img {
  height: 40px;
  width: auto;
  transition: filter 0.4s ease, transform 0.4s ease;
}

.navbar-logo::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 168, 83, 0.4) 45%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(212, 168, 83, 0.4) 55%,
    transparent 100%
  );
  background-size: 250% 100%;
  background-position: 200% center;
  -webkit-mask-image: url('../grafiki/logo_transparent.png');
  mask-image: url('../grafiki/logo_transparent.png');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  animation: logo-shimmer 5s ease-in-out infinite;
  pointer-events: none;
}

.navbar-logo:hover .navbar-logo-img {
  filter: drop-shadow(0 0 8px rgba(212, 168, 83, 0.6));
  transform: scale(1.05);
}

.navbar-logo:hover::after {
  animation: logo-shimmer 2s ease-in-out infinite;
}

@keyframes logo-shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: var(--space-xs) 0;
  text-decoration: none;
  transition: var(--transition);
}

.nav-link:hover {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--color-gold);
  color: var(--color-primary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--color-gold-light);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 168, 83, 0.4);
}

/* Skip link dla dostępności WCAG */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--color-gold);
  color: var(--color-primary);
  padding: 10px 18px;
  font-weight: 700;
  z-index: 10000;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
  outline: 3px solid var(--color-accent);
}

/* Hamburger */
.navbar-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: var(--radius-sm);
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
  border-radius: 2px;
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, #0c1929 100%);
  overflow: hidden;
  padding-top: 70px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: url('../grafiki/bg.avif') center/cover no-repeat;
  filter: blur(2px);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(212, 168, 83, 0.15);
  color: var(--color-gold);
  padding: var(--space-sm) var(--space-md);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(212, 168, 83, 0.3);
}

.hero h1 {
  color: #fff;
  margin-bottom: var(--space-lg);
  font-weight: 800;
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Animacja fade-in na hero */
.hero-content {
  animation: heroFadeIn 1s ease-out;
}

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

/* --- Przyciski --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::after {
  left: 100%;
}

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

.btn-primary:hover {
  background: var(--color-gold-light);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 168, 83, 0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

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

.btn-outline-dark:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--color-accent);
  color: #fff;
}

.btn-accent:hover {
  background: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* --- Karty usług --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-xl);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(212, 168, 83, 0.3);
}

.service-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold-glow);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-lg);
  color: var(--color-gold);
  font-size: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-card-icon {
  background: var(--color-gold);
  color: var(--color-primary);
}

.service-card h3 {
  margin-bottom: var(--space-md);
}

.service-card p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card ul li {
  padding: var(--space-xs) 0;
  color: var(--color-text-light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.service-card ul li i {
  color: #10b981;
  font-size: 0.85rem;
}

/* --- Cechy drona (ikony) --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.feature-item {
  text-align: center;
  padding: var(--space-xl);
  border-radius: var(--radius);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.feature-item:hover {
  border-color: rgba(212, 168, 83, 0.3);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  background: var(--color-gold-glow);
  border-radius: 50%;
  color: var(--color-gold);
  font-size: 1.6rem;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: var(--color-gold);
  color: var(--color-primary);
  transform: scale(1.1);
}

.feature-item h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.feature-item p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* --- Dlaczego warto --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.why-item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.why-item:hover {
  border-color: rgba(212, 168, 83, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.why-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 83, 0.15);
  border-radius: var(--radius-sm);
  color: var(--color-gold);
  font-size: 1.3rem;
}

.why-item h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.why-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* --- Cennik --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.pricing-card {
  background: var(--color-bg);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius);
  padding: var(--space-xl);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 168, 83, 0.3);
}

.pricing-card.featured {
  border-color: var(--color-gold);
  box-shadow: 0 0 30px rgba(212, 168, 83, 0.15);
}

.pricing-card.featured::before {
  content: 'Popularne';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-primary);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.pricing-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.pricing-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text-light);
}

.pricing-desc {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.pricing-features li {
  padding: var(--space-xs) 0;
  font-size: 0.9rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.pricing-features li i {
  color: var(--color-success);
  font-size: 0.8rem;
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-card.gold {
  background: linear-gradient(135deg, #0f172a 0%, #1a2540 40%, #0f172a 100%);
  border: 2px solid var(--color-gold);
  box-shadow:
    0 0 40px rgba(212, 168, 83, 0.2),
    inset 0 1px 0 rgba(212, 168, 83, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card.gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  border-radius: 0 0 4px 4px;
}

.pricing-card.gold::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  border-radius: 4px 4px 0 0;
}

.pricing-card.gold .pricing-name {
  color: var(--color-gold-light);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.pricing-card.gold .pricing-name i {
  margin-right: 8px;
  font-size: 1.1rem;
}

.pricing-card.gold .pricing-price {
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.pricing-card.gold .pricing-desc {
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(212, 168, 83, 0.2);
  font-size: 0.95rem;
  line-height: 1.6;
}

.pricing-card.gold .pricing-features {
  text-align: left;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card.gold .pricing-features li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  padding: 6px 0;
}

.pricing-card.gold .pricing-features li i {
  color: var(--color-gold);
  font-size: 0.75rem;
  width: 20px;
  text-align: center;
}

.pricing-card.gold .btn {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  letter-spacing: 0.03em;
  transition: var(--transition);
}

.pricing-card.gold .btn:hover {
  background: var(--color-gold);
  color: var(--color-primary);
  box-shadow: 0 0 25px rgba(212, 168, 83, 0.4);
}

/* --- Kroki współpracy --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(33.33% / 2);
  right: calc(33.33% / 2);
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  background: var(--color-primary);
  border: 3px solid var(--color-gold);
  border-radius: 50%;
  color: var(--color-gold);
  font-size: 1.8rem;
  font-weight: 800;
  position: relative;
}

.step-number i {
  font-size: 1.4rem;
}

.step-item h3 {
  margin-bottom: var(--space-sm);
}

.step-item p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* --- Lokalizacje --- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.location-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-bg);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--color-text);
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
  color: var(--color-text);
}

.location-card i {
  color: var(--color-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.location-card span {
  font-weight: 500;
  font-size: 0.95rem;
}

/* --- Mapa lokalizacji --- */
.locations-map-wrapper {
  margin-bottom: var(--space-xl);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--color-gold);
  width: 62%;
  display: inline-block;
  vertical-align: top;
}

.locations-map {
  height: 480px;
  width: 100%;
  z-index: 1;
}

.locations-pills {
  width: 36%;
  display: inline-block;
  vertical-align: top;
  padding: var(--space-md) 0 var(--space-md) var(--space-lg);
  max-height: 480px;
  overflow-y: auto;
  display: inline-flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 8px;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.location-pill:hover {
  background: var(--color-gold-glow);
  border-color: var(--color-gold);
  color: var(--color-text);
}

.location-pill-main {
  background: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
  font-weight: 600;
}

.location-pill-main:hover {
  background: var(--color-gold-light);
  color: #fff;
  border-color: var(--color-gold-light);
}

/* Custom Leaflet marker */
.map-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--color-gold);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.map-marker i {
  transform: rotate(45deg);
  color: #fff;
  font-size: 14px;
}

.map-marker-ostroda {
  width: 44px;
  height: 44px;
  background: #fff;
  border: 3px solid var(--color-gold);
}

.map-marker-ostroda i {
  color: var(--color-gold);
  font-size: 16px;
}

/* Leaflet popup override */
.leaflet-popup-content-wrapper {
  border-radius: 12px !important;
  box-shadow: var(--shadow-lg) !important;
  border: 1px solid var(--color-gold-glow);
}

.leaflet-popup-content {
  margin: 12px 16px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.95rem !important;
}

.leaflet-popup-content a {
  color: #0f172a !important;
  font-weight: 700;
  text-decoration: underline;
  display: inline-block;
  margin-top: 4px;
}

.leaflet-popup-content a:hover {
  color: var(--color-accent) !important;
}

.leaflet-popup-tip {
  box-shadow: none !important;
}

/* --- Galeria --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(212, 168, 83, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-gold);
  font-size: 2rem;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover i {
  opacity: 1;
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(212, 168, 83, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  cursor: pointer;
  background: var(--color-bg);
  transition: var(--transition);
  gap: var(--space-md);
}

.faq-question:hover {
  background: var(--color-bg-alt);
}

.faq-question-left {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.faq-question-left i {
  color: var(--color-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
}

.faq-arrow {
  color: var(--color-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.faq-open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: var(--space-lg);
  padding-left: calc(var(--space-lg) + 36px);
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.faq-open .faq-answer {
  max-height: 500px;
}

.faq-weather-notice {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  padding: var(--space-lg) var(--space-xl);
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.08), rgba(59, 130, 246, 0.06));
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius);
}

.faq-weather-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-gold-glow);
  border-radius: 50%;
  font-size: 1.3rem;
  color: var(--color-gold);
}

.faq-weather-notice h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
  color: var(--color-primary);
}

.faq-weather-notice p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin: 0;
}

@media (max-width: 600px) {
  .faq-weather-notice {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    padding: var(--space-lg);
  }
}

/* --- Kontakt --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold-glow);
  border-radius: var(--radius-sm);
  color: var(--color-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-text h3 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.contact-info-text p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* Formularz */
.contact-form {
  background: var(--color-bg-alt);
  padding: var(--space-xl);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* Honeypot */
.form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* --- Footer --- */
.footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-logo {
  height: 40px;
  width: auto;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: var(--space-md);
}

.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-gold);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.9);
  padding: var(--space-lg) var(--space-xl);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-banner p a {
  color: var(--color-gold);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-md);
  flex-shrink: 0;
}

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-accept {
  background: var(--color-gold);
  color: var(--color-primary);
}

.btn-accept:hover {
  background: var(--color-gold-light);
  color: var(--color-primary);
}

.btn-reject {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-reject:hover {
  border-color: #fff;
  color: #fff;
}

/* --- Toast (komunikat sukcesu) --- */
.toast {
  position: fixed;
  top: 90px;
  right: 20px;
  background: var(--color-success);
  color: #fff;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xl);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-weight: 500;
  transform: translateX(calc(100% + 30px));
  transition: transform 0.4s ease;
}

.toast.visible {
  transform: translateX(0);
}

.toast i {
  font-size: 1.2rem;
}

/* --- Scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: var(--space-md) 0;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  list-style: none;
  font-size: 0.85rem;
}

.breadcrumbs-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.breadcrumbs-list li:not(:last-child)::after {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--color-text-light);
  font-size: 0.7rem;
}

.breadcrumbs-list a {
  color: var(--color-text-light);
}

.breadcrumbs-list a:hover {
  color: var(--color-gold);
}

.breadcrumbs-list .current {
  color: var(--color-text);
  font-weight: 500;
}

/* --- Podstrona lokalizacji --- */
.location-hero {
  padding: var(--space-4xl) 0 var(--space-2xl);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  text-align: center;
  margin-top: 70px;
}

.location-hero h1 {
  color: #fff;
  margin-bottom: var(--space-md);
}

.location-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.location-content {
  max-width: 900px;
  margin: 0 auto;
}

.location-content p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.location-content h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
}

/* Prezentacja zdjęcia miejscowości */
.location-showcase {
  margin: var(--space-lg) 0 var(--space-2xl);
}

.location-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  background: var(--color-primary-light);
}

.location-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.location-image-wrapper:hover .location-img {
  transform: scale(1.03);
}

.location-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.5) 70%, transparent 100%);
  color: #fff;
  padding: var(--space-md) var(--space-lg);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  backdrop-filter: blur(2px);
}

.location-image-caption i {
  color: var(--color-gold);
}

@media (max-width: 768px) {
  .location-img {
    height: 240px;
  }
}

/* --- Sekcja CTA (między sekcjami) --- */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  text-align: center;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 168, 83, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: var(--space-md);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-xl);
  font-size: 1.1rem;
}

/* --- Inne lokalizacje (na podstronach) --- */
.other-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

/* --- Badge zaufania --- */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.trust-badge i {
  color: var(--color-gold);
}

/* ============================================
   RESPONSYWNOŚĆ
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .steps-grid::before {
    display: none;
  }
}

/* Mobile landscape / small tablet */
@media (max-width: 768px) {
  .navbar,
  .navbar.scrolled,
  .navbar.scrolled:hover {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #0f172a !important;
    transition: none;
  }

  .navbar-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0f172a !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: var(--space-2xl);
    gap: var(--space-lg);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
    opacity: 1 !important;
  }

  .navbar-links.active {
    transform: translateX(0);
    background: #0f172a !important;
  }

  .navbar-links li {
    width: 100%;
    text-align: center;
  }

  .navbar-links .nav-link {
    font-size: 1.2rem;
    padding: var(--space-md) 0;
    display: block;
  }

  .navbar-links .nav-cta {
    font-size: 1.1rem;
    padding: var(--space-md) var(--space-xl);
    margin-top: var(--space-md);
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.85);
  }

  .navbar.scrolled:hover .nav-link {
    color: rgba(255, 255, 255, 0.85);
  }

  .navbar.scrolled .nav-link:hover {
    color: #fff;
  }

  .navbar.scrolled .navbar-toggle span {
    background: #fff;
  }

  .navbar.scrolled:hover .navbar-toggle span {
    background: #fff;
  }

  .navbar.scrolled .nav-cta {
    color: var(--color-primary);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .locations-map-wrapper {
    width: 100%;
    margin-bottom: var(--space-lg);
  }

  .locations-map {
    height: 380px;
  }

  .locations-pills {
    width: 100%;
    padding: var(--space-md) 0;
    max-height: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    text-align: center;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-lg);
  }

  .other-locations-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .location-card {
    padding: var(--space-md);
  }

  .locations-map {
    height: 300px;
  }

  .hero-content {
    padding: var(--space-lg) var(--space-md);
  }

  .hero-badge {
    font-size: 0.75rem;
  }

  .service-card {
    padding: var(--space-lg);
  }

  .pricing-card {
    padding: var(--space-lg);
  }

  .contact-form {
    padding: var(--space-lg);
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Desktop large */
@media (min-width: 1200px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

/* Parallax — wyłączone na mobile */
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }
}

/* --- Print --- */
@media print {
  .navbar,
  .cookie-banner,
  .hero-buttons,
  .contact-form {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section-dark {
    background: #f5f5f5;
    color: #000;
  }
}

/* --- Klasy zastępujące inline styles --- */
.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.btn-full { width: 100%; justify-content: center; }
.form-consent { font-size: 0.85rem; color: var(--color-text-light); margin-bottom: var(--space-md); line-height: 1.5; }
.form-consent a { text-decoration: underline; color: var(--color-accent); }
.cta-note { color: var(--color-text-light); font-size: 0.95rem; }
.cta-note i { color: var(--color-gold); }