/* =========================================================
   DLS BRICKS — Premium Website Stylesheet
   ========================================================= */

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --brand:        #8B4513;
  --brand-alt:    #d4500a;
  --brand-dark:   #6B3410;
  --brand-light:  #FFF3EC;
  --brand-gold:   #C9872A;
  --dark:         #1A1A2E;
  --dark2:        #16213E;
  --text:         #2D2D2D;
  --text-muted:   #6C757D;
  --white:        #FFFFFF;
  --off-white:    #F8F5F2;
  --border:       #E8DDD5;
  --shadow:       0 4px 24px rgba(139,69,19,.12);
  --shadow-lg:    0 12px 48px rgba(139,69,19,.18);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   all .3s ease;
}

/* ── Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
a { color: var(--brand-alt); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--brand-dark); }
img { max-width: 100%; height: auto; }
section { position: relative; }

/* ── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 3px; }

/* ── Typography ────────────────────────────────────────── */
.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-alt);
  display: block;
  margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title span { color: var(--brand-alt); }
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn-brand {
  background: linear-gradient(135deg, var(--brand-alt), var(--brand));
  color: #fff !important;
  border: none;
  padding: .75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .3px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(212,80,10,.35);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,80,10,.45);
  color: #fff !important;
}
.btn-outline-brand {
  background: transparent;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,.7);
  padding: .72rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-outline-brand:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-wa {
  background: #25D366;
  color: #fff !important;
  border: none;
  padding: .75rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); color: #fff !important; }

/* ── Logo ──────────────────────────────────────────────── */
.site-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}
.logo-fallback {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brand);
  text-decoration: none;
  line-height: 1;
}
.logo-fallback .logo-icon {
  background: var(--brand);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.logo-fallback span { color: var(--brand-alt); }
@media (max-width: 576px) { .site-logo { height: 40px; } }

/* ── Navbar ────────────────────────────────────────────── */
#mainNav {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  transition: var(--transition);
  padding: .6rem 0;
}
#mainNav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,.15);
  padding: .4rem 0;
}
#mainNav .nav-link {
  font-weight: 500;
  font-size: .9rem;
  color: var(--text) !important;
  padding: .45rem .85rem !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--brand-alt);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: var(--transition);
}
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after { width: 60%; }
#mainNav .nav-link:hover,
#mainNav .nav-link.active { color: var(--brand-alt) !important; }
.navbar-toggler { border: 2px solid var(--brand); border-radius: 8px; padding: .35rem .6rem; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%238B4513' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
.btn-order-nav {
  background: linear-gradient(135deg, var(--brand-alt), var(--brand));
  color: #fff !important;
  border-radius: 50px !important;
  padding: .42rem 1.2rem !important;
  font-weight: 700 !important;
  font-size: .85rem !important;
  box-shadow: 0 3px 12px rgba(212,80,10,.3);
}
.btn-order-nav:hover { transform: translateY(-1px); box-shadow: 0 5px 18px rgba(212,80,10,.45); }
.btn-order-nav::after { display: none !important; }
.dropdown-menu { border: none; box-shadow: var(--shadow-lg); border-radius: var(--radius); padding: .5rem; }
.dropdown-item { border-radius: 8px; padding: .5rem 1rem; font-weight: 500; font-size: .88rem; }
.dropdown-item:hover { background: var(--brand-light); color: var(--brand-alt); }

/* ── Hero ──────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(26,26,46,.92) 0%, rgba(45,45,68,.85) 50%, rgba(139,69,19,.75) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  color: #fff;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, #fff, transparent);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(212,80,10,.2);
  border: 1px solid rgba(212,80,10,.4);
  color: #FFA366;
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.hero-title .highlight { color: var(--brand-alt); }
.hero-subtitle {
  font-size: 1.15rem;
  opacity: .85;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 550px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand-alt);
  line-height: 1;
}
.hero-stat .lbl { font-size: .75rem; color: rgba(255,255,255,.7); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,.2); align-self: stretch; }
.hero-img-wrap {
  position: relative;
  z-index: 2;
}
.hero-img-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(12px);
  text-align: center;
}
.hero-brick-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.hero-brick {
  height: 45px;
  border-radius: 6px;
  background: linear-gradient(135deg, #8B4513, #C1723A);
}
.hero-brick:nth-child(2) { background: linear-gradient(135deg, #6B3410, #8B4513); }
.hero-brick:nth-child(4) { background: linear-gradient(135deg, #C1723A, #D4500A); }
.hero-brick:nth-child(6) { background: linear-gradient(135deg, #8B4513, #6B3410); }
.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(37,211,102,.15);
  border: 1px solid rgba(37,211,102,.3);
  color: #25D366;
  padding: .35rem .9rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
}
.hero-live-dot {
  width: 7px; height: 7px;
  background: #25D366;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* ── Marquee ────────────────────────────────────────────── */
.marquee-section {
  background: var(--brand);
  padding: .75rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  color: #fff;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.marquee-item i { color: rgba(255,255,255,.6); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Section Padding ─────────────────────────────────────── */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.bg-off { background: var(--off-white); }
.bg-dark-section { background: var(--dark); color: #fff; }
.bg-brand { background: var(--brand); color: #fff; }

/* ── Cards ──────────────────────────────────────────────── */
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-alt);
}
.feature-card .icon-wrap {
  width: 60px; height: 60px;
  background: var(--brand-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--brand-alt);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.feature-card:hover .icon-wrap {
  background: var(--brand-alt);
  color: #fff;
}
.feature-card h5 { font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.feature-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; margin: 0; }

/* ── Product Cards ───────────────────────────────────────── */
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
  transition: var(--transition);
  height: 100%;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card .product-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.product-card .product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img img { transform: scale(1.08); }
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--brand-alt);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 50px;
  letter-spacing: .5px;
}
.product-body { padding: 1.5rem; }
.product-body h5 { font-weight: 700; color: var(--dark); margin-bottom: .5rem; font-size: 1.1rem; }
.product-body p { color: var(--text-muted); font-size: .88rem; line-height: 1.6; margin-bottom: 1rem; }
.product-specs { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.product-specs li {
  display: flex;
  justify-content: space-between;
  font-size: .83rem;
  padding: .3rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.product-specs li:last-child { border: none; }
.product-specs li strong { color: var(--dark); }

/* ── Stats Counter ───────────────────────────────────────── */
.stats-section { background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%); padding: 70px 0; }
.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-card:last-child { border: none; }
.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--brand-alt);
  line-height: 1;
  display: block;
}
.stat-suffix { font-size: 1.8rem; font-weight: 900; color: var(--brand-alt); }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.6); font-weight: 500; letter-spacing: 2px; text-transform: uppercase; margin-top: .5rem; display: block; }

/* ── Process Timeline ────────────────────────────────────── */
.process-timeline { position: relative; }
.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand-alt), var(--brand));
  transform: translateX(-50%);
}
.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
}
.process-step:nth-child(even) { flex-direction: row-reverse; }
.process-step-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 52px; height: 52px;
  background: var(--brand-alt);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px var(--brand-alt);
  z-index: 2;
}
.process-step-content {
  width: calc(50% - 48px);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.process-step-content:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.process-step-icon {
  font-size: 2rem;
  color: var(--brand-alt);
  margin-bottom: .75rem;
}
.process-step-content h4 { font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.process-step-content p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; margin: 0; }
@media (max-width: 768px) {
  .process-timeline::before { left: 28px; }
  .process-step, .process-step:nth-child(even) { flex-direction: column; padding-left: 70px; }
  .process-step-number { left: 28px; top: 0; }
  .process-step-content { width: 100%; }
}

/* ── Gallery ─────────────────────────────────────────────── */
.gallery-filter { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.gallery-filter .filter-btn {
  border: 2px solid var(--border);
  background: #fff;
  color: var(--text);
  padding: .4rem 1.2rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-filter .filter-btn:hover,
.gallery-filter .filter-btn.active {
  background: var(--brand-alt);
  border-color: var(--brand-alt);
  color: #fff;
}
.gallery-grid { columns: 3 200px; gap: 1rem; }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img { width: 100%; display: block; transition: transform .4s ease; }
.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  background: rgba(139,69,19,.6);
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover::after { opacity: 1; }
.gallery-placeholder {
  background: linear-gradient(135deg, var(--off-white), var(--border));
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 2.5rem;
}
/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox-overlay.show { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255,255,255,.1);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }

/* ── Testimonials ────────────────────────────────────────── */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
}
.testimonial-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 1rem; }
.testimonial-text { font-size: .95rem; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-alt), var(--brand));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-name { font-weight: 700; color: var(--dark); font-size: .9rem; }
.testimonial-loc { font-size: .78rem; color: var(--text-muted); }

/* ── Swiper ──────────────────────────────────────────────── */
.swiper-pagination-bullet-active { background: var(--brand-alt) !important; }
.swiper-button-next,
.swiper-button-prev { color: var(--brand-alt) !important; }

/* ── Forms ───────────────────────────────────────────────── */
.form-control, .form-select {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: .7rem 1rem;
  font-size: .9rem;
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--brand-alt);
  box-shadow: 0 0 0 3px rgba(212,80,10,.12);
}
.form-label { font-weight: 600; font-size: .85rem; color: var(--dark); margin-bottom: .4rem; }
.input-icon-wrap { position: relative; }
.input-icon-wrap i {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: .9rem;
  pointer-events: none;
}
.input-icon-wrap .form-control { padding-left: 2.6rem; }

/* ── Auth Pages ──────────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 40%, var(--brand) 100%);
  display: flex;
  align-items: center;
  padding: 80px 0 40px;
}
.auth-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
}
.auth-logo { text-align: center; margin-bottom: 2rem; }
.auth-logo img { height: 56px; }
.auth-title { font-size: 1.5rem; font-weight: 800; color: var(--dark); text-align: center; margin-bottom: .3rem; }
.auth-subtitle { text-align: center; color: var(--text-muted); font-size: .88rem; margin-bottom: 2rem; }
.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0;
  color: var(--text-muted);
  font-size: .8rem;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.auth-social .btn {
  border: 2px solid var(--border);
  background: #fff;
  color: var(--text);
  font-weight: 600;
  padding: .6rem 1rem;
  border-radius: 10px;
  font-size: .85rem;
}

/* ── Dashboard (Customer/Dealer Frontend) ─────────────────── */
.dashboard-page {
  min-height: 100vh;
  background: var(--off-white);
  padding-top: 76px;
}
.dashboard-sidebar {
  background: var(--dark);
  min-height: calc(100vh - 76px);
  padding: 1.5rem 1rem;
  position: sticky;
  top: 76px;
  overflow-y: auto;
}
.dashboard-sidebar .sidebar-logo { padding: 1rem; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.sidebar-nav .nav-link {
  color: rgba(255,255,255,.65) !important;
  border-radius: 10px;
  padding: .7rem 1rem !important;
  font-weight: 500;
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .25rem;
  transition: var(--transition);
}
.sidebar-nav .nav-link i { width: 18px; text-align: center; }
.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
  background: rgba(212,80,10,.25);
  color: #fff !important;
}
.sidebar-nav .nav-link.active { background: var(--brand-alt); color: #fff !important; }
.dashboard-content { padding: 2rem; }
.dash-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
}
.dash-card:hover { box-shadow: var(--shadow); }
.dash-stat-card {
  border-left: 4px solid var(--brand-alt);
  padding-left: 1.25rem;
}
.dash-stat-number { font-size: 2rem; font-weight: 800; color: var(--brand-alt); line-height: 1; }
.dash-stat-label { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* ── Dealer Invite Section ───────────────────────────────── */
.dealer-invite {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #2D1810 100%);
  padding: 80px 0;
  color: #fff;
}
.dealer-invite-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
  text-align: center;
}
.dealer-invite-icon { font-size: 2.5rem; color: var(--brand-alt); margin-bottom: 1rem; }
.dealer-invite-card h5 { font-weight: 700; margin-bottom: .5rem; }
.dealer-invite-card p { font-size: .88rem; color: rgba(255,255,255,.65); margin: 0; }

/* ── Contact ─────────────────────────────────────────────── */
.contact-info-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--brand-light);
  color: var(--brand-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.map-placeholder {
  background: linear-gradient(135deg, #e8ddd5, #f5ece5);
  border-radius: var(--radius-lg);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  border: 2px dashed var(--border);
}
.map-placeholder i { font-size: 3rem; color: var(--brand-alt); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 70px 0 0;
}
.footer-brand { margin-bottom: 1.25rem; }
.footer-brand img { height: 48px; }
.footer-desc { font-size: .88rem; line-height: 1.75; color: rgba(255,255,255,.55); margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .5rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--brand-alt); color: #fff; }
.footer-title { font-size: .8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--brand-alt); margin-bottom: 1.25rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--brand-alt); padding-left: 4px; }
.footer-contact-item { display: flex; gap: .75rem; margin-bottom: 1rem; font-size: .88rem; color: rgba(255,255,255,.55); }
.footer-contact-item i { color: var(--brand-alt); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--brand-alt); }

/* ── WhatsApp Floating ───────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .5rem;
}
.wa-main-btn {
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.wa-main-btn:hover { transform: scale(1.1); background: #1ebe5d; }
.wa-menu {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: var(--transition);
}
.wa-menu.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.wa-menu-item {
  background: #fff;
  border: none;
  border-radius: 50px;
  padding: .45rem 1rem .45rem .75rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 3px 12px rgba(0,0,0,.15);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: .5rem;
  white-space: nowrap;
  text-decoration: none;
}
.wa-menu-item:hover { background: #25D366; color: #fff; }
.wa-menu-item i { color: #25D366; transition: var(--transition); }
.wa-menu-item:hover i { color: #fff; }

/* ── Tracking ────────────────────────────────────────────── */
.tracking-timeline { position: relative; }
.tracking-step {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  position: relative;
}
.tracking-step::before {
  content: '';
  position: absolute;
  left: 20px; top: 44px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.tracking-step:last-child::before { display: none; }
.tracking-step-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--text-muted);
  z-index: 1;
}
.tracking-step.done .tracking-step-icon {
  background: #22C55E;
  border-color: #22C55E;
  color: #fff;
}
.tracking-step.active .tracking-step-icon {
  background: var(--brand-alt);
  border-color: var(--brand-alt);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(212,80,10,.2);
}
.tracking-step-content h6 { font-weight: 700; color: var(--dark); margin: 0 0 .2rem; }
.tracking-step-content small { color: var(--text-muted); font-size: .8rem; }

/* ── Animations ──────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-float { animation: float 3s ease-in-out infinite; }
.fade-in-up { animation: fadeInUp .7s ease forwards; }

/* ── Utilities ───────────────────────────────────────────── */
.text-brand { color: var(--brand-alt) !important; }
.bg-brand-light { background: var(--brand-light) !important; }
.border-brand { border-color: var(--brand) !important; }
.rounded-brand { border-radius: var(--radius-lg) !important; }
.shadow-brand { box-shadow: var(--shadow) !important; }
.divider-brand {
  height: 4px;
  width: 60px;
  background: linear-gradient(to right, var(--brand-alt), var(--brand));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* ── Page Hero (Inner Pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, rgba(26,26,46,.9) 0%, rgba(139,69,19,.8) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  padding: 120px 0 60px;
  color: #fff;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: .75rem; }
.page-hero p { opacity: .8; font-size: 1rem; }
.breadcrumb-item a { color: rgba(255,255,255,.7); }
.breadcrumb-item.active { color: var(--brand-alt); }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 992px) {
  .hero-section { padding: 100px 0 60px; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .stat-card { border: none; padding: 1.25rem .5rem; }
  .gallery-grid { columns: 2 150px; }
}
@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .gallery-grid { columns: 2 120px; }
  .process-timeline::before { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .dashboard-sidebar { position: static; min-height: auto; }
}
@media (max-width: 576px) {
  .gallery-grid { columns: 1; }
  .hero-title { font-size: 2.2rem; }
  .auth-card { padding: 1.75rem 1.25rem; }
}
