/* ========================================
   Luxury Exchange - Main Stylesheet
   Global Luxury Buyback & Marketplace
   ======================================== */

/* === CSS Variables === */
:root {
  --white: #FFFFFF;
  --black: #111111;
  --deep-black: #0A0A0A;
  --gold: #C9A14A;
  --gold-light: #D4B35C;
  --gold-dark: #A8873D;
  --light-gray: #F5F5F5;
  --text-gray: #666666;
  --border-gray: #E5E5E5;

  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 4px 20px rgba(201, 161, 74, 0.15);

  --radius: 2px;
  --radius-lg: 4px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease-luxury);
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-gray);
}

/* ===== Trust Badges ===== */
.trust-badges {
  padding: 3rem 0;
  background: var(--bg-light);
  border-top: 1px solid rgba(201, 161, 74, 0.15);
  border-bottom: 1px solid rgba(201, 161, 74, 0.15);
}

.trust-badges-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
}

.trust-badge-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.trust-badge-icon svg {
  width: 100%;
  height: 100%;
}

.trust-badge-text {
  display: flex;
  flex-direction: column;
}

.trust-badge-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.trust-badge-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-top: 0.15rem;
}

@media (max-width: 768px) {
  .trust-badges-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .trust-badge-item {
    width: 100%;
    max-width: 320px;
  }
}

/* === Utility === */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.section-padding {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.text-gold {
  color: var(--gold);
}

.text-center {
  text-align: center;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 1rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-cod {
  color: #C9A14A;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  font-weight: 500;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.4s var(--ease-luxury);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--deep-black);
  color: var(--gold);
  border: 1px solid var(--deep-black);
}

.btn-primary::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transition: height 0.4s var(--ease-luxury);
  z-index: 0;
}

.btn-primary:hover::before {
  height: 100%;
}

.btn-primary:hover {
  color: var(--deep-black);
  border-color: var(--gold);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

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

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--deep-black);
  border: none;
  font-weight: 600;
}

.btn-gold:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* === Header / Navigation === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s var(--ease-luxury);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color 0.4s var(--ease-luxury);
}

.header.scrolled .logo {
  color: var(--black);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s var(--ease-luxury);
}

.header.scrolled .nav-links a {
  color: var(--text-gray);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease-luxury);
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--deep-black) !important;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease-luxury);
}

.header.scrolled .mobile-menu-btn span {
  background: var(--black);
}

/* === Hero Section === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s var(--ease-luxury) infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease-luxury) 0.3s forwards;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease-luxury) 0.5s forwards;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease-luxury) 0.7s forwards;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease-luxury) 0.9s forwards;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease-luxury) 1.1s forwards;
}

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

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s var(--ease-luxury) infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* === Stats Section === */
.stats {
  background: var(--deep-black);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* === Brands Section === */
.brands {
  background: var(--white);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1px;
  background: var(--border-gray);
  border: 1px solid var(--border-gray);
}

.brand-item {
  background: var(--white);
  padding: 2.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-luxury);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.brand-item:hover {
  background: var(--light-gray);
  box-shadow: inset 0 0 0 1px var(--gold);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--black);
  transition: color 0.3s var(--ease-luxury);
  text-align: center;
}

.brand-item:hover .brand-name {
  color: var(--gold);
}

/* === Categories Section === */
.categories {
  background: var(--light-gray);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.category-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}

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

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem;
  transition: all 0.4s var(--ease-luxury);
}

.category-card:hover .category-overlay {
  box-shadow: inset 0 0 0 2px var(--gold);
}

.category-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.category-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* === Why Choose Us === */
.why-us {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.why-item {
  text-align: center;
  padding: 2rem;
}

.why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gray);
  border-radius: 50%;
  transition: all 0.4s var(--ease-luxury);
}

.why-item:hover .why-icon {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.why-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
}

.why-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.why-desc {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* === Process / Timeline === */
.process {
  background: var(--light-gray);
}

.timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.timeline-step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.timeline-step::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -10%;
  width: 20%;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.timeline-step:last-child::after {
  display: none;
}

.timeline-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--gold);
  background: var(--white);
  transition: all 0.4s var(--ease-luxury);
}

.timeline-step:hover .timeline-number {
  background: var(--gold);
  color: var(--white);
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* === Global Service === */
.global {
  background: var(--deep-black);
  position: relative;
  overflow: hidden;
}

.global-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.global-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.global-content {
  position: relative;
  z-index: 2;
}

.global .section-label {
  color: var(--gold);
}

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

.global .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.country-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease-luxury);
  cursor: pointer;
}

.country-item:hover {
  border-color: var(--gold);
  background: rgba(201, 161, 74, 0.05);
}

.country-name {
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
}

.country-data {
  font-size: 0.75rem;
  color: var(--gold);
}

/* === Testimonials === */
.testimonials {
  background: var(--white);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s var(--ease-luxury);
}

.testimonial-item {
  min-width: 100%;
  padding: 3rem;
  text-align: center;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.2em;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--black);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.85rem;
  color: var(--text-gray);
  letter-spacing: 0.1em;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-gray);
  cursor: pointer;
  transition: all 0.3s var(--ease-luxury);
}

.testimonial-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* === Recent Sales === */
.recent-sales {
  background: var(--light-gray);
}

.sales-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.sale-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-luxury);
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}

.sale-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.sale-card:hover .sale-img img {
  transform: scale(1.05);
}

.sale-card:hover .sale-card-inner {
  box-shadow: inset 0 0 0 1px var(--gold);
}

.sale-img {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.cod-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sale-card:hover .cod-badge {
  opacity: 0.9;
}

.sale-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-luxury);
}

.sale-info {
  padding: 1.25rem;
}

.sale-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.sale-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.sale-meta {
  font-size: 0.75rem;
  color: var(--text-gray);
}

/* === FAQ === */
.faq {
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-gray);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--black);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s var(--ease-luxury);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform 0.3s var(--ease-luxury);
}

.faq-icon::before {
  width: 12px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-luxury);
}

.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* === Footer === */
.footer {
  background: var(--deep-black);
  padding: clamp(4rem, 8vw, 6rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
  transition: color 0.3s var(--ease-luxury);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s var(--ease-luxury);
}

.footer-social a:hover {
  border-color: var(--gold);
  background: rgba(201, 161, 74, 0.1);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.6);
}

.footer-social a:hover svg {
  fill: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* === Floating CTA === */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-luxury);
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.floating-cta .btn {
  box-shadow: var(--shadow-lg);
  padding: 1rem 2rem;
}

/* === Live Ticker === */
.live-ticker {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.75rem 0;
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-luxury);
  overflow: hidden;
}

.live-ticker.visible {
  transform: translateY(0);
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

.ticker-item strong {
  color: var(--gold);
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* === Scroll Animations === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-luxury);
}

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

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

/* === Lightbox === */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.92);
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.lightbox.active {
  display: flex;
}
.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: lightboxFadeIn 0.3s ease;
}
@keyframes lightboxFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.lightbox-close {
  position: fixed;
  top: 24px;
  right: 32px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
  opacity: 0.7;
  transition: opacity 0.3s;
  line-height: 1;
}
.lightbox-close:hover {
  opacity: 1;
}

/* === Chat Widget === */
.chat-toggle {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--deep-black);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201, 161, 74, 0.35);
  transition: all 0.4s var(--ease-luxury);
}

.chat-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(201, 161, 74, 0.45);
}

.chat-toggle svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.chat-modal {
  position: fixed;
  bottom: 10rem;
  right: 2rem;
  z-index: 1000;
  width: 380px;
  height: 540px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease-luxury);
  overflow: hidden;
}

.chat-modal.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--deep-black);
  flex-shrink: 0;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-avatar svg {
  width: 18px;
  height: 18px;
  color: var(--deep-black);
}

.chat-header-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--white);
}

.chat-header-status {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.chat-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s var(--ease-luxury);
}

.chat-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.chat-close svg {
  width: 16px;
  height: 16px;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--light-gray);
}

.chat-messages::-webkit-scrollbar {
  width: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: var(--border-gray);
  border-radius: 2px;
}

.chat-msg {
  display: flex;
  max-width: 85%;
}

.chat-msg-bot {
  align-self: flex-start;
}

.chat-msg-user {
  align-self: flex-end;
}

.chat-msg-content {
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--black);
}

.chat-msg-bot .chat-msg-content {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-bottom-left-radius: 4px;
}

.chat-msg-user .chat-msg-content {
  background: var(--deep-black);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.chat-input-area {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border-gray);
  background: var(--white);
  flex-shrink: 0;
}

.chat-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--light-gray);
  border-radius: 50px;
  padding: 0.25rem 0.25rem 0.25rem 1.25rem;
}

.chat-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--black);
  padding: 0.5rem 0;
}

.chat-input::placeholder {
  color: var(--text-gray);
}

.chat-send {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s var(--ease-luxury);
  flex-shrink: 0;
}

.chat-send:hover {
  background: var(--gold-dark);
  transform: scale(1.05);
}

.chat-send svg {
  width: 16px;
  height: 16px;
  color: var(--deep-black);
}

/* Typing indicator */
.typing-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-gray);
  margin: 0 2px;
  animation: typingBounce 1.4s infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* Chat responsive */
@media (max-width: 480px) {
  .chat-toggle {
    bottom: 5rem;
    right: 1rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.8rem;
  }
  .chat-toggle span {
    display: none;
  }
  .chat-modal {
    right: 0.5rem;
    left: 0.5rem;
    width: auto;
    height: 460px;
    bottom: 8rem;
  }
}

/* === Mobile Nav === */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 1001;
  flex-direction: column;
  padding: 2rem;
  box-shadow: -4px 0 30px rgba(0,0,0,0.1);
  transition: right 0.4s var(--ease-luxury);
}
.mobile-nav.open {
  right: 0;
}
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-gray);
}
.mobile-nav-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--black);
}
.mobile-nav-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-gray);
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.3s ease;
}
.mobile-nav-close:hover {
  color: var(--black);
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav-links a {
  display: block;
  padding: 0.85rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--border-gray);
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.mobile-nav-links a:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}
.mobile-nav-cta {
  margin-top: 1rem;
  background: var(--deep-black);
  color: var(--gold) !important;
  text-align: center;
  padding: 1rem !important;
  border-radius: 4px;
  font-weight: 600 !important;
  border: none !important;
  letter-spacing: 0.03em;
}
.mobile-nav-cta:hover {
  background: var(--gold) !important;
  color: var(--deep-black) !important;
}
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mobile-nav-overlay.open {
  opacity: 1;
}

/* === Responsive === */
@media (max-width: 1200px) {
  .sales-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline {
    flex-direction: column;
    align-items: center;
  }
  .timeline-step::after {
    display: none;
  }
  .timeline-step {
    padding: 1.5rem;
  }
  .countries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .mobile-nav {
    display: flex;
  }
  .mobile-nav-overlay {
    display: block;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sales-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .countries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .section-header {
    padding: 0 1rem;
  }
  .hero {
    padding: 0 1.5rem;
  }
  .hero-content {
    max-width: 100%;
  }
  .timeline-step {
    width: 100%;
    max-width: 400px;
  }
  .testimonial-slider {
    padding: 0 0.5rem;
  }
  .header {
    padding: 0 1.5rem;
    height: 64px;
  }
  .logo {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .sales-grid {
    grid-template-columns: 1fr;
  }
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .trust-badges {
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 1rem;
  }
  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }
  .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
  }
  .hero-desc {
    font-size: 0.9rem;
  }
  .section-header h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .section {
    padding: 3rem 0;
  }
  .testimonial-card {
    padding: 1.5rem;
  }
  .testimonial-slider {
    padding: 0 0.5rem;
  }
  .footer-grid {
    gap: 1.5rem;
  }
  .live-ticker-inner {
    font-size: 0.75rem;
  }
  .floating-cta {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
    bottom: 1rem;
    right: 1rem;
  }
  .lightbox-content {
    max-width: 95%;
  }
}

/* === Mobile Chat Widget Overrides === */
@media (max-width: 480px) {
  .chat-toggle {
    bottom: 5rem;
    right: 1rem;
    padding: 0.75rem 1.2rem;
    font-size: 0.8rem;
  }
  .chat-toggle span {
    display: none;
  }
  .chat-modal {
    width: 100%;
    height: 60vh;
    bottom: 0;
    right: 0;
    border-radius: 12px 12px 0 0;
    max-width: 100%;
  }
  .chat-modal.open {
    bottom: 0;
  }
  .chat-messages {
    padding: 1rem;
  }
  .chat-input-area {
    padding: 0.75rem 1rem;
  }
  .chat-input-area input {
    font-size: 16px; /* prevent iOS zoom */
  }
  .mobile-nav {
    width: 85%;
  }
  .hero {
    min-height: 85vh;
    padding: 0 1.25rem;
  }
  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }
  .hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }
  .hero-desc {
    font-size: 0.85rem;
    padding: 0 0.5rem;
  }
  .section {
    padding: 2.5rem 0;
  }
  .section-header h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    letter-spacing: 0.02em;
  }
  .section-header p {
    font-size: 0.85rem;
  }
  .category-card {
    max-width: 100%;
  }
  .category-card img {
    height: 200px;
  }
  .sale-card {
    max-width: 100%;
  }
  .sale-card img {
    height: 200px;
  }
  .brand-item {
    padding: 0.75rem;
    font-size: 0.8rem;
  }
  .brand-item img {
    max-height: 28px;
  }
  .stat-item {
    padding: 1rem 0.5rem;
  }
  .stat-number {
    font-size: 1.5rem;
  }
  .stat-label {
    font-size: 0.7rem;
  }
  .faq-question {
    padding: 1rem 1rem;
    font-size: 0.9rem;
  }
  .faq-answer {
    padding: 0 1rem 1rem;
    font-size: 0.85rem;
  }
  .floating-cta {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
    bottom: 0.75rem;
    right: 0.75rem;
  }
  .testimonial-card {
    padding: 1.25rem;
  }
  .testimonial-text {
    font-size: 0.9rem;
  }
  .live-ticker {
    height: 36px;
  }
  .live-ticker-inner {
    font-size: 0.7rem;
  }
  .footer {
    padding: 2.5rem 1.25rem 1.5rem;
  }
  .footer-grid {
    gap: 1.25rem;
  }
  .footer-column h3 {
    font-size: 0.85rem;
  }
  .footer-column a {
    font-size: 0.8rem;
  }
  .countries-grid {
    gap: 0.5rem;
  }
  .country-item {
    padding: 0.5rem;
    font-size: 0.75rem;
  }
  .why-item {
    padding: 1.5rem 1rem;
  }
  .why-item p {
    font-size: 0.85rem;
  }
  .trust-badges {
    padding: 1.5rem 1rem;
    gap: 0.75rem;
  }
  .trust-badge {
    font-size: 0.8rem;
  }
  .trust-badge svg {
    width: 28px;
    height: 28px;
  }
  .hero-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }
  .timeline-step {
    padding: 1rem;
  }
  .timeline-step-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .timeline-step-title {
    font-size: 0.9rem;
  }
  .timeline-step-desc {
    font-size: 0.8rem;
  }
  .header {
    padding: 0 1rem;
    height: 60px;
  }
  .logo {
    font-size: 1.1rem;
  }
  .mobile-menu-btn {
    width: 36px;
    height: 36px;
  }
  .mobile-menu-btn span {
    width: 20px;
  }
  .lightbox-close {
    top: 16px;
    right: 20px;
    font-size: 2rem;
  }
  .section-cod {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 1.6rem;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .stat-number {
    font-size: 1.6rem;
  }
}
