/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
  --primary: #8B0000;
  --primary-light: #a81c1c;
  --primary-dark: #5e0000;
  --accent: #c0392b;
  --accent-glow: rgba(139, 0, 0, 0.35);
  --dark: #0d0d0d;
  --dark-2: #141414;
  --dark-3: #1e1e1e;
  --dark-4: #252525;
  --light: #f5f5f5;
  --light-2: #e8e8e8;
  --text-dark: #1a1a1a;
  --text-light: #f0f0f0;
  --text-muted: #888;
  --border: rgba(139, 0, 0, 0.2);
  --gold: #c8a84b;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-arabic: 'Cairo', sans-serif;
  --font-latin: 'Montserrat', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-arabic);
  background: var(--light);
  color: var(--text-dark);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===========================
   Scrollbar
   =========================== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* ===========================
   Preloader
   =========================== */
#preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #f8ede0, #ecddc8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  animation: pulse-logo 1.5s ease-in-out infinite;
  margin: 0 auto 24px;
}

@keyframes pulse-logo {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px var(--accent));
  }

  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 0 20px var(--primary));
  }
}

.preloader-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-progress {
  height: 100%;
  width: 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  animation: load-bar 1.8s ease forwards;
}

@keyframes load-bar {
  to {
    width: 100%;
  }
}

/* ===========================
   Navbar
   =========================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo-text {
  font-family: var(--font-latin);
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 6px;
  color: #fff;
  transition: var(--transition);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.nav-logo-text span {
  color: var(--gold);
}

.nav-logo:hover .nav-logo-text {
  opacity: 0.85;
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 4px;
  margin-right: auto;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
  border-radius: 1px;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
  left: 14px;
  right: 14px;
}

.nav-cta {
  background: var(--primary);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.nav-cta:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--accent-glow);
}

/* Language Toggle */
.lang-toggle {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-family: var(--font-latin);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* LTR overrides when English is active */
html[dir="ltr"] .nav-links {
  margin-right: 0;
  margin-left: auto;
}

html[dir="ltr"] .contact-card:hover {
  transform: translateX(6px);
}

html[dir="ltr"] .footer-links h4::after,
html[dir="ltr"] .footer-services h4::after,
html[dir="ltr"] .footer-contact h4::after {
  right: auto;
  left: 0;
}

html[dir="ltr"] .footer-services ul li i {
  transform: rotate(180deg);
}

html[dir="ltr"] .about-highlights {
  direction: ltr;
}

html[dir="ltr"] .whatsapp-tooltip {
  right: auto;
  left: calc(100% + 14px);
}

html[dir="ltr"] .whatsapp-tooltip::after {
  left: auto;
  right: 100%;
  border-left-color: transparent;
  border-right-color: #333;
}


.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(80, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-bg-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  animation: slide-cycle 15s infinite;
}

.slide-1 {
  background-image: url('1.png');
  animation-delay: 0s;
}

.slide-2 {
  background-image: url('2.png');
  animation-delay: 5s;
}

.slide-3 {
  background-image: url('3.png');
  animation-delay: 10s;
}

@keyframes slide-cycle {

  0%,
  28% {
    opacity: 1;
  }

  33%,
  95% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 120px 24px 100px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px var(--accent-glow);
  animation: fade-in-down 0.8s ease both;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fade-in-up 0.8s ease 0.2s both;
}

.text-accent {
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  animation: fade-in-up 0.8s ease 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fade-in-up 0.8s ease 0.6s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  animation: fade-in-up 0.8s ease 0.8s both;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  max-width: 600px;
  margin: 0 auto;
}

.stat {
  text-align: center;
  padding: 0 24px;
}

.stat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-latin);
  line-height: 1;
}

.stat span {
  color: var(--gold);
  font-size: 2rem;
  font-weight: 900;
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  animation: bounce 2s ease infinite 1.5s;
}

.scroll-arrow {
  margin-top: 8px;
  font-size: 1.1rem;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-arabic);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-3px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 4px 12px var(--accent-glow);
}

.btn-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--accent-glow);
}

/* ===========================
   Section Basics
   =========================== */
.section {
  padding: 100px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: rgba(139, 0, 0, 0.12);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(139, 0, 0, 0.25);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--text-dark);
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.dark-section {
  background: var(--dark);
  color: var(--text-light);
}

.dark-section .section-title {
  color: var(--text-light);
}

.dark-section .section-subtitle {
  color: rgba(255, 255, 255, 0.55);
}

.dark-section .section-tag {
  background: rgba(200, 168, 75, 0.12);
  color: var(--gold);
  border-color: rgba(200, 168, 75, 0.25);
}

/* ===========================
   About Section
   =========================== */
.about {
  background: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.8;
}

.about-text p strong {
  color: var(--primary);
}

.about-highlights {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.highlight i {
  color: var(--primary);
  font-size: 1rem;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-wrapper {
  position: relative;
  width: 360px;
  height: 360px;
  background: linear-gradient(135deg, #f8ede0, #ecddc8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.12), 0 0 0 20px rgba(139, 0, 0, 0.04),
    var(--shadow-lg);
}

.about-logo-big {
  width: 240px;
  height: 240px;
  object-fit: contain;
}

.about-badge-float {
  position: absolute;
  background: #fff;
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  animation: float-badge 3s ease-in-out infinite;
}

.about-badge-float i {
  color: var(--primary);
}

.badge-1 {
  top: 24px;
  right: -20px;
}

.badge-2 {
  bottom: 48px;
  left: -20px;
  animation-delay: 1.5s;
}

@keyframes float-badge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ===========================
   Services Section
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.08), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 8px 25px var(--accent-glow);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

/* ===========================
   Showroom Section
   =========================== */
.showroom {
  background: #f8f8f8;
}

.showroom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.car-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.car-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.car-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: #eee;
}

.car-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.car-card:hover .car-img-wrap img {
  transform: scale(1.05);
}

.car-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 12px var(--accent-glow);
}

.car-info {
  padding: 24px;
}

.car-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.car-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.showroom-cta {
  text-align: center;
}

.showroom-cta p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ===========================
   Why Us Section
   =========================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 0, 0, 0.4);
  background: var(--dark-4);
}

.why-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  font-family: var(--font-latin);
  line-height: 1;
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.2), rgba(192, 57, 43, 0.15));
  border: 1px solid rgba(139, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-color: transparent;
}

.why-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

/* ===========================
   Contact Section
   =========================== */
.contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--light);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--light-2);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--border);
  box-shadow: 0 8px 25px rgba(139, 0, 0, 0.08);
  transform: translateX(-6px);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.contact-details h4 {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-details a,
.contact-details span {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
  transition: var(--transition);
  display: block;
}

.contact-details a:hover {
  color: var(--primary);
}

.hours-closed {
  font-size: 0.82rem !important;
  color: var(--primary) !important;
  font-weight: 700 !important;
  margin-top: 4px;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
}

.map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px;
  text-align: center;
  transition: var(--transition);
}

.map-btn:hover {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  letter-spacing: 0.3px;
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--dark);
  color: var(--text-light);
}

.footer-main {
  padding: 72px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 2px;
  background: var(--primary);
}

.footer-links ul li,
.footer-services ul li,
.footer-contact ul li {
  padding: 6px 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-links ul li a {
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--gold);
  padding-right: 4px;
}

.footer-services ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-services ul li i {
  color: var(--primary);
  font-size: 0.7rem;
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact ul li i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact ul li a {
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ===========================
   Floating WhatsApp
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 998;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: whatsapp-pulse 3s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

@keyframes whatsapp-pulse {

  0%,
  100% {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5), 0 0 0 12px rgba(37, 211, 102, 0.1);
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  background: #333;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: transparent;
  border-left-color: #333;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ===========================
   Back to Top
   =========================== */
#backToTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 6px 20px var(--accent-glow);
}

#backToTop.visible {
  opacity: 1;
  transform: translateY(0);
}

#backToTop:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px var(--accent-glow);
}

/* ===========================
   Animations (data-aos)
   =========================== */
[data-aos] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-up"] {
  transform: translateY(40px);
}

[data-aos="fade-right"] {
  transform: translateX(-40px);
}

[data-aos="fade-left"] {
  transform: translateX(40px);
}

[data-aos="zoom-in"] {
  transform: scale(0.85);
}

[data-aos="flip-left"] {
  transform: perspective(600px) rotateY(-30deg);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-down {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    order: -1;
  }

  .about-img-wrapper {
    width: 280px;
    height: 280px;
  }

  .about-logo-big {
    width: 180px;
    height: 180px;
  }

  .showroom-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 4px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    z-index: 990;
    padding: 80px 24px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 12px 24px;
    color: #fff;
  }

  .hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero-stats {
    gap: 0;
    flex-direction: column;
    padding: 20px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
    margin: 8px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .showroom-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 54px;
    height: 54px;
    font-size: 1.6rem;
  }

  #backToTop {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 70px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .badge-1,
  .badge-2 {
    display: none;
  }
}