/* ============================================================
   Essential Autowerks - Main Stylesheet
   Fully custom CSS - No frameworks
   ============================================================ */

/* ============================================================
   1. FONTS & TYPOGRAPHY
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;600;700&family=Mulish:wght@400;500;600;700&family=Orbitron:wght@500;700;900&display=swap");

/* ============================================================
   2. ROOT VARIABLES & RESET
   ============================================================ */
:root {
  --color-black: #000000;
  --color-dark-bg: #111111;
  --color-white: #ffffff;
  --color-white-90: rgba(255, 255, 255, 0.9);
  --color-white-80: rgba(255, 255, 255, 0.8);
  --color-white-70: rgba(255, 255, 255, 0.7);
  --color-white-60: rgba(255, 255, 255, 0.6);
  --color-white-40: rgba(255, 255, 255, 0.4);
  --color-white-20: rgba(255, 255, 255, 0.2);
  --color-white-10: rgba(255, 255, 255, 0.1);
  --color-accent: #ff4d24;
  --color-accent-dark: #ff6347;
  --color-black-50: rgba(0, 0, 0, 0.5);
  --color-black-30: rgba(0, 0, 0, 0.3);
  --color-black-10: rgba(0, 0, 0, 0.1);

  --font-heading: "Chakra Petch", sans-serif;
  --font-body: "Mulish", sans-serif;

  --transition-fast: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;

  --shadow-accent: 0 8px 20px rgba(255, 77, 36, 0.4);
  --shadow-white: 0 8px 20px rgba(255, 255, 255, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: auto;
}

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

/* ============================================================
   3. BASE TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

h1 {
  font-size: 2.25rem;
}

@media (min-width: 640px) {
  h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.75rem;
  }
}

h2 {
  font-size: 1.875rem;
}

/* special heading for quality commitment section */
.quality-heading {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-white);
}

/* small wide image for quality section */
.quality-img {
  width: 100%;
  max-width: 600px; /* allow larger image */
  height: auto;
  /* taller image for more presence */
  max-height: 350px;
  object-fit: cover;
  display: block;
}

.quality-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  width: 530px; /* prevent wrapper from stretching too wide */
  object-fit: cover;
  margin: 0 auto;
}

/* dark gradient overlay on image */
.quality-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.quality-image-wrapper {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .quality-image-wrapper {
    justify-content: flex-start;
  }
}

@media (min-width: 640px) {
  h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  h2 {
    font-size: 3.75rem;
  }
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  font-family: var(--font-body);
  color: var(--color-white-90);
}

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

a:hover {
  color: var(--color-accent);
}

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Flexbox */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

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

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}

/* Grid */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}

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

/* Spacing */
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.py-40 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.pt-2 {
  padding-top: 0.5rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-5 {
  padding-bottom: 1.25rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mt-1 {
  margin-top: 0.25rem;
}

/* Size Utilities */
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.h-auto {
  height: auto;
}
.min-h-screen {
  min-height: 100vh;
}

/* Positioning */
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.inset-0 {
  inset: 0;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.z-50 {
  z-index: 50;
}
.z-10 {
  z-index: 10;
}

.top-0 {
  top: 0;
}
.right-4 {
  right: 1rem;
}
.left-0 {
  left: 0;
}

/* Display */
.hidden {
  display: none;
}
.block {
  display: block;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.inline-flex {
  display: inline-flex;
}

.overflow-hidden {
  overflow: hidden;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.overflow-y-auto {
  overflow-y: auto;
}

/* Responsive Display */
@media (max-width: 767px) {
  .hidden-mobile {
    display: none;
  }
}

@media (min-width: 768px) {
  .hidden-desktop {
    display: none;
  }
}

/* ============================================================
   5. BUTTONS & INTERACTIVE ELEMENTS
   ============================================================ */
button,
.button {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background-color: var(--color-accent-dark);
  box-shadow: var(--shadow-accent);
  transform: translateY(-4px);
}

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

.btn-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-black);
  box-shadow: var(--shadow-white);
  transform: translateY(-4px);
}

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

.btn-icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* ============================================================
   6. HEADER & NAVIGATION
   ============================================================ */
header {
  background-color: var(--color-black);
  border-bottom: 1px solid var(--color-white-10);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-container {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .header-container {
    padding: 1rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .header-container {
    padding: 1rem 2rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

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

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

.logo-text h1 {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

/* Desktop Navigation */
nav.desktop-nav {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  nav.desktop-nav {
    display: flex;
  }
}

nav.desktop-nav a {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.775rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

nav.desktop-nav a:hover,
nav.desktop-nav a.active {
  color: var(--color-accent);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  padding: 0;
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Navigation */
nav.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1rem;
  width: 100%;
}

nav.mobile-nav.active {
  display: flex;
}

nav.mobile-nav a {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
  display: block;
  text-align: left;
}

nav.mobile-nav a:hover,
nav.mobile-nav a.active {
  color: var(--color-accent);
}

/* ============================================================
   7. FOOTER
   ============================================================ */
footer {
  background-color: var(--color-dark-bg);
  color: var(--color-white);
  padding: 3rem 1rem;
  border-top: 1px solid var(--color-white-10);
}

@media (min-width: 640px) {
  footer {
    padding: 3rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  footer {
    padding: 3rem 2rem;
  }
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-section h4 {
  color: var(--color-white);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-section p {
  font-size: 0.875rem;
  color: var(--color-white-70);
  margin-bottom: 1rem;
}

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

.footer-section li {
  font-size: 0.875rem;
  color: var(--color-white-70);
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--color-white-70);
  transition: color var(--transition-fast);
}

.footer-section a:hover {
  color: var(--color-accent);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-white-60);
  transition: color var(--transition-fast);
}

.social-links a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid var(--color-white-10);
  padding-top: 2rem;
  text-align: center;
  color: var(--color-white-60);
  font-size: 0.875rem;
}

/* ============================================================
   8. SECTIONS & CONTENT
   ============================================================ */
section {
  width: 100%;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.section-title-accent {
  width: 0.125rem;
  height: 4rem;
  background-color: var(--color-accent);
  flex-shrink: 0;
}

.section-title h2 {
  color: var(--color-white);
  margin: 0;
}

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

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

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

/* ============================================================
   9. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  background-color: var(--color-black);
  color: var(--color-white);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: relative; /* or absolute/fixed depending on your layout */
}
/* Keyframe: scale up from nothing over 3s */
@keyframes gradGrow {
  from {
    transform-origin: center center;
    opacity: 0;
    width: 0;
  }
  to {
    opacity: 0.7;
  }
}

.hero-overlay .red-grad-1 {
  z-index: 25;
  background-color: #ff4d24;
  filter: blur(50px);
  border-radius: 50px;
  width: 50vw;
  height: 86px;
  position: absolute;
  left: -280px;
  transform: rotate(330deg);
  opacity: 0.7;
  animation: gradGrow 3s ease-out forwards;
}

.hero-overlay .red-grad-2 {
  z-index: 25;
  background-color: #ff4d24;
  filter: blur(50px);
  border-radius: 50px;
  width: 50vw;
  height: 86px;
  position: absolute;
  left: -280px;
  transform: rotate(22deg);
  opacity: 0.7;
  top: 49vh;
  animation: gradGrow 3s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0; /* start hidden until animation kicks in */
}

.hero-overlay .red-grad-3 {
  z-index: 25;
  background-color: #ff4d24;
  filter: blur(50px);
  border-radius: 50px;
  width: 50vw;
  height: 86px;
  position: absolute;
  right: -448px;
  transform: rotate(151deg);
  opacity: 0.7;
  top: 8vh;
  animation: gradGrow 3s ease-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

/* ── Tablet (max 1024px) ── */
@media (max-width: 1024px) {
  .hero-overlay .red-grad-1 {
    width: 70vw;
    height: 70px;
    left: -180px;
    filter: blur(40px);
  }

  .hero-overlay .red-grad-2 {
    width: 70vw;
    height: 70px;
    left: -180px;
    top: 45vh;
    filter: blur(40px);
  }

  .hero-overlay .red-grad-3 {
    width: 70vw;
    height: 70px;
    right: -300px;
    top: 10vh;
    filter: blur(40px);
  }
}

/* ── Mobile (max 768px) ── */
@media (max-width: 768px) {
  .hero-overlay .red-grad-1 {
    width: 85vw;
    height: 55px;
    left: -120px;
    filter: blur(30px);
  }

  .hero-overlay .red-grad-2 {
    width: 85vw;
    height: 55px;
    left: -120px;
    top: 40vh;
    filter: blur(30px);
  }

  .hero-overlay .red-grad-3 {
    width: 85vw;
    height: 55px;
    right: -200px;
    top: 12vh;
    filter: blur(30px);
  }
}

@media (min-width: 640px) {
  .hero {
    min-height: 700px;
  }
}



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

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    var(--color-black) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 75rem;
  text-align: center;
  margin: 0 auto;
  padding: 6rem 1rem;
}

@media (min-width: 640px) {
  .hero-content {
    padding: 6rem 1.5rem;
  }
}

.hero-badge {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-badge-line {
  width: 2px;
  height: 1.5rem;
  background-color: var(--color-accent);
}

.hero-badge-text {
  color: var(--color-white-90);
  font-size: 0.875rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-title {
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-description {
  font-size: 0.875rem;
  color: var(--color-white-90);
  margin-bottom: 2.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1rem;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}





@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

/* ============================================================
   10. CARDS & BOXES
   ============================================================ */
.card {
  background-color: var(--color-dark-bg);
  border: 1px solid var(--color-white-10);
  transition: all var(--transition-fast);
}

.card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 20px rgba(255, 77, 36, 0.2);
}

.card-body {
  padding: 2rem;
}

.card-title {
  color: var(--color-white);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.card-description {
  color: var(--color-white-80);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================
   11. PRICING CARDS
   ============================================================ */
.pricing-card {
  background-color: transparent;
  border: 1px solid var(--color-white-20);
  padding: 2rem;
  transition: all var(--transition-fast);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 20px rgba(255, 77, 36, 0.2);
  transform: scale(1.05);
}

.pricing-card.featured {
  transform: scale(1.1);
}

/* ensure featured card also gets hover animation like others */
.pricing-card.featured:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 20px rgba(255, 77, 36, 0.2);
  /* keep the slightly larger base scale when hovered */
  transform: scale(1.15);
}

@media (max-width: 767px) {
  .pricing-card.featured {
    transform: scale(1);
  }
}

.pricing-card-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 0.25rem 1.5rem;
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pricing-card-header-line {
  width: 3px;
  height: 1rem;
  background-color: var(--color-accent);
  flex-shrink: 0;
}

.pricing-card-title {
  font-size: 0.875rem;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-divider {
  border-top: 1px dotted var(--color-white-30);
  margin: 1.5rem 0;
}

.pricing-price {
  font-size: 1.875rem;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-white-90);
}

.pricing-features-check {
  width: 1rem;
  height: 1rem;
  color: var(--color-white);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ============================================================
   12. FORMS
   ============================================================ */
form {
  width: 100%;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  font-size: 0.875rem;
  color: var(--color-white-80);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-heading);
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  background-color: var(--color-black);
  border: 1px solid var(--color-white-20);
  color: var(--color-white);
  padding: 1rem 3rem 1rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-accent);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

select {
  appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-input-wrapper {
  position: relative;
}

.form-input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-white-40);
  pointer-events: none;
}

.form-input-wrapper input {
  padding-left: 3rem;
}

.form-input-wrapper select {
  padding-left: 3rem;
}

/* ============================================================
   13. MODAL / POPUP
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 50;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background-color: var(--color-dark-bg);
  border: 1px solid rgba(255, 77, 36, 0.3);
  max-width: 50rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--color-white-60);
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
  z-index: 10;
}

.modal-close:hover {
  color: var(--color-white);
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.modal-title-accent {
  width: 2px;
  height: 3rem;
  background-color: var(--color-accent);
}

.modal-title h2 {
  font-size: 1.5rem;
  color: var(--color-white);
  margin: 0;
}

@media (min-width: 640px) {
  .modal-title h2 {
    font-size: 2.25rem;
  }
}

.modal-description {
  color: var(--color-white-80);
  font-size: 1rem;
}

.modal-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.modal-divider-line {
  flex: 1;
  height: 1px;
  background-color: var(--color-white-20);
}

.modal-divider-text {
  color: var(--color-white-60);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-heading);
  font-weight: 600;
}

/* ============================================================
   14. GALLERY & LIGHTBOX
   ============================================================ */

/* image handling inside gallery items */
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.gallery-item.large img {
  height: 100%;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; /* consistent spacing per requirement */
}

/* ensure large item spans two rows regardless of viewport */
.gallery-item.large {
  grid-row: span 2;
}

.gallery-item {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  /* default size for standard items */
  height: 250px;
}

/* tall item should fill the two-row span automatically */
.gallery-item.large {
  height: 100%;
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  filter: contrast(1.1) saturate(1.15);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--color-black-10);
  z-index: 2;
}


.gallery-item-accent::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;

    background: linear-gradient(
        to bottom left,
        rgba(200, 40, 10, 0.8),
        transparent 40%
    );
}

.gallery-item-vignette {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background: radial-gradient(
    ellipse at 20% 80%,
    transparent 30%,
    rgba(0, 0, 0, 0.8) 70%
  );
  z-index: 2;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   15. ACCORDION
   ============================================================ */
.accordion {
  list-style: none;
}

.accordion-item {
  border: 1px solid var(--color-white-10);
  background-color: var(--color-dark-bg);
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  transition: background-color var(--transition-fast);
}

.accordion-button:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.accordion-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.accordion-icon.open {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height var(--transition-fast),
    opacity var(--transition-fast);
}

.accordion-content.open {
  max-height: 600px;
  opacity: 1;
}

.accordion-body {
  padding: 1rem 1.5rem 1.25rem 1.5rem;
  color: var(--color-white-80);
  font-size: 1rem;
  line-height: 1.6;
}

/* ============================================================
   16. HORIZONTAL SEPARATOR
   ============================================================ */
.separator {
  height: 1px;
  background-color: var(--color-white-10);
  margin: 2rem 0;
}

.separator-vertical {
  width: 2px;
  height: 4rem;
  background-color: var(--color-accent);
  display: inline-block;
}

/* ============================================================
   17. BADGES & LABELS
   ============================================================ */
.badge {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0;
}

/* ============================================================
   18. TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background-color: var(--color-dark-bg);
  border: 1px solid var(--color-white-10);
  padding: 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 200px;
}

.testimonial-text {
  color: var(--color-white-80);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
  flex: 1;
}

.testimonial-author {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.testimonial-rating {
  color: var(--color-accent);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: 0.2em;
}

/* ============================================================
   18a. CAROUSEL
   ============================================================ */
.carousel {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.carousel-container {
  flex: 1;
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.carousel-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 1rem;
  min-height: 160px;
}

.carousel-prev,
.carousel-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  flex-shrink: 0;
  border: 1px solid var(--color-white-20);
  background-color: transparent;
  color: var(--color-white);
  cursor: pointer;
  transition: all var(--transition-fast);
  border-radius: 4px;
}

.carousel-prev:hover,
.carousel-next:hover {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
  color: var(--color-black);
}

.carousel-prev svg,
.carousel-next svg {
  width: 20px;
  height: 20px;
}

.carousel-dots-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  width: 100%;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-white-20);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dot:hover {
  background-color: var(--color-white-40);
}

.carousel-dot.active {
  background-color: var(--color-accent);
}

/* Mobile: Show 1 slide */
@media (max-width: 767px) {
  .carousel-slide {
    flex: 0 0 100%;
    padding: 1rem;
    min-height: 200px;
  }

  .carousel {
    gap: 1rem;
  }
}

/* Tablet: Show 1-2 slides */
@media (min-width: 768px) and (max-width: 1023px) {
  .carousel-slide {
    flex: 0 0 100%;
    padding: 2rem;
    min-height: 180px;
  }
}

/* Desktop: Show 3 slides */
@media (min-width: 1024px) {
  .carousel-slide {
    flex: 0 0 33.333%;
    padding: 2rem;
    min-height: 160px;
  }
}

/* ============================================================
   19. TWO-COLUMN LAYOUTS
   ============================================================ */
.two-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .two-column {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   20. RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 639px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 640px) {
  .hidden-tablet-up {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .hidden-desktop-under {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .hidden-desktop {
    display: none !important;
  }
}

/* Visibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================================
   21. UTILITY CLASSES
   ============================================================ */
.text-white {
  color: var(--color-white);
}
.text-white-80 {
  color: var(--color-white-80);
}
.text-white-70 {
  color: var(--color-white-70);
}
.text-white-60 {
  color: var(--color-white-60);
}
.text-white-40 {
  color: var(--color-white-40);
}

.text-accent {
  color: var(--color-accent);
}

.bg-black {
  background-color: var(--color-black);
}
.bg-dark {
  background-color: var(--color-dark-bg);
}

.border-b {
  border-bottom: 1px solid var(--color-white-10);
}
.border-t {
  border-top: 1px solid var(--color-white-10);
}

.transition-all {
  transition: all var(--transition-fast);
}
.transition-colors {
  transition: color var(--transition-fast);
}
.transition-transform {
  transition: transform var(--transition-fast);
}

/* ============================================================
   22. IMAGE UTILITIES
   ============================================================ */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   23. MOBILE FIRST RESPONSIVENESS
   ============================================================ */
@media (max-width: 639px) {
  .sm\:hidden {
    display: none;
  }

  h1 {
    font-size: 1.875rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}

@media (min-width: 640px) {
  .sm\:block {
    display: block;
  }
  .sm\:hidden {
    display: none;
  }
}

@media (min-width: 768px) {
  .md\:block {
    display: block;
  }
  .md\:flex {
    display: flex;
  }
  .md\:hidden {
    display: none;
  }
  .md\:grid {
    display: grid;
  }

  .md\:flex-row {
    flex-direction: row;
  }
  .md\:gap-8 {
    gap: 2rem;
  }
  .md\:gap-12 {
    gap: 3rem;
  }

  .md\:col-span-2 {
    grid-column: span 2;
  }
  .md\:row-span-2 {
    grid-row: span 2;
  }
}

@media (min-width: 1024px) {
  .lg\:block {
    display: block;
  }
  .lg\:flex {
    display: flex;
  }
  .lg\:hidden {
    display: none;
  }
  .lg\:grid {
    display: grid;
  }
}

/* ============================================================
   24. ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

.slide-up {
  animation: slideUp 0.3s ease-in-out;
}

/* Custom CSS */

/* ===== About Section - Essential Autowerks ===== */

.ea-about {
  background: #000;
  color: #fff;
  padding: 80px 20px;
  font-family: "Inter", sans-serif;
}

.ea-about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* ===== Content Side ===== */

.ea-about-content {
  flex: 1.2;
}

.ea-about-heading {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  padding-left: 20px;
  border-left: 4px solid #ff5733;
}

.ea-about-content p {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ===== Feature Grid ===== */

.ea-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 30px 0;
}

.ea-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
}

.ea-check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 14px;
  color: #ff5733;
  border: 2px solid #ff5733;
}

/* ===== Button ===== */

.ea-quote-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 40px;
  background: #ff5733;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s ease;
}

.ea-quote-btn:hover {
  opacity: 0.85;
}

/* ===== Image Side ===== */

.ea-about-images {
  flex: 1;
  display: flex;
  gap: 20px;
  height: 450px;
}

.ea-image-box {
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
}

.ea-image-box img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Preserve original inline styling (moved to class) */
.ea-primary-img-style {
  height: 85%;
  border-radius: 6px;
}

.ea-secondary-img-style {
  height: 100%;
}

/* Staggered Layout */
.ea-img-primary {
  height: 100%;
}
.ea-img-secondary {
  height: 80%;
  margin-top: auto;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .ea-about-wrapper {
    flex-direction: column;
  }

  .ea-feature-grid {
    grid-template-columns: 1fr;
  }

  /* Stack images */
  .ea-about-images {
    flex-direction: column;
    height: auto;
    width: 100%;
    gap: 20px;
  }

  /* Remove stagger */
  .ea-img-primary,
  .ea-img-secondary {
    height: auto;
    margin-top: 0;
  }

  /* Make both image boxes identical */
  .ea-image-box {
    width: 100%;
    height: 250px; /* same fixed height */
  }

  /* Make images fill evenly */
  .ea-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block !important;
  }
}

/* Section Complete */

/* ============================================================
   OUR PROCESS SECTION
   ============================================================ */

.process-section {
  background-color: var(--color-black);
  padding: 80px 20px;
  font-family: var(--font-body);
}

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

/* Header */
.process-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
}

.accent-line {
  width: 4px;
  height: 35px;
  background-color: var(--color-accent);
}

.process-title {
  color: var(--color-white);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin: 0;
  font-family: var(--font-heading);
}

/* Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Cards */
.process-card {
  background-color: var(--color-dark-bg);
  border: 1px solid var(--color-white-10);
  padding: 40px 30px;
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast);
}

.process-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
}

/* Step Number */
.step-number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

/* Icon */
.step-icon {
  color: var(--color-accent);
  margin-bottom: 25px;
  opacity: 0.9;
}

/* Heading */
.step-heading {
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  line-height: 1.3;
  font-family: var(--font-heading);
}

/* Text */
.step-text {
  color: var(--color-white-70);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  font-family: var(--font-body);
}

/* Responsive */
@media (max-width: 768px) {
  .process-title {
    font-size: 1.8rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* WHY CHOOSE US  */
/* ================================
   WHY SECTION
================================ */

.why-section {
  background: #111111;
  padding: 100px 0;
  color: #fff;
}

.why-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Image */

.why-image-wrapper {
  width: 100%;
}

.why-image {
  width: 100%;
  height: 730px;
  object-fit: cover;
  display: block;
}

/* Content */

.why-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.why-accent-line {
  width: 4px;
  height: 40px;
  background: #ff4d24;
  display: inline-block;
}

.why-heading h2 {
  font-size: 2.5rem;
  letter-spacing: 2px;
}

.why-description {
  color: #bdbdbd;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}

/* Features Grid */

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px 40px;
  margin-bottom: 40px;
}

.why-feature-item h4 {
  margin: 15px 0 10px;
  font-size: 1rem;
  letter-spacing: 1px;
}

.why-feature-item p {
  font-size: 0.9rem;
  color: #bdbdbd;
  line-height: 1.6;
}

/* Icon Box */

.why-icon-box {
  width: 50px;
  height: 50px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4d24;
}

.why-icon-box svg {
  width: 22px;
  height: 22px;
}

/* Button */

.why-button-wrapper {
  margin-top: 10px;
}

.why-cta-button {
  background: #ff4d24;
  color: #fff;
  border: none;
  padding: 15px 35px;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s ease;
}

.why-cta-button:hover {
  background: #e63e16;
}

/* ================================
   Responsive
================================ */

@media (max-width: 992px) {
  .why-container {
    grid-template-columns: 1fr;
  }

  .why-image {
    height: 400px;
  }

  .why-features {
    grid-template-columns: 1fr;
  }
}

/* Contact Section */
/* ================================
   CONTACT SECTION CUSTOM
================================ */

.contact-section-custom {
  background: #000;
  padding: 100px 0;
  color: #fff;
}

.contact-container-custom {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

/* LEFT SIDE */

.contact-heading-custom {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-accent-line-custom {
  width: 4px;
  height: 40px;
  background: #ff4d24;
}

.contact-heading-custom h2 {
  font-size: 2.5rem;
  letter-spacing: 2px;
}

.contact-description-custom {
  color: #bdbdbd;
  line-height: 1.7;
  margin-bottom: 17px;
  max-width: 500px;
}

/* Contact Items */

.contact-info-list-custom {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.contact-item-custom {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon-box-custom {
  width: 55px;
  height: 55px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4d24;
  flex-shrink: 0;
}

.contact-icon-box-custom svg {
  width: 24px;
  height: 24px;
}

.contact-text-custom h4 {
  margin-bottom: 8px;
  font-size: 1rem;
  letter-spacing: 1px;
}

.contact-text-custom p {
  color: #bdbdbd;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* RIGHT SIDE MAP */

.contact-container-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.contact-left-custom,
.contact-map-wrapper-custom {
  flex: 1;
}
/* ================================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .contact-container-custom {
    grid-template-columns: 1fr;
  }

  .contact-map-wrapper-custom {
    height: 350px;
    margin-top: 40px;
  }
}

/* Areas We Serve */

/* ===== SECTION BASE ===== */
.ea-serve-section {
  position: relative;
  padding: 120px 0px;
  background: url("https://cdn.prod.website-files.com/68309d6175901757fa2c850b/68324264491ccbb7b898dacb_Image%20by%20Michael%20Jasmund.avif")
    center/cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.ea-serve-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.92)
  );
  z-index: 1;
}

.ea-serve-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

/* ===== HEADER ===== */
.ea-serve-header {
  text-align: center;
  margin-bottom: 60px;
}

.ea-serve-accent {
  width: 3px;
  height: 40px;
  background: #ff4d1c;
  margin: 0 auto 20px;
}

.ea-serve-title {
  font-size: 38px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.ea-serve-subtext {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.8;
  line-height: 1.6;
}

/* ===== GRID ===== */
.ea-serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 80px;
}

.ea-serve-card {
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s ease;
}

.ea-serve-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: 1px;
}

.ea-serve-card p {
  font-size: 14px;
  opacity: 0.75;
}

.ea-serve-card:hover {
  border-color: #ff4d1c;
  transform: translateY(-5px);
}

/* ===== CTA BOX ===== */
.ea-serve-cta {
  background: rgba(10, 10, 10, 0.95);
  padding: 50px 30px;
  text-align: center;
  border: 1px solid rgba(255, 77, 28, 0.3);
}

.ea-serve-cta h3 {
  margin-bottom: 20px;
  font-size: 22px;
  letter-spacing: 1px;
}

.ea-serve-cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.8;
  line-height: 1.6;
}

.ea-serve-btn {
  background: #ff4d1c;
  border: none;
  padding: 14px 40px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
}

.ea-serve-btn:hover {
  background: #ff693a;
}

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

@media (max-width: 600px) {
  .ea-serve-grid {
    grid-template-columns: 1fr;
  }

  .ea-serve-title {
    font-size: 28px;
  }
}

/* OverAll Responsiveness */

/* ============================================================
   Essential Autowerks - Responsive Enhancements
   This file is the original stylesheet with additional and revised
   responsive rules for mobile, tablet, and small-laptop breakpoints.
   Focus areas: hero, about section, serve grid, why/contact sections,
   typography scaling, and spacing reductions for smaller viewports.
   ============================================================ */

/* --------------------------
   NOTE: This file intentionally only modifies/adds responsive
   rules and conservative layout adjustments to preserve the
   original look on desktop while improving behavior on
   mobile, tablet, and small laptops.
   -------------------------- */

:root {
  /* scale-down helpers for smaller devices */
  --scale-mobile: 0.92;
  --scale-tablet: 0.97;
}

/* -----------------------------------------------------------------
   Small-Laptop / Large-Tablet adjustments (max-width: 1366px)
   Targets small laptops (1366px and below) to slightly reduce
   paddings, font sizes, and large hero heights so pages fit well.
   ----------------------------------------------------------------- */
@media (max-width: 1366px) {
  .container {
    max-width: 72rem;
  }

  /* make hero slightly shorter on small laptops */
  .hero {
    min-height: 520px;
  }
  .hero-content {
    padding: 4.5rem 1.5rem;
  }

  /* about section spacing */
  .ea-about {
    padding: 60px 18px;
  }
  .ea-about-wrapper {
    gap: 28px;
  }
  .ea-about-heading {
    font-size: 2.25rem;
  }

  /* serve grid: reduce card padding */
  .ea-serve-card {
    padding: 26px 18px;
  }

  /* global buttons slightly smaller */
  .btn,
  .ea-quote-btn,
  .why-cta-button,
  .ea-serve-btn {
    padding: 0.65rem 1.5rem;
  }
}

/* -----------------------------------------------------------------
   Large-Tablet / Tablet (max-width: 1024px)
   Stack two-column layouts, resize images and typography to fit
   tablet screens and touch interaction. Also reduce hero height.
   ----------------------------------------------------------------- */
@media (max-width: 1024px) {
  .container {
    max-width: 64rem;
    padding: 0 1rem;
  }

  /* HERO
     reduce hero min-height and scale content to avoid overflow */
  .hero {
    min-height: 420px;
  }
  .hero-content {
    padding: 3.5rem 1rem;
  }
  .hero-title {
    font-size: 2.25rem;
  }

  /* TWO-COLUMN / WHY / CONTACT / PROCESS
     collapse to single-column where appropriate */
  .two-column,
  .why-container,
  .contact-container-custom,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-image {
    height: 320px;
  }
  .contact-map-wrapper-custom {
    height: 280px;
  }

  /* ABOUT section stacks vertically and reduces image heights */
  .ea-about-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .ea-about-images {
    width: 100%;
    height: 320px;
  }
  .ea-image-box {
    height: auto;
  }
  .ea-primary-img-style {
    height: 60%;
  }
  .ea-secondary-img-style {
    height: 100%;
  }

  /* SERVE GRID: 2 columns */
  .ea-serve-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .ea-serve-title {
    font-size: 30px;
  }
  .ea-serve-subtext {
    max-width: 95%;
  }

  /* reduce card paddings and font sizes for readability */
  .card-body,
  .process-card {
    padding: 1.5rem;
  }
  .process-card {
    padding: 28px;
  }

  /* testimonial & carousel adjustments for touch */
  .carousel-prev,
  .carousel-next {
    width: 48px;
    height: 48px;
  }
  .carousel-slide {
    min-height: 220px;
  }
}

/* -----------------------------------------------------------------
   Small-Tablet / Large-Phone (max-width: 900px)
   Further scaling for narrow tablets and large phones; more
   aggressive stacking and reduced paddings.
   ----------------------------------------------------------------- */
@media (max-width: 900px) {
  :root {
    --transition-fast: 220ms ease-in-out;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 1.875rem;
  }
  h2 {
    font-size: 1.5rem;
  }

  .container {
    max-width: 46rem;
    padding: 0 0.75rem;
  }

  /* Hero */
  .hero {
    min-height: 360px;
  }
  .hero-title {
    font-size: 1.9rem;
  }
  .hero-description {
    max-width: 100%;
    padding: 0 0.5rem;
  }
  .hero-actions {
    gap: 0.75rem;
  }

  /* About */
  .ea-about {
    padding: 40px 16px;
  }
  .ea-about-heading {
    padding-left: 12px;
    border-left-width: 3px;
  }
  .ea-feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ea-about-images {
    height: 260px;
    gap: 12px;
  }
  .ea-image-box img {
    object-position: center top;
  }

  /* Why / Contact / Process */
  .why-image {
    height: 260px;
  }
  .contact-map-wrapper-custom {
    height: 220px;
  }

  /* Serve grid -> 2 columns already handled, but add spacing */
  .ea-serve-grid {
    gap: 14px;
  }

  /* Forms: reduce large paddings to avoid long scrolling */
  input,
  textarea,
  select {
    padding: 0.85rem 2.5rem 0.85rem 0.85rem;
  }

  /* modal content max-width */
  .modal-content {
    max-width: 38rem;
  }
}

/* -----------------------------------------------------------------
   Mobile Phones (max-width: 600px)
   Default mobile breakpoint — stack everything vertically and make
   tap targets larger, condense card content, hide decorative art if
   necessary to improve performance.
   ----------------------------------------------------------------- */
@media (max-width: 600px) {
  :root {
    --scale-mobile: 0.9;
  }

  body {
    font-size: 14px;
  }

  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  h3 {
    font-size: 1rem;
  }

  .container {
    max-width: 100%;
    padding: 0 0.75rem;
  }

  /* Hero */
  .hero {
    min-height: 300px;
  }
  .hero-content {
    padding: 2rem 2rem;
    padding-top: 100px;
  }
  .hero-title {
    font-size: 1.4rem;
  }
  .hero-badge-text {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }

  /* About */
  .ea-about {
    padding: 28px 14px;
  }
  .ea-about-wrapper {
    gap: 16px;
  }
  .ea-about-heading {
    font-size: 1.6rem;
    padding-left: 10px;
  }
  .ea-about-images {
    height: 220px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .ea-image-box {
    height: auto;
  }

  /* Serve grid: single column */
  .ea-serve-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ea-serve-card {
    padding: 20px;
  }

  /* CTA box */
  .ea-serve-cta {
    padding: 30px 16px;
  }

  /* Footer spacing */
  footer {
    padding: 2rem 1rem;
  }

  /* Navigation: ensure mobile menu visible */
  nav.desktop-nav {
    display: none !important;
  }
  .mobile-menu-btn {
    display: flex !important;
  }

  /* Touch targets: enlarge interactive elements */
  .carousel-prev,
  .carousel-next,
  .ea-quote-btn,
  .why-cta-button,
  .ea-serve-btn {
    min-height: 48px;
    padding: 0.85rem 1rem;
  }

  /* Forms: make full width and comfortable */
  input,
  textarea,
  select {
    font-size: 1rem;
    padding: 0.85rem;
  }

  /* reduce heavy shadows and transforms for performance */
  .card:hover,
  .pricing-card:hover,
  .pricing-card.featured:hover {
    transform: none;
    box-shadow: none;
  }
}

/* -----------------------------------------------------------------
   Very small phones (max-width: 420px)
   Make fine-grained adjustments for small handsets.
   ----------------------------------------------------------------- */
@media (max-width: 420px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-description {
    font-size: 0.9rem;
  }
  .ea-about-heading {
    font-size: 2.2rem;
  }
  .why-heading h2 {
    font-size: 1.6rem;
  }
  .ea-serve-title {
    font-size: 22px;
  }
  .section-title-accent {
    height: 3rem;
  }
  .section-title {
    gap: 0.5rem;
  }
}

/* -----------------------------------------------------------------
   Specific component fixes (no large rework)
   - Ensure serve grid adapts at intermediate widths (1280/1024/600)
   - Tweak pricing cards and gallery items to avoid overflow
   ----------------------------------------------------------------- */
@media (max-width: 1280px) {
  .ea-serve-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .ea-serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item.large {
    grid-row: span 1;
    height: auto;
  }
}

/* Accessibility: prefer-reduced-motion
   Remove non-essential animations when user requests reduced motion
*/
@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .slide-up,
  .carousel-track {
    animation: none !important;
    transition: none !important;
  }
}

/* End of responsive enhancements */
/* ===== Responsive Fixes Only ===== */

/* Large tablets */
@media (max-width: 1024px) {
  .py-24 {
    padding: 4rem 2rem;
  }

  .quality-heading {
    font-size: 2rem;
  }

  .grid {
    gap: 2rem;
  }
}

/* Tablets */
@media (max-width: 900px) {
  .grid.grid-cols-2 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .quality-image-wrapper {
    order: 1;
  }

  .grid.grid-cols-2 > div:last-child {
    order: 2;
  }

  .quality-img {
    max-height: 400px;
    object-fit: cover;
  }

  .btn {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .py-24 {
    padding: 3rem 1.25rem;
  }

  .quality-heading {
    font-size: 1.6rem;
  }

  .grid {
    gap: 1.5rem;
  }

  .quality-img {
    max-height: 320px;
  }

  .btn {
    font-size: 0.95rem;
    padding: 0.9rem;
  }
}

/* Very small phones */
@media (max-width: 420px) {
  .quality-heading {
    font-size: 1.4rem;
  }

  .py-24 {
    padding: 2.5rem 1rem;
  }
}
/* ===== Fix Mobile Width Overflow ===== */

@media (max-width: 768px) {
  /* Force single column */
  .grid.grid-cols-2 {
    grid-template-columns: 1fr !important;
  }

  /* Prevent container overflow */
  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Prevent image from stretching wider */
  .quality-image-wrapper {
    width: 100%;
    overflow: hidden;
  }

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

  /* Prevent button overflow */
  .btn {
    width: 100%;
    max-width: 100%;
  }

  /* Safety net: kill horizontal scroll */
  body {
    overflow-x: hidden;
  }
}

/* CSS of Service Page */

.eaSrvx9_section {
  background: #000;
  padding: 110px 20px;
}

.eaSrvx9_container {
  max-width: 1240px;
  margin: auto;
}

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

/* CARD */
.eaSrvx9_card {
  background: #0f0f0f;
  border: 1px solid #1c1c1c;
  transition: all 0.35s ease;
  overflow: hidden;
  position: relative;
}

.eaSrvx9_card:hover {
  transform: translateY(-12px);
  border-color: #ff4d1c;
  box-shadow: 0 25px 50px rgba(255, 77, 28, 0.25);
}

/* IMAGE */
.eaSrvx9_imageWrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.eaSrvx9_imageWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.eaSrvx9_card:hover .eaSrvx9_imageWrap img {
  transform: scale(1.1);
}

/* PRICE BADGE */
.eaSrvx9_priceTag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #ff4d1c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  letter-spacing: 0.5px;
}

/* CONTENT */
.eaSrvx9_content {
  padding: 32px;
  color: #fff;
}

.eaSrvx9_title {
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.eaSrvx9_desc {
  color: #b5b5b5;
  font-size: 14px;
  margin-bottom: 22px;
  line-height: 1.6;
}

/* LIST */
.eaSrvx9_list {
  list-style: none;
  padding: 0;
  margin-bottom: 26px;
}

.eaSrvx9_list li {
  font-size: 14px;
  margin-bottom: 9px;
  color: #ddd;
  padding-left: 22px;
  position: relative;
}

.eaSrvx9_list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff4d1c;
  font-weight: bold;
}

/* BUTTONS */
.eaSrvx9_btnOutline {
  display: block;
  text-align: center;
  padding: 13px;
  border: 1px solid #333;
  color: #fff;
  text-decoration: none;
  margin-bottom: 14px;
  transition: all 0.3s ease;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.eaSrvx9_btnOutline:hover {
  border-color: #ff4d1c;
  color: #ff4d1c;
}

.eaSrvx9_btnPrimary {
  display: block;
  text-align: center;
  padding: 15px;
  background: #ff4d1c;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.eaSrvx9_btnPrimary:hover {
  background: #ff2f00;
  box-shadow: 0 10px 25px rgba(255, 77, 28, 0.35);
  color: #ffffff;
}

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

@media (max-width: 640px) {
  .eaSrvx9_grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION */
.xdiffSec_wrap {
  background: #0a0a0a;
  padding: 120px 20px;
  color: #fff;
}

.xdiffSec_container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADING */
.xdiffSec_headingWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 70px;
}

.xdiffSec_headingAccent {
  width: 3px;
  height: 42px;
  background: #ff4d24;
}

.xdiffSec_heading {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* GRID */
.xdiffSec_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.xdiffSec_card {
  background: #050505;
  padding: 55px 35px;
  text-align: center;
  border: 1px solid transparent;
  transition: border 0.3s ease; /* ONLY border transition */
}

/* HOVER → BORDER ONLY */
.xdiffSec_card:hover {
  border: 1px solid #ff4d24;
}

/* ICON CIRCLE */
.xdiffSec_iconCircle {
  width: 72px;
  height: 72px;
  background: rgba(255, 77, 36, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
}

/* SVG ICON */
.xdiffSec_iconSvg {
  width: 30px;
  height: 30px;
  color: #ff4d24;
}

/* TITLE */
.xdiffSec_title {
  font-size: 18px;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

/* TEXT */
.xdiffSec_text {
  font-size: 14px;
  color: #b5b5b5;
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

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

@media (max-width: 640px) {
  .xdiffSec_grid {
    grid-template-columns: 1fr;
  }

  .xdiffSec_heading {
    font-size: 26px;
    text-align: center;
  }
}

/* Our Values */

.our-values-flex {
  display: flex;
}

/* Team */

/* CSS */
.team-section-unique {
  background-color: #0a0a0a;
  color: #fff;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
  text-align: center;
}

.team-section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  border-left: 3px solid #ff4d29;
  display: inline-block;
  padding-left: 10px;
}

.team-section-header p {
  color: #ccc;
  margin-bottom: 50px;
}

.team-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.team-card-unique {
  background-color: #111;
  width: 400px;
  text-align: left;
  border: 2px solid transparent;
  transition: border 0.3s ease;
}

.team-card-unique img,
.team-card-placeholder img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.team-card-info {
  padding: 20px;
}

.team-card-info h3 {
  margin: 0;
  font-size: 1.2rem;
}

.team-card-info .role {
  color: #ff4d29;
  font-weight: bold;
  margin: 5px 0;
}

.team-card-info p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.4;
}

.team-card-unique:hover {
  border: 2px solid #ff4d29;
}

/* New */
/* ===== Essential Autowerks Stats Section ===== */

.eaStats_section {
  background-color: #000;
  padding: 80px 20px;
}

.eaStats_container {
  max-width: 1280px;
  margin: 0 auto;
}

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

.eaStats_item {
  text-align: center;
}

.eaStats_number {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  color: #ff4d24;
  margin-bottom: 16px;
  line-height: 1;
}

.eaStats_label {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Responsive ===== */

@media (min-width: 1024px) {
  .eaStats_grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .eaStats_number {
    font-size: 4rem;
  }
}

@media (max-width: 480px) {
  .eaStats_section {
    padding: 60px 16px;
  }

  .eaStats_number {
    font-size: 2.8rem;
  }

  .eaStats_label {
    font-size: 1rem;
  }
}

/*  */
/* Contact Section CSS */
.contact-section-unique {
  background-color: #0a0a0a;
  color: #fff;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
  text-align: center;
}

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

.contact-card-unique {
  background-color: #111;
  width: 280px;
  padding: 30px 20px;
  border: 2px solid transparent;
  transition:
    border 0.3s ease,
    transform 0.3s ease;
  cursor: pointer;
}

.contact-card-unique:hover {
  border: 2px solid #ff4d29;
  transform: translateY(-5px);
}

.contact-icon {
  margin-bottom: 15px;
}

.contact-icon svg {
  width: 36px;
  height: 36px;
  color: #ff4d29;
}

.contact-card-unique h3 {
  margin: 10px 0 5px;
  font-size: 1.2rem;
}

.contact-card-unique p {
  color: #ccc;
  font-size: 0.95rem;
}



  #services ol, ul {
    margin: 0;
}


.contact-map-wrapper-custom iframe {
    width: 600px;
    height: 500px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-map-wrapper-custom iframe {
        width: 100%;
        height: 300px; /* smaller height for mobile */
    }
}


/* Default (Desktop) */
h1 {
  font-size: 4.5rem;
}

h2 {
  font-size: 2.5rem;
}

/* Mobile */
@media (max-width: 768px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 35px;
  }
}

.contact-section-wrapper-custom {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.contact-info-list-custom {
  flex: 1;
}

.contact-map-wrapper-custom {
  flex: 1;
}

.contact-map-wrapper-custom iframe {
  width: 100%;
  height: 500px;
  border: 0;
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-section-wrapper-custom {
    flex-direction: column;
  }

  .contact-map-wrapper-custom iframe {
    height: 350px;
  }
}


/* ===============================
   HERO SECTION FIX
=================================*/
.hero {
  position: relative;
  overflow: hidden;
}

/* ===============================
   ROTATING SVG SHAPE (RIGHT SIDE)
=================================*/
.hero-rotating-shape {
    color: white;
  position: absolute;
  top: 25%;
  right: -100px; /* push slightly outside for premium look */
  width: 300px; /* smaller size */
  opacity: 0.3; /* very soft */
  
  transform: translateY(-50%);
  transform-origin: center;

  animation: heroRotateInfinite 50s linear infinite;

  pointer-events: none;
  z-index: 2;

  
}

/* Keep content above */
.hero-content {
  position: relative;
  z-index: 5;
}

/* ===============================
   ROTATION
=================================*/
@keyframes heroRotateInfinite {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* ===============================
   MOBILE
=================================*/
@media (max-width: 768px) {
  .hero-rotating-shape {
    width: 260px;
    right: -80px;
    opacity: 0.06;
  }
}