/* ========================================
   BOREAL ARC - VINTAGE RETRO STYLING
   Professional Auto Care with Nostalgic Touch
   ======================================== */

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

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

body {
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.7;
  color: #2c2416;
  background-color: #f5f0e8;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(205, 186, 150, 0.05) 10px,
      rgba(205, 186, 150, 0.05) 20px
    );
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: #1a1410;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 2px 2px 0px rgba(205, 186, 150, 0.3);
}

h2 {
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 20px;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #b8985f;
  margin-top: 12px;
}

h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #3d2f1f;
}

h4 {
  font-size: 22px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #3d2f1f;
}

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

a:hover {
  color: #5d4a2a;
  text-decoration: underline;
}

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

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* HEADER */
header {
  background: linear-gradient(180deg, #1a1410 0%, #2c2416 100%);
  border-bottom: 4px solid #b8985f;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(184, 152, 95, 0.4));
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  color: #e8dcc8;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #b8985f;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #f5f0e8;
  text-decoration: none;
}

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #8b6f3f;
  border: 3px solid #5d4a2a;
  color: #f5f0e8;
  font-size: 28px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #1a1410 0%, #2c2416 100%);
  border-left: 4px solid #b8985f;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  z-index: 1999;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #e8dcc8;
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  gap: 8px;
}

.mobile-nav a {
  color: #e8dcc8;
  font-family: 'Georgia', serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 20px;
  border: 2px solid #3d2f1f;
  background: rgba(61, 47, 31, 0.3);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: #8b6f3f;
  border-color: #b8985f;
  color: #f5f0e8;
  text-decoration: none;
  transform: translateX(8px);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: #8b6f3f;
  color: #f5f0e8;
  border-color: #5d4a2a;
}

.btn-primary:hover {
  background: #5d4a2a;
  border-color: #3d2f1f;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

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

.btn-secondary:hover {
  background: #8b6f3f;
  color: #f5f0e8;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #2c2416 0%, #3d2f1f 50%, #2c2416 100%);
  border-bottom: 6px solid #b8985f;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(184, 152, 95, 0.1) 2px,
      rgba(184, 152, 95, 0.1) 4px
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  color: #f5f0e8;
  font-size: 52px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.hero-subheadline {
  color: #e8dcc8;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-indicators {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-indicators span {
  color: #b8985f;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 16px;
  border: 2px solid #b8985f;
  background: rgba(184, 152, 95, 0.1);
}

/* HERO SIMPLE */
.hero-simple {
  background: linear-gradient(135deg, #3d2f1f 0%, #2c2416 100%);
  border-bottom: 4px solid #b8985f;
  padding: 60px 20px 40px;
}

.hero-simple h1 {
  color: #f5f0e8;
  margin-bottom: 16px;
}

.hero-simple .hero-subheadline {
  color: #e8dcc8;
  font-size: 18px;
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
}

.breadcrumb a {
  color: #b8985f;
}

.breadcrumb a:hover {
  color: #e8dcc8;
}

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

.section-subheadline {
  color: #5d4a2a;
  font-size: 20px;
  font-style: italic;
  margin-bottom: 32px;
  text-align: center;
}

/* INTRO SECTION */
.intro {
  background: #fff;
  border: 4px solid #cdba96;
  box-shadow: 8px 8px 0px rgba(184, 152, 95, 0.2);
  margin: 40px 20px;
}

.intro-text {
  font-family: 'Georgia', serif;
  font-size: 24px;
  color: #8b6f3f;
  font-style: italic;
  margin-bottom: 24px;
  text-align: center;
}

.location-highlight {
  font-family: 'Georgia', serif;
  font-size: 20px;
  font-weight: 600;
  color: #1a1410;
  text-align: center;
  padding: 16px;
  background: #f5f0e8;
  border: 3px solid #cdba96;
  margin: 24px 0;
}

.opening-hours {
  text-align: center;
  font-weight: 600;
  color: #5d4a2a;
}

/* SERVICES GRID */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: #fff;
  border: 4px solid #cdba96;
  padding: 28px;
  box-shadow: 6px 6px 0px rgba(184, 152, 95, 0.2);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0px rgba(184, 152, 95, 0.3);
}

.service-card h3 {
  color: #1a1410;
  margin-bottom: 16px;
  font-size: 24px;
}

.service-price {
  font-family: 'Georgia', serif;
  font-size: 28px;
  font-weight: 700;
  color: #8b6f3f;
  margin-top: 16px;
}

.service-duration {
  color: #5d4a2a;
  font-style: italic;
  margin-top: 12px;
}

.service-includes {
  color: #5d4a2a;
  font-size: 14px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 2px dashed #cdba96;
}

/* BENEFITS GRID */
.benefits {
  background: #fff;
  border-top: 6px solid #b8985f;
  border-bottom: 6px solid #b8985f;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.benefit-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  max-width: 400px;
  text-align: center;
  padding: 24px;
  background: #f5f0e8;
  border: 3px solid #cdba96;
}

.benefit-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: sepia(50%) hue-rotate(20deg) saturate(1.2);
}

.benefit-item h3 {
  color: #1a1410;
  margin-bottom: 12px;
  font-size: 22px;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(180deg, #f5f0e8 0%, #e8dcc8 100%);
  padding: 60px 20px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: #fff;
  border: 4px solid #8b6f3f;
  padding: 28px;
  box-shadow: 6px 6px 0px rgba(139, 111, 63, 0.2);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #cdba96;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  color: #2c2416;
  font-style: italic;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-family: 'Georgia', serif;
  font-weight: 600;
  color: #8b6f3f;
  font-style: normal;
  margin-bottom: 0;
}

.testimonial-service {
  font-size: 14px;
  color: #5d4a2a;
  font-style: italic;
}

/* PRICING */
.pricing-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.note {
  color: #8b6f3f;
  font-style: italic;
  padding: 16px;
  background: #f5f0e8;
  border-left: 4px solid #b8985f;
  margin: 24px 0;
}

.price-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.price-item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: #fff;
  border: 4px solid #cdba96;
  padding: 28px;
  text-align: center;
  box-shadow: 6px 6px 0px rgba(184, 152, 95, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.price-item:hover {
  transform: translateY(-8px);
  box-shadow: 8px 12px 0px rgba(184, 152, 95, 0.3);
}

.price-item.bestseller {
  border-color: #8b6f3f;
  border-width: 6px;
}

.badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #8b6f3f;
  color: #f5f0e8;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  border: 2px solid #5d4a2a;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.price-amount {
  font-family: 'Georgia', serif;
  font-size: 38px;
  font-weight: 700;
  color: #8b6f3f;
  margin: 16px 0;
}

.price-duration {
  color: #5d4a2a;
  font-size: 14px;
  font-style: italic;
}

.price-highlight {
  color: #8b6f3f;
  font-weight: 600;
  margin-top: 12px;
}

/* PACKAGES */
.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.package-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  max-width: 400px;
  background: #fff;
  border: 4px solid #cdba96;
  padding: 32px;
  text-align: center;
  box-shadow: 6px 6px 0px rgba(184, 152, 95, 0.2);
  position: relative;
}

.package-card.best-value {
  border-color: #8b6f3f;
  border-width: 6px;
  transform: scale(1.05);
}

.package-regular {
  color: #8b6f3f;
  text-decoration: line-through;
  font-size: 16px;
  margin: 16px 0 8px;
}

.package-price {
  font-family: 'Georgia', serif;
  font-size: 42px;
  font-weight: 700;
  color: #1a1410;
  margin: 8px 0;
}

.package-savings {
  color: #5d4a2a;
  font-weight: 600;
  padding: 8px 16px;
  background: #f5f0e8;
  border: 2px solid #cdba96;
  display: inline-block;
  margin-top: 16px;
}

/* VALUES & MILESTONES */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.value-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: #fff;
  border: 3px solid #cdba96;
  padding: 28px;
  box-shadow: 4px 4px 0px rgba(184, 152, 95, 0.2);
}

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

.milestone {
  flex: 1 1 calc(25% - 18px);
  min-width: 150px;
  text-align: center;
  padding: 24px;
  background: #8b6f3f;
  border: 4px solid #5d4a2a;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
}

.milestone h3 {
  font-size: 42px;
  color: #f5f0e8;
  margin-bottom: 8px;
}

.milestone p {
  color: #e8dcc8;
  font-size: 16px;
  margin: 0;
}

/* SERVICE DETAILS */
.service-detail {
  background: #fff;
  border-left: 6px solid #8b6f3f;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 4px 4px 0px rgba(184, 152, 95, 0.15);
}

.service-detail h4 {
  color: #1a1410;
  margin-bottom: 12px;
}

.quality-promise {
  text-align: center;
  font-family: 'Georgia', serif;
  font-size: 22px;
  font-weight: 600;
  color: #8b6f3f;
  padding: 16px;
  border: 3px solid #8b6f3f;
  background: #f5f0e8;
  margin: 32px 0;
}

/* CONTACT METHODS */
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.method-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  max-width: 400px;
  background: #fff;
  border: 4px solid #cdba96;
  padding: 32px;
  text-align: center;
  box-shadow: 6px 6px 0px rgba(184, 152, 95, 0.2);
}

.method-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: sepia(50%) hue-rotate(20deg);
}

.method-content {
  font-family: 'Georgia', serif;
  font-size: 20px;
  font-weight: 600;
  color: #1a1410;
  margin: 16px 0;
}

.method-note,
.method-hours {
  color: #5d4a2a;
  font-style: italic;
  font-size: 14px;
}

/* LOCATION & HOURS */
.location-info,
.hours-list {
  background: #fff;
  border: 3px solid #cdba96;
  padding: 28px;
  margin-top: 24px;
}

.hours-list p {
  padding: 12px 0;
  border-bottom: 1px dashed #cdba96;
}

.hours-list p:last-child {
  border-bottom: none;
}

.address {
  font-family: 'Georgia', serif;
  font-size: 20px;
  font-weight: 600;
  color: #1a1410;
  margin: 16px 0;
}

/* CASE STUDIES */
.case-study {
  background: #fff;
  border: 4px solid #8b6f3f;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 6px 6px 0px rgba(139, 111, 63, 0.2);
}

.case-study h3 {
  color: #1a1410;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #cdba96;
}

.case-study p {
  margin-bottom: 12px;
}

.case-study strong {
  color: #8b6f3f;
  font-weight: 700;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #8b6f3f 0%, #5d4a2a 100%);
  padding: 80px 20px;
  text-align: center;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: #f5f0e8;
  border: 6px solid #b8985f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #8b6f3f;
  margin: 0 auto 32px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
}

.thank-you-hero h1 {
  color: #f5f0e8;
}

.thank-you-hero p {
  color: #e8dcc8;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.step-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  background: #fff;
  border: 4px solid #cdba96;
  padding: 28px;
  text-align: center;
  box-shadow: 4px 4px 0px rgba(184, 152, 95, 0.2);
}

.step-item img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: sepia(50%) hue-rotate(20deg);
}

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

.link-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  background: #fff;
  border: 3px solid #cdba96;
  padding: 24px;
  text-align: center;
}

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

/* CTA SECTIONS */
.cta-banner {
  background: linear-gradient(135deg, #3d2f1f 0%, #2c2416 100%);
  border-top: 6px solid #b8985f;
  border-bottom: 6px solid #b8985f;
  padding: 60px 20px;
  text-align: center;
}

.cta-banner h2 {
  color: #f5f0e8;
  margin-bottom: 20px;
}

.cta-banner h2::after {
  background: #b8985f;
  margin-left: auto;
  margin-right: auto;
}

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

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

/* LEGAL CONTENT */
.legal-content {
  background: #fff;
  padding: 40px 20px;
}

.legal-content h2 {
  color: #1a1410;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h3 {
  color: #3d2f1f;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul {
  margin-left: 32px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 8px;
  color: #3d2f1f;
}

.last-updated {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid #cdba96;
  font-style: italic;
  color: #8b6f3f;
}

/* FOOTER */
footer {
  background: linear-gradient(180deg, #1a1410 0%, #0d0a07 100%);
  border-top: 6px solid #b8985f;
  padding: 50px 20px 30px;
  color: #e8dcc8;
}

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

.footer-info {
  flex: 1 1 300px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 4px rgba(184, 152, 95, 0.4));
}

.footer-info p {
  color: #cdba96;
  margin-bottom: 12px;
  line-height: 1.6;
}

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

.footer-links h4 {
  color: #b8985f;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-links a {
  color: #cdba96;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 6px 0;
}

.footer-links a:hover {
  color: #f5f0e8;
  padding-left: 8px;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid #3d2f1f;
}

.footer-bottom p {
  color: #8b6f3f;
  font-size: 14px;
  margin: 0;
}

/* COOKIE CONSENT BANNER */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1410;
  border-top: 4px solid #b8985f;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #e8dcc8;
  font-size: 15px;
}

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

.cookie-btn {
  padding: 10px 24px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
}

.cookie-btn-accept {
  background: #8b6f3f;
  color: #f5f0e8;
  border-color: #5d4a2a;
}

.cookie-btn-accept:hover {
  background: #5d4a2a;
}

.cookie-btn-reject {
  color: #e8dcc8;
  border-color: #8b6f3f;
}

.cookie-btn-reject:hover {
  background: #8b6f3f;
  color: #f5f0e8;
}

.cookie-btn-settings {
  color: #b8985f;
  border-color: #5d4a2a;
}

.cookie-btn-settings:hover {
  background: #5d4a2a;
  color: #f5f0e8;
}

/* COOKIE MODAL */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 20, 16, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: #f5f0e8;
  border: 6px solid #b8985f;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.5);
}

.cookie-modal-content h2 {
  color: #1a1410;
  margin-bottom: 24px;
}

.cookie-category {
  background: #fff;
  border: 3px solid #cdba96;
  padding: 20px;
  margin-bottom: 20px;
}

.cookie-category h3 {
  color: #3d2f1f;
  font-size: 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cdba96;
  transition: 0.3s;
  border: 2px solid #8b6f3f;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background-color: #fff;
  transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #8b6f3f;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(24px);
}

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 968px) {
  h1 {
    font-size: 38px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  h3 {
    font-size: 24px;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .service-card,
  .price-item {
    flex: 1 1 100%;
  }
  
  .benefit-item,
  .value-item,
  .testimonial-card,
  .step-item,
  .method-card {
    flex: 1 1 100%;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }
  
  .package-card.best-value {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  section {
    padding: 40px 16px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
  
  .milestone {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 30px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .price-amount {
    font-size: 32px;
  }
  
  .package-price {
    font-size: 36px;
  }
  
  .milestone h3 {
    font-size: 36px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  #cookie-modal,
  .cta-banner,
  .cta-buttons {
    display: none;
  }
  
  body {
    background: white;
  }
  
  a {
    text-decoration: underline;
  }
}