/* ===========================================
   DA AUTO REPAIR - INDUSTRIAL BRUTALIST DESIGN
   =========================================== */

/* CSS Custom Properties */
:root {
  /* Core Colors - Gunmetal / Badge Palette */
  --coal: #0a0a0b;
  --asphalt: #17171a;
  --steel: #2e3136;
  --concrete: #45484e;
  --smoke: #74777e;
  --ash: #a3a6ac;
  --fog: #d6d8db;
  --white: #f5f3ee;
  --chrome: #c9ccd1;

  /* Accent Colors - Oxblood Badge Theme */
  --amber: #b3283a;
  --amber-bright: #d94a55;
  --amber-dark: #4a0f18;
  --danger: #b3283a;
  --danger-dark: #4a0f18;

  /* Legacy aliases used by page-level inline styles */
  --trust-blue: var(--amber);
  --deep-navy: var(--coal);
  --warmth-amber: var(--amber-bright);
  --neutral-100: var(--asphalt);
  --neutral-200: var(--steel);
  --neutral-600: var(--smoke);
  --neutral-700: var(--ash);
  --neutral-800: var(--fog);
  --border-radius: 2px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.5);

  /* Typography */
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  /* off-canvas nav sits at right:-100%; keep it from creating a horizontal scrollbar */
  overflow-x: hidden;
  overflow-wrap: break-word;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--fog);
  background-color: var(--coal);
  overflow-x: hidden;
}

/* Noise Texture Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

/* Links */
a {
  color: var(--amber);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--amber-bright);
}

/* ===========================================
   HEADER
   =========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, var(--coal) 0%, transparent 100%);
  padding: var(--space-md) 0;
  transition: background var(--transition-base);
}

.header.scrolled {
  background: var(--coal);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* The header packs more items (logo + nav + CTA + rating + social) than the
   site's 1400px content column has room for, so it gets its own wider cap. */
.header .container {
  max-width: 1800px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

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

.logo {
  width: 56px;
  height: 56px;
  display: block;
  transition: transform var(--transition-base);
}

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

.business-name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--white);
  letter-spacing: 0.05em;
  position: relative;
}

.business-name::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.logo-container:hover .business-name::after {
  transform: scaleX(1);
}

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

.rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 500;
}

.stars {
  color: var(--amber);
  font-size: 1rem;
  filter: drop-shadow(0 0 4px rgba(198, 156, 92, 0.55));
}

.rating-text {
  color: var(--ash);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: var(--space-sm);
}

.social-links a {
  color: var(--fog);
  padding: var(--space-sm);
  border-radius: 4px;
  background: var(--steel);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  background: var(--amber);
  color: var(--coal);
  transform: translateY(-2px);
}

/* ===========================================
   NAVIGATION
   =========================================== */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--fog);
  text-decoration: none;
  padding: var(--space-sm) 0.65rem;
  white-space: nowrap;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--space-md);
  right: var(--space-md);
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a.active,
.mobile-nav-links a.active {
  color: var(--amber);
}

.nav-links .nav-cta {
  background: var(--danger);
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  margin-left: var(--space-xs);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.nav-links .nav-cta:hover {
  background: var(--danger-dark);
}

.nav-links .nav-cta::after {
  display: none;
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: var(--steel);
  border: 2px solid var(--amber);
  cursor: pointer;
  padding: var(--space-sm);
  gap: 5px;
  transition: all var(--transition-fast);
}

.mobile-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--amber);
  transition: all var(--transition-fast);
}

.mobile-nav-toggle:hover {
  background: var(--amber);
}

.mobile-nav-toggle:hover span {
  background: var(--coal);
}

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

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

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

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

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

/* Mobile Navigation Menu */
.mobile-nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 350px;
  height: 100%;
  background: var(--asphalt);
  z-index: 1001;
  transition: right var(--transition-slow);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav-menu.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  border-bottom: 1px solid var(--steel);
}

.mobile-nav-header .mobile-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.mobile-nav-header .mobile-logo img {
  width: 42px;
  height: 42px;
  display: block;
}

.mobile-nav-header .mobile-logo span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
}

.mobile-nav-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid var(--amber);
  color: var(--amber);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-nav-close:hover {
  background: var(--amber);
  color: var(--coal);
}

.mobile-nav-links {
  list-style: none;
  padding: var(--space-lg);
  flex: 1;
}

.mobile-nav-links li {
  border-bottom: 1px solid var(--steel);
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-md);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--fog);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.mobile-nav-links a:hover {
  color: var(--amber);
  padding-left: var(--space-lg);
  background: var(--steel);
}

.mobile-nav-links a svg {
  width: 24px;
  height: 24px;
  opacity: 0.5;
}

.mobile-nav-cta {
  padding: var(--space-lg);
  border-top: 1px solid var(--steel);
}

.mobile-nav-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
  padding: var(--space-lg);
  background: var(--danger);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: all var(--transition-fast);
}

.mobile-nav-cta a:hover {
  background: var(--danger-dark);
}

.mobile-nav-contact {
  padding: var(--space-lg);
  background: var(--coal);
}

.mobile-nav-contact p {
  color: var(--ash);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

.mobile-nav-contact .contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--fog);
  margin-bottom: var(--space-sm);
}

.mobile-nav-contact .contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--amber);
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--coal);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(135deg, var(--coal) 0%, transparent 50%),
    linear-gradient(225deg, var(--amber-dark) 0%, transparent 40%);
  background-size: cover, cover;
  background-position: center;
  opacity: 0.6;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  right: -12%;
  width: min(70vw, 900px);
  height: auto;
  transform: translateY(-50%) rotate(-8deg);
  opacity: 0.08;
  filter: grayscale(1) contrast(1.1);
  pointer-events: none;
}

/* Diagonal stripe accent */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(179, 40, 58, 0.04) 10px,
    rgba(179, 40, 58, 0.04) 20px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  max-width: 1000px;
}

.hero-badge {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: linear-gradient(135deg, var(--chrome) 0%, var(--concrete) 55%, var(--chrome) 100%);
  color: var(--coal);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-lg);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  animation: slideInDown 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero-title {
  font-size: clamp(3rem, 10vw, 8rem);
  color: var(--white);
  line-height: 0.9;
  margin-bottom: var(--space-lg);
  text-shadow: 4px 4px 0 var(--amber-dark);
  animation: slideInUp 0.8s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-title span {
  display: block;
  color: var(--amber-bright);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--ash);
  margin-bottom: var(--space-xl);
  font-weight: 300;
  letter-spacing: 0.05em;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: slideInUp 0.8s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--danger);
  color: var(--white);
  clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
}

.btn-primary:hover {
  background: var(--danger-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(179, 40, 58, 0.45);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--amber);
  clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
}

.btn-secondary:hover {
  background: var(--amber);
  color: var(--coal);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(217, 74, 85, 0.35);
}

.btn-large {
  font-size: 1.4rem;
  padding: var(--space-lg) var(--space-2xl);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 30px;
  height: 50px;
  border: 2px solid var(--amber);
  border-radius: 25px;
  position: relative;
}

.scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 10px;
  background: var(--amber);
  border-radius: 3px;
  animation: scrollDown 2s infinite;
}

/* ===========================================
   INFO SECTION
   =========================================== */
.info-section {
  padding: var(--space-2xl) 0;
  background: var(--asphalt);
  position: relative;
}

.info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--danger), var(--amber));
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.info-card {
  background: var(--steel);
  padding: var(--space-xl);
  position: relative;
  border-left: 4px solid var(--amber);
  transition: all var(--transition-base);
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, var(--amber) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.info-card:hover {
  transform: translateY(-5px);
  border-left-color: var(--amber-bright);
}

.info-card:hover::before {
  opacity: 0.05;
}

.info-card h3 {
  font-size: 1.3rem;
  color: var(--amber);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.info-card p {
  color: var(--ash);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.info-card a {
  color: var(--amber);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
  font-weight: 600;
  transition: gap var(--transition-fast);
}

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

.link::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.link:hover::after {
  transform: translateX(4px);
}

/* ===========================================
   SECTION HEADERS
   =========================================== */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--amber);
  letter-spacing: 0.3em;
  margin-bottom: var(--space-md);
  position: relative;
}

.section-label::before,
.section-label::after {
  content: '//';
  margin: 0 var(--space-md);
  opacity: 0.5;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: var(--space-md);
  text-shadow: 2px 2px 0 var(--steel);
}

.section-intro {
  font-size: 1.1rem;
  color: var(--ash);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===========================================
   SERVICES SECTION
   =========================================== */
.services-section {
  padding: var(--space-2xl) 0;
  background: var(--coal);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-lg);
}

.service-card {
  background: var(--asphalt);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid var(--steel);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card::after {
  content: attr(data-number);
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--steel);
  opacity: 0.3;
  line-height: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--amber);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.service-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--ash);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ===========================================
   WHY CHOOSE US SECTION
   =========================================== */
.why-choose-section {
  padding: var(--space-2xl) 0;
  background: var(--asphalt);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  background: var(--steel);
  padding: var(--space-xl);
  text-align: center;
  position: relative;
  border: 1px solid var(--concrete);
  transition: all var(--transition-base);
  clip-path: polygon(0 20px, 20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--amber);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  display: block;
  filter: grayscale(100%);
  transition: filter var(--transition-base);
}

.feature-card:hover .feature-icon {
  filter: grayscale(0%);
}

.feature-card h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.feature-card p {
  color: var(--ash);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===========================================
   ABOUT SECTION
   =========================================== */
.about-section {
  padding: var(--space-2xl) 0;
  background: var(--coal);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: 'DA';
  position: absolute;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 40vw;
  color: var(--steel);
  opacity: 0.1;
  pointer-events: none;
}

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

.about-content {
  position: relative;
  z-index: 1;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: var(--space-lg);
  color: var(--fog);
}

.about-content p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  float: left;
  line-height: 1;
  margin-right: var(--space-md);
  color: var(--amber);
}

.tagline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--amber);
  padding-left: var(--space-lg);
  border-left: 4px solid var(--amber);
  margin-top: var(--space-xl);
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  filter: grayscale(50%);
  transition: filter var(--transition-base);
}

.about-image:hover img {
  filter: grayscale(0%);
}

.about-image::before {
  content: '';
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  right: calc(var(--space-lg) * -1);
  bottom: calc(var(--space-lg) * -1);
  border: 3px solid var(--amber);
  z-index: -1;
}

/* ===========================================
   SHOP GALLERY SECTION
   =========================================== */
.shop-gallery-section {
  padding: var(--space-2xl) 0;
  background: var(--coal);
}

.shop-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.shop-gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-top: 4px solid var(--amber);
}

.shop-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

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

/* ===========================================
   REVIEWS SECTION
   =========================================== */
.reviews-section {
  padding: var(--space-2xl) 0;
  background: var(--asphalt);
  position: relative;
}

.reviews-section::before {
  content: '"';
  position: absolute;
  top: var(--space-xl);
  left: 5%;
  font-family: Georgia, serif;
  font-size: 30rem;
  color: var(--steel);
  opacity: 0.2;
  line-height: 1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.review-card {
  background: var(--steel);
  padding: var(--space-xl);
  position: relative;
  border-top: 4px solid var(--amber);
  transition: all var(--transition-base);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.review-author {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.review-stars {
  color: var(--amber);
  font-size: 0.9rem;
  filter: drop-shadow(0 0 4px rgba(198, 156, 92, 0.55));
}

.review-date {
  color: var(--smoke);
  font-size: 0.85rem;
  margin-bottom: var(--space-md);
}

.review-text {
  color: var(--ash);
  font-style: italic;
  line-height: 1.8;
  position: relative;
  padding-left: var(--space-md);
  border-left: 2px solid var(--amber);
}

/* ===========================================
   MAP SECTION
   =========================================== */
.map-section {
  padding: var(--space-2xl) 0;
  background: var(--coal);
}

.map-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.map-info {
  padding-right: var(--space-xl);
}

.map-info h3 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.map-info p {
  color: var(--ash);
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
  line-height: 1.8;
}

.map-info .address {
  padding: var(--space-lg);
  background: var(--asphalt);
  border-left: 4px solid var(--amber);
  margin: var(--space-lg) 0;
}

.map-info .address strong {
  color: var(--white);
  display: block;
  margin-bottom: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.map-container {
  position: relative;
  background: var(--asphalt);
  padding: var(--space-sm);
  border: 2px solid var(--amber);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  display: block;
  filter: grayscale(80%) contrast(1.1);
  transition: filter var(--transition-base);
}

.map-container:hover iframe {
  filter: grayscale(20%) contrast(1);
}

/* ===========================================
   CTA SECTION
   =========================================== */
.cta-section {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, var(--asphalt) 0%, var(--coal) 50%, var(--amber-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 100px,
    rgba(179, 40, 58, 0.03) 100px,
    rgba(179, 40, 58, 0.03) 200px
  );
  animation: diagonalMove 20s linear infinite;
}

.cta-section h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.cta-section > .container > p {
  font-size: 1.3rem;
  color: var(--ash);
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.social-links-cta {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.social-links-cta p {
  font-size: 1rem;
  color: var(--ash);
  margin-bottom: var(--space-md);
}

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

.social-btn {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: var(--steel);
  color: var(--fog);
  font-weight: 600;
  border: 1px solid var(--concrete);
  transition: all var(--transition-base);
}

.social-btn:hover {
  background: var(--amber);
  color: var(--coal);
  border-color: var(--amber);
  transform: translateY(-3px);
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
  background: var(--coal);
  padding: var(--space-xl) 0 var(--space-lg);
  border-top: 1px solid var(--steel);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-info h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer-info p {
  color: var(--ash);
  margin-bottom: var(--space-sm);
}

.footer-info a {
  color: var(--amber);
}

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

.footer-links a {
  color: var(--ash);
  transition: all var(--transition-fast);
  padding-left: var(--space-md);
  border-left: 2px solid transparent;
}

.footer-links a:hover {
  color: var(--amber);
  border-left-color: var(--amber);
  padding-left: var(--space-lg);
}

.footer-bottom {
  border-top: 1px solid var(--steel);
  padding-top: var(--space-lg);
  text-align: center;
}

.footer-bottom p {
  color: var(--smoke);
  font-size: 0.9rem;
}

/* ===========================================
   MOBILE STICKY CALL BUTTON
   =========================================== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: linear-gradient(180deg, transparent 0%, var(--coal) 20%);
  padding: var(--space-sm) var(--space-md) calc(var(--space-md) + env(safe-area-inset-bottom, 0px));
}

.mobile-sticky-cta .sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: var(--danger);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 0;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  box-shadow: 0 -4px 20px rgba(179, 40, 58, 0.45);
  transition: all var(--transition-base);
  animation: pulseGlow 2s ease-in-out infinite;
}

.mobile-sticky-cta .sticky-cta-btn:hover,
.mobile-sticky-cta .sticky-cta-btn:active {
  background: var(--danger-dark);
  transform: scale(1.02);
}

.mobile-sticky-cta .sticky-cta-btn svg {
  width: 24px;
  height: 24px;
  animation: phoneRing 1.5s ease-in-out infinite;
}

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

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

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes scrollDown {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(15px);
  }
}

@keyframes diagonalMove {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(200px) translateY(200px);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 -4px 20px rgba(179, 40, 58, 0.45);
  }
  50% {
    box-shadow: 0 -4px 30px rgba(179, 40, 58, 0.6);
  }
}

@keyframes phoneRing {
  0%, 100% {
    transform: rotate(0deg);
  }
  10%, 30% {
    transform: rotate(-10deg);
  }
  20%, 40% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(0deg);
  }
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */
@media (max-width: 1200px) {
  /* 7-item nav + rating + socials don't fit; drop the rating block first */
  .header-right .rating {
    display: none;
  }

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

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

@media (max-width: 992px) {
  .main-nav .nav-links {
    display: none;
  }

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

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

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-section::before {
    font-size: 60vw;
  }

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

  .map-info {
    padding-right: 0;
    padding-bottom: var(--space-xl);
  }
}

@media (max-width: 768px) {
  :root {
    --space-2xl: 4rem;
  }

  /* Show sticky CTA on mobile */
  .mobile-sticky-cta {
    display: block;
  }

  /* Add padding to body so the sticky CTA never covers footer content */
  body {
    padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px));
  }

  .header {
    padding: var(--space-sm) 0;
  }

  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: var(--space-sm);
  }

  .logo-container {
    flex-direction: row;
    align-items: center;
  }

  .logo {
    width: 45px;
    height: 45px;
  }

  .business-name {
    font-size: 1rem;
    display: none;
  }

  .header-right {
    flex-direction: row;
    gap: var(--space-sm);
  }

  .rating {
    display: none;
  }

  .social-links a {
    padding: 6px;
  }

  .social-links a svg {
    width: 18px;
    height: 18px;
  }

  .hero-title {
    text-shadow: 2px 2px 0 var(--amber-dark);
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 var(--space-lg);
  }

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

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

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

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

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

  .footer-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

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

  .footer-links a {
    padding-left: 0;
    border-left: none;
  }

  .footer-links a:hover {
    padding-left: 0;
    border-left: none;
  }

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

  .map-container iframe {
    height: 350px;
  }

  .scroll-indicator {
    display: none;
  }

  .cta-section .btn-large {
    display: none;
  }

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

  .cta-section > .container > p {
    font-size: 1rem;
  }
}

@media (min-width: 480px) and (max-width: 768px) {
  .business-name {
    display: block;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  /* Narrow phones: tighten gutters/padding so grid tracks can't exceed the viewport */
  .container {
    padding: 0 var(--space-md);
  }

  .info-card,
  .service-card,
  .brand-card {
    padding: var(--space-lg);
  }

  .business-name {
    font-size: 1.2rem;
  }

  .logo {
    width: 50px;
    height: 50px;
  }

  .section-title {
    font-size: 2rem;
  }

  .btn {
    font-size: 1rem;
    padding: var(--space-md) var(--space-lg);
  }

  .btn-large {
    font-size: 1.1rem;
    padding: var(--space-md) var(--space-xl);
  }

  .service-card::after {
    font-size: 3rem;
  }

  .mobile-sticky-cta .sticky-cta-btn {
    font-size: 1.05rem;
    padding: var(--space-md);
    white-space: nowrap;
  }

  .hero .btn-primary {
    font-size: 1.2rem;
    padding: var(--space-md) var(--space-lg);
  }

  .hero .btn-primary svg {
    width: 24px;
    height: 24px;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .mobile-sticky-cta .sticky-cta-btn {
    animation: none;
  }

  .mobile-sticky-cta .sticky-cta-btn svg {
    animation: none;
  }
}
