/* Custom Properties */
:root {
  --primary-color: #007bff;
  --primary-dark: #0056b3;
  --accent-color: #2c79ee;
  --accent-dark: #1e7e34;
  --secondary-color: #6c757d;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --white: #ffffff;
  --black: #000000;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
}

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

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  font-size: 16px;
  scroll-behavior: smooth;
  padding-top: 76px;
}

.katomobil-brand {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            background: linear-gradient(135deg, #007bff, #0056b3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            position: relative;
            transition: all 0.3s ease;
        }
        
.katomobil-brand::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #007bff, #0056b3);
            transition: width 0.3s ease;
        }
        
.katomobil-brand:hover::after {
            width: 100%;
        }
        
        .katomobil-brand:hover {
            transform: translateY(-1px);
        }

/* Accessibility */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: var(--white);
  padding: 8px;
  text-decoration: none;
  transition: top 0.3s;
  z-index: 1000;
}

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

/* Utility classes */
.text-accent {
  color: var(--accent-color);
  font-weight: 600;
}

/* Phone link styling in header */
.brand-with-phone {
  display: flex;
  align-items: center;
  gap: 25px;
}

.phone-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid var(--primary-color);
}

.phone-link:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.05);
}

/* Header Styles */
.header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand .logo {
  height: 50px;
  width: auto;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark-color);
  margin: 0 0.5rem;
  padding: 0.75rem 1rem;
  transition: color 0.3s ease;
  position: relative;
}

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

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after {
  width: 100%;
  left: 0;
}

/* Dodaj te style na końcu pliku style.css */

/* Pricing Blur Overlay - dodaj to po istniejących stylach pricing */

.pricing-blur-container {
  position: relative;
}

.pricing-blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  animation: fadeIn 0.5s ease-in;
}

.pricing-blur-content {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 500px;
}

.pricing-blur-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  animation: pulse 2s ease-in-out infinite;
}

.pricing-blur-content p {
  font-size: 1.2rem;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.pricing-blur-content .contact-hint {
  font-size: 1rem;
  color: var(--gray-600);
  margin-top: 1.5rem;
}

.pricing-blur-content .contact-hint a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pricing-blur-content .contact-hint a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.pricing-blur-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Efekt rozmycia dla zawartości pod overlay */
.pricing-blur-container.blurred .pricing-tabs {
  filter: blur(8px);
  -webkit-filter: blur(8px);
  pointer-events: none;
  user-select: none;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-blur-content h3 {
    font-size: 2rem;
  }
  
  .pricing-blur-content p {
    font-size: 1.1rem;
  }
  
  .pricing-blur-icon {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .pricing-blur-content {
    padding: 2rem 1rem;
  }
  
  .pricing-blur-content h3 {
    font-size: 1.8rem;
  }
  
  .pricing-blur-content p {
    font-size: 1rem;
  }
}

.language-toggle {
  margin-left: 1rem;
  border-radius: 25px;
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.language-toggle:hover {
  background-color: var(--accent-color);
  color: var(--white);
  border-color: var(--accent-color);
}


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

  .about-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
  }

  .about-section .lead {
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.8;
    font-family: 'Roboto', sans-serif;
  }

  .about-section p {
    color: var(--gray-900);
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 1rem;
    font-family: 'Roboto', sans-serif;
  }

  .features-list {
    margin-top: 2rem;
  }

  .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
  }

  .feature-item i {
    font-size: 1.2rem;
    margin-right: 0.75rem;
    color: var(--primary-color);
    flex-shrink: 0;
  }

  .feature-item span {
    color: var(--gray-700);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
  }

  .about-section .img-fluid {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    width: 100%;
    height: auto;
  }

  /* Responsive dla About Section */
  @media (max-width: 768px) {
    .about-section .section-title {
      font-size: 2rem;
    }

    .about-section .lead {
      font-size: 1.05rem;
    }

    .feature-item {
      flex-direction: row;
      text-align: left;
    }
  }
  
/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  left: 0;
  right: 0;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

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

.hero-section .container {
  position: relative;
  z-index: 2;
}


.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin: 0.5rem;
}

.hero-buttons .btn-primary {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.hero-buttons .btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.hero-buttons .btn-accent {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--white);
}

.hero-buttons .btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.hero-buttons .btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

.hero-buttons .btn-outline-light:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Services Section */
.services-section {
  padding: 5rem 0;
}

.services-section .row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.services-section .col-lg-3 {
  display: flex;
  margin-bottom: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  height: 100%;
  width: 100%;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 123, 255, 0.12);
  border-color: rgba(0, 123, 255, 0.2);
}

.service-icon {
  margin-bottom: 1.5rem;
  width: 130px;
  height: 130px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(0, 123, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  border: 3px solid transparent;
}

.service-card:hover .service-icon {
  border-color: var(--primary-color);
  background: rgba(0, 123, 255, 0.05);
  transform: scale(1.05);
}

.service-icon i {
  font-size: 3rem;
  color: var(--primary-color);
  background: rgba(0, 123, 255, 0.1);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.service-icon img {
  width: 130%;
  height: 130%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

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

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
  min-height: 2.5rem;
}

.service-card p {
  color: var(--gray-600);
  line-height: 1.6;
  flex-grow: 1;
  font-size: 0.95rem;
}
/* Pricing Section */
.pricing-section {
  padding: 5rem 0;
}

.pricing-table {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.pricing-item:last-child {
  border-bottom: none;
}

.pricing-item:hover {
  background: var(--gray-100);
}

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

.pricing-desc {
  color: var(--gray-600);
  font-size: 0.9rem;
}

.pricing-price {
  text-align: right;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.price-unit {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.pricing-note {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--gray-100);
  border-radius: 10px;
}

.pricing-note p {
  margin-bottom: 1rem;
  color: var(--gray-700);
}

.pricing-note .btn-primary {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.pricing-note .btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
}

.contact-info {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: var(--gray-100);
}

.contact-item i {
  font-size: 1.2rem;
  margin-right: 1rem;
  margin-top: 0.2rem;
  width: 20px;
  text-align: center;
  color: var(--accent-color);
}

.contact-item strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--dark-color);
}

.contact-item span {
  color: var(--gray-700);
}

.social-links {
  margin-top: 2rem;
}

.social-links h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.social-link {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
  line-height: 45px;
  border-radius: 50%;
  margin-right: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
  color: var(--white);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.btn-accent {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--white);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

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

.form-control {
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-message {
  padding: 1rem;
  border-radius: 8px;
  font-weight: 500;
  display: none;
}

.form-message.success {
  background: rgba(40, 167, 69, 0.1);
  color: var(--success-color);
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.form-message.error {
  background: rgba(220, 53, 69, 0.1);
  color: var(--danger-color);
  border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Map */
.map-container {
  margin-top: 3rem;
}

.map-container h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  width: 100%;
  bottom: 0;
}

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

.footer h5 {
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: 1.3rem;
  position: relative;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  opacity: 0.7;
}

.footer p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.footer p i {
  color: var(--white);
  margin-right: 0.5rem;
  width: 18px;
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.3rem 0;
  display: inline-block;
  position: relative;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover::before {
  opacity: 1;
  left: -15px;
}

.footer hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  margin: 2rem 0 1rem;
}

.footer .social-footer {
  margin-top: 1rem;
}

.footer .social-footer a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer .social-footer a:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  
  .brand-with-phone {
    flex-direction: row;
    gap: 12px;
    justify-content: space-between;
    width: 100%;
  }

  .phone-link {
    font-size: 12px;
    padding: 6px 10px;
    white-space: nowrap;
  }
  
  .hero-section {
    min-height: 70vh;
    width: 100%;
    left: auto;
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }
  
  .navbar-nav {
    text-align: center;
  }
  
  .navbar-nav .nav-link {
    margin: 0.2rem 0;
  }
  
  .language-toggle {
    margin: 0.5rem auto;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .pricing-card {
    margin-bottom: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .navbar-brand .logo {
    height: 40px;
  }
}

/* Pricing Tabs Styles */
.pricing-tabs {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-tabs .nav-pills {
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 2rem;
}

.pricing-tabs .nav-pills .nav-link {
  background: none;
  color: var(--gray-600);
  border: 2px solid transparent;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  margin: 0 0.25rem 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pricing-tabs .nav-pills .nav-link:hover {
  color: var(--primary-color);
  background: var(--primary-light);
  border-color: var(--primary-color);
}

.pricing-tabs .nav-pills .nav-link.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 3px 10px rgba(44, 123, 158, 0.3);
}

.pricing-content-box {
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  background: var(--light-color);
}

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

.pricing-content-box .pricing-header p {
  color: var(--gray-600);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.pricing-details .price-large {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.pricing-details .price-large strong {
  font-weight: 700;
}

.pricing-details p {
  color: var(--gray-600);
  font-size: 1rem;
}

/* Map Styles */
.map-container {
  margin-top: 2rem;
}

.map-container h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }
  
  .pricing-item {
    flex-direction: column;
    text-align: center;
  }
  
  .pricing-price {
    text-align: center;
    margin-top: 1rem;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-item i {
    margin-bottom: 0.5rem;
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .service-card,
  .contact-info,
  .contact-form {
    padding: 1.5rem;
  }
  
  .about-features .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .about-features .feature-item i {
    margin-bottom: .1rem;
    margin-right: 0;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #0056b3;
    --gray-600: #495057;
    --gray-700: #343a40;
  }
  
  .hero-overlay {
    background: rgba(0, 0, 0, 0.8);
  }
  
  .btn-outline-light {
    border-width: 3px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-title,
  .hero-subtitle,
  .hero-buttons {
    animation: none;
  }
}

/* Print styles */
@media print {
  .header,
  .hero-buttons,
  .social-links,
  .contact-form,
  .map-container {
    display: none;
  }
  
  .hero-section {
    height: auto;
    background: var(--white);
    color: var(--black);
  }
  
  .hero-title,
  .hero-subtitle {
    color: var(--black);
    text-shadow: none;
  }

}

/* Payment Section */
.payment-section {
  background: var(--white);
}

.payment-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.payment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 123, 255, 0.12);
  border-color: rgba(0, 123, 255, 0.2);
}

.payment-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  background: rgba(0, 123, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.payment-icon i {
  font-size: 1.8rem;
  color: var(--primary-color);
}

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

.payment-card:hover .payment-icon i {
  color: var(--white);
}

.payment-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.cookie-modal {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.4s ease-out;
  overflow: hidden;
}

.cookie-header {
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-header-icon {
  font-size: 1.8rem;
}

.cookie-header h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.cookie-body {
  padding: 1.5rem 2rem;
  overflow-y: auto;
  flex-grow: 1;
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.7;
}

.cookie-body h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.cookie-body p {
  margin-bottom: 0.75rem;
}

.cookie-body ul {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.cookie-body ul li {
  margin-bottom: 0.4rem;
}

.cookie-body ul li strong {
  color: var(--primary-color);
}

.cookie-footer {
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-shrink: 0;
  background: var(--gray-100);
}

.cookie-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-700);
  cursor: pointer;
  user-select: none;
}

.cookie-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
  cursor: pointer;
  flex-shrink: 0;
}

.cookie-footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cookie-read-more {
  font-size: 0.85rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  padding-left: 26px;
  transition: color 0.3s ease;
}

.cookie-read-more:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.cookie-accept-btn {
  border-radius: 25px;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.cookie-accept-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 576px) {
  .cookie-modal {
    max-height: 90vh;
  }

  .cookie-header {
    padding: 1.25rem 1.5rem;
  }

  .cookie-body {
    padding: 1.25rem 1.5rem;
  }

  .cookie-footer {
    flex-direction: column;
    padding: 1rem 1.5rem;
    align-items: stretch;
  }

  .cookie-accept-btn {
    width: 100%;
  }
}
