/* =========================================================
   AUTO KUREK – style.css
   Design: Premium industrial / dark automotive – Black & Yellow
   Fonts: Barlow Condensed (headings) + Barlow (body)
   ========================================================= */

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

:root {
  /* Colors – Black & Yellow brand */
  --clr-bg:         #0a0a0a;
  --clr-surface:    #141414;
  --clr-surface-2:  #1c1c1c;
  --clr-border:     #272727;
  --clr-text:       #e8e8e8;
  --clr-text-muted: #888;
  --clr-white:      #ffffff;
  --clr-red:        #f0c000;
  --clr-red-light:  #f5d000;
  --clr-red-dim:    rgba(240, 192, 0, 0.10);

  /* Typography */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  /* Spacing */
  --section-py: 100px;
  --container:  1200px;

  /* Misc */
  --radius:    6px;
  --radius-lg: 12px;
  --transition: 0.25s ease;
  --shadow-card: 0 2px 24px rgba(0,0,0,0.4);
}

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

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection {
  background: var(--clr-red);
  color: var(--clr-white);
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-border); border-radius: 3px; }

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

.section {
  padding: var(--section-py) 0;
}

.section-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--clr-white);
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 560px;
  margin-top: 16px;
}

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

.section-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--clr-red);
  color: #0a0a0a;
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--clr-red-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(240,192,0,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1rem;
}

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

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15,15,15,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.site-header.scrolled {
  border-bottom-color: var(--clr-border);
  background: rgba(15,15,15,0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--clr-red);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--clr-white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.logo-text strong {
  font-weight: 800;
}

/* Main Nav */
.main-nav {
  margin-left: auto;
}

.main-nav ul {
  display: flex;
  gap: 4px;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--clr-white);
  background: rgba(255,255,255,0.06);
}

.header-cta {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--clr-bg);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(240,192,0,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 20%, rgba(255,255,255,0.02) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 64px;
  padding-bottom: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-red-dim);
  border: 1px solid rgba(240,192,0,0.35);
  color: var(--clr-red-light);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  color: var(--clr-white);
  letter-spacing: -0.02em;
  max-width: 800px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-title .accent {
  color: var(--clr-red);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--clr-text-muted);
  max-width: 560px;
  margin-top: 24px;
  line-height: 1.7;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--clr-border);
  animation: fadeUp 0.6s 0.4s ease both;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1;
}

.stat span {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--clr-border);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--clr-text-muted);
  animation: bounce 2s infinite;
  opacity: 0.5;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

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

.about-text p {
  color: var(--clr-text-muted);
  margin-bottom: 20px;
  font-size: 1.02rem;
  line-height: 1.75;
}

.about-text .btn {
  margin-top: 12px;
}

.about-text .section-title {
  margin-bottom: 28px;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-card {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--transition), transform var(--transition);
}

.about-card:hover {
  border-color: rgba(240,192,0,0.3);
  transform: translateX(4px);
}

.about-card-icon {
  color: var(--clr-red);
  margin-bottom: 12px;
}

.about-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

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

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  background: var(--clr-bg);
}

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

.service-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--clr-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  border-color: rgba(240,192,0,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

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

.service-card--featured {
  border-color: rgba(240,192,0,0.2);
  background: linear-gradient(135deg, var(--clr-surface) 0%, rgba(240,192,0,0.05) 100%);
}

.service-tag {
  display: inline-block;
  background: var(--clr-red-dim);
  color: var(--clr-red-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-red);
  margin-bottom: 20px;
  transition: background var(--transition), border-color var(--transition);
}

.service-card:hover .service-icon {
  background: var(--clr-red-dim);
  border-color: rgba(240,192,0,0.3);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

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

/* =========================================================
   WHY US
   ========================================================= */
.why-us {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.section-header--light .section-title,
.section-header--light .section-desc,
.section-header--light .section-label {
  /* inherits default */
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--clr-border);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-item {
  background: var(--clr-surface);
  padding: 36px 32px;
  transition: background var(--transition);
  position: relative;
}

.why-item:hover {
  background: var(--clr-surface-2);
}

.why-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(240,192,0,0.15);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  transition: color var(--transition);
}

.why-item:hover .why-number {
  color: rgba(240,192,0,0.35);
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

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

/* =========================================================
   GALLERY
   ========================================================= */
.gallery {
  background: var(--clr-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  cursor: pointer;
}

.gallery-item--large {
  grid-column: 1 / 3;
  aspect-ratio: 16/9;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(
      45deg,
      var(--clr-surface),
      var(--clr-surface) 10px,
      var(--clr-surface-2) 10px,
      var(--clr-surface-2) 20px
    );
}

.gallery-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--clr-text-muted);
  text-align: center;
  padding: 20px;
}

.gallery-placeholder-inner svg {
  opacity: 0.3;
}

.gallery-placeholder-inner span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.6;
}

.gallery-placeholder-inner small {
  font-size: 0.78rem;
  opacity: 0.4;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  background: var(--clr-red);
  color: var(--clr-white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.gallery-note {
  text-align: center;
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  margin-top: 28px;
  font-style: italic;
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

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

.review-card {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--transition), transform var(--transition);
}

.review-card:hover {
  border-color: rgba(240,192,0,0.2);
  transform: translateY(-3px);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--clr-red);
}

.review-card blockquote {
  flex: 1;
}

.review-card blockquote p {
  font-size: 0.95rem;
  color: var(--clr-text);
  line-height: 1.7;
  font-style: normal;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--clr-border);
  padding-top: 20px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-red-dim);
  border: 1px solid rgba(240,192,0,0.2);
  color: var(--clr-red-light);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-author div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-author strong {
  font-size: 0.92rem;
  color: var(--clr-white);
  font-weight: 600;
}

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

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  background: var(--clr-bg);
  padding-bottom: 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 80px;
  align-items: start;
  padding-bottom: var(--section-py);
}

.contact-intro {
  color: var(--clr-text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius);
  transition: background var(--transition);
  text-decoration: none;
}

.contact-item:hover {
  background: var(--clr-surface);
}

.contact-item--phone {
  border: 1px solid rgba(240,192,0,0.2);
  background: var(--clr-red-dim);
  border-radius: var(--radius-lg);
  margin-bottom: 8px;
}

.contact-item--phone:hover {
  background: rgba(240,192,0,0.15);
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-red);
  flex-shrink: 0;
}

.contact-item--phone .contact-item-icon {
  background: var(--clr-red);
  border-color: var(--clr-red);
  color: #0a0a0a;
}

.contact-item > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-muted);
  font-weight: 600;
}

.contact-item strong {
  font-size: 0.98rem;
  color: var(--clr-white);
  font-weight: 500;
  display: block;
}

/* Contact Form */
.contact-form-wrap {
  position: sticky;
  top: 96px;
}

.contact-form {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--clr-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #444;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--clr-red);
  box-shadow: 0 0 0 3px rgba(240,192,0,0.12);
}

.form-note {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  margin-top: 14px;
  text-align: center;
  line-height: 1.5;
}

.form-status {
  margin-top: 12px;
  font-size: 0.9rem;
  text-align: center;
  min-height: 20px;
}

.form-status.success { color: #4ade80; }
.form-status.error   { color: var(--clr-red-light); }

/* Map */
.map-wrap {
  border-top: 1px solid var(--clr-border);
  padding: 40px 0 0;
}

.map-embed {
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  background: var(--clr-surface);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--clr-text-muted);
  text-align: center;
  padding: 20px;
  background:
    repeating-linear-gradient(
      -45deg,
      var(--clr-surface),
      var(--clr-surface) 8px,
      var(--clr-surface-2) 8px,
      var(--clr-surface-2) 16px
    );
}

.map-placeholder p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.map-placeholder small {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding: 72px 0 48px;
}

.footer-brand p {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-top: 16px;
  max-width: 280px;
}

.footer-brand .logo {
  margin-bottom: 0;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  transition: all var(--transition);
}

.footer-socials a:hover {
  background: var(--clr-red-dim);
  border-color: rgba(240,192,0,0.3);
  color: var(--clr-red-light);
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 20px;
}

.footer-nav ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a,
.footer-contact a,
.footer-contact li {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--clr-white);
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

/* =========================================================
   MOBILE CTA
   ========================================================= */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  background: var(--clr-red);
  color: #0a0a0a;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  gap: 8px;
  align-items: center;
  box-shadow: 0 4px 24px rgba(240,192,0,0.45);
  transition: all var(--transition);
  text-decoration: none;
}

.mobile-cta:hover {
  background: var(--clr-red-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(240,192,0,0.5);
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Intersection Observer fade-in */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet – 1024px */
@media (max-width: 1024px) {
  :root {
    --section-py: 72px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .about-card {
    flex: 1;
    min-width: 220px;
  }

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

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

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

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contact-form-wrap {
    position: static;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile – 768px */
@media (max-width: 768px) {
  :root {
    --section-py: 56px;
  }

  /* Header */
  .main-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(15,15,15,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--clr-border);
    padding: 16px 0;
    z-index: 999;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 14px 24px;
    font-size: 1rem;
    border-radius: 0;
  }

  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-actions {
    gap: 12px;
  }

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

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

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item--large {
    grid-column: 1 / -1;
  }

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

  .reviews-grid .review-card:last-child {
    display: none;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 0 32px;
  }

  .footer-brand {
    grid-column: 1;
  }

  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  /* Mobile CTA */
  .mobile-cta {
    display: flex;
  }

  /* Map */
  .map-embed {
    height: 260px;
  }

  /* Contact Form */
  .contact-form {
    padding: 28px 20px;
  }
}

/* Small Mobile – 480px */
@media (max-width: 480px) {
  .hero-title {
    font-size: 3rem;
  }

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

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

  .gallery-item--large {
    grid-column: 1;
  }

  .hero-stats {
    padding-top: 28px;
    margin-top: 40px;
  }

  .contact-form {
    padding: 24px 16px;
  }
}
