/* ============================================
   Au2biler – Main Stylesheet
   ============================================ */

/* ── TOKENS ── */
:root {
  --red:       #D72B2B;
  --red-dark:  #a81f1f;
  --red-glow:  rgba(215,43,43,0.18);
  --dark:      #111214;
  --dark2:     #1a1c1f;
  --dark3:     #242629;
  --mid:       #3a3d42;
  --light:     #f4f4f2;
  --muted:     #8a8f98;
  --white:     #ffffff;
  --ease:      cubic-bezier(.4,0,.2,1);
  --fast:      0.22s;
  --med:       0.4s;
}

/* ── RESET / BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Cairo', sans-serif;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── UTILITY ── */
.container {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: 24px;
}
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  background: rgba(17,18,20,0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--med) var(--ease);
}
.nav.scrolled {
  background: rgba(17,18,20,0.97);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
}
.nav-logo-text { letter-spacing: 0; }
.nav-logo-text > span { color: var(--red); }
.nav-logo img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 6px;
  transition: color var(--fast), background var(--fast);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }

.nav-cta {
  padding: 9px 22px !important;
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  transition: background var(--fast), transform var(--fast) !important;
}
.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--med) var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: rgba(17,18,20,0.98);
  backdrop-filter: blur(20px);
  z-index: 800;
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.3rem;
  font-weight: 700;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: var(--muted);
}
.nav-mobile a:hover { color: var(--white); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 55%, var(--dark2) 55%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 52%;
  width: 4px;
  background: var(--red);
  transform: skewX(-8deg);
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  padding: 80px 24px 80px 48px;
  animation: fadeSlideUp 0.9s var(--ease) both;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--red);
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--red);
}
.hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  transition: background var(--fast), transform var(--fast), box-shadow var(--fast);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--red-glow);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  transition: border-color var(--fast), background var(--fast);
}
.btn-ghost:hover {
  border-color: var(--red);
  background: var(--red-glow);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-num span { color: var(--red); }
.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 48px 80px 24px;
  animation: fadeSlideUp 0.9s 0.2s var(--ease) both;
}
.hero-visual img {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 30px 60px rgba(215,43,43,0.25));
  animation: float 4s ease-in-out infinite;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 60px;
  }
  .hero::after { display: none; }
  .hero-text {
    padding: 60px 24px 20px;
    text-align: center;
  }
  .hero-desc { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; gap: 28px; }
  .hero-eyebrow { justify-content: center; }
  .hero-visual {
    padding: 20px 24px 60px;
    order: -1;
  }
  .hero-visual img { max-width: 260px; }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  border-right: 1px solid rgba(255,255,255,0.07);
}
.trust-item:last-child { border-right: none; }
.trust-item i { color: var(--red); font-size: 1.1rem; }

@media (max-width: 640px) {
  .trust-item { border-right: none; padding: 10px 16px; font-size: 0.82rem; }
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  width: 28px; height: 1.5px;
  background: var(--red);
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.section-sub {
  margin-top: 14px;
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
}
.service-card {
  background: var(--dark2);
  padding: 36px 32px;
  position: relative;
  transition: background var(--med) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--red);
  transition: width var(--med) var(--ease);
}
.service-card:hover { background: var(--dark3); }
.service-card:hover::before { width: 100%; }

.service-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  filter: grayscale(30%);
  transition: filter var(--med), transform var(--med);
}
.service-card:hover .service-img {
  filter: grayscale(0%);
  transform: scale(1.3);
}
.service-icon-wrap {
  width: 48px; height: 48px;
  background: var(--red-glow);
  border: 1px solid rgba(215,43,43,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.25rem;
}
.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.service-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}
.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  padding: 4px 10px;
  border: 1px solid rgba(215,43,43,0.35);
  border-radius: 4px;
  width: fit-content;
}

@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; border-radius: 12px; }
}

/* ============================================
   HOURS STRIP
   ============================================ */
.hours-strip {
  background: var(--red);
  padding: 28px 0;
}
.hours-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.hours-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hours-icon {
  width: 52px; height: 52px;
  background: rgba(0,0,0,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.hours-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
}
.hours-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.1;
}
.hours-divider {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.25);
}
.hours-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.hours-phone a { color: var(--white); }

@media (max-width: 640px) {
  .hours-inner { justify-content: center; text-align: center; }
  .hours-divider { display: none; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--dark2);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contact-item-icon {
  width: 48px; height: 48px;
  background: var(--red-glow);
  border: 1px solid rgba(215,43,43,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
}
.contact-item-value a { color: var(--white); transition: color var(--fast); }
.contact-item-value a:hover { color: var(--red); }

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform var(--fast), box-shadow var(--fast);
}
.social-btn:hover { transform: translateY(-2px); }
.social-btn.fb { background: #1877f2; color: #fff; }
.social-btn.fb:hover { box-shadow: 0 8px 24px rgba(24,119,242,0.35); }
.social-btn.wa { background: #25d366; color: #fff; }
.social-btn.wa:hover { box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.map-wrap iframe {
  width: 100%;
  height: 380px;
  display: block;
  filter: invert(90%) hue-rotate(180deg);
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .social-row { flex-wrap: wrap; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0;
  text-align: center;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-logo span { color: var(--red); }
.footer-copy {
  font-size: 0.82rem;
  color: var(--muted);
}
.footer-copy a { color: var(--red); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.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; }
