/* ===================================
   YATES AUTO REPAIR & TOWING
   Vibrant Modern Design System
   =================================== */

/* --- CSS Custom Properties --- */
:root {
  /* Color Palette */
  --plum-50: #fdf4ff;
  --plum-100: #fae8ff;
  --plum-200: #f5d0fe;
  --plum-300: #f0abfc;
  --plum-400: #e879f9;
  --plum-500: #d946ef;
  --plum-600: #c026d3;
  --plum-700: #a21caf;
  --plum-800: #86198f;
  --plum-900: #701a75;
  
  --amber-50: #fffbeb;
  --amber-100: #fff3cd;
  --amber-200: #ffe69c;
  --amber-300: #ffdb6a;
  --amber-400: #ffd039;
  --amber-500: #ffc507;
  --amber-600: #eca700;
  --amber-700: #c27d00;
  --amber-800: #9c5900;
  --amber-900: #804200;
  
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  --neutral-950: #0a0a0a;
  
  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Borders & Shadows */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

ul {
  list-style: none;
}

/* --- Custom Cursor --- */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
  display: none;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--plum-600);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid var(--plum-600);
  transition: width var(--transition-base), height var(--transition-base), background-color var(--transition-base);
}

@media (hover: hover) and (pointer: fine) {
  .cursor-dot,
  .cursor-outline {
    display: block;
  }
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  color: var(--neutral-950);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

.text-gradient {
  background: linear-gradient(135deg, var(--plum-600), var(--plum-400), var(--amber-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--plum-600), var(--plum-700));
  color: white;
  box-shadow: 0 4px 15px rgba(162, 28, 175, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(162, 28, 175, 0.4);
}

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

.btn-secondary:hover {
  border-color: var(--plum-600);
  color: var(--plum-600);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* --- Section Tags --- */
.section-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: linear-gradient(135deg, var(--plum-100), var(--amber-100));
  color: var(--plum-700);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.section-title {
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--neutral-600);
  max-width: 600px;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 250, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--neutral-200);
  transition: all var(--transition-base);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--neutral-900);
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--plum-600), var(--plum-800));
  color: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.logo-text {
  letter-spacing: -0.02em;
}

.logo .highlight {
  color: var(--plum-600);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav-links a {
  font-weight: 500;
  color: var(--neutral-700);
  transition: color var(--transition-fast);
  font-size: 0.9375rem;
}

.nav-links a:hover {
  color: var(--plum-600);
}

.nav-links .btn {
  padding: 0.625rem 1.5rem;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--neutral-800);
  border-radius: 2px;
  transition: all var(--transition-base);
}

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

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

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

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--neutral-50);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--neutral-900);
  transition: color var(--transition-fast);
}

.mobile-link:hover {
  color: var(--plum-600);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: var(--space-4xl);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--neutral-50) 0%, var(--plum-50) 50%, var(--amber-50) 100%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.5rem 1rem;
  background: white;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--plum-700);
  margin-bottom: var(--space-xl);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--amber-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-title {
  margin-bottom: var(--space-lg);
  line-height: 1.05;
}

.hero-subtitle {
  font-size: 1.1875rem;
  color: var(--neutral-600);
  margin-bottom: var(--space-2xl);
  max-width: 500px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.hero-trust {
  display: flex;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neutral-700);
}

.trust-item svg {
  color: var(--amber-500);
}

/* Hero Right - Asymmetric Layout */
.hero-right {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  height: 600px;
}

.hero-image-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 80%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}

.hero-image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  top: 10%;
  left: 10%;
  opacity: 0.8;
}

.shape-2 {
  width: 80px;
  height: 80px;
  background: var(--plum-400);
  bottom: 20%;
  right: 5%;
  opacity: 0.6;
}

.shape-3 {
  width: 40px;
  height: 40px;
  background: var(--plum-600);
  top: 50%;
  left: 5%;
  opacity: 0.4;
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.decor-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--plum-200) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  opacity: 0.5;
}

.decor-line {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber-400), transparent);
  bottom: 30%;
  left: -50px;
  transform: rotate(-15deg);
}

/* --- Services Section --- */
.services {
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
  background: white;
}

.service-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.decor-shape {
  position: absolute;
  border-radius: 50%;
}

.shape-amber {
  width: 300px;
  height: 300px;
  background: var(--amber-100);
  bottom: -100px;
  right: -50px;
  opacity: 0.5;
}

.shape-plum {
  width: 200px;
  height: 200px;
  background: var(--plum-100);
  top: -50px;
  left: -50px;
  opacity: 0.5;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--neutral-50);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  border: 1px solid var(--neutral-100);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--plum-500), var(--amber-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--plum-100), var(--amber-100));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum-700);
  margin-bottom: var(--space-lg);
  transition: all var(--transition-base);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--plum-600), var(--plum-700));
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  margin-bottom: var(--space-sm);
}

.service-card p {
  color: var(--neutral-600);
  font-size: 0.9375rem;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.service-link {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--plum-600);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  transition: gap var(--transition-fast);
}

.service-card:hover .service-link {
  gap: var(--space-sm);
}

/* --- About Section --- */
.about {
  padding: var(--space-4xl) 0;
  background: linear-gradient(180deg, var(--neutral-50) 0%, var(--plum-50) 100%);
  position: relative;
  overflow: hidden;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-content {
  max-width: 540px;
}

.about-text {
  color: var(--neutral-600);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
  font-size: 1.0625rem;
}

.about-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

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

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--plum-600);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--neutral-600);
  font-weight: 500;
}

.about-visual {
  position: relative;
}

.about-image-stack {
  position: relative;
  height: 550px;
}

.about-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 85%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-float {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 60%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}

.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-shape {
  position: absolute;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  border-radius: var(--radius-lg);
  top: 15%;
  left: 10%;
  z-index: -1;
  transform: rotate(15deg);
}

/* --- Testimonials Section --- */
.testimonials {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--plum-900), var(--plum-800));
  position: relative;
  overflow: hidden;
}

.testimonials .section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--amber-400);
}

.testimonials .section-title {
  color: white;
}

.testimonials .section-subtitle {
  color: var(--plum-200);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--amber-500);
  margin-bottom: var(--space-sm);
}

.testimonial-text {
  color: var(--plum-100);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1.125rem;
}

.author-name {
  display: block;
  font-weight: 600;
  color: white;
}

.author-location {
  font-size: 0.875rem;
  color: var(--plum-300);
}

.testimonials-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.decor-circle-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--plum-700) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  opacity: 0.5;
}

.decor-circle-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--amber-500) 0%, transparent 70%);
  bottom: -100px;
  right: -50px;
  opacity: 0.2;
}

/* --- CTA Section --- */
.cta {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  color: white;
  margin-bottom: var(--space-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1875rem;
  margin-bottom: var(--space-2xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.cta .btn-primary {
  background: white;
  color: var(--amber-700);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta .btn-primary:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta .btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.cta .btn-secondary:hover {
  background: white;
  border-color: white;
  color: var(--amber-700);
}

/* --- Contact Section --- */
.contact {
  padding: var(--space-4xl) 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-text {
  color: var(--neutral-600);
  margin-bottom: var(--space-2xl);
  font-size: 1.0625rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--plum-100), var(--amber-100));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum-700);
  flex-shrink: 0;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--neutral-500);
}

.contact-value {
  font-weight: 600;
  color: var(--neutral-800);
}

.contact-link {
  color: var(--plum-600);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-link:hover {
  color: var(--plum-800);
  text-decoration: underline;
}

.contact-form-wrapper {
  background: var(--neutral-50);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 1px solid var(--neutral-100);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--neutral-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--neutral-800);
  background: white;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum-500);
  box-shadow: 0 0 0 3px rgba(217, 70, 239, 0.1);
}

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

.form-success {
  display: none;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--plum-100), var(--amber-100));
  border-radius: var(--radius-md);
  color: var(--plum-800);
  font-weight: 600;
}

.form-success.active {
  display: flex;
}

.form-success svg {
  color: var(--plum-600);
  flex-shrink: 0;
}

/* --- Footer --- */
.footer {
  background: var(--neutral-950);
  color: var(--neutral-400);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand .logo {
  color: white;
  margin-bottom: var(--space-lg);
}

.footer-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4 {
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  font-size: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-links a {
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--amber-400);
}

.footer-bottom {
  border-top: 1px solid var(--neutral-800);
  padding-top: var(--space-xl);
  text-align: center;
  font-size: 0.875rem;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-left {
    order: 1;
  }
  
  .hero-right {
    order: 0;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-container {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    max-width: 100%;
    text-align: center;
  }
  
  .about-stats {
    justify-content: center;
  }
  
  .about-visual {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero {
    padding-top: 100px;
  }
  
  .hero-image-wrapper {
    height: 400px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image-stack {
    height: 400px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand .logo {
    justify-content: center;
  }
  
  .footer-desc {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .footer-links ul {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}
