/* ========================================
   CSS Variables - Classic Auto Shop Theme
======================================== */
:root {
  /* Primary Colors */
  --red: #8B0000;
  --red-dark: #5C0000;
  --red-light: #B22222;
  
  /* Neutral Colors */
  --black: #0D0D0D;
  --black-light: #1A1A1A;
  --gray-dark: #2D2D2D;
  --gray: #4A4A4A;
  --gray-light: #7A7A7A;
  
  /* Accent Colors */
  --chrome: #C0C0C0;
  --chrome-light: #E8E8E8;
  --white: #FFFFFF;
  --cream: #F5F5DC;
  
  /* Effects */
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
  --glow: 0 0 20px rgba(139, 0, 0, 0.5), 0 0 40px rgba(139, 0, 0, 0.3);
  --glow-intense: 0 0 30px rgba(139, 0, 0, 0.7), 0 0 60px rgba(139, 0, 0, 0.4);
  
  /* Typography */
  --font-heading: 'Bebas Neue', 'Oswald', sans-serif;
  --font-subheading: 'Oswald', sans-serif;
  --font-body: 'Roboto', sans-serif;
  
  /* Spacing */
  --radius: 4px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
}

p {
  font-weight: bold;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* ========================================
   Buttons
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-subheading);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-glow {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red-light);
  box-shadow: var(--glow);
  animation: pulse-glow 2s ease-in-out infinite;
}

.btn-glow:hover {
  background: var(--red-light);
  transform: translateY(-3px);
  box-shadow: var(--glow-intense);
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.5), 0 0 40px rgba(139, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.7), 0 0 60px rgba(139, 0, 0, 0.4), 0 0 80px rgba(139, 0, 0, 0.2);
  }
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--chrome);
}

.btn-outline:hover {
  background: var(--chrome);
  color: var(--black);
}

.btn-full {
  width: 100%;
}

/* ========================================
   Header - Distressed/Greasy Texture
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 3px solid var(--red);
  transition: var(--transition);
}

.header-texture {
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.02) 2px,
      rgba(255,255,255,0.02) 4px
    );
  pointer-events: none;
}

.header.scrolled {
  box-shadow: var(--shadow);
  background: rgba(13, 13, 13, 0.98);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 140px;
  position: relative;
}

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

.logo-img {
  height: 200px;
  width: auto;
  object-fit: contain;
}

.logo i {
  font-size: 28px;
  color: var(--red);
}

.logo span {
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--white);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 16px;
  font-family: var(--font-subheading);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--chrome);
  border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  border-bottom-color: var(--red);
}

.header-cta {
  padding: 10px 20px;
  font-size: 13px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--white);
  cursor: pointer;
}

/* ========================================
   Hero Section
======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 13, 13, 0.9) 0%,
    rgba(45, 45, 45, 0.7) 50%,
    rgba(13, 13, 13, 0.85) 100%
  );
  z-index: 1;
}

.hero-grunge {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 180px 20px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(139, 0, 0, 0.3);
  border: 1px solid var(--red);
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-badge i {
  color: var(--red-light);
}

.hero-badge span {
  font-family: var(--font-subheading);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--chrome-light);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 10vw, 100px);
  line-height: 1.2;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 2px 2px 0 var(--red-dark);
}

.hero-title .old-english {
  font-family: 'UnifrakturMaguntia', 'Old English Text MT', serif;
}

.hero-subtitle {
  font-family: var(--font-subheading);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 400;
  color: var(--chrome);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-light);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ========================================
   Section Styles
======================================== */
section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.section-label i {
  color: var(--red);
  font-size: 16px;
}

.section-label span {
  font-family: var(--font-subheading);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red-light);
}

.section-label-center {
  justify-content: center;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 56px);
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 12px;
}

.section-subtitle {
  font-family: var(--font-subheading);
  font-size: 18px;
  color: var(--gray-light);
  letter-spacing: 1px;
}

/* ========================================
   About Section
======================================== */
.about {
  background: var(--black-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border: 4px solid var(--gray-dark);
  filter: grayscale(20%);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--red);
  border: 2px solid var(--red-light);
}

.about-badge.animate-badge {
  animation: fadeInUp 0.8s ease-out forwards, pulseBadge 2s ease-in-out infinite 1s;
}

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

@keyframes pulseBadge {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(215, 25, 32, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(215, 25, 32, 0.6);
  }
}

.about-badge i {
  font-size: 24px;
  color: var(--white);
}

.about-badge span {
  font-family: var(--font-subheading);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}

.about-content p {
  color: var(--chrome);
  margin-bottom: 24px;
  font-size: 17px;
  line-height: 1.8;
}

.about-list {
  margin-top: 24px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  font-size: 16px;
  color: var(--chrome-light);
  border-bottom: 1px solid var(--gray-dark);
}

.about-list li:last-child {
  border-bottom: none;
}

.about-list i {
  color: var(--red);
  font-size: 20px;
  filter: drop-shadow(0 0 8px rgba(215, 25, 32, 0.6));
}

/* ========================================
   Services Section
======================================== */
.services {
  background: var(--black);
  position: relative;
}

.services-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.service-card {
  background: var(--black-light);
  border: 2px solid var(--gray-dark);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--red);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(139, 0, 0, 0.2);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-dark);
  border: 2px solid var(--gray);
  border-radius: 50%;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--red);
  border-color: var(--red-light);
}

.service-icon i {
  font-size: 28px;
  color: var(--chrome);
  transition: var(--transition);
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.6;
}

/* ========================================
   Gallery Section - Before/After Carousel
======================================== */
.gallery {
  background: var(--black-light);
}

.gallery-carousel {
  max-width: 1000px;
  margin: 0 auto;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-dark);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.carousel-slide {
  min-width: 100%;
  padding: 40px;
  background: var(--black);
}

.before-after-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 24px;
}

.slide-divider {
  width: 100%;
  height: 4px;
  background: var(--gray-dark);
  margin: 16px 0;
  position: relative;
  overflow: hidden;
}

.slide-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #FF6666;
  box-shadow: 0 0 10px rgba(255, 102, 102, 0.5);
}

.slide-divider.animating::after {
  animation: progressFill 5s linear forwards;
}

@keyframes progressFill {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.before-after-item {
  position: relative;
  display: flex;
  flex-direction: column;
}

.image-label {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-mid) 100%);
  border-bottom: 3px solid var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 4px;
  text-align: center;
  padding: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(215, 25, 32, 0.3);
  transition: var(--transition);
  margin-bottom: 0;
}

.before-after-item:hover .image-label {
  background: linear-gradient(135deg, var(--black-mid) 0%, var(--gray-dark) 100%);
  border-bottom-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 
    0 6px 16px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(215, 25, 32, 0.5);
}

.before-after-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: grayscale(40%) contrast(1.1);
}

.slide-caption {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--white);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px;
  background: var(--black-mid);
  border-top: 1px solid var(--gray-dark);
}

.carousel-btn {
  width: 48px;
  height: 48px;
  background: var(--black);
  border: 1px solid var(--gray-dark);
  color: var(--gray);
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.carousel-dots {
  display: flex;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  background: var(--gray-dark);
  border: 1px solid var(--gray);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background: var(--red);
  border-color: var(--red);
}

.dot:hover:not(.active) {
  background: var(--gray);
}

/* ========================================
   Reviews Section
======================================== */
.reviews {
  background: var(--black-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--black);
  border: 1px solid var(--gray-dark);
  padding: 32px;
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.review-stars {
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.review-stars i {
  color: #FFD700;
  font-size: 18px;
  animation: starGlow 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6));
}

.review-stars i:nth-child(2) { animation-delay: 0.1s; }
.review-stars i:nth-child(3) { animation-delay: 0.2s; }
.review-stars i:nth-child(4) { animation-delay: 0.3s; }
.review-stars i:nth-child(5) { animation-delay: 0.4s; }

@keyframes starGlow {
  0%, 100% {
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.9));
    transform: scale(1.1);
  }
}

.review-text {
  color: var(--gray);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}

.review-author strong {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.review-author span {
  font-size: 13px;
  color: var(--gray-mid);
}

/* ========================================
   Contact Section
======================================== */
.contact {
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info p {
  color: var(--chrome);
  margin-bottom: 32px;
  font-size: 17px;
  line-height: 1.7;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--black-light);
  border-left: 3px solid var(--red);
}

.info-card i {
  font-size: 20px;
  color: var(--red);
  margin-top: 4px;
}

.info-card h4 {
  font-family: var(--font-subheading);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 4px;
}

.info-card p {
  font-size: 15px;
  color: var(--chrome);
  margin: 0;
  line-height: 1.5;
}

.info-card a {
  color: var(--chrome);
}

.info-card a:hover {
  color: var(--red-light);
}

.contact-map {
  margin-top: 24px;
  border: 2px solid var(--gray-dark);
}

.contact-map iframe {
  display: block;
  width: 100%;
}

.contact-form-wrapper {
  background: var(--black-light);
  border: 2px solid var(--gray-dark);
  padding: 40px;
}

.contact-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  background: var(--gray-dark);
  border: 2px solid var(--gray);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray-light);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--black);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  margin-bottom: 20px;
}

/* ========================================
   Footer
======================================== */
.footer {
  background: var(--black);
  border-top: 3px solid var(--red);
  padding: 60px 0 0;
  position: relative;
}

.footer-texture {
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.01) 2px,
      rgba(255,255,255,0.01) 4px
    );
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-dark);
  position: relative;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--gray-light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-dark);
  border: 2px solid var(--gray);
  color: var(--chrome);
  font-size: 18px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--red);
  border-color: var(--red-light);
  color: var(--white);
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 15px;
  color: var(--gray-light);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--red-light);
  padding-left: 8px;
}

.footer-hours p {
  font-size: 15px;
  color: var(--gray-light);
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-hours strong {
  color: var(--chrome);
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  position: relative;
}

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

.footer-logo-img {
  height: 250px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.footer-bottom p {
  font-size: 14px;
  color: var(--gray);
}

/* ========================================
   Mobile Quote Button
======================================== */
.mobile-quote-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--red);
  border: 2px solid var(--red-light);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 999;
  transition: var(--transition-fast);
  box-shadow: 0 4px 16px rgba(215, 25, 32, 0.4);
}

.mobile-quote-btn:hover {
  background: var(--red-light);
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(215, 25, 32, 0.6);
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1024px) {
  .about-grid {
    gap: 40px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .before-after-container {
    gap: 2px;
  }
  
  .before-after-item img {
    height: 250px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-quote-btn {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 140px;
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: 2px solid var(--red);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  
  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 0;
  }
  
  .nav-link {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-dark);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-badge {
    right: 20px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .carousel-slide {
    padding: 24px;
  }
  
  .before-after-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .slide-divider {
    margin: 12px 0;
  }
  
  .before-after-item img {
    height: 200px;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .carousel-controls {
    padding: 24px;
    gap: 16px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  section {
    padding: 60px 0;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 200px;
    position: relative;
    left: -37px;
  }
}
  
  .header-content {
    height: 100px;
  }
  
  .hero-content {
    padding: 140px 20px 60px;
  }
  
  .nav {
    top: 100px !important;
  }
  
  .logo span {
    font-size: 20px;
  }
  
  .contact-form-wrapper {
    padding: 24px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .about-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 16px;
    justify-content: center;
  }

