/* ===== PROFESJONALNY DESIGN SYSTEM ===== */
/* Optymalizacja reflow - zawartość będzie renderowana */
* {
  box-sizing: border-box;
}

/* Performance optimization - removed contain for better compatibility */

:root {
  /* Kolory zgodnie z dokumentacją */
  --primary: #ffc107;        /* Żółty - CTA */
  --primary-dark: #ffb300;   /* Ciemny żółty */
  --secondary: #4caf50;      /* Zielony - Akcent eko */
  --secondary-dark: #2e7d32; /* Ciemny zielony */
  --text-dark: #2c3e50;      /* Ciemny tekst */
  --text-light: #6c757d;     /* Jasny tekst */
  --white: #ffffff;          /* Biały - Baza */
  --light-gray: #f8f9fa;     /* Jasny szary - Baza */
  --medium-gray: #e9ecef;    /* Średni szary */
  --dark-gray: #495057;      /* Ciemny szary */
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #ffc107, #ffb300);
  --gradient-secondary: linear-gradient(135deg, #4caf50, #2e7d32);
  --gradient-hero: linear-gradient(135deg, rgba(255, 193, 7, 0.9), rgba(255, 179, 0, 0.8));
  
  /* Shadows - subtelne, profesjonalne */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 2px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 8px 24px rgba(0, 0, 0, 0.2);
  
  /* Typografia - profesjonalne rozmiary */
  --font-primary: 'Montserrat', 'Poppins', sans-serif;  /* Nagłówki */
  --font-secondary: 'Roboto', 'Open Sans', sans-serif;  /* Tekst */
  
  /* Industrial Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  
  /* Industrial Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Industrial Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

/* ===== PROFESJONALNA TYPOGRAFIA ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  font-weight: 600;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
  color: var(--text-light);
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--spacing-xl);
  }
}

/* ===== MAIN HEADER - ZGODNIE Z DOKUMENTACJĄ ===== */
.main-header {
  background: var(--white);
  color: var(--text-dark);
  padding: var(--spacing-sm) 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--medium-gray);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-nav {
  display: none;
  gap: var(--spacing-md);
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-normal);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
}

.nav-link:hover {
  color: #ffc107;
  background: rgba(255, 193, 7, 0.1);
}

/* Mobile menu button */
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: var(--spacing-xs);
  transition: var(--transition-normal);
}

.mobile-menu-btn:hover {
  color: var(--primary);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--medium-gray);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: var(--spacing-md);
  gap: var(--spacing-sm);
}

.mobile-nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition-normal);
}

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

.mobile-phone-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: var(--spacing-sm) 0;
  margin-top: var(--spacing-sm);
  border-top: 1px solid var(--light-gray);
  transition: var(--transition-normal);
}

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

.mobile-phone-link i {
  color: var(--primary);
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .mobile-menu {
    display: none;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.logo-icon {
  font-size: 2rem;
  color: var(--primary);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.logo-sub {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.phone-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-normal);
}

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

.phone-link i {
  font-size: 1rem;
  color: var(--primary);
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-cta {
  position: fixed;
  bottom: var(--spacing-sm);
  left: var(--spacing-sm);
  right: var(--spacing-sm);
  z-index: 1000;
  display: none;
}

.mobile-cta .cta-button {
  background: #ffc107;
  color: #1a1a1a;
  border: none;
  width: 100%;
  justify-content: center;
}

.mobile-cta .cta-button:hover {
  background: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

@media (max-width: 767px) {
  .mobile-cta {
    display: block;
  }
}

/* ===== HERO SECTION - ZGODNIE Z DOKUMENTACJĄ ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: #1a1a1a;
  overflow: hidden;
  margin-top: 80px; /* Account for fixed header */
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.05) 0%, transparent 50%);
  overflow: hidden;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2.5;
}

.hero-shape {
  position: absolute;
  background: #ffffff;
  opacity: 0.15;
}

.hero-shape-1 {
  width: 100px;
  height: 100px;
  top: 15%;
  right: -50px;
  transform: rotate(45deg);
  border-radius: 8px;
}

.hero-shape-2 {
  width: 70px;
  height: 70px;
  bottom: 25%;
  left: 5%;
  border-radius: 50%;
}

.hero-shape-3 {
  width: 50px;
  height: 50px;
  top: 60%;
  right: 20%;
  transform: rotate(30deg);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.hero-shape-4 {
  width: 40px;
  height: 40px;
  top: 30%;
  left: 15%;
  transform: rotate(15deg);
  border-radius: 4px;
}

.hero-shape-5 {
  width: 80px;
  height: 20px;
  bottom: 40%;
  right: 15%;
  transform: rotate(-20deg);
  border-radius: 10px;
}

@media (max-width: 768px) {
  .hero-shape-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 5%;
  }
  
  .hero-shape-2 {
    width: 40px;
    height: 40px;
    bottom: 30%;
    left: 3%;
  }
  
  .hero-shape-3 {
    width: 30px;
    height: 30px;
    top: 70%;
    right: 10%;
  }
  
  .hero-shape-4 {
    width: 25px;
    height: 25px;
    top: 40%;
    left: 8%;
  }
  
  .hero-shape-5 {
    width: 50px;
    height: 15px;
    bottom: 50%;
    right: 8%;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  color: var(--white);
  margin-bottom: var(--spacing-xl);
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
  }
}

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

@media (min-width: 1024px) {
  .hero-left {
    text-align: left;
  }
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 400px;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 400px;
}

.hero-title {
  margin-bottom: var(--spacing-lg);
  text-align: left;
}

.title-main {
  color: #ffc107;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--spacing-xs);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.title-subtitle {
  color: #ffffff;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-xs);
  opacity: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.title-highlight {
  color: #ffc107;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.hero-description {
  font-size: 1.125rem;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  font-family: var(--font-secondary);
  font-weight: 400;
  text-align: left;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

@media (min-width: 768px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: center;
  position: relative;
  z-index: 3;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  background: rgba(255, 193, 7, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 193, 7, 0.3);
  color: var(--white);
  font-weight: 500;
  transition: var(--transition-normal);
  min-width: 120px;
}

.trust-item:hover {
  transform: translateY(-1px);
  background: rgba(255, 193, 7, 0.2);
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.trust-item i {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
  color: #ffc107;
}

.trust-text {
  font-size: 0.875rem;
  text-align: center;
  font-family: var(--font-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== CTA BUTTONS - ZGODNIE Z DOKUMENTACJĄ ===== */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  min-height: 48px;
}

.cta-button::before {
  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;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button.primary {
  background: #ffc107;
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button.primary:hover {
  background: #ffb300;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.cta-button.secondary {
  background: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button.secondary:hover {
  background: #ffc107;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.cta-button.large {
  padding: var(--spacing-lg) var(--spacing-xl);
  font-size: 1.2rem;
}

.cta-button.full-width {
  width: 100%;
}

.cta-button i {
  font-size: 1rem;
}

/* ===== SECTIONS ===== */
section {
  padding: var(--spacing-xxl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-md);
}

.section-title {
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ===== SERVICES SECTION ===== */
.services {
  background: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-category {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--medium-gray);
  position: relative;
  overflow: hidden;
}

.service-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.category-title {
  color: var(--text-dark);
  margin-bottom: var(--spacing-lg);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.service-items {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.service-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: var(--white);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  border: 2px solid var(--medium-gray);
  box-shadow: var(--shadow-sm);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  background: #ffc107;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #1a1a1a;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.service-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffc107;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  z-index: -1;
}

.service-icon {
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.service-icon i {
  font-size: 1.4rem;
  z-index: 1;
  position: relative;
}

.service-content {
  flex: 1;
}

.service-item h4 {
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.4;
}

.service-content {
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ===== WHY US SECTION - USP ===== */
.why-us {
  background: #1a1a1a;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-us-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.why-us-shape {
  position: absolute;
  background: #ffffff;
  opacity: 0.15;
}

.why-us-shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: -40px;
  transform: rotate(45deg);
  border-radius: 8px;
}

.why-us-shape-2 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  right: -30px;
  border-radius: 50%;
}

.why-us-shape-3 {
  width: 40px;
  height: 40px;
  top: 60%;
  left: 10%;
  transform: rotate(30deg);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .usp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.usp-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
  border: 2px solid var(--medium-gray);
  position: relative;
  box-shadow: var(--shadow-md);
}

.usp-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: #ffc107;
}

.usp-item.primary {
  background: #ffc107;
  color: #1a1a1a;
  border-color: #ffc107;
}

.usp-item.primary:hover {
  background: #ffb300;
}

.usp-number {
  width: 60px;
  height: 60px;
  background: #ffc107;
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-primary);
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
  flex-shrink: 0;
}

.usp-item.primary .usp-number {
  color: #1a1a1a;
}

.usp-content h3 {
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  font-size: 1.2rem;
  font-weight: 700;
}

.usp-item.primary .usp-content h3 {
  color: #1a1a1a;
}

.usp-content p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 0;
}

.usp-item.primary .usp-content p {
  color: #1a1a1a;
}

/* ===== ECO SECTION - WYRÓŻNIONA ===== */
.eco-section {
  background: var(--gradient-secondary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.eco-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.eco-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.eco-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.eco-title {
  color: var(--white);
  margin-bottom: var(--spacing-lg);
  font-size: clamp(2rem, 4vw, 3rem);
}

.eco-text {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
  line-height: 1.7;
}

.eco-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  justify-content: center;
  margin-bottom: var(--spacing-xl);
}

.eco-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 120px;
}

.eco-icon {
  font-size: 2rem;
  margin-bottom: var(--spacing-xs);
}

.eco-stats {
  display: flex;
  gap: var(--spacing-xl);
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 150px;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: var(--spacing-xs);
  font-family: var(--font-primary);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ===== PROCESS SECTION - TIMELINE ===== */
.process {
  background: var(--white);
}

.process-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  position: relative;
}

@media (min-width: 768px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--medium-gray);
  transition: var(--transition-normal);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 80px;
  height: 80px;
  background: #ffc107;
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
  font-family: var(--font-primary);
}

.step-content h3 {
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  font-size: 1.3rem;
  font-weight: 700;
}

.step-content p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 0;
}

.step-line {
  position: absolute;
  top: 50%;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: translateY(-50%);
  z-index: -1;
}

.process-step:last-child .step-line {
  display: none;
}

@media (max-width: 1023px) {
  .step-line {
    display: none;
  }
}

/* ===== GALLERY SECTION ===== */
.gallery {
  background: #1a1a1a;
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 2px solid var(--medium-gray);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255, 193, 7, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: var(--spacing-md);
  border: 2px solid rgba(255, 193, 7, 0.3);
  backdrop-filter: blur(10px);
}

.gallery-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
  color: #ffc107;
}

.gallery-placeholder h4 {
  color: var(--white);
  margin-bottom: var(--spacing-xs);
  font-size: 1.1rem;
}

.gallery-placeholder p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background: #1a1a1a;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.testimonials-shape {
  position: absolute;
  background: #ffffff;
  opacity: 0.15;
}

.testimonials-shape-1 {
  width: 70px;
  height: 70px;
  top: 15%;
  right: 5%;
  transform: rotate(60deg);
  border-radius: 12px;
}

.testimonials-shape-2 {
  width: 50px;
  height: 50px;
  bottom: 20%;
  left: -25px;
  border-radius: 50%;
}

.testimonials-shape-3 {
  width: 35px;
  height: 35px;
  top: 70%;
  right: 15%;
  transform: rotate(45deg);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: var(--transition-normal);
  border: 2px solid var(--white);
  position: relative;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #ffc107;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.testimonial-content {
  margin-bottom: var(--spacing-lg);
}

.stars {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
}

.author-info h4 {
  margin-bottom: var(--spacing-xs);
  color: var(--text-dark);
  font-size: 1rem;
}

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

/* ===== LOCATION SECTION ===== */
.location {
  background: var(--white);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .location-content {
    grid-template-columns: 1fr 1fr;
  }
}

.location-text h3 {
  color: var(--text-dark);
  margin-bottom: var(--spacing-lg);
  font-size: 1.5rem;
  text-align: center;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xs);
}

@media (min-width: 768px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xs);
  }
}

@media (min-width: 1024px) {
  .location-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xs);
  }
}

.location-item {
  padding: var(--spacing-xs);
  background: transparent;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  font-size: 0.8rem;
  border: none;
  transition: var(--transition-normal);
  color: var(--text-dark);
}

.location-item:hover {
  color: #ffc107;
}

.location-item a {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: inherit;
  text-decoration: none;
  width: 100%;
  justify-content: center;
}

.location-item a:hover {
  color: #ffc107;
}

.single-hexagon {
  width: 350px;
  height: 350px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 0 auto;
  border-radius: 8px;
}

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

@media (max-width: 768px) {
  .single-hexagon {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 480px) {
  .single-hexagon {
    width: 220px;
    height: 220px;
  }
}

/* ===== PRICING SECTION ===== */
.pricing {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xxl);
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  border: 2px solid var(--medium-gray);
}

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

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured::before {
  content: 'NAJPOPULARNIEJSZE';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
  font-size: 1.3rem;
  font-weight: 700;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--spacing-lg);
  font-family: var(--font-primary);
}

.pricing-features {
  list-style: none;
  text-align: left;
}

.pricing-features li {
  padding: var(--spacing-xs) 0;
  position: relative;
  padding-left: var(--spacing-lg);
  color: var(--text-light);
  font-size: 1rem;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
}

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

/* ===== PRICING ===== */
.pricing {
  background: var(--white);
  color: var(--text-dark);
  padding: var(--spacing-xxl) 0;
}

.pricing-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  max-width: 800px;
  margin: 0 auto;
}

.pricing-item {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid #ffc107;
  transition: var(--transition-normal);
}

.pricing-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-item h3 {
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  font-size: 1.3rem;
  font-weight: 700;
}

.pricing-item p {
  color: #ffc107;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-primary);
}

@media (min-width: 768px) {
  .pricing-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xxl);
}

@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
  }
}

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

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

.contact-icon {
  font-size: 2rem;
  margin-top: var(--spacing-xs);
  color: var(--primary);
}

.contact-details h3 {
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
  font-size: 1.2rem;
  font-weight: 700;
}

.contact-details a {
  color: var(--primary);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
  margin-bottom: var(--spacing-xs);
}

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

.contact-details p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 1rem;
}

.contact-form {
  background: var(--light-gray);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--medium-gray);
}

.contact-form h3 {
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  font-size: 1.3rem;
  font-weight: 700;
}

.contact-form p {
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
  font-size: 1rem;
}

/* ===== FORM STYLES ===== */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

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

.form-group label {
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  padding: var(--spacing-md);
  border: 2px solid var(--medium-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: var(--transition-normal);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

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

/* ===== FOOTER ===== */
.footer {
  background: #1a1a1a;
  color: var(--white);
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
  position: relative;
  overflow: hidden;
}

.footer-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.footer-shape {
  position: absolute;
  background: #ffffff;
  opacity: 0.15;
}

.footer-shape-1 {
  width: 60px;
  height: 60px;
  top: 25%;
  right: -30px;
  transform: rotate(30deg);
  border-radius: 6px;
}

.footer-shape-2 {
  width: 40px;
  height: 40px;
  bottom: 40%;
  left: -20px;
  border-radius: 50%;
}

.footer-shape-3 {
  width: 30px;
  height: 30px;
  top: 60%;
  right: 20%;
  transform: rotate(60deg);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

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

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-info h3 {
  color: var(--white);
  margin-bottom: var(--spacing-sm);
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-md);
  font-size: 1rem;
}

.footer-badge {
  display: inline-block;
  background: #ffc107;
  color: #1a1a1a;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-contact h4,
.footer-services h4 {
  color: var(--white);
  margin-bottom: var(--spacing-sm);
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-xs);
  font-size: 1rem;
}

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

.footer-services li {
  padding: var(--spacing-xs) 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* ===== UTILITY CLASSES ===== */
.mobile-only {
  display: none;
}

@media (max-width: 767px) {
  .mobile-only {
    display: flex;
  }
}

.desktop-only {
  display: none;
}

@media (min-width: 768px) {
  .desktop-only {
    display: block;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeInLeft {
  animation: fadeInLeft 0.6s ease forwards;
}

.animate-fadeInRight {
  animation: fadeInRight 0.6s ease forwards;
}

/* ===== SCROLL ANIMATIONS ===== */
/* Scroll animate styles removed - not used in HTML */

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 767px) {
  .hero {
    min-height: 100vh;
    padding: var(--spacing-lg) 0;
  }
  
  .hero-content {
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
  }
  
  .hero-left {
    text-align: center;
  }
  
  .hero-title {
    text-align: center;
  }
  
  .hero-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-right {
    min-height: 300px;
  }
  
  .hero-image {
    max-width: 300px;
    max-height: 300px;
  }
  
  .hero-image img {
    max-height: 300px;
  }
  
  .trust-indicators {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
  }
  
  .trust-item {
    width: 100%;
    max-width: 250px;
  }
  
  section {
    padding: var(--spacing-xl) 0;
  }
  
  .section-header {
    margin-bottom: var(--spacing-xl);
  }
  
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .usp-grid {
    grid-template-columns: 1fr;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  /* Services mobile fixes */
  .service-category {
    padding: var(--spacing-md);
  }
  
  .service-item {
    padding: var(--spacing-sm);
    gap: var(--spacing-sm);
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .service-item h4 {
    font-size: 1rem;
  }
  
  .service-item p {
    font-size: 0.85rem;
  }
}

/* Extra small mobile (320px) */
@media (max-width: 480px) {
  .service-category {
    padding: var(--spacing-sm);
  }
  
  .service-item {
    padding: var(--spacing-xs);
    gap: var(--spacing-xs);
  }
  
  .service-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .service-item h4 {
    font-size: 0.9rem;
  }
  
  .service-item p {
    font-size: 0.8rem;
    line-height: 1.3;
  }
  
  .service-content {
    min-width: 0;
    overflow: hidden;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .location-content {
    grid-template-columns: 1fr;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-content {
    gap: var(--spacing-xl);
  }
  
  .hero-left {
    text-align: center;
  }
  
  .hero-title {
    text-align: center;
  }
  
  .hero-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .trust-indicators {
    justify-content: center;
  }
  
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Hide phone number on tablet */
  .header-cta {
    display: none;
  }
  
  /* Show mobile menu button on tablet */
  .mobile-menu-btn {
    display: block;
  }
  
  /* Position mobile menu button to the right */
  .header-content {
    justify-content: space-between;
  }
  
  .logo {
    order: 1;
  }
  
  .main-nav {
    order: 2;
    display: none;
  }
  
  .mobile-menu-btn {
    order: 3;
  }
  
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .mobile-cta,
  .hero-cta,
  .cta-button {
    display: none !important;
  }
  
  .hero {
    background: none !important;
    color: var(--text-dark) !important;
  }
  
  .hero-title,
  .hero-subtitle {
    color: var(--text-dark) !important;
  }
  
  section {
    page-break-inside: avoid;
  }
}

/* ===== WCAG 2.0 ACCESSIBILITY STYLES ===== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #000;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
  border-radius: 4px;
}

.skip-link:focus {
  top: 6px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-help {
  display: block;
  font-size: 0.875rem;
  color: #666;
  margin-top: 0.25rem;
}

.form-group {
  margin-bottom: 1rem;
}

/* Form Messages */
.form-message {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  font-weight: 500;
}

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

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

.form-message.warning {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

.form-message i {
  font-size: 1.2rem;
}

/* Checkbox Groups */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  margin: 0;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
  cursor: pointer;
}

.checkbox-group label a {
  color: #ffc107;
  text-decoration: underline;
}

.checkbox-group label a:hover {
  color: #ffb300;
}

/* ===== FOOTER LOCATIONS STYLES ===== */
.footer-locations {
  grid-column: 1 / -1;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-locations h4 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-location-item a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: block;
  padding: 0.25rem 0;
  border-radius: 3px;
  padding-left: 0.5rem;
}

.footer-location-item a:hover,
.footer-location-item a:focus {
  color: #ffc107;
  background-color: rgba(255, 193, 7, 0.1);
  outline: 2px solid #ffc107;
  outline-offset: 2px;
}

.footer-location-item a:focus {
  outline: 2px solid #ffc107;
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .footer-location-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.25rem;
  }
  
  .footer-location-item a {
    font-size: 0.85rem;
  }
}

/* ===== FOOTER COMPANY INFO STYLES ===== */
.footer-company-info {
  text-align: center;
  margin-bottom: 1rem;
  padding: 1rem 0;
}

.footer-company-info p {
  margin: 0.25rem 0;
  color: #ccc;
  font-size: 0.9rem;
}

.footer-company-info p:first-child {
  color: #ffc107;
  font-size: 1rem;
  font-weight: 600;
}

.footer-company-info a {
  color: #ffc107;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-company-info a:hover,
.footer-company-info a:focus {
  color: #ffffff;
  text-decoration: underline;
}

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

.footer-bottom p:last-child {
  color: #999;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.footer-legal-links {
  margin-top: 0.5rem;
  text-align: center;
}

.footer-legal-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: #ffc107;
}

.footer-legal-links span {
  color: #666;
  margin: 0 0.5rem;
  font-size: 0.8rem;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

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

.loading-content {
    text-align: center;
    color: #ffffff;
}

.loading-logo {
    margin-bottom: 3rem;
}

.loading-truck {
    font-size: 4rem;
    color: #ffc107;
    margin-bottom: 1rem;
    animation: truck-bounce 2s ease-in-out infinite;
}

.loading-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.loading-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffc107;
    letter-spacing: 2px;
}

.loading-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 1px;
}

.loading-progress {
    margin-top: 2rem;
}

.progress-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffc107 0%, #ffb300 100%);
    border-radius: 2px;
    width: 0%;
    animation: progress-load 1.5s ease-in-out forwards;
}

.loading-message {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #ccc;
    margin: 0;
    animation: message-pulse 1.5s ease-in-out infinite;
}

/* Animations */
@keyframes truck-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes progress-load {
    0% {
        width: 0%;
    }
    50% {
        width: 60%;
    }
    100% {
        width: 100%;
    }
}

@keyframes message-pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .loading-truck {
        font-size: 3rem;
    }
    
    .loading-main {
        font-size: 2rem;
    }
    
    .loading-sub {
        font-size: 1.2rem;
    }
    
    .progress-bar {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .loading-truck {
        font-size: 2.5rem;
    }
    
    .loading-main {
        font-size: 1.8rem;
    }
    
    .loading-sub {
        font-size: 1rem;
    }
    
    .progress-bar {
        width: 200px;
    }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-top: 3px solid #ffc107;
  padding: 1.5rem;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.cookie-text h4 {
  color: #ffc107;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.cookie-text p {
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.cookie-text a {
  color: #ffc107;
  text-decoration: underline;
}

.cookie-text a:hover {
  color: #ffb300;
}

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

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.cookie-btn.accept {
  background: #ffc107;
  color: #1a1a1a;
}

.cookie-btn.accept:hover {
  background: #ffb300;
  transform: translateY(-2px);
}

.cookie-btn.reject {
  background: transparent;
  color: #ffffff;
  border: 2px solid #666;
}

.cookie-btn.reject:hover {
  background: #666;
  border-color: #888;
}

/* Mobile Cookie Banner */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1;
    max-width: 120px;
  }
}

/* ===== FOOTER LOGO STYLES ===== */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  justify-content: flex-start;
}

.footer-logo-icon {
  width: 60px;
  height: 60px;
  background: #ffc107;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #1a1a1a;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-main {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
}

.footer-logo-sub {
  font-size: 1rem;
  font-weight: 600;
  color: #ffc107;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
  margin-top: -0.2rem;
}

@media (max-width: 768px) {
  .footer-logo {
    gap: 0.8rem;
    margin-bottom: 1rem;
  }
  
  .footer-logo-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .footer-logo-main {
    font-size: 1.2rem;
  }
  
  .footer-logo-sub {
    font-size: 0.9rem;
  }
}