/* ===================================
   MONOCHROME SOPHISTICATED DESIGN
   Rowerowa Przygoda - Complete Styles
   ================================== */

/* CSS RESET & NORMALIZE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* TYPOGRAPHY - MONOCHROME SOPHISTICATED */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #333333;
}

a {
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #666666;
}

ul, ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  color: #333333;
}

strong {
  font-weight: 700;
  color: #000000;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* HEADER - MONOCHROME SOPHISTICATED */
header {
  background-color: #000000;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.logo:hover img {
  opacity: 0.8;
}

/* NAVIGATION - MONOCHROME */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #cccccc;
}

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

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  background-color: #000000;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-size: 24px;
  padding: 8px 16px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #ffffff;
  color: #000000;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #000000;
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #ffffff;
  color: #000000;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 0;
  border-bottom: 1px solid #333333;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #cccccc;
  padding-left: 8px;
}

/* BUTTONS - MONOCHROME SOPHISTICATED */
.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background-color: #000000;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  background-color: transparent;
  color: #000000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-secondary:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* HERO SECTION - DRAMATIC MONOCHROME */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  color: #ffffff;
  padding: 120px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.03) 50%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, rgba(255,255,255,0.03) 50%, transparent 55%);
  background-size: 80px 80px;
  opacity: 0.5;
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  color: #e0e0e0;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-cta .btn-primary {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.hero-cta .btn-primary:hover {
  background-color: #000000;
  color: #ffffff;
}

.hero-cta .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.hero-cta .btn-secondary:hover {
  background-color: #ffffff;
  color: #000000;
}

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.badge {
  display: inline-block;
  padding: 12px 24px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
}

/* PAGE HERO */
.page-hero {
  background-color: #f5f5f5;
  padding: 80px 20px 60px;
  margin-bottom: 60px;
  border-bottom: 4px solid #000000;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #666666;
  max-width: 700px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 24px;
  color: #666666;
}

.breadcrumb a {
  color: #000000;
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* SECTIONS - MONOCHROME SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.benefits,
.services-preview,
.how-it-works,
.testimonials,
.location-info,
.pricing,
.pricing-premium,
.pricing-special,
.discounts,
.payment-methods,
.faq,
.tour-benefits,
.tour-offer,
.practical-info,
.fleet-overview,
.bike-category,
.maintenance,
.process-steps,
.requirements,
.rental-terms,
.safety,
.our-story,
.mission-vision,
.why-choose-us,
.achievements,
.contact-methods,
.contact-form-section,
.location-details,
.directions,
.emergency-contact,
.legal-content {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* BENEFITS GRID - FLEXBOX */
.benefits-grid,
.services-grid,
.steps-grid,
.testimonials-grid,
.pricing-grid,
.services-list,
.accessories-grid,
.contact-grid,
.payment-grid,
.location-grid,
.overview-grid,
.reasons-grid,
.terms-grid,
.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.benefit-card,
.service-card,
.step,
.testimonial-card,
.pricing-card,
.contact-method,
.overview-item,
.reason,
.term {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  border: 2px solid #000000;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card:hover,
.service-card:hover,
.pricing-card:hover,
.contact-method:hover,
.overview-item:hover,
.reason:hover,
.term:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 1);
}

.benefit-card h3,
.service-card h3,
.contact-method h3,
.overview-item h3,
.reason h3,
.term h3 {
  font-size: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.benefit-card p,
.service-card p,
.contact-method p,
.overview-item p,
.reason p,
.term p {
  font-size: 16px;
  color: #666666;
}

.price {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin: 16px 0;
}

/* STEPS - MONOCHROME */
.step {
  flex: 1 1 calc(33.333% - 24px);
  text-align: center;
  background-color: #f5f5f5;
  border: 2px solid #e0e0e0;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: #666666;
}

.step ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
}

.step ul li {
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
}

.step ul li:last-child {
  border-bottom: none;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonial-card {
  background-color: #ffffff;
  border: 2px solid #000000;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #1a1a1a;
  line-height: 1.6;
}

.testimonial-card .author {
  font-weight: 700;
  color: #000000;
  font-style: normal;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rating {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-top: 32px;
  color: #000000;
}

/* PRICING CARDS */
.pricing-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  padding: 32px;
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  border-color: #000000;
  border-width: 3px;
  background-color: #f5f5f5;
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  z-index: -1;
}

.pricing-card .badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000000;
  color: #ffffff;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.pricing-card .price {
  font-size: 36px;
  margin: 20px 0;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
}

.pricing-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
  color: #333333;
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

/* BIKE CATEGORY */
.bike-category {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.bike-category.featured {
  background-color: #f5f5f5;
  border-top: 4px solid #000000;
  border-bottom: 4px solid #000000;
}

.bike-category .badge {
  display: inline-block;
  margin-bottom: 16px;
  background-color: #000000;
  color: #ffffff;
}

.specifications {
  margin-top: 32px;
  padding: 32px;
  background-color: #ffffff;
  border: 2px solid #000000;
}

.specifications ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.specifications ul li {
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}

.specifications ul li:last-child {
  border-bottom: none;
}

.specifications p {
  margin-bottom: 12px;
  font-size: 15px;
}

/* TOUR DETAILS */
.tour-details {
  padding: 32px;
  background-color: #ffffff;
  border: 2px solid #000000;
  margin-top: 24px;
}

.tour-details p {
  margin-bottom: 16px;
}

.tour-details .price {
  font-size: 32px;
  margin: 20px 0;
}

/* CTA SECTION - DRAMATIC */
.cta-section {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 80px 20px;
  margin: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.03) 50%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, rgba(255,255,255,0.03) 50%, transparent 55%);
  background-size: 60px 60px;
  opacity: 0.5;
}

.cta-section h2 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: #e0e0e0;
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-buttons,
.cta-center {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.cta-section .btn-primary {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.cta-section .btn-primary:hover {
  background-color: transparent;
  color: #ffffff;
}

.cta-section .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cta-section .btn-secondary:hover {
  background-color: #ffffff;
  color: #000000;
}

.contact-info {
  margin-top: 32px;
  font-size: 14px;
  color: #cccccc;
  position: relative;
  z-index: 1;
}

/* FAQ */
.faq-item {
  margin-bottom: 32px;
  padding: 24px;
  background-color: #f5f5f5;
  border-left: 4px solid #000000;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #666666;
  font-size: 15px;
}

/* FEATURES LIST */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.features-list li {
  flex: 1 1 calc(50% - 16px);
  min-width: 200px;
  padding: 16px;
  background-color: #f5f5f5;
  border-left: 3px solid #000000;
  font-size: 15px;
}

/* SERVICES LIST */
.service-item {
  padding: 32px;
  background-color: #ffffff;
  border: 2px solid #000000;
  margin-bottom: 32px;
}

.service-item h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.service-item .price {
  font-size: 28px;
  margin: 16px 0;
}

/* ACCESSORIES GRID */
.accessory {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 16px;
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  text-align: center;
  font-weight: 600;
}

/* CONTACT FORM */
.form-placeholder {
  max-width: 600px;
  margin: 40px auto;
  padding: 40px;
  background-color: #ffffff;
  border: 2px solid #000000;
}

.form-placeholder p {
  margin-bottom: 24px;
  font-size: 15px;
}

.form-placeholder strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.checkbox-placeholder {
  margin: 24px 0;
  padding: 16px;
  background-color: #f5f5f5;
}

.button-placeholder {
  margin-top: 32px;
  padding: 16px 40px;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.form-note {
  font-size: 13px;
  color: #666666;
  margin-top: 16px;
}

/* LOCATION INFO */
.location-info {
  padding: 32px;
  background-color: #ffffff;
  border: 2px solid #000000;
}

.location-info p {
  margin-bottom: 16px;
}

.location-info h3 {
  margin-top: 24px;
  margin-bottom: 16px;
}

/* LEGAL CONTENT */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 2px solid #e0e0e0;
}

.legal-content h2:first-child {
  border-top: none;
  padding-top: 0;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
  margin-bottom: 20px;
  line-height: 1.8;
}

.update-date,
.effective-date {
  font-size: 14px;
  color: #666666;
  font-style: italic;
}

/* THANK YOU PAGE */
.thank-you-hero {
  text-align: center;
  padding: 100px 20px;
  background-color: #f5f5f5;
  margin-bottom: 60px;
}

.thank-you-hero h1 {
  font-size: 56px;
  margin-bottom: 16px;
}

.thank-you-hero .subtitle {
  font-size: 24px;
  color: #666666;
  margin-bottom: 24px;
}

.next-steps,
.helpful-links,
.social-media {
  margin-bottom: 60px;
  padding: 40px 20px;
  text-align: center;
}

.alternative-contact {
  margin-top: 32px;
  font-size: 15px;
  color: #666666;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 32px;
}

.links-grid a {
  padding: 16px 32px;
  background-color: #ffffff;
  border: 2px solid #000000;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s ease;
}

.links-grid a:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-2px);
}

.social-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.social-links span {
  padding: 12px 24px;
  background-color: #000000;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

/* FOOTER - MONOCHROME */
footer {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 20px 32px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
}

.footer-column h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column p {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #cccccc;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid #333333;
  text-align: center;
}

.footer-bottom p {
  color: #999999;
  font-size: 13px;
}

/* COOKIE CONSENT BANNER */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  color: #ffffff;
  padding: 24px 20px;
  z-index: 998;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-consent-text {
  flex: 1 1 400px;
  font-size: 14px;
  color: #e0e0e0;
}

.cookie-consent-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-consent-buttons button {
  padding: 12px 24px;
  border: 2px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-consent-buttons button:hover {
  background-color: #ffffff;
  color: #000000;
}

.cookie-consent-buttons .accept-all {
  background-color: #ffffff;
  color: #000000;
}

.cookie-consent-buttons .accept-all:hover {
  background-color: transparent;
  color: #ffffff;
}

/* COOKIE PREFERENCES MODAL */
#cookie-preferences-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#cookie-preferences-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  border: 4px solid #000000;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #000000;
  color: #ffffff;
  border: none;
  font-size: 24px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: #333333;
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #f5f5f5;
  border-left: 4px solid #000000;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.cookie-category p {
  font-size: 14px;
  color: #666666;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle label {
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-modal-buttons button {
  flex: 1;
  min-width: 150px;
  padding: 14px 28px;
  border: 2px solid #000000;
  background-color: #000000;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-buttons button:hover {
  background-color: #ffffff;
  color: #000000;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 80px 20px 60px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta a {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
  }
  
  /* Page Hero */
  .page-hero {
    padding: 60px 20px 40px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  /* Cards */
  .benefit-card,
  .service-card,
  .step,
  .testimonial-card,
  .pricing-card,
  .contact-method,
  .overview-item,
  .reason,
  .term,
  .accessory {
    flex: 1 1 100%;
    min-width: auto;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  /* CTA Section */
  .cta-section h2 {
    font-size: 28px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons a {
    width: 100%;
  }
  
  /* Footer */
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie Consent */
  .cookie-consent-content {
    flex-direction: column;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-consent-buttons button {
    width: 100%;
  }
  
  /* Modal */
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    width: 100%;
  }
  
  /* Links Grid */
  .links-grid {
    flex-direction: column;
  }
  
  .links-grid a {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-card,
  .service-card,
  .pricing-card,
  .contact-method,
  .overview-item,
  .reason,
  .term {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step {
    flex: 1 1 calc(50% - 24px);
  }
  
  .footer-column {
    flex: 1 1 calc(50% - 40px);
  }
}

/* SMOOTH ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

/* ACCESSIBILITY */
*:focus {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent-banner,
  #cookie-preferences-modal {
    display: none;
  }
  
  body {
    color: #000000;
    background: #ffffff;
  }
  
  a {
    text-decoration: underline;
  }
}