/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0066cc;
  --primary-dark: #0052a3;
  --secondary: #6c757d;
  --text: #333;
  --text-light: #666;
  --border: #e1e4e8;
  --bg-light: #f6f8fa;
  --bg-dark: #2c3e50;
  --white: #ffffff;
  --car-wash-blue: #1e88e5;
  --car-wash-dark: #1565c0;
}

body {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1 {
  font-weight: 900;
}

h2 {
  font-weight: 700;
}

h3 {
  font-weight: 600;
}

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

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

/* Header */
.site-header {
  background: linear-gradient(135deg, 
    #f8f9fa 0%, 
    #e9ecef 25%, 
    #dee2e6 50%, 
    #ced4da 75%, 
    #e9ecef 100%);
  border-bottom: 1px solid rgba(108, 117, 125, 0.2);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, 
    #ffffff 0%, 
    #f8f9fa 25%, 
    #ffffff 50%, 
    #f1f3f5 75%, 
    #ffffff 100%);
  border-radius: 20px;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.nav-logo::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, 
    rgba(59, 130, 246, 0.1) 0%, 
    transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.nav-logo::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.3) 50%, 
    transparent 100%);
  opacity: 0.5;
  pointer-events: none;
}

.nav-logo:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, 
    #ffffff 0%, 
    #ffffff 25%, 
    #f8f9fa 50%, 
    #ffffff 75%, 
    #ffffff 100%);
}

.nav-logo:hover::before {
  opacity: 1;
}

.nav-logo span {
  position: relative;
  z-index: 1;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 500;
}

.nav-menu a:hover {
  color: var(--primary);
  opacity: 0.8;
}

/* Mobile Menu Toggle Button */
.nav-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 5px;
  z-index: 101;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.nav-toggle-active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle-active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay-active {
  display: block;
  opacity: 1;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--car-wash-blue) 0%, var(--car-wash-dark) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  text-align: center;
  padding: 6rem 0;
  position: relative;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-description {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.95;
  letter-spacing: 0.03em;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

/* Services Section */
.services-preview {
  padding: 5rem 0;
  background: var(--white);
}

.services-preview h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  padding: 2.5rem 2rem;
  background: var(--bg-light);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.service-icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.service-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  /* Convert black SVG to primary blue color */
  filter: brightness(0) saturate(100%) invert(27%) sepia(95%) saturate(2834%) hue-rotate(199deg) brightness(97%) contrast(101%);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.service-card p {
  color: var(--text-light);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-description {
  text-align: center;
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Carousel Section */
.carousel-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide {
  display: none;
  padding: 3rem;
  background: var(--white);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-height: 500px;
  position: relative;
  width: 100%;
}

.carousel-slide.active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slide-content {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem 3rem;
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.slide-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.slide-content p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.carousel-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* About Preview Section */
.about-preview {
  padding: 5rem 0;
  background: var(--white);
}

.about-preview h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text);
}

.about-content-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image-preview {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-image-preview img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-text-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.about-text-content p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-text-content strong {
  color: var(--primary);
  font-size: 1.25rem;
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  z-index: 1;
  transition: all 0.3s;
}

.feature-card:hover::before {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.feature-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.02em;
}

.feature-card p {
  color: var(--white);
  font-size: 1.125rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  line-height: 1.6;
  font-weight: 400;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: var(--white);
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2.5rem;
  background: var(--bg-light);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.testimonial-services {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

/* Membership Section */
.membership-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, 
    #1e3a8a 0%, 
    #1e40af 25%, 
    #2563eb 50%, 
    #3b82f6 75%, 
    #60a5fa 100%);
  background-size: 200% 200%;
  animation: metallicShine 8s ease infinite;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.membership-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, 
    transparent 0%, 
    rgba(30, 58, 138, 0.3) 20%,
    rgba(44, 62, 80, 0.5) 50%,
    rgba(44, 62, 80, 0.8) 80%,
    rgba(44, 62, 80, 1) 100%);
  pointer-events: none;
  z-index: 1;
}

.membership-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  animation: shimmer 3s infinite;
}

@keyframes metallicShine {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.membership-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.membership-card {
  padding: 2.5rem;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.15) 0%, 
    rgba(255, 255, 255, 0.05) 100%);
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.membership-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.membership-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.membership-card:hover::before {
  opacity: 1;
}

.membership-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.membership-card p {
  font-size: 1.125rem;
  opacity: 0.95;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Services Detail Page */
.services-detail {
  padding: 3rem 0;
}

.services-intro {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.service-detail-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.service-detail-card:last-child {
  border-bottom: none;
}

.service-icon-large {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
}

.service-icon-large img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Convert black SVG to primary blue color */
  filter: brightness(0) saturate(100%) invert(27%) sepia(95%) saturate(2834%) hue-rotate(199deg) brightness(97%) contrast(101%);
}

.service-detail-content h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.service-detail-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(to top, 
    var(--bg-dark) 0%, 
    rgba(44, 62, 80, 0.95) 20%,
    rgba(30, 58, 138, 0.3) 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  margin-top: -50px;
  padding-top: calc(5rem + 50px);
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Detailing Services */
.detailing-services {
  padding: 4rem 0;
  background: var(--bg-light);
}

.detailing-services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.detailing-services > p {
  text-align: center;
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.detailing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.detailing-item {
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.detailing-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.detailing-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.detailing-item p {
  color: var(--text-light);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--car-wash-blue) 0%, var(--car-wash-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.25rem;
  opacity: 0.95;
}

/* About Page */
.about-content {
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.placeholder-image {
  background: var(--bg-light);
  border-radius: 12px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.values-section {
  padding: 3rem 0;
}

.values-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  padding: 2.5rem 2rem;
  background: var(--bg-light);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  z-index: 1;
  transition: all 0.3s;
}

.value-card:hover::before {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.value-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.value-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.02em;
}

.value-card p {
  color: var(--white);
  font-size: 1.125rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  line-height: 1.6;
  font-weight: 400;
}

/* Contact Page */
.contact-content {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: var(--primary);
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form-container h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.form-note {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  border-radius: 4px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/assets/img/close-up-car-care-process.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--white);
  padding: 3rem 0 1rem;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section {
  position: relative;
  z-index: 1;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  color: var(--white);
}

.footer-section p {
  opacity: 0.95;
  line-height: 1.8;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  color: var(--white);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.95;
  transition: all 0.2s;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.footer-section a:hover {
  opacity: 1;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 1);
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.25rem;
  }
  
  /* Mobile Header */
  .nav-logo {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
  
  .nav-logo span {
    display: block;
    line-height: 1.2;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, 
      #f8f9fa 0%, 
      #e9ecef 25%, 
      #dee2e6 50%, 
      #ced4da 75%, 
      #e9ecef 100%);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 100;
  }
  
  .nav-menu-active {
    right: 0;
  }
  
  .nav-overlay {
    display: block;
  }
  
  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu a {
    display: block;
    padding: 1rem 0;
    font-size: 1.125rem;
    width: 100%;
  }
  
  .nav-menu a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
  }
  
  .about-grid,
  .contact-grid,
  .about-content-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image-preview {
    order: -1;
  }
  
  .carousel-slide {
    min-height: 400px;
    padding: 2rem 1.5rem;
  }
  
  .slide-content {
    padding: 2rem 1.5rem;
    max-width: 90%;
  }
  
  .slide-content h3 {
    font-size: 1.5rem;
  }
  
  .service-detail-card {
    flex-direction: column;
    text-align: center;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .membership-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .detailing-grid {
    grid-template-columns: 1fr;
  }
}
