/* ════════════════════════════════════════════════
   AFURA – Static Landing Page Stylesheet
   Design: Dark automotive premium aesthetic
   ════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────── */
:root {
  --clr-bg: #0a0c10;
  --clr-surface: #111420;
  --clr-surface-2: #181d2a;
  --clr-border: #1e2535;
  --clr-accent: #e8a020;
  --clr-accent-2: #f0c060;
  --clr-blue: #1e6dc5;
  --clr-grad-start: #0d1524;
  --clr-grad-end: #101828;
  --clr-text: #e2e8f0;
  --clr-muted: #8896a8;
  --clr-white: #ffffff;
  --clr-hero-overlay: rgba(8, 12, 20, 0.72);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 30px rgba(232, 160, 32, 0.15);

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);

  --font-body: 'Inter', sans-serif;
  --font-head: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

input,
textarea,
button {
  font-family: inherit;
}

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

/* ── Typography Helpers ─────────────────────────── */
.section-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--clr-white);
}

.section-title--light {
  color: var(--clr-white);
}

.section-sub {
  color: var(--clr-muted);
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
}

.highlight {
  color: var(--clr-accent);
}

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  padding: 10px 22px;
  font-size: 0.92rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--clr-accent), #c96a00);
  color: #000;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 160, 32, 0.4);
  filter: brightness(1.1);
}

.btn--outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--clr-white);
}

.btn--outline:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  transform: translateY(-2px);
}

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

.btn--sm {
  padding: 8px 18px;
  font-size: 0.84rem;
}

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

/* ── TOP BAR ────────────────────────────────────── */
.top-bar {
  background: #060810;
  border-bottom: 1px solid var(--clr-border);
  padding: 7px 0;
  font-size: 0.78rem;
  font-weight: 500;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar__phones,
.top-bar__address {
  color: var(--clr-muted);
}

.top-bar__phones a,
.top-bar__address {
  color: var(--clr-muted);
}

.top-bar__phones a:hover {
  color: var(--clr-accent);
}

.top-bar__phones i,
.top-bar__address i {
  color: var(--clr-accent);
  margin-right: 5px;
}

.top-bar__social {
  display: flex;
  gap: 12px;
}

.top-bar__social a {
  color: var(--clr-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.top-bar__social a:hover {
  color: var(--clr-accent);
}

/* ── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 12, 16, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.navbar__logo img {
  height: 44px;
  width: auto;
}

.navbar__menu ul {
  display: flex;
  gap: 32px;
  align-items: center;
}

.navbar__menu a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--clr-muted);
  position: relative;
  transition: var(--transition);
}

.navbar__menu a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  transition: var(--transition);
}

.navbar__menu a:hover,
.navbar__menu a.active {
  color: var(--clr-white);
}

.navbar__menu a:hover::after,
.navbar__menu a.active::after {
  width: 100%;
}

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

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

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

/* Mobile menu open state */
.navbar.menu-open .navbar__menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: #0d1017;
  border-bottom: 1px solid var(--clr-border);
  padding: 20px 24px;
}

.navbar.menu-open .navbar__menu ul {
  flex-direction: column;
  gap: 20px;
}

.navbar.menu-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}

.navbar.menu-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.hero__bg {
  position: absolute;
  inset: -5%; /* Bleeds off screen to hide edges when scaling */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Keeps the parallax alive! */
  will-change: transform;
  transform: scale(1) translateZ(0);
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 20, 0.45);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero__tag {
  display: inline-block;
  background: rgba(232, 160, 32, 0.15);
  border: 1px solid rgba(232, 160, 32, 0.35);
  color: var(--clr-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  animation: fadeInDown 0.7s ease both;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--clr-white);
  margin-bottom: 20px;
  animation: fadeInUp 0.7s 0.1s ease both;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  animation: fadeInUp 0.7s 0.2s ease both;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.3s ease both;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll-hint span {
  display: block;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 13px;
  position: relative;
}

.hero__scroll-hint span::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--clr-accent);
  border-radius: 2px;
  animation: scrollBounce 1.5s infinite;
}

/* ── CATEGORIES ─────────────────────────────────── */
.categories {
  background: linear-gradient(135deg, var(--clr-grad-start), var(--clr-surface-2));
  padding: 64px 0;
}

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

.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  transition: var(--transition);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-accent);
  box-shadow: var(--shadow-glow);
}

.category-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.category-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover .category-card__img img {
  transform: scale(1.06);
}

.category-card__label {
  display: block;
  text-align: center;
  padding: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-text);
  background: var(--clr-surface);
  transition: var(--transition);
}

.category-card:hover .category-card__label {
  color: var(--clr-accent);
}

/* ── PRODUCTS ───────────────────────────────────── */
.products {
  padding: 96px 0;
  background: var(--clr-bg);
  text-align: center;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  text-align: left;
}

.product-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 160, 32, 0.35);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), var(--shadow-glow);
}

.product-card--featured {
  border-color: rgba(232, 160, 32, 0.45);
  box-shadow: var(--shadow-card), 0 0 40px rgba(232, 160, 32, 0.1);
  position: relative;
}

.product-card--featured::before {
  content: 'Popular';
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--clr-accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  z-index: 1;
}

.product-card__img {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #0d1117;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__img img {
  transform: scale(1.04);
}

.product-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.product-card__body h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-white);
}

.product-card__body p {
  font-size: 0.87rem;
  color: var(--clr-muted);
  flex: 1;
  line-height: 1.65;
}

/* ── WHY AFURA ──────────────────────────────────── */
.why-afura {
  background: linear-gradient(160deg, #0c1120, #0e1828, #091020);
  padding: 96px 0;
  text-align: center;
}

.why-afura__divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), transparent);
  margin: 20px auto 60px;
  border-radius: var(--radius-full);
}

.why-afura__layout {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 32px;
  align-items: center;
}

.why-afura__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 60px rgba(232, 160, 32, 0.12), var(--shadow-card);
}

.why-afura__chips {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-afura__chips--left {
  align-items: flex-end;
}

.why-afura__chips--right {
  align-items: flex-start;
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  padding: 10px 18px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--clr-text);
  transition: var(--transition);
  white-space: nowrap;
}

.feature-chip i {
  color: var(--clr-accent);
  font-size: 0.9rem;
}

.feature-chip:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  box-shadow: var(--shadow-glow);
  transform: translateX(3px);
}

.why-afura__chips--left .feature-chip:hover {
  transform: translateX(-3px);
}

/* Mobile feature grid (hidden on desktop) */
.why-afura__mobile-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

/* ── REVIEWS ────────────────────────────────────── */
.reviews {
  padding: 96px 0;
  background: var(--clr-bg);
  text-align: center;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  margin: 0 auto 48px;
}

.google-badge__stars {
  color: #fb8e28;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.google-badge__text {
  font-size: 0.84rem;
}

.google-badge strong {
  color: var(--clr-white);
}

/* Slider */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
  flex-shrink: 0;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(232, 160, 32, 0.3);
  box-shadow: var(--shadow-glow);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.testimonial-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent), #c96a00);
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--clr-white);
}

.testimonial-card__stars {
  color: #fb8e28;
  font-size: 0.78rem;
  margin-top: 2px;
}

.testimonial-card p {
  font-size: 0.88rem;
  color: var(--clr-muted);
  font-style: italic;
  line-height: 1.65;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  background: var(--clr-surface-2);
  color: var(--clr-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  z-index: 2;
}

.slider-btn:hover {
  background: var(--clr-accent);
  color: #000;
  border-color: var(--clr-accent);
}

.slider-btn--prev {
  left: 8px;
}

.slider-btn--next {
  right: 8px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-border);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.slider-dot.active {
  background: var(--clr-accent);
  width: 24px;
  border-radius: var(--radius-full);
}

/* ── TEAM ───────────────────────────────────────── */
.team {
  padding: 96px 0;
  background: var(--clr-surface);
  text-align: center;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.team-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 160, 32, 0.35);
  box-shadow: var(--shadow-glow);
}

.team-card__photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 3px solid rgba(232, 160, 32, 0.4);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-white);
  margin-bottom: 4px;
}

.team-card p {
  font-size: 0.82rem;
  color: var(--clr-accent);
  font-weight: 500;
}

/* ── MISSION ────────────────────────────────────── */
.mission {
  padding: 96px 0;
  background: var(--clr-bg);
}

.mission__layout {
  display: flex;
  align-items: center;
  gap: 64px;
}

.mission__icon-block {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission__icon-block i {
  font-size: 4rem;
  color: var(--clr-accent);
  position: relative;
  z-index: 1;
  animation: pulse 2.5s ease-in-out infinite;
}

.mission__orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232, 160, 32, 0.2);
  animation: spin 8s linear infinite;
}

.mission__orbit--1 {
  width: 120px;
  height: 120px;
}

.mission__orbit--2 {
  width: 170px;
  height: 170px;
  animation-duration: 12s;
  animation-direction: reverse;
  border-color: rgba(232, 160, 32, 0.1);
}

.mission__text h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 16px;
}

.mission__text p {
  color: var(--clr-muted);
  font-size: 0.97rem;
  line-height: 1.75;
  max-width: 560px;
}

/* ── ABOUT ──────────────────────────────────────── */
.about {
  padding: 96px 0;
  background: linear-gradient(160deg, var(--clr-grad-start), var(--clr-surface-2));
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__divider {
  width: 48px;
  height: 3px;
  background: var(--clr-accent);
  margin-bottom: 24px;
  border-radius: var(--radius-full);
}

.about__text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 20px;
  line-height: 1.28;
}

.about__text p {
  color: var(--clr-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(232, 160, 32, 0.35);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-accent);
  margin-top: 8px;
}

.about__image img {
  border-radius: var(--radius-lg);
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* ── RECOMMENDATIONS ────────────────────────────── */
.recommendations {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(232, 160, 32, 0.08), rgba(201, 106, 0, 0.06));
  border-top: 1px solid rgba(232, 160, 32, 0.15);
  border-bottom: 1px solid rgba(232, 160, 32, 0.15);
}

.recommendations__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.recommendations__text h3 {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.3;
}

.recommendations__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── Forms (shared) ─────────────────────────────── */
input,
textarea,
select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  color: var(--clr-text);
  padding: 12px 16px;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

input::placeholder,
textarea::placeholder {
  color: #4a5568;
}

input:focus,
textarea:focus {
  border-color: rgba(232, 160, 32, 0.5);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(232, 160, 32, 0.08);
}

textarea {
  resize: vertical;
}

/* ── CONTACT ────────────────────────────────────── */
.contact {
  padding: 96px 0;
  background: var(--clr-bg);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact__sub {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 12px;
  display: block;
}

.contact__info h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 14px;
  line-height: 1.28;
}

.contact__info>p {
  color: var(--clr-muted);
  margin-bottom: 28px;
  font-size: 0.93rem;
}

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

.contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
}

.contact__list li i {
  color: var(--clr-accent);
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}

.contact__list a:hover span {
  color: var(--clr-accent);
}

.contact__follow {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-white);
  margin: 28px 0 14px;
}

.contact__social {
  display: flex;
  gap: 12px;
}

.contact__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  background: var(--clr-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.contact__social a:hover {
  background: var(--clr-accent);
  color: #000;
  border-color: var(--clr-accent);
  transform: translateY(-2px);
}

.contact__form-wrap {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact__form-sub {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 6px;
  display: block;
}

.contact__form-wrap h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 24px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── FOOTER ─────────────────────────────────────── */
.footer {
  background: #060810;
  border-top: 1px solid var(--clr-border);
  padding: 72px 0 0;
}

.footer__logo {
  height: 44px;
  margin-bottom: 16px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__col p {
  color: var(--clr-muted);
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer__col p i {
  color: var(--clr-accent);
  margin-right: 6px;
}

.footer__col h5 {
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-white);
  margin-bottom: 16px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col ul a {
  color: var(--clr-muted);
  font-size: 0.87rem;
  transition: var(--transition);
}

.footer__col ul a:hover {
  color: var(--clr-accent);
  padding-left: 4px;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--clr-muted);
  transition: var(--transition);
}

.footer__social a:hover {
  color: #000;
  background: var(--clr-accent);
  border-color: var(--clr-accent);
}

.footer__bottom {
  border-top: 1px solid var(--clr-border);
  padding: 18px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--clr-muted);
  flex-wrap: wrap;
}

/* ── TOAST ──────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--clr-accent);
  color: #000;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
  z-index: 9999;
  max-width: 340px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ── Animations ─────────────────────────────────── */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollBounce {

  0%,
  100% {
    top: 6px;
    opacity: 1;
  }

  50% {
    top: 16px;
    opacity: 0.4;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

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

  .products__grid .product-card:last-child {
    grid-column: 1 / -1;
    max-width: 440px;
    margin: 0 auto;
  }

  .why-afura__layout {
    display: none;
  }

  .why-afura__mobile-grid {
    display: grid;
  }

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

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

  .about__layout {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .top-bar__address {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar__menu {
    display: none;
  }

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

  .products__grid .product-card:last-child {
    max-width: 100%;
  }

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

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

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

  .about__image {
    order: -1;
  }

  .mission__layout {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .mission__text p {
    margin: 0 auto;
  }

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

  .testimonial-card {
    min-width: calc(100% - 0px);
  }

  .slider-btn {
    display: none;
  }

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

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero__subtitle br {
    display: none;
  }

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

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
  }

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

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

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

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

  .top-bar__phones {
    font-size: 0.7rem;
  }
}

/* ── Page Banner (About, Contact, inner pages) ── */
.page-banner {
  position: relative;
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #071020, #0e1e36 60%, #08121e);
  border-bottom: 1px solid var(--clr-border);
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(232, 160, 32, 0.06) 0%, transparent 70%);
}

.page-banner__overlay {
  display: none;
}

.page-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-banner__content h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 12px;
}

.page-banner__content>p {
  color: var(--clr-muted);
  font-size: 1rem;
  margin-bottom: 20px;
}

/* ── Breadcrumb ─────────────────────────────────── */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--clr-muted);
}

.breadcrumb a {
  color: var(--clr-accent);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--clr-accent-2);
}

.breadcrumb i {
  font-size: 0.6rem;
  color: var(--clr-muted);
}