/* ===================================
   CRISP AUTOMOBILE - WARM FRIENDLY DESIGN
   CSS Reset & Base Styles
   =================================== */

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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.7;
  color: #4A4A4A;
  background-color: #FFF8F0;
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY - Warm & Friendly
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2C3E50;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

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

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

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

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

a:hover {
  color: #BFA888;
}

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

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

strong {
  font-weight: 700;
  color: #2C3E50;
}

/* ===================================
   CONTAINER & LAYOUT - Flexbox Only
   =================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================
   MOBILE MENU TOGGLE BUTTON
   =================================== */

.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #D4AF37;
  color: white;
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

/* ===================================
   MOBILE MENU OVERLAY
   =================================== */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  z-index: 1002;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
}

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

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

.mobile-menu-close:hover {
  background: white;
  color: #2C3E50;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: white;
  font-size: 20px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: left;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #D4AF37;
  transform: translateX(8px);
}

/* ===================================
   HEADER - Warm & Welcoming
   =================================== */

header {
  background: white;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

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

.main-nav a {
  color: #2C3E50;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

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

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

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

.header-cta {
  display: flex;
  align-items: center;
}

/* ===================================
   BUTTONS - Rounded & Friendly
   =================================== */

.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: #D4AF37;
  color: white;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background: #BFA888;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #2C3E50;
  border: 2px solid #D4AF37;
}

.btn-secondary:hover {
  background: #D4AF37;
  color: white;
  transform: translateY(-2px);
}

.btn-link {
  background: transparent;
  color: #D4AF37;
  padding: 8px 0;
  font-weight: 600;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.btn-link:hover {
  color: #BFA888;
  transform: translateX(4px);
}

/* ===================================
   HERO SECTION - Warm Welcome
   =================================== */

.hero {
  background: linear-gradient(135deg, #FFE5CC 0%, #FFF8F0 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
  text-align: center;
}

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

.hero h1 {
  color: #2C3E50;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 20px;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

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

/* ===================================
   SECTIONS - Consistent Spacing
   =================================== */

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

.text-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.text-section h2 {
  margin-bottom: 24px;
}

.text-section p {
  margin-bottom: 20px;
}

/* ===================================
   BRAND STATEMENT
   =================================== */

.brand-statement {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.brand-statement h2 {
  color: #2C3E50;
  margin-bottom: 20px;
}

.brand-statement p {
  font-size: 20px;
  color: #666;
  line-height: 1.8;
}

/* ===================================
   SERVICES GRID - Flexbox Layout
   =================================== */

.services-overview,
.services-detail {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
}

.services-overview h2,
.services-detail h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.service-card {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE5CC 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 400px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.service-card h3 {
  color: #2C3E50;
  font-size: 24px;
  margin-bottom: 12px;
}

.service-card p {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  flex-grow: 1;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #D4AF37;
  margin-top: 8px;
  margin-bottom: 16px;
}

/* ===================================
   SERVICE BLOCKS - Detailed Pages
   =================================== */

.service-block {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE5CC 100%);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-block h2 {
  color: #2C3E50;
  margin-bottom: 16px;
}

.service-block .price {
  font-size: 28px;
  font-weight: 700;
  color: #D4AF37;
  margin: 16px 0;
}

.service-block ul {
  margin: 24px 0;
  padding-left: 24px;
}

.service-block li {
  color: #666;
  margin-bottom: 12px;
  line-height: 1.7;
}

/* ===================================
   FEATURES GRID - Flexbox Layout
   =================================== */

.features {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
}

.features h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
  max-width: 500px;
  padding: 24px;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE5CC 100%);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
}

.feature-item h3 {
  color: #2C3E50;
  font-size: 22px;
  margin-bottom: 8px;
}

.feature-item p {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

/* ===================================
   TESTIMONIALS - High Contrast
   =================================== */

.testimonials {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  border-radius: 24px;
  padding: 60px 40px;
}

.testimonials h2 {
  text-align: center;
  color: white;
  margin-bottom: 48px;
}

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

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.testimonial-card p {
  color: #4A4A4A;
  font-size: 18px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 0;
}

.testimonial-author {
  color: #2C3E50;
  font-weight: 700;
  font-size: 16px;
  font-style: normal;
  margin-top: 8px;
}

/* ===================================
   TEXT-IMAGE SECTIONS - Aligned
   =================================== */

.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-image-section > * {
  flex: 1 1 calc(50% - 40px);
  min-width: 280px;
}

/* ===================================
   SHOWROOM TEASER
   =================================== */

.showroom-teaser {
  background: linear-gradient(135deg, #D4AF37 0%, #BFA888 100%);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  color: white;
}

.showroom-teaser h2 {
  color: white;
  margin-bottom: 24px;
}

.showroom-teaser p {
  color: white;
  font-size: 20px;
  margin-bottom: 16px;
}

/* ===================================
   CTA BANNER - Call to Action
   =================================== */

.cta-banner {
  background: linear-gradient(135deg, #FFE5CC 0%, #FFF8F0 100%);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
}

.cta-banner h2 {
  color: #2C3E50;
  margin-bottom: 24px;
}

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

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

/* ===================================
   PROCESS STEPS
   =================================== */

.process {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
}

.process h2 {
  text-align: center;
  margin-bottom: 48px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.process-step {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE5CC 100%);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 calc(20% - 24px);
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
}

.process-step h3 {
  color: #D4AF37;
  font-size: 24px;
  margin-bottom: 12px;
}

.process-step p {
  color: #666;
  font-size: 16px;
}

/* ===================================
   COLLECTION CATEGORIES
   =================================== */

.collection-intro,
.collection-categories,
.materials,
.customization {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 40px;
}

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

.category-card {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE5CC 100%);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 450px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.category-card h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.category-card p {
  color: #666;
  font-size: 16px;
}

/* ===================================
   PROJECTS & PORTFOLIO
   =================================== */

.portfolio-intro,
.projects {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 40px;
}

.project-card {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE5CC 100%);
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.project-card h3 {
  color: #2C3E50;
  margin-bottom: 16px;
}

.project-card p {
  color: #666;
  margin-bottom: 12px;
}

.project-meta {
  color: #D4AF37;
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
}

/* ===================================
   CONTACT PAGES
   =================================== */

.contact-intro,
.contact-info,
.contact-note,
.appointment {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 40px;
}

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

.contact-method {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE5CC 100%);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.contact-method h3 {
  color: #2C3E50;
  margin-bottom: 16px;
}

.contact-method p {
  color: #666;
}

.contact-method a {
  color: #D4AF37;
  font-weight: 600;
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE5CC 100%);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
  color: #2C3E50;
  font-size: 20px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #666;
  margin-bottom: 0;
}

/* ===================================
   LEGAL PAGES
   =================================== */

.legal-hero {
  background: linear-gradient(135deg, #FFE5CC 0%, #FFF8F0 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 0 0 24px 24px;
  margin-bottom: 40px;
}

.legal-hero h1 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.legal-hero p {
  color: #666;
  font-size: 18px;
}

.legal-content {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 40px;
}

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

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

.legal-content p,
.legal-content li {
  color: #666;
  line-height: 1.8;
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.thank-you-hero {
  background: linear-gradient(135deg, #D4AF37 0%, #BFA888 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
}

.thank-you-hero h1 {
  color: white;
  margin-bottom: 16px;
}

.thank-you-hero .hero-subtitle {
  color: white;
  font-size: 20px;
}

.confirmation {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 40px;
  text-align: center;
}

.suggestions {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
}

.suggestions h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.suggestion-card {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE5CC 100%);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.suggestion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.suggestion-card h3 {
  color: #2C3E50;
  margin-bottom: 16px;
}

/* ===================================
   LOCATION & OPENING HOURS
   =================================== */

.location,
.opening-hours,
.visit-preparation,
.showroom-intro,
.showroom-info {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 40px;
}

.brand-story,
.vision-mission,
.philosophy {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 40px;
}

/* ===================================
   FOOTER - Warm & Friendly
   =================================== */

footer {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: white;
  padding: 60px 20px 30px;
  margin-top: 60px;
  border-radius: 40px 40px 0 0;
}

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

.footer-col {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
}

.tagline {
  color: #BFA888;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 12px;
}

.footer-col h4 {
  color: #D4AF37;
  font-size: 18px;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

.footer-col nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-col nav a:hover {
  color: #D4AF37;
  transform: translateX(4px);
}

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

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

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 999;
  border-radius: 24px 24px 0 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: #4A4A4A;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: #D4AF37;
  color: white;
}

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

.cookie-reject {
  background: #E8E8E8;
  color: #2C3E50;
}

.cookie-reject:hover {
  background: #D0D0D0;
}

.cookie-settings {
  background: transparent;
  color: #D4AF37;
  border: 2px solid #D4AF37;
}

.cookie-settings:hover {
  background: #D4AF37;
  color: white;
}

/* ===================================
   COOKIE PREFERENCES MODAL
   =================================== */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: white;
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.cookie-category {
  background: #FFF8F0;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
}

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

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

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

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

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

.cookie-toggle.active::after {
  transform: translateX(24px);
}

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

/* ===================================
   RESPONSIVE DESIGN - Mobile First
   =================================== */

@media (max-width: 768px) {
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: flex;
  }

  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  p {
    font-size: 16px;
  }

  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  /* Section spacing */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }

  /* Cards full width on mobile */
  .service-card,
  .feature-item,
  .testimonial-card,
  .category-card,
  .contact-method,
  .process-step,
  .project-card,
  .suggestion-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Text-image sections stack */
  .text-image-section {
    flex-direction: column;
  }

  .text-image-section > * {
    flex: 1 1 100%;
  }

  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  /* Cookie consent mobile */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-text {
    flex: 1 1 100%;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  /* Modal adjustments */
  .cookie-modal-content {
    padding: 24px;
    max-height: 90vh;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-card,
  .category-card {
    flex: 1 1 calc(50% - 24px);
  }

  .feature-item {
    flex: 1 1 calc(50% - 32px);
  }

  .testimonial-card {
    flex: 1 1 calc(50% - 32px);
  }
}

/* ===================================
   SMOOTH ANIMATIONS & TRANSITIONS
   =================================== */

* {
  transition: background-color 0.3s ease, color 0.3s ease;
}

button,
.btn-primary,
.btn-secondary,
.btn-link,
a {
  transition: all 0.3s ease;
}

/* ===================================
   ACCESSIBILITY & FOCUS STATES
   =================================== */

*:focus {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}

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

/* High contrast for better readability */
@media (prefers-contrast: high) {
  body {
    color: #000;
  }

  .testimonial-card p,
  .service-card p,
  .feature-item p {
    color: #000;
  }
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .hero-cta,
  .cta-banner,
  .header-cta {
    display: none;
  }

  body {
    background: white;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}