:root {
  --primary-bg: #0A0A0A;
  --secondary-bg: #111111;
  --accent-gold: #D4AF37;
  --accent-gold-hover: #b5952f;
  --accent-silver: #E5E4E2;
  --text-primary: #F5F5F5;
  --text-secondary: #A0A0A0;
  
  --gradient-gold: linear-gradient(135deg, #F9D423 0%, #FF4E50 100%);
  --gradient-metallic: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
  --glass-bg: rgba(20, 20, 20, 0.4);
  --glass-border: rgba(255, 255, 255, 0.08);
  
  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --font-kr: 'Noto Serif KR', serif;
  
  --transition-fast: 0.3s ease;
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
/* RTL Support for Arabic */
html[lang="ar"] {
  direction: rtl;
}

html[lang="ar"] .nav-links {
  flex-direction: row-reverse;
}

html[lang="ar"] .lang-toggle-dropdown {
  margin-right: auto;
  margin-left: 0;
}

html[lang="ar"] .dropdown-menu {
  right: auto;
  left: 0;
}

html[lang="ar"] .process-step .step-num {
  text-align: right;
  right: 1.5rem;
  left: auto;
}

html[lang="ar"] .wa-floating-container {
  right: auto;
  left: 2rem;
}

html[lang="ar"] .footer-content {
  text-align: right;
}

html[lang="ar"] .wa-popover {
  right: auto;
  left: 0;
}


html {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  background-color: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  overflow-wrap: break-word;
  word-break: break-word;
}

p, span, a, button {
  overflow-wrap: break-word;
}

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

/* Utilities */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--accent-silver);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--accent-gold);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 4rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition-fast);
  border-radius: 2px;
}

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

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
}

.btn-outline:hover {
  background-color: var(--accent-gold);
  color: var(--primary-bg);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition-fast);
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-primary);
  letter-spacing: 2px;
  text-decoration: none;
}

.logo span {
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Dropdown Language Toggle */
.lang-toggle-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
  min-width: 60px;
}

.dropdown-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-gold);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  min-width: 120px;
  list-style: none;
  padding: 0.5rem 0;
  z-index: 2000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lang-toggle-dropdown:hover .dropdown-menu,
.lang-toggle-dropdown.active .dropdown-menu {
  display: block;
  animation: fadeIn 0.2s ease;
}

.dropdown-menu li {
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dropdown-menu li:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-gold);
}

.dropdown-menu li.active {
  color: var(--text-primary);
  font-weight: 600;
  background: rgba(212, 175, 55, 0.1);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-links a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent-gold);
  transition: var(--transition-fast);
}

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

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger Menu & Mobile Overlay */
.hamburger {
  display: none;
  cursor: pointer;
  z-index: 2000;
}

.bar {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: var(--text-primary);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1500;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-slow);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
}

.mobile-lang-toggle {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 1600;
}

.mobile-nav-links li {
  margin: 2rem 0;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-slow);
}

.mobile-menu-overlay.active .mobile-nav-links li {
  transform: translateY(0);
  opacity: 1;
}

/* Delay for each list item animation */
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }

.mobile-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mobile-link:hover {
  color: var(--accent-gold);
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(10,10,10,1)), url('https://images.unsplash.com/photo-1603584173870-7f23fdae1b7a?q=80&w=2500&auto=format&fit=crop') center/cover no-repeat;
  z-index: -1;
  transform: scale(1.05);
  animation: heroZoom 20s infinite alternate linear;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-content {
  max-width: 800px;
  padding: 0 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--transition-slow) forwards;
  animation-delay: 0.5s;
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
}


/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--transition-slow) forwards;
  animation-delay: 0.8s;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--accent-gold);
  background: rgba(0, 0, 0, 0.4);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(5px);
}

/* About Section */
.about {
  padding: 8rem 0;
  background-color: var(--primary-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}

.stat-item h4 {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-silver);
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}


/* Marquee Section */
.marquee-section {
  padding: 3rem 0;
  background: var(--primary-bg);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
  position: relative;
}

.marquee-container {
  display: flex;
  width: 100%;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-content span {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.2);
  margin: 0 3rem;
  letter-spacing: 2px;
  transition: var(--transition-fast);
}

.marquee-content span:hover {
  color: var(--accent-gold);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

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

/* Process Section */
.process {
  padding: 8rem 0;
  background-color: var(--primary-bg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--glass-border);
  z-index: 0;
  display: none; /* Hide on mobile */
}

@media (min-width: 1024px) {
  .process-grid::before {
    display: block;
  }
}

.process-step {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 3rem 2rem;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  text-align: center;
  transition: var(--transition-fast);
  overflow: hidden;
}

.process-step:hover {
  transform: translateY(-10px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.process-step::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(212,175,55,0.1), transparent);
  opacity: 0;
  transition: var(--transition-fast);
}

.process-step:hover::after {
  opacity: 1;
}

.step-num {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

.process-step h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.process-step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}

/* Collection Section */
.collection {
  padding: 8rem 0;
  background-color: var(--secondary-bg);
}

.car-grid {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  padding: 0 5%;
}

.car-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.car-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
  opacity: 0.85;
}

.car-card:hover img {
  transform: scale(1.03);
  opacity: 0.6;
}

.car-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5rem 3rem 3rem 3rem;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  transform: translateY(20px);
  transition: var(--transition-slow);
}

.car-card:hover .car-info {
  transform: translateY(0);
}

.car-info h4 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  letter-spacing: 0.25em;
  margin-bottom: 0.8rem;
  white-space: nowrap;
}

.car-info p {
  font-family: var(--font-kr);
  color: var(--accent-silver);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.view-details {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-primary);
  opacity: 0;
  transition: var(--transition-fast);
}

.car-card:hover .view-details {
  opacity: 1;
}

/* Services Section */
.services {
  padding: 8rem 0;
  background-color: var(--primary-bg);
}

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

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.service-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Contact Section */
.contact {
  padding: 8rem 0;
  background: linear-gradient(rgba(10,10,10,0.9), rgba(10,10,10,0.9)), url('https://images.unsplash.com/photo-1544829099-b9a0c07fad1a?q=80&w=2500&auto=format&fit=crop') center/cover fixed;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 4rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group.half {
  flex: 1;
  margin-bottom: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(0,0,0,0.8);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  margin-top: 1rem;
}

/* Footer */
footer {
  background-color: #000;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-col h4 {
  font-size: 1.2rem;
  color: var(--accent-silver);
  margin-bottom: 1.5rem;
}

.footer-col p, .footer-col a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  display: block;
  transition: var(--transition-fast);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--text-secondary);
  font-size: 0.8rem;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, visibility;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-image img {
    aspect-ratio: 16 / 9;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  .container {
    padding: 0 1.2rem;
  }
  .hamburger {
    display: block;
  }
  .nav-links { 
    display: none; 
  }
  .nav-right {
    gap: 0.8rem;
  }
  .dropdown-btn {
    min-width: 48px;
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
  }
  .mobile-lang-toggle .dropdown-menu {
    left: 0;
    right: auto;
  }
  .hero {
    height: auto;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .hero h1 { 
    font-size: 2.2rem; 
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1rem;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
  }
  .logo {
    font-size: 1.15rem;
    letter-spacing: 1px;
    white-space: nowrap;
  }
  .hero p {
    font-size: 1rem;
    padding: 0 1rem;
    margin-bottom: 9rem;
  }
  .about, .collection, .services, .contact {
    padding: 6rem 0;
  }
  .section-title {
    font-size: 1.8rem;
    letter-spacing: 2px;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
  }
  .step-card h3, .service-card h3, .cat-info h3 {
    font-size: 1.25rem;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
  }
  .section-subtitle {
    margin-bottom: 3rem;
  }
  .service-grid, .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .car-grid {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 0 1.5rem 1.5rem 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .car-grid::-webkit-scrollbar {
    display: none;
  }
  .car-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    aspect-ratio: auto;
    height: 450px;
    border-radius: 4px;
  }
  .car-info {
    padding: 3rem 1.5rem 1.5rem 1.5rem;
  }
  .car-info h4 {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    white-space: normal;
  }
  .car-info p {
    font-size: 1rem;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .form-group.half {
    margin-bottom: 1.5rem;
  }
  .contact-form {
    padding: 2.5rem 1.5rem;
  }
  .stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: center;
  }
  .stat-item:last-child {
    grid-column: span 2;
  }
}

/* Touch Device Optimizations */
@media (hover: none) {
  .car-card img {
    opacity: 0.6;
  }
  .car-info {
    transform: translateY(0);
    background: linear-gradient(transparent, rgba(0,0,0,0.95));
  }
  .view-details {
    opacity: 1;
    color: var(--accent-gold);
  }
}

/* WhatsApp Integration */
.wa-fallback {
  text-align: center;
  margin-top: 1.5rem;
}

.wa-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  border-bottom: 1px solid transparent;
}

.wa-text-link:hover {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
}

.wa-floating-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.wa-popover {
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
  width: max-content;
  min-width: 210px;
  max-width: calc(100vw - 2rem);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transform-origin: bottom right;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-popover.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wa-popover-header {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.wa-popover-link {
  display: flex;
  flex-direction: column;
  padding: 0.8rem;
  border-radius: 6px;
  background: rgba(255,255,255,0.02);
  transition: var(--transition-fast);
  text-decoration: none;
}

.wa-popover-link:hover {
  background: rgba(212, 175, 55, 0.1);
}

.wa-popover-link .wa-name {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.wa-popover-link .wa-role {
  color: var(--text-secondary);
  font-size: 0.82rem;
  letter-spacing: 0.3px;
}

.wa-floating-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 1rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--text-primary);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.wa-floating-btn .wa-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}

.wa-floating-btn .wa-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
  .wa-floating-btn:hover {
    border-color: var(--accent-gold);
    background: rgba(20, 20, 20, 0.9);
    padding: 1rem 1.5rem 1rem 1rem;
  }

  .wa-floating-btn:hover .wa-text {
    max-width: 200px;
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .wa-floating-container {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .wa-floating-btn {
    padding: 0.8rem 1.2rem;
  }
  .wa-floating-btn .wa-text {
    max-width: 150px;
    opacity: 1;
    font-size: 0.85rem;
  }
}

/* Hero Actions & Buttons */
.hero-actions {
  position: relative;
  z-index: 10;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--accent-gold);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Reviews Page Styles */
.reviews-section {
  padding: 8rem 0 4rem;
  background-color: var(--primary-bg);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: 8px;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.reviewer-id {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.reviewer-country {
  font-size: 0.75rem;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.05);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.review-stars {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.review-date {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-align: right;
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.marquee-content span.active {
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}