/* ============================================
   FRANOMARGU AUTOVERMIETUNG - MODERN BOLD STYLE
   Premium Car Rental Design System
   ============================================ */

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

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

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

/* ============================================
   TYPOGRAPHY - MODERN BOLD
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a2e;
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

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

a:hover {
  color: #1a1a2e;
  text-transform: none;
}

strong {
  font-weight: 700;
  color: #1a1a2e;
}

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

li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
  background: #1a1a2e;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: #f4f4f4;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 8px 0;
  display: block;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  color: #c9a961;
  border-bottom-color: #c9a961;
}

/* ============================================
   MOBILE MENU BUTTON
   ============================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background: #c9a961;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #1a1a2e;
  transform: scale(1.05);
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #1a1a2e;
  z-index: 1999;
  padding: 80px 24px 24px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #c9a961;
  border: 2px solid #c9a961;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #c9a961;
  color: #1a1a2e;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #f4f4f4;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 0;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(244, 244, 244, 0.1);
  transition: all 0.3s ease;
}

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

/* ============================================
   HERO SECTION - BOLD IMPACT
   ============================================ */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(201, 169, 97, 0.1);
  border-radius: 50%;
  z-index: 1;
}

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

.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: #f4f4f4;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.trust-badges {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid rgba(201, 169, 97, 0.3);
}

.trust-badges span {
  font-size: 14px;
  font-weight: 600;
  color: #c9a961;
  letter-spacing: 0.5px;
}

/* ============================================
   PAGE HERO - SIMPLIFIED
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

.page-hero p {
  font-size: 18px;
  color: #f4f4f4;
  max-width: 700px;
  margin: 0 auto 32px;
}

/* ============================================
   BUTTONS - BOLD & CLEAR
   ============================================ */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background: #c9a961;
  color: #1a1a2e;
  border-color: #c9a961;
}

.btn-primary:hover {
  background: #1a1a2e;
  color: #c9a961;
  border-color: #c9a961;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #f4f4f4;
  border-color: #f4f4f4;
}

.btn-secondary:hover {
  background: #f4f4f4;
  color: #1a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(244, 244, 244, 0.2);
}

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

section h2 {
  text-align: center;
  margin-bottom: 16px;
  font-size: 42px;
  color: #1a1a2e;
}

section > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #555;
}

/* ============================================
   CARD GRIDS - FLEXBOX LAYOUTS
   ============================================ */
.services-grid,
.benefits-grid,
.testimonial-grid,
.vehicle-grid,
.packages-grid,
.solutions-grid,
.methods-grid,
.stats-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

/* ============================================
   SERVICE CARDS - BOLD DESIGN
   ============================================ */
.service-card,
.benefit-item,
.vehicle-card,
.package-card,
.solution-card,
.method-card,
.stat-card,
.content-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #ffffff;
  border: 3px solid #1a1a2e;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.benefit-item:hover,
.vehicle-card:hover,
.package-card:hover,
.solution-card:hover,
.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(26, 26, 46, 0.15);
  border-color: #c9a961;
}

.service-card h3,
.benefit-item h3,
.vehicle-card h3,
.package-card h3,
.solution-card h3,
.method-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #1a1a2e;
}

.service-card p,
.benefit-item p,
.vehicle-card p,
.package-card p,
.solution-card p,
.method-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #c9a961;
  margin: 20px 0;
  display: block;
}

.ideal {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 16px;
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */
.testimonials {
  background: #f4f4f4;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: #ffffff;
  border: 3px solid #1a1a2e;
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 26, 46, 0.15);
  border-color: #c9a961;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #1a1a2e;
  font-style: italic;
  margin-bottom: 0;
}

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

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefit-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

/* ============================================
   VEHICLE CATEGORIES
   ============================================ */
.vehicle-categories {
  margin-bottom: 60px;
}

.vehicle-categories h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.vehicle-categories > .container > p {
  margin-bottom: 32px;
}

.vehicle-features {
  background: #1a1a2e;
  color: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.vehicle-features h2 {
  color: #ffffff;
  margin-bottom: 32px;
}

.features-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.features-list li {
  font-size: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(244, 244, 244, 0.2);
  color: #f4f4f4;
}

/* ============================================
   SERVICE DETAIL CARDS
   ============================================ */
.services-detail .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-detail-card {
  background: #ffffff;
  border: 3px solid #1a1a2e;
  border-radius: 12px;
  padding: 40px;
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  box-shadow: 0 12px 32px rgba(26, 26, 46, 0.15);
  border-color: #c9a961;
}

.service-detail-card h2 {
  text-align: left;
  margin-bottom: 16px;
}

.service-detail-card ul {
  margin: 24px 0;
}

.service-detail-card ul li {
  font-size: 16px;
  color: #555;
  margin-bottom: 12px;
}

/* ============================================
   STATISTICS & NUMBERS
   ============================================ */
.statistics {
  background: #1a1a2e;
  color: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.statistics h2 {
  color: #ffffff;
}

.stats-grid,
.stat-item {
  justify-content: center;
}

.stat-card,
.stat-item {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: rgba(244, 244, 244, 0.1);
  border: 3px solid #c9a961;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-card strong,
.stat-item strong {
  font-size: 48px;
  color: #c9a961;
  display: block;
  font-weight: 700;
}

.stat-card span,
.stat-item span {
  font-size: 16px;
  color: #f4f4f4;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   INTRO & CONTENT SECTIONS
   ============================================ */
.intro-section,
.company-story,
.mission-vision {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.intro-section h2,
.company-story h2,
.mission-vision h2 {
  text-align: center;
  margin-bottom: 24px;
}

.intro-section p,
.company-story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}

.benefits-list {
  max-width: 600px;
  margin: 32px auto;
  list-style: none;
  padding: 0;
}

.benefits-list li {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  padding: 12px 0;
  border-bottom: 2px solid #f4f4f4;
}

/* ============================================
   PACKAGES SECTION
   ============================================ */
.packages {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.package-card .duration {
  font-size: 14px;
  text-transform: uppercase;
  color: #c9a961;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.package-card ul {
  text-align: left;
  margin: 24px 0;
}

.package-card ul li {
  font-size: 15px;
  color: #555;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-methods {
  margin-bottom: 60px;
}

.method-card {
  text-align: center;
  flex: 1 1 calc(50% - 24px);
}

.method-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.method-card a {
  color: #c9a961;
  font-weight: 600;
  font-size: 18px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-section {
  padding: 60px 20px;
  background: #f4f4f4;
  margin-bottom: 60px;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  border: 3px solid #1a1a2e;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a2e;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px;
  border: 3px solid #1a1a2e;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #c9a961;
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.privacy-note {
  font-size: 13px;
  color: #555;
  margin: 24px 0;
  line-height: 1.6;
}

.privacy-note a {
  color: #c9a961;
  text-decoration: underline;
}

/* ============================================
   OFFICE HOURS & LOCATION
   ============================================ */
.office-hours,
.location-map {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.hours-list {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.hours-list p {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  padding: 12px 0;
  border-bottom: 2px solid #f4f4f4;
}

.location-map p {
  max-width: 700px;
  margin: 0 auto 16px;
  text-align: center;
  font-size: 16px;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you-page {
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
}

.icon-success {
  width: 100px;
  height: 100px;
  background: #c9a961;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  font-weight: 700;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.3);
}

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

.lead {
  font-size: 24px;
  color: #555;
  margin-bottom: 40px;
  font-weight: 600;
}

.confirmation-box {
  background: #f4f4f4;
  border: 3px solid #1a1a2e;
  border-radius: 12px;
  padding: 40px;
  margin: 40px 0;
  text-align: left;
}

.confirmation-box h2 {
  text-align: left;
  margin-bottom: 16px;
  font-size: 28px;
}

.next-steps {
  margin: 24px 0;
  padding-left: 24px;
}

.next-steps li {
  font-size: 16px;
  margin-bottom: 12px;
  color: #1a1a2e;
}

.note {
  font-size: 14px;
  color: #555;
  font-style: italic;
  margin-top: 16px;
}

.suggestions {
  margin: 40px 0;
}

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

.suggestion-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.suggestion-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #ffffff;
  border: 3px solid #1a1a2e;
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: left;
}

.suggestion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 26, 46, 0.15);
  border-color: #c9a961;
}

.suggestion-card h4 {
  font-size: 18px;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.suggestion-card p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.contact-reminder {
  background: #1a1a2e;
  color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  margin: 40px 0;
}

.contact-reminder h3 {
  color: #ffffff;
  margin-bottom: 16px;
}

.contact-reminder p {
  color: #f4f4f4;
  margin-bottom: 8px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  font-size: 42px;
  margin-bottom: 32px;
  text-align: center;
}

.legal-page h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
  text-align: left;
}

.legal-page h3 {
  font-size: 22px;
  margin-top: 24px;
  margin-bottom: 12px;
  text-align: left;
}

.legal-page p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #333;
}

.legal-page ul,
.legal-page ol {
  margin: 16px 0;
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section,
.cta-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.cta-section h2,
.cta-banner h2 {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 16px;
}

.cta-section p,
.cta-banner p {
  font-size: 18px;
  color: #f4f4f4;
  margin-bottom: 32px;
}

.contact-info {
  font-size: 16px;
  color: #c9a961;
  font-weight: 600;
  margin-top: 24px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #1a1a2e;
  color: #f4f4f4;
  padding: 60px 20px 32px;
  margin-top: 60px;
}

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

.footer-col {
  flex: 1 1 250px;
}

.footer-col h4 {
  color: #c9a961;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: #f4f4f4;
  margin-bottom: 8px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #f4f4f4;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #c9a961;
  padding-left: 4px;
}

.copyright {
  text-align: center;
  padding-top: 24px;
  border-top: 2px solid rgba(201, 169, 97, 0.3);
  font-size: 14px;
  color: #f4f4f4;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a2e;
  color: #f4f4f4;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  flex: 1 1 400px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-btn-accept {
  background: #c9a961;
  color: #1a1a2e;
}

.cookie-btn-accept:hover {
  background: #ffffff;
  color: #1a1a2e;
}

.cookie-btn-reject {
  background: transparent;
  color: #f4f4f4;
  border-color: #f4f4f4;
}

.cookie-btn-reject:hover {
  background: #f4f4f4;
  color: #1a1a2e;
}

.cookie-btn-settings {
  background: transparent;
  color: #c9a961;
  border-color: #c9a961;
}

.cookie-btn-settings:hover {
  background: #c9a961;
  color: #1a1a2e;
}

/* ============================================
   COOKIE SETTINGS MODAL
   ============================================ */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 46, 0.9);
  z-index: 2001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-modal.active {
  display: flex;
}

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

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

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

.cookie-modal h2 {
  font-size: 32px;
  margin-bottom: 24px;
  text-align: left;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  border: 2px solid #f4f4f4;
  border-radius: 8px;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

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

.cookie-toggle {
  width: 50px;
  height: 28px;
  background: #ccc;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #c9a961;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background: #ffffff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: left 0.3s ease;
}

.cookie-toggle.active::after {
  left: 25px;
}

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

.cookie-category p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

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

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  /* Show mobile menu button, hide desktop nav */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .nav-menu {
    display: none;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
    padding: 14px 24px;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Card grids - stack on mobile */
  .services-grid,
  .benefits-grid,
  .vehicle-grid,
  .packages-grid,
  .solutions-grid,
  .methods-grid,
  .stats-grid,
  .testimonial-grid,
  .content-grid {
    flex-direction: column;
  }
  
  .service-card,
  .benefit-item,
  .vehicle-card,
  .package-card,
  .solution-card,
  .method-card,
  .stat-card,
  .content-item,
  .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-banner .container {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Form adjustments */
  .form-wrapper {
    padding: 24px;
  }
  
  /* Thank you page */
  .thank-you-page h1 {
    font-size: 32px;
  }
  
  .lead {
    font-size: 18px;
  }
  
  .confirmation-box {
    padding: 24px;
  }
  
  .suggestion-links {
    flex-direction: column;
  }
  
  .suggestion-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .hero,
  .page-hero {
    padding: 48px 16px;
  }
  
  .service-card,
  .benefit-item,
  .vehicle-card,
  .package-card,
  .testimonial-card {
    padding: 24px;
  }
  
  .icon-success {
    width: 80px;
    height: 80px;
    font-size: 48px;
  }
}

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

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

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

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

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

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

/* END OF STYLES */