/* =========================================
   O & T Auto Care — Main Stylesheet
   ========================================= */

/* ---- CSS Custom Properties ---- */
:root {
  --primary-dark: #0B1623;
  --charcoal: #111827;
  --accent-blue: #1E3A8A;
  --accent-blue-light: #2563EB;
  --accent-blue-hover: #1D4ED8;
  --light-bg: #F7F8FA;
  --white: #FFFFFF;
  --muted-text: #6B7280;
  --muted-light: #9CA3AF;
  --border-color: #E5E7EB;
  --success-green: #2F855A;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section Shared ---- */
.section {
  padding: 100px 0;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent-blue);
  background: rgba(30, 58, 138, 0.08);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--muted-text);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--accent-blue-hover);
  border-color: var(--accent-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.35);
}

.btn-outline {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary-dark);
  border-color: var(--border-color);
}

.btn-outline-dark:hover {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1rem;
}

/* ---- Animations ---- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =================================================
   NAVIGATION
   ================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(11, 22, 35, 0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--accent-blue);
  border-radius: 10px;
  color: var(--white);
}

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

.nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--accent-blue);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.nav-cta-btn:hover {
  background: var(--accent-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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


/* =================================================
   HERO SECTION
   ================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
}

.mobile-hero-bg {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(11, 22, 35, 0.82) 0%,
    rgba(11, 22, 35, 0.55) 50%,
    rgba(11, 22, 35, 0.40) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 180px;
}

.hero-text {
  max-width: 650px;
}

.hero-headline {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Trust Strip */
.trust-strip {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(11, 22, 35, 0.85);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
}

.trust-item {
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.trust-item:last-child { border-right: none; }

.trust-item:hover {
  background: rgba(255,255,255,0.05);
}

.trust-icon {
  color: var(--accent-blue-light);
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}

.trust-item h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.trust-item p {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
}


/* =================================================
   SERVICES SECTION
   ================================================= */
.services-section {
  background: var(--light-bg);
  padding-top: 80px;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-blue-light));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 58, 138, 0.06);
  border-radius: var(--radius);
  color: var(--accent-blue);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--accent-blue);
  color: var(--white);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.6;
}


/* =================================================
   ABOUT SECTION
   ================================================= */
.about-section {
  background: var(--white);
}

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

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--accent-blue);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 30px rgba(30, 58, 138, 0.4);
}

.badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
}

.about-content .section-tag {
  display: inline-block;
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--muted-text);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
  padding: 28px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-blue);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--muted-text);
  font-weight: 500;
}

/* Shop Gallery */
.shop-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.shop-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.shop-gallery img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}


/* =================================================
   WHY CHOOSE US SECTION
   ================================================= */
.why-section {
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.3), transparent 70%);
  border-radius: 50%;
}

.why-section .section-tag {
  color: var(--accent-blue-light);
  background: rgba(37, 99, 235, 0.15);
}

.why-section .section-header h2 {
  color: var(--white);
}

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

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
}

.why-icon {
  color: var(--accent-blue-light);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.why-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.6;
}


/* =================================================
   REVIEWS SECTION
   ================================================= */
.reviews-section {
  background: var(--light-bg);
}

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

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(30, 58, 138, 0.07);
  font-family: Georgia, serif;
  font-weight: 700;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.review-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  color: var(--charcoal);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

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

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.review-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.review-author span {
  font-size: 0.82rem;
  color: var(--muted-text);
}


/* =================================================
   APPOINTMENT SECTION
   ================================================= */
.appointment-section {
  background: var(--white);
}

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

.appointment-info .section-tag {
  display: inline-block;
}

.appointment-info h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.appointment-info > p {
  color: var(--muted-text);
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.7;
}

.appointment-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.appt-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--primary-dark);
}

.appt-contact-item svg {
  flex-shrink: 0;
  color: var(--accent-blue);
  margin-top: 2px;
}

.appt-contact-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.appt-contact-item span,
.appt-contact-item a {
  display: block;
  font-size: 0.88rem;
  color: var(--muted-text);
}

.appt-contact-item a:hover {
  color: var(--accent-blue);
}

.appt-note {
  font-size: 0.9rem;
  color: var(--muted-text);
  padding: 16px 20px;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent-blue);
}

.appt-note a {
  color: var(--accent-blue);
  font-weight: 600;
}

/* Form */
.appointment-form {
  background: var(--light-bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

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

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

.form-group.full-width {
  margin-bottom: 24px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

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

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}


/* =================================================
   CONTACT SECTION
   ================================================= */
.contact-section {
  background: var(--light-bg);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border-color);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-item:last-child { margin-bottom: 0; }

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 58, 138, 0.06);
  border-radius: var(--radius-sm);
  color: var(--accent-blue);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.6;
}

.contact-item p a {
  color: var(--accent-blue);
  font-weight: 600;
}

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

.contact-buttons {
  display: flex;
  gap: 14px;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
}


/* =================================================
   FOOTER
   ================================================= */
.footer {
  background: var(--primary-dark);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent-blue);
  color: var(--white);
}

.footer-links-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}

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

.footer-links-col ul li a,
.footer-links-col ul li {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

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

.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}


/* =================================================
   MOBILE BOTTOM BAR
   ================================================= */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--primary-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 8px 0;
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
}

.mobile-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  padding: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  font-weight: 600;
  transition: var(--transition);
}

.mobile-bar-item:hover {
  color: var(--white);
}

.mobile-bar-primary {
  color: var(--accent-blue-light);
}


/* =================================================
   RESPONSIVE — TABLET
   ================================================= */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .shop-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-image img {
    height: 300px;
  }

  .appointment-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}


/* =================================================
   RESPONSIVE — MOBILE
   ================================================= */
@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  /* Nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 4px;
    transition: right 0.35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .nav-cta-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero-headline {
    font-size: 2.5rem;
  }

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

  .hero-buttons .btn {
    justify-content: center;
  }

  .hero-content {
    padding-bottom: 320px;
  }

  .hero-bg video {
    display: none;
  }

  .mobile-hero-bg {
    display: block;
  }

  /* Trust Strip */
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item {
    padding: 20px 16px;
  }

  .trust-item:nth-child(2) {
    border-right: none;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Form */
  .appointment-form {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* About */
  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .shop-gallery {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer {
    padding-bottom: 70px;
  }

  /* Mobile bottom bar */
  .mobile-bottom-bar {
    display: flex;
  }

  /* Contact buttons */
  .contact-buttons {
    flex-direction: column;
  }

  .contact-buttons .btn {
    justify-content: center;
  }
}


/* =================================================
   RESPONSIVE — SMALL MOBILE
   ================================================= */
@media (max-width: 480px) {
  .hero-headline {
    font-size: 2rem;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .shop-gallery {
    grid-template-columns: 1fr;
  }

  .appointment-info h2,
  .about-content h2 {
    font-size: 1.5rem;
  }
}


/* =================================================
   FORM SUCCESS STATE
   ================================================= */
.form-success {
  text-align: center;
  padding: 60px 32px;
}

.form-success svg {
  color: var(--success-green);
  margin-bottom: 20px;
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--muted-text);
  font-size: 1rem;
}


/* =================================================
   MOBILE NAV OVERLAY
   ================================================= */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

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