/* Modern CSS Reset & Variables */
:root {
  /* --primary-color: #0077b6;
  --primary-dark: #005577;
  --secondary-color: #00b4d8;
  --accent-color: #90e0ef;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --text-muted: #6b7280;
  --background: #f8fafc;
  --surface: #ffffff;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%); */

  --primary-color: #2d7d32;        /* Forest green - main color */
  --primary-dark: #1b5e20;         /* Darker forest green for hover states */
  --secondary-color: #4caf50;      /* Medium green */
  --accent-color: #a5d6a7;         /* Light green accent */
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --text-muted: #6b7280;
  --background: #f8fafc;
  --surface: #ffffff;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);

  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', roboto, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-lifelogo: 'lifelogo', cursive, serif;
  --font-handwritten: 'Caveat', cursive;
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --border-radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --img-section-content-padding-x: 2.5rem;
  
  /* Component-specific variables for refactoring */
  --card-padding: 2rem;
  --card-padding-mobile: 1.5rem;
  --grid-gap: 2rem;
  --grid-gap-mobile: 1.5rem;
  
  /* Component Border Radius */
  --radius-card: var(--border-radius);
  --radius-button: var(--border-radius-sm);
  --radius-image: var(--border-radius);
  
  /* Component Shadows */
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-feature: 0 2px 4px rgba(0, 0, 0, 0.05);
  
  /* Animation Timing */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: var(--transition);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--background);
  overflow-x: hidden;
}

/* Global image reset to prevent oversized images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure all images in specific containers are properly constrained */
.swiper-slide img,
.tip-image img,
.card-background img,
.hero-background img,
.visual-tips img {
  max-width: 100%;
  max-height: 100%;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  height: 40px;
  width: auto;
}

.brand-text {
  font-family: var(--font-lifelogo);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

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

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle-line {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #1a1a1a;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.8s ease-in-out;
}

.hero-image-current {
  opacity: 1;
  z-index: 2;
}

.hero-image-next {
  opacity: 0;
  z-index: 1;
}

.hero-image-current.fade-out {
  opacity: 0;
}

.hero-image-next.fade-in {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.4) 0%, rgba(0, 180, 216, 0.3) 100%);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: 80px;
}

.hero-text {
  max-width: 1200px;
  color: var(--text-light);
}

/* .hero-title {
  font-family: var(--font-handwritten);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1.5rem;
} */

.hero-title-line {
  display: block;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.scroll-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  animation: bounce 2s infinite;
}

.scroll-indicator:hover {
  border-color: white;
  color: white;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* Service Hero Overrides */
.terapia-reki-hero .hero-background {
  overflow: hidden;
  background-image: url('../images/wskazowka-05.jpg') !important;
  background-size: cover !important;
  background-position: center bottom !important;
  background-repeat: no-repeat !important;
}

.terapia-reki-hero .hero-image {
  display: none !important;
}

/* Hero Rotation Enhancements */
.hero-rotating {
  position: relative;
}

/* Hero image transitions */
.hero-image {
  transition: opacity 0.8s ease-in-out;
}

.hero-image.fade-out {
  opacity: 0;
}

.hero-image.fade-in {
  opacity: 1;
}

/* Hero text animations */
.hero-text {
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.hero-text.updating {
  opacity: 0.7;
  transform: translateY(10px);
}

/* Hero description */
.hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
  transition: opacity 0.5s ease-in-out;
  color: var(--text-light);
}

/* Rotation Controls */
.hero-controls {
  position: absolute;
  bottom: 6rem;
  right: 2rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-indicators {
  display: flex;
  gap: 0.5rem;
}

.indicator {
  position: relative;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.indicator.active,
.indicator:hover {
  background: white;
  border-color: white;
}

/* Auto-rotation progress indicator */
.indicator-progress {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: rotate(0deg);
  transition: opacity 0.3s ease;
}

.indicator.active .indicator-progress {
  opacity: 1;
  animation: rotate-progress 6s linear infinite;
}

.indicator.active.paused .indicator-progress {
  animation-play-state: paused;
}

@keyframes rotate-progress {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-pause {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-pause:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .hero-image,
  .hero-text {
    transition: none;
  }
  
  .hero-rotating .hero-image {
    animation: none;
  }
  
  .hero-controls {
    display: none;
  }
}

/* Mobile responsiveness for controls */
@media (max-width: 768px) {
  .hero-controls {
    bottom: 8rem;
    right: 1rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-pause {
    width: 35px;
    height: 35px;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
}

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

/* Services Section */
.services {
  position: relative;
  padding: 5rem 0;
  background: var(--surface);
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/office-interior-2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.3;
  z-index: 0;
  transition: var(--transition);
  animation: subtleFloat 20s ease-in-out infinite;
  filter: sepia(100%) saturate(200%) hue-rotate(60deg) brightness(1.1);
}

@keyframes subtleFloat {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.02) rotate(0.5deg);
  }
}

.services::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(45, 125, 50, 0.05) 0%, 
    rgba(76, 175, 80, 0.03) 50%, 
    rgba(165, 214, 167, 0.05) 100%);
  z-index: 1;
}

.services .container-wide {
  position: relative;
  z-index: 2;
}

.section-header {
  position: relative;
  text-align: center;
  margin-bottom: 4rem;
  z-index: 2;
}

.section-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--accent-color);
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  justify-content: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  position: relative;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(0, 119, 182, 0.02) 100%);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  overflow: hidden;
  flex: 1 1 calc(50% - 1rem);
  max-width: calc(50% - 1rem);
  min-width: 300px;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.service-card.featured {
  border: 2px solid var(--primary-color);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(0, 119, 182, 0.02) 100%);
}

.service-card.featured:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  color: var(--text-light);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.service-features i {
  color: var(--primary-color);
  font-size: 0.875rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.service-link:hover {
  gap: 0.75rem;
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
  background: var(--background);
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  justify-content: center;
}

.pricing-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  overflow: hidden;
  flex: 1 1 350px;
  max-width: 400px;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(0, 119, 182, 0.02) 100%);
}

.pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  color: var(--text-light);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.pricing-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.pricing-price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.price-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1;
}

.price-period {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.pricing-details {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features ul {
  list-style: none;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.pricing-features i {
  color: var(--primary-color);
  font-size: 0.875rem;
}

.pricing-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--border-radius);
  border: 1px solid var(--border);
}

.pricing-cta p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* Visual Tips Section */
.visual-tips {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.tips-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tip-card {
  background: var(--surface);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tip-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.tip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.tip-card:hover .tip-img {
  transform: scale(1.05);
}

.tip-content {
  padding: 1.5rem;
}

.tip-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.tip-content p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.benefits-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.small-tip-card {
  background: var(--surface);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}

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

.small-tip-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  transition: var(--transition);
}

.small-tip-card:hover .small-tip-img {
  transform: scale(1.05);
}

/* Service Details Section */
.service-details {
  padding: 5rem 0;
  background: var(--surface);
}

.service-target-groups {
  background: linear-gradient(135deg, rgba(45, 125, 50, 0.03), rgba(76, 175, 80, 0.03));
  border: 1px solid rgba(45, 125, 50, 0.1);
  margin-top: 3rem;
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  min-height: auto;
}

.target-groups-content {
  position: static;
  z-index: auto;
  padding: 0;
}

.target-groups-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  text-shadow: none;
}

.target-groups-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.target-groups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.target-group-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--border-radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  overflow: hidden;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.target-group-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.target-group-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
  color: var(--primary-color);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  transition: var(--transition);
}

.target-group-card:hover .target-group-icon {
  background: var(--gradient-primary);
  color: var(--text-light);
  transform: scale(1.05);
}

.target-group-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.target-group-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* About Section */
.about {
  padding: 5rem 0;
  background: var(--background);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.about-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: var(--text-light);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-item h4 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.feature-item p {
  color: var(--text-muted);
}

.about-images {
  position: relative;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: var(--surface);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--text-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-details h4 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-map {
  grid-column: 1 / -1;
  margin-top: 2rem;
}

.contact-map iframe {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

/* Form Styles */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-input {
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--surface);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

.form-input::placeholder {
  color: var(--text-muted);
}

/* Form Message Styles */
.form-message {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  opacity: 1;
}

.form-message.success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.form-message.success i {
  color: #28a745;
}

.form-message.error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.form-message.error i {
  color: #dc3545;
}

.form-message i {
  font-size: 1.125rem;
  flex-shrink: 0;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
  max-width: 1600px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
}

@media (min-width: 1200px) {
  .footer-content {
    gap: 5rem;
    max-width: 1600px;
    padding: 0 4rem;
  }
}

@media (min-width: 1600px) {
  .footer-content {
    gap: 6rem;
    max-width: 1800px;
    padding: 0 5rem;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-left: 0;
  margin-right: auto;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-contact h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--text-light);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.footer-contact i {
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-grid {
    max-width: 800px;
  }
  
  .service-card {
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
  }
  
  .nav-menu.active {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
  
  .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  /* .hero-title {
    font-size: 1.5rem;
  } */
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .services-grid {
    flex-direction: column;
    max-width: none;
  }

  .services::before {
    background-attachment: scroll;
    animation: none;
  }
  
  .service-card {
    max-width: none;
    flex: 1 1 auto;
    min-width: auto;
  }
  
  .pricing-grid {
    flex-direction: column;
  }
  
  .pricing-card {
    max-width: none;
  }
  
  .target-groups-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .target-group-card {
    max-width: none;
  }
  
  .target-groups-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .service-target-groups {
    padding: 2rem 1.5rem;
    margin-top: 2rem;
  }

  .tips-gallery {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .tip-card {
    margin: 0 auto;
    max-width: 400px;
  }
  
  .tip-image {
    height: 180px;
  }
  
  .benefits-gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .small-tip-card {
    max-width: 200px;
    margin: 0 auto;
  }
  
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .image-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Navbar scrolled state */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

/* Animation classes */
.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.service-card,
.feature-item,
.contact-item {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-out;
}

/* CTA Responsive Styles */
@media (max-width: 768px) {
  section.cta {
    padding: 3rem 0;
  }
  
  section.cta h2 {
    font-size: 2rem;
  }
  
  section.cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
  
  section.cta .cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    gap: 1rem;
  }
  
  section.cta .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  /* .hero-title {
    font-size: 2rem;
  } */
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }

  section.cta h2 {
    font-size: 1.75rem;
  }
  
  section.cta p {
    font-size: 1rem;
  }
}

/* Loading Screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  color: var(--text-light);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: var(--text-light);
  animation: spin 1s ease-in-out infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1001;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: var(--border-radius-sm);
  width: 48px;
  height: 48px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Header & Hero */
header {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.4) 0%, rgba(0, 180, 216, 0.3) 100%);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  color: var(--text-light);
  max-width: 800px;
  padding: 0 2rem;
}

.logo-container {
  margin-bottom: 2rem;
}

.logo-container img {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.3));
  transition: var(--transition);
}

.logo-container img:hover {
  transform: scale(1.05);
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 4px 16px rgba(0,0,0,0.5);
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  font-weight: 300;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gradient-primary);
  color: var(--text-light);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* Navigation */
#main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 1.25rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

#main-nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  transition: var(--transition);
}

#main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -8px;
  left: 50%;
  background: var(--gradient-primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

#main-nav a:hover,
#main-nav a.active {
  color: var(--primary-color);
}

#main-nav a:hover::after,
#main-nav a.active::after {
  width: 100%;
}

/* Glass Card Effect */
.glass-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* Sections */
section {
  padding: 6rem 0;
  position: relative;
  z-index: 2;
}

section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 4rem;
}

.section-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  text-align: center;
}


/* Contact Section */
#kontakt {
  background: var(--surface);
}

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

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.contact-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.contact-card a:hover {
  color: var(--primary-dark);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.instagram-link:hover {
  color: #e1306c !important;
}

/* Footer */
footer {
  background: var(--text-dark);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* CTA Section - Aligned with general design */
section.cta {
  padding: 5rem 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

section.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

section.cta .container {
  max-width: 800px;
  margin: 0 auto;
}

section.cta .cta-content {
  text-align: center;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

section.cta h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

section.cta p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  line-height: 1.6;
}

section.cta .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  color: var(--text-light);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* Responsive Design */
@media (min-width: 1600px) {
  .gallery-slider-container {
    max-width: 1600px;
  }
}

@media (max-width: 1200px) {
  .img-section-content {
    max-width: 950px;
    --img-section-content-padding-x: 2rem;
    padding: 3rem var(--img-section-content-padding-x);
  }
  
  #oferta .img-section-content {
    max-width: 100%;
    width: calc(100vw - 3rem);
    margin-left: calc(50% - 50vw + 1.5rem);
    margin-right: calc(50% - 50vw + 1.5rem);
    padding: 3rem 1.5rem;
  }
  
  .gallery-section {
    max-width: 100%;
    padding: 3rem 1.5rem;
    width: calc(100vw - 3rem);
    margin-left: calc(50% - 50vw + 1.5rem);
    margin-right: calc(50% - 50vw + 1.5rem);
  }
  
  .video-gallery-section {
    max-width: 100%;
    padding: 3rem 1.5rem;
    width: calc(100vw - 3rem);
    margin-left: calc(50% - 50vw + 1.5rem);
    margin-right: calc(50% - 50vw + 1.5rem);
  }
  
  .gallery-slider-container,
  .video-slider-container {
    max-width: min(85vw, 1400px);
  }
  
  .gallery-slider,
  .video-slider {
    height: min(65vh, 700px);
  }
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  #main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
  }

  #main-nav.active {
    left: 0;
  }

  .nav-container {
    flex-direction: column;
    padding: 4rem 2rem 2rem;
    gap: 1.5rem;
    height: 100%;
  }

  #main-nav a {
    font-size: 1.3rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
  }

  .hero-content h1 {
    font-size: 3rem;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .img-section {
    background-attachment: scroll;
    min-height: 60vh;
  }

  .img-section-content {
    margin: 1rem 0.5rem;
    --img-section-content-padding-x: 2rem;
    padding: 2.5rem var(--img-section-content-padding-x);
    max-width: 100%;
  }

  #oferta .img-section-content {
    max-width: 100%;
    width: calc(100vw - 2rem);
    margin-left: calc(50% - 50vw + 1rem);
    margin-right: calc(50% - 50vw + 1rem);
    padding: 2.5rem 1rem;
  }

  .gallery-section {
    max-width: 100%;
    padding: 2.5rem 1rem;
    width: calc(100vw - 2rem);
    margin-left: calc(50% - 50vw + 1rem);
    margin-right: calc(50% - 50vw + 1rem);
  }

  .video-gallery-section {
    max-width: 100%;
    padding: 2.5rem 1rem;
    width: calc(100vw - 2rem);
    margin-left: calc(50% - 50vw + 1rem);
    margin-right: calc(50% - 50vw + 1rem);
  }

  /* Gallery slider responsive */
  .gallery-slider-container,
  .video-slider-container {
    max-width: 100%;
    margin: 1.5rem auto 0;
    border-radius: var(--border-radius);
  }

  .gallery-slider,
  .video-slider {
    height: 60vh;
  }

  .gallery-nav,
  .video-nav {
    width: 40px;
    height: 40px;
    opacity: 1; /* Always visible on mobile */
  }

  .gallery-prev,
  .video-prev {
    left: 0.5rem;
  }

  .gallery-next,
  .video-next {
    right: 0.5rem;
  }

  .gallery-dots,
  .video-dots {
    bottom: 1rem;
    gap: 0.5rem;
  }

  .gallery-dot,
  .video-dot {
    width: 10px;
    height: 10px;
  }

  
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background: var(--background);
}

.faq .section-subtitle {
  max-width: 800px;
  margin: 0 auto 4rem auto;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .faq .section-subtitle {
    white-space: normal;
    word-wrap: break-word;
    hyphens: auto;
    line-height: 1.4;
  }
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Smooth animations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #0066cc;
    --text-dark: #000000;
    --text-light: #ffffff;
    --border: #333333;
  }
}

/* ================================================
   SWIPER COMPONENT STYLES
   ================================================ */

/**
 * Swiper Container Component
 * @used-in: konsultacje-do-spraw-kariery.html
 * @dependencies: Swiper.js library
 */
.swiper-container {
  width: 100%;
  height: 400px;
  margin: 3rem 0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.swiper-wrapper {
  height: 100%;
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.swiper-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  color: white;
  padding: 2rem;
  z-index: 2;
}

.swiper-slide-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.swiper-slide-content p {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

/* Swiper Navigation Styles */
.swiper-button-next,
.swiper-button-prev {
  color: var(--text-light) !important;
  background: rgba(0, 0, 0, 0.5);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px !important;
  font-weight: 600;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.swiper-button-next {
  right: 20px !important;
}

.swiper-button-prev {
  left: 20px !important;
}

/* Swiper Pagination Styles */
.swiper-pagination {
  bottom: 20px !important;
  z-index: 3;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
  transition: var(--transition);
}

.swiper-pagination-bullet-active {
  background: var(--text-light) !important;
  transform: scale(1.2);
}

/* Mobile responsive styles for Swiper */
@media (max-width: 768px) {
  .swiper-container {
    height: 300px;
    margin: 2rem 0;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 36px !important;
    height: 36px !important;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 14px !important;
  }

  .swiper-slide-content {
    padding: 1.5rem;
  }

  .swiper-slide-content h3 {
    font-size: 1.25rem;
  }

  .swiper-slide-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .swiper-container {
    height: 250px;
    margin: 1.5rem 0;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 32px !important;
    height: 32px !important;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 12px !important;
  }

  .swiper-slide-content {
    padding: 1rem;
  }

  .swiper-slide-content h3 {
    font-size: 1.125rem;
  }

  .swiper-slide-content p {
    font-size: 0.85rem;
  }
}

/* ================================================
   FAQ Styles - Shared across all pages
   ================================================ */

/* FAQ Container */
.faq-container {
  max-width: 100%;
}

/* FAQ Items */
.faq-item {
  background: var(--surface);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq-item.active {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

/* FAQ Question */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  cursor: pointer;
  background: var(--surface);
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(45, 125, 50, 0.02);
}

.faq-question h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.4;
  flex: 1;
}

/* FAQ Toggle Button */
.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent-color);
  color: var(--primary-color);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  margin-left: 1rem;
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 600;
}

.faq-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(45, 125, 50, 0.2);
}

.faq-item.active .faq-toggle {
  background: var(--primary-color);
  color: var(--text-light);
  transform: rotate(45deg);
}

.faq-item.active .faq-toggle:hover {
  transform: rotate(45deg) scale(1.1);
}

/* FAQ Answer */
.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
  background: var(--surface);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1rem 2rem 1.5rem;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease-in-out 0.1s, transform 0.3s ease-in-out 0.1s;
}

.faq-item.active .faq-answer p {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ Mobile Responsive Styles */
@media (max-width: 768px) {
  .faq-question {
    padding: 1rem 1.5rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .faq-toggle {
    width: 28px;
    height: 28px;
    margin-left: 0.75rem;
    font-size: 0.75rem;
  }
  
  .faq-answer {
    padding: 0 1.5rem;
  }
  
  .faq-item.active .faq-answer {
    max-height: 400px;
    padding: 1rem 1.5rem;
  }
}

/* Enhanced About Section Styles for Index Page */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.about-image-container {
    position: sticky;
    top: 2rem;
}

.about-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.about-main-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-overview {
    background: linear-gradient(135deg, rgba(45, 125, 50, 0.05), rgba(76, 175, 80, 0.05));
    border-radius: var(--border-radius);
    padding: 2.5rem;
    border: 1px solid rgba(45, 125, 50, 0.1);
    margin-bottom: 3rem;
}

.service-overview {
    margin-bottom: 5rem;
}

.overview-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.overview-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    font-size: 2rem;
    flex-shrink: 0;
}

.overview-text h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.overview-text p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.feature-card h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.about-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(45, 125, 50, 0.02), rgba(76, 175, 80, 0.02));
    border-radius: var(--border-radius);
    border: 1px solid rgba(45, 125, 50, 0.1);
}

/**
 * Description Flow Component - Complex
 * @used-in: o-mnie.html
 * @variants: passion, private, approach
 * @risk: High - complex animations and interactions
 */
.description-flow {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2rem;
}

.flow-section {
  position: relative;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(45, 125, 50, 0.1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.flow-section:last-child {
  border-bottom: none;
}

.flow-section:hover {
  transform: translateX(8px);
}

.flow-section.passion {
  background: linear-gradient(135deg, 
    rgba(45, 125, 50, 0.02) 0%, 
    rgba(76, 175, 80, 0.01) 50%, 
    transparent 100%);
  border-left: 4px solid var(--primary-color);
  padding-left: 2rem;
}

.flow-section.private {
  background: linear-gradient(135deg, 
    rgba(255, 107, 53, 0.02) 0%, 
    rgba(247, 147, 30, 0.01) 50%, 
    transparent 100%);
  border-left: 4px solid #ff6b35;
  padding-left: 2rem;
}

.flow-section.approach {
  background: linear-gradient(135deg, 
    rgba(33, 150, 243, 0.02) 0%, 
    rgba(30, 136, 229, 0.01) 50%, 
    transparent 100%);
  border-left: 4px solid #2196f3;
  padding-left: 2rem;
}

.flow-content {
  max-width: 100%;
  position: relative;
}

.flow-accent {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.flow-section.private .flow-accent {
  color: #ff6b35;
}

.flow-section.approach .flow-accent {
  color: #2196f3;
}

.flow-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 1.5rem 0;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.flow-icon {
  font-size: 1.5rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.flow-section:hover .flow-icon {
  opacity: 1;
  transform: scale(1.1);
}

.flow-section.passion .flow-icon {
  color: var(--primary-color);
}

.flow-section.private .flow-icon {
  color: #ff6b35;
}

.flow-section.approach .flow-icon {
  color: #2196f3;
}

.flow-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
  max-width: 90%;
  text-align: justify;
  position: relative;
}

.flow-text em {
  color: var(--text-dark);
  font-style: italic;
  font-weight: 500;
  position: relative;
}

.flow-text em::before {
  content: '"';
  color: var(--primary-color);
  font-size: 1.2em;
  font-weight: 600;
}

.flow-text em::after {
  content: '"';
  color: var(--primary-color);
  font-size: 1.2em;
  font-weight: 600;
}

/**
 * Qualifications Section
 * @used-in: o-mnie.html
 */
.qualifications {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  position: relative;
}

.qualifications::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(45, 125, 50, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(76, 175, 80, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.qualifications-container {
  position: relative;
  margin-top: 3rem;
}

.qualifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

/**
 * Qualification Card Component
 * @variants: default, featured
 */
.qualification-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(45, 125, 50, 0.1);
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.qualification-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.qualification-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.qualification-card.featured {
  border: 2px solid var(--primary-color);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(45, 125, 50, 0.02) 100%);
}

.qualification-card.featured::before {
  background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
  height: 6px;
}

.qualification-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.qualification-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.qualification-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--text-light);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(45, 125, 50, 0.3);
  transition: var(--transition);
}

.qualification-card.featured .qualification-icon {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 8px 25px rgba(45, 125, 50, 0.3); }
  to { box-shadow: 0 8px 35px rgba(255, 107, 53, 0.4), 0 0 25px rgba(255, 107, 53, 0.2); }
}

.qualification-card:hover .qualification-icon {
  transform: scale(1.1);
}

.qualification-category {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.qualification-card.featured .qualification-category {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.qualification-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.2;
}

.qualification-details {
  margin-top: 2rem;
}

.qualification-achievement {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(45, 125, 50, 0.04), rgba(76, 175, 80, 0.02));
  border-radius: 16px;
  border-left: 4px solid var(--primary-color);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.qualification-achievement:last-child {
  margin-bottom: 0;
}

.qualification-achievement:hover {
  background: linear-gradient(135deg, rgba(45, 125, 50, 0.08), rgba(76, 175, 80, 0.05));
  transform: translateX(5px);
}

.qualification-card.featured .qualification-achievement {
  border-left-color: #ff6b35;
}

.achievement-title {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.3;
}

.achievement-institution {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-style: italic;
}

/* Mobile responsive styles for About Page */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image-container {
    position: static;
    order: -1;
  }

  .about-main-image {
    height: 300px;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .feature-card h4 {
    font-size: 1.125rem;
  }

  .about-overview {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }

  .about-cta {
    padding: 1.5rem;
  }

  /* Mobile Flow Sections */
  .description-flow {
    gap: 2rem;
  }

  .flow-section {
    padding: 2rem 0;
    padding-left: 1.5rem;
  }

  .flow-section:hover {
    transform: none;
  }

  .flow-title {
    font-size: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .flow-icon {
    font-size: 1.25rem;
  }

  .flow-text {
    font-size: 1rem;
    max-width: 100%;
    text-align: left;
  }

  .flow-accent {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }

  /* Mobile Qualifications */
  .qualifications-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .qualification-card {
    padding: 2rem 1.5rem;
  }

  .qualification-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }

  .qualification-title {
    font-size: 1.25rem;
  }

  .qualification-achievement {
    padding: 1rem;
  }

  .qualification-achievement:hover {
    transform: none;
  }

  .qualification-badge {
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .flow-section {
    padding: 1.5rem 0;
    padding-left: 1rem;
    border-left-width: 3px;
  }

  .flow-title {
    font-size: 1.25rem;
  }

  .flow-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

/* Navigation active state */
.nav-link.active {
  color: var(--primary-color);
  font-weight: 600;
}

/* Career Consultation Styles */

/* Therapy Pages Styles */

/* Description Card Styles */
.description-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: stretch; 
}

.card--description {
  background: var(--surface, #fff);
  border-radius: var(--radius-card, 16px);
  box-shadow: var(--shadow-card, 0 10px 30px rgba(0, 0, 0, 0.08));
  transition: var(--transition-normal, all 0.3s ease);
  overflow: visible;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card--description:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover, 0 20px 40px rgba(0, 0, 0, 0.12));
}

.card-background {
  height: 200px;
  flex-shrink: 0;
  border-radius: var(--radius-card, 16px) var(--radius-card, 16px) 0 0;
  overflow: hidden;
}

.card-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow, all 0.5s ease);
}

.card--description:hover .card-bg-image {
  transform: scale(1.05);
}

.card-content {
  position: relative;
  padding: 2rem;
  padding-top: 3.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.description-icon {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.description-icon i {
    font-size: 1.5rem;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--surface, #fff);
}

.card--description h3 {
  font-family: var(--font-display, serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card--description p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex-grow: 1;
}

/* ===================================
   Cookie Consent Banner
   =================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(45, 125, 50, 0.95) 0%, rgba(27, 94, 32, 0.95) 100%);
  color: var(--text-light);
  padding: 1.5rem 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.cookie-text i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.cookie-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.95;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-actions .btn-accept,
.cookie-actions .btn-decline {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.cookie-actions .btn-accept {
  background: var(--text-light);
  color: var(--primary-color);
}

.cookie-actions .btn-accept:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.cookie-actions .btn-decline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-actions .btn-decline:hover {
  border-color: var(--text-light);
  background: rgba(255, 255, 255, 0.1);
}

/* Mobile responsiveness for cookie banner */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .cookie-text {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
  
  .cookie-text i {
    font-size: 1.5rem;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-actions .btn-accept,
  .cookie-actions .btn-decline {
    flex: 1;
    max-width: 120px;
  }
}

/* Cookie Banner Privacy Policy Link */
.cookie-policy-link {
  color: var(--text-light);
  text-decoration: underline;
  font-weight: 600;
  transition: var(--transition);
}

.cookie-policy-link:hover {
  color: var(--accent-color);
}

/* ===================================
   Privacy Policy Page Styles
   =================================== */
.privacy-policy {
  padding: 6rem 0 4rem;
  background: var(--background);
  min-height: 80vh;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.privacy-header {
  text-align: center !important;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
  width: 100%;
}

.privacy-header h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center !important;
}

.privacy-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-align: center !important;
}

.last-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center !important;
}

.privacy-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.privacy-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.privacy-section h2 i {
  font-size: 1.25rem;
}

.privacy-section h3 {
  color: var(--text-dark);
  margin: 1.5rem 0 0.75rem 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.privacy-section p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.privacy-section ul {
  margin: 1rem 0 1rem 1.5rem;
}

.privacy-section li {
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.privacy-section strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Contact Info Styling */
.contact-info {
  background: rgba(45, 125, 50, 0.05);
  padding: 1.5rem;
  border-radius: var(--border-radius-sm);
  border-left: 4px solid var(--primary-color);
  margin: 1rem 0;
}

.contact-info p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info i {
  color: var(--primary-color);
  width: 16px;
}

.contact-info a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Rights Grid */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.right-item {
  background: rgba(45, 125, 50, 0.05);
  padding: 1.5rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(45, 125, 50, 0.1);
}

.right-item h4 {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.right-item h4 i {
  font-size: 0.9rem;
}

.right-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Privacy Footer */
.privacy-footer {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--primary-color);
  color: var(--text-light);
  border-radius: var(--border-radius);
  text-align: center;
}

.privacy-footer p {
  margin: 0;
  font-size: 0.95rem;
}

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

/* Mobile responsiveness for privacy policy */
@media (max-width: 768px) {
  .privacy-policy {
    padding: 4rem 0 2rem;
  }
  
  .privacy-content {
    padding: 0 1rem;
  }
  
  .privacy-header h1 {
    font-size: 2rem;
  }
  
  .privacy-section {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .privacy-section h2 {
    font-size: 1.3rem;
  }
  
  .rights-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .right-item {
    padding: 1rem;
  }
  
  .privacy-footer {
    padding: 1.5rem;
  }
}

/* O mnie page specific styles */
.hero.service-hero .hero-title {
  font-family: var(--font-handwritten);
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .hero.service-hero .hero-title {
    font-size: 3rem;
  }
}