/* ============================================
   HIDDEN VEIN - CREATIVE ARTISTIC DESIGN
   Modern Premium Auto Parts Website
   ============================================ */

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 20px;
}

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

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

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

/* BUTTONS */
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #a01830 0%, #c41e3a 100%);
  box-shadow: 0 6px 25px rgba(196, 30, 58, 0.4);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: #1a1a1a;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-link {
  padding: 8px 0;
  background: transparent;
  color: #c41e3a;
  font-weight: 600;
  text-transform: none;
  position: relative;
}

.btn-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #c41e3a;
  transition: width 0.3s ease;
}

.btn-link:hover::after {
  width: 100%;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
  color: #ffffff;
  font-size: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
  z-index: 1002;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 24px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  color: #c41e3a;
  padding-left: 10px;
}

/* HEADER */
header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #c41e3a;
}

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

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

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

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

.main-nav a {
  color: #1a1a1a;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #c41e3a, #a01830);
  transition: width 0.3s ease;
}

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

.header-cta {
  display: flex;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  color: #ffffff;
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(196, 30, 58, 0.03) 10px,
    rgba(196, 30, 58, 0.03) 20px
  );
  pointer-events: none;
}

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

.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: #e8e8e8;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

/* SECTIONS */
section {
  padding: 80px 20px;
  margin-bottom: 0;
  position: relative;
}

.section-intro {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

section h2 {
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #c41e3a, #a01830);
  border-radius: 2px;
}

/* VALUE PROPOSITION */
.value-proposition {
  background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
}

.usp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 60px;
}

.usp-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #c41e3a, #a01830);
  transition: left 0.4s ease;
}

.usp-card:hover::before {
  left: 0;
}

.usp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(196, 30, 58, 0.15);
  border-color: #c41e3a;
}

.usp-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 4px 8px rgba(196, 30, 58, 0.2));
}

.usp-card h3 {
  margin-bottom: 16px;
  color: #1a1a1a;
}

.usp-card p {
  color: #666;
  font-size: 15px;
}

/* SERVICES GRID */
.services-overview,
.services-detailed {
  background: #ffffff;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 60px;
}

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  flex: 1 1 320px;
  max-width: 380px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 50px rgba(196, 30, 58, 0.2);
  border-color: #c41e3a;
}

.service-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 8px rgba(196, 30, 58, 0.2));
}

.service-card h3 {
  margin-bottom: 12px;
  color: #1a1a1a;
}

.service-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  color: #c41e3a;
  margin-top: auto;
  display: block;
}

/* BENEFITS */
.benefits {
  background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 60px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(196, 30, 58, 0.15);
}

.benefit-item img {
  width: 60px;
  height: 60px;
}

.benefit-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.benefit-item p {
  font-size: 14px;
  color: #666;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #ffffff;
}

.testimonials h2 {
  color: #ffffff;
}

.testimonials h2::after {
  background: linear-gradient(90deg, #c41e3a, #ffffff);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 60px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  flex: 1 1 400px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  border-left: 4px solid #c41e3a;
}

.testimonial-card .rating {
  color: #c41e3a;
  font-size: 24px;
  letter-spacing: 4px;
}

.testimonial-card p {
  font-style: italic;
  color: #333;
  font-size: 16px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}

.testimonial-author strong {
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 14px;
  color: #666;
}

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.cta-content h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-band .btn-primary {
  background: #ffffff;
  color: #c41e3a;
}

.cta-band .btn-primary:hover {
  background: #e8e8e8;
  transform: translateY(-2px);
}

.cta-band .btn-secondary {
  border-color: #ffffff;
  color: #ffffff;
}

.cta-band .btn-secondary:hover {
  background: #ffffff;
  color: #c41e3a;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}

.contact-info p {
  color: #ffffff;
  margin: 0;
}

/* LOCATION & HOURS */
.location-hours {
  background: #f9f9f9;
}

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

.location-details {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.address {
  font-size: 18px;
  line-height: 1.8;
}

.hours h3 {
  margin-bottom: 12px;
  color: #c41e3a;
}

.hours p {
  font-size: 16px;
  line-height: 1.8;
}

.map-placeholder {
  flex: 1 1 400px;
  min-height: 300px;
  background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 100px 20px 60px;
  text-align: center;
}

.breadcrumb {
  font-size: 14px;
  color: #e8e8e8;
  margin-bottom: 20px;
  text-align: left;
}

.breadcrumb a {
  color: #c41e3a;
  transition: color 0.3s ease;
}

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

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

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

/* PRODUCT CATEGORIES */
.product-categories {
  padding: 80px 20px;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 60px;
}

.category-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  max-width: 360px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(196, 30, 58, 0.2);
  border-color: #c41e3a;
}

.category-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
}

.category-card h3 {
  margin-bottom: 12px;
}

.category-card p {
  color: #666;
  font-size: 15px;
  margin-bottom: 20px;
}

/* PRODUCT ASSURANCE */
.product-assurance {
  background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
}

.assurance-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 60px;
}

.assurance-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.assurance-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(196, 30, 58, 0.15);
}

.assurance-item img {
  width: 60px;
  height: 60px;
}

.assurance-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.assurance-item p {
  font-size: 14px;
  color: #666;
}

/* HELP SECTION */
.help-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.help-section h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.help-section p {
  color: #e8e8e8;
  font-size: 18px;
  margin-bottom: 40px;
}

.help-options {
  display: flex;
  justify-content: center;
}

/* PROCESS STEPS */
.process-steps {
  background: #f9f9f9;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 60px;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(196, 30, 58, 0.15);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.step-item h3 {
  margin-bottom: 8px;
}

.step-item p {
  font-size: 14px;
  color: #666;
}

/* PRICING TRANSPARENCY */
.pricing-transparency {
  background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.pricing-transparency h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.pricing-transparency p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 40px;
}

/* COMPANY STORY */
.company-story {
  padding: 80px 20px;
  background: #ffffff;
}

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

.text-section p {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 24px;
}

/* VALUES */
.values {
  background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 60px;
}

.value-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(196, 30, 58, 0.2);
  border-color: #c41e3a;
}

.value-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
}

.value-card h3 {
  margin-bottom: 12px;
}

.value-card p {
  color: #666;
  font-size: 15px;
}

/* WHY CHOOSE US */
.why-choose-us {
  background: #ffffff;
}

.differentiators-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 60px;
}

.diff-item {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  flex: 1 1 300px;
  max-width: 360px;
  border-left: 4px solid #c41e3a;
  transition: all 0.3s ease;
}

.diff-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(196, 30, 58, 0.15);
}

.diff-item h3 {
  margin-bottom: 12px;
  color: #c41e3a;
}

.diff-item p {
  color: #666;
  font-size: 15px;
}

/* LOCATION INFO */
.location-info {
  background: #f9f9f9;
  text-align: center;
}

.location-details {
  max-width: 600px;
  margin: 40px auto 0;
}

.location-details p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* CTA CONTACT */
.cta-contact {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.cta-contact h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-contact p {
  color: #e8e8e8;
  font-size: 18px;
  margin-bottom: 40px;
}

/* CONTACT METHODS */
.contact-methods {
  padding: 80px 20px;
  background: #ffffff;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 60px;
}

.contact-card {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  max-width: 360px;
  text-align: center;
  transition: all 0.4s ease;
  border-top: 4px solid #c41e3a;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(196, 30, 58, 0.2);
}

.contact-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
}

.contact-card h3 {
  margin-bottom: 16px;
}

.contact-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.contact-card strong {
  color: #c41e3a;
}

/* CONTACT FORM SECTION */
.contact-form-section {
  background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
  padding: 80px 20px;
}

.form-wrapper {
  max-width: 700px;
  margin: 40px auto 0;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-note {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #c41e3a;
}

.form-note p {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.form-note p:last-child {
  margin-bottom: 0;
}

/* LOCATION DETAILS */
.location-details-section {
  padding: 80px 20px;
  background: #ffffff;
}

.address-block,
.hours-block {
  margin-bottom: 30px;
}

.address-block h3,
.hours-block h3 {
  color: #c41e3a;
  margin-bottom: 16px;
}

.address-block p,
.hours-block p {
  font-size: 16px;
  line-height: 1.8;
}

/* VISIT INFO */
.visit-info {
  background: #f9f9f9;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 60px;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(196, 30, 58, 0.15);
}

.info-item img {
  width: 60px;
  height: 60px;
}

.info-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.info-item p {
  font-size: 14px;
  color: #666;
}

/* LEGAL PAGES */
.legal-page {
  padding: 80px 20px;
  background: #ffffff;
}

.legal-page .breadcrumb {
  color: #666;
  margin-bottom: 30px;
}

.legal-page h1 {
  margin-bottom: 10px;
}

.subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 10px;
}

.last-updated {
  font-size: 14px;
  color: #999;
  margin-bottom: 40px;
}

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

.legal-content h2 {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 20px;
  transform: none;
  left: 0;
}

.legal-content h2::after {
  left: 0;
  transform: none;
}

.legal-content h3 {
  margin-top: 30px;
  margin-bottom: 16px;
  color: #c41e3a;
}

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

.legal-content a {
  color: #c41e3a;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #a01830;
}

.contact-privacy,
.cookie-settings-info {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 12px;
  margin-top: 60px;
  text-align: center;
  border: 2px solid #e8e8e8;
}

.contact-privacy h2,
.cookie-settings-info h2 {
  text-align: center;
  margin-bottom: 20px;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 100px 20px 80px;
  text-align: center;
}

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

.success-icon {
  margin-bottom: 30px;
}

.success-icon img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  filter: drop-shadow(0 4px 15px rgba(196, 30, 58, 0.3));
}

.thank-you-hero h1 {
  color: #ffffff;
  margin-bottom: 20px;
}

.confirmation-text {
  font-size: 16px;
  color: #e8e8e8;
  margin-top: 20px;
}

.next-steps {
  background: #ffffff;
}

.alternative-contact {
  background: #f9f9f9;
  text-align: center;
}

.continue-browsing {
  background: #ffffff;
}

.quick-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 60px;
}

.link-card {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(196, 30, 58, 0.2);
  border-color: #c41e3a;
}

.link-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
}

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

/* FOOTER */
footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  color: #e8e8e8;
  padding: 60px 20px 30px;
}

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

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.footer-col h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
  font-family: 'Rajdhani', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  color: #e8e8e8;
  font-size: 14px;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: #c41e3a;
  padding-left: 5px;
}

.footer-col p {
  color: #e8e8e8;
  font-size: 14px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #c41e3a;
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
  padding: 12px 24px;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.legal-links a {
  color: #e8e8e8;
  font-size: 13px;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #c41e3a;
}

.footer-bottom p {
  color: #999;
  font-size: 13px;
  margin: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid #c41e3a;
}

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

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

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

.cookie-text h3 {
  color: #ffffff;
  margin-bottom: 8px;
  font-size: 18px;
}

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

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

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

.cookie-accept {
  background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
  color: #ffffff;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.cookie-reject {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-settings {
  background: transparent;
  color: #e8e8e8;
  text-decoration: underline;
}

.cookie-settings:hover {
  color: #c41e3a;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: #f9f9f9;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  border-left: 4px solid #c41e3a;
}

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

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

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

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

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

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hide desktop nav */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  /* Header adjustments */
  .header-content {
    padding: 16px 0;
  }
  
  .logo img {
    height: 40px;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 80px 20px 60px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Sections */
  section {
    padding: 60px 20px;
  }
  
  /* Grid adjustments */
  .usp-grid,
  .services-grid,
  .benefits-grid,
  .testimonials-grid,
  .categories-grid,
  .assurance-grid,
  .steps-grid,
  .values-grid,
  .differentiators-grid,
  .contact-grid,
  .info-grid,
  .quick-links-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .usp-card,
  .service-card,
  .benefit-item,
  .testimonial-card,
  .category-card,
  .assurance-item,
  .step-item,
  .value-card,
  .diff-item,
  .contact-card,
  .info-item,
  .link-card {
    max-width: 100%;
    width: 100%;
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Contact info */
  .contact-info {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Location content */
  .location-content {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  
  /* Newsletter form */
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form button {
    width: 100%;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Page hero */
  .page-hero {
    padding: 80px 20px 50px;
  }
  
  /* Form wrapper */
  .form-wrapper {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  /* Further mobile optimizations */
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .container {
    padding: 0 16px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  section {
    padding: 50px 16px;
  }
  
  .cookie-modal-content {
    padding: 30px 20px;
  }
}

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

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

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

/* Smooth scroll */
html {
  scroll-padding-top: 80px;
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #c41e3a;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none;
  }
}