/* ═══════════════════════════════════════════════════════════════════════════════
   CAPITAL AFRICA LOGISTICS - Main Stylesheet v5.0
   Fixed: Clean logo, standards with images, single ticker
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════════
   CSS VARIABLES
   ═══════════════════════════════════════════════════════════════════════════════ */
:root {
  /* Brand Colors */
  --gold: #C9A962;
  --gold-light: #D4B978;
  --gold-dark: #B8944D;
  --gold-glow: rgba(201, 169, 98, 0.4);
  
  /* Blacks & Grays */
  --black: #000000;
  --rich-black: #0a0a0a;
  --charcoal: #1a1a1a;
  --dark-gray: #252525;
  --medium-gray: #333333;
  --gray-500: #6b6b6b;
  --gray-400: #888888;
  --gray-300: #aaaaaa;
  --white: #ffffff;
  --off-white: #f5f5f5;
  
  /* Semantic Colors */
  --success: #4CAF50;
  --error: #E53935;
  --warning: #FF9800;
  --info: #2196F3;
  
  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Spacing */
  --section-padding: 100px;
  --container-width: 1400px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 30px rgba(201, 169, 98, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background: var(--rich-black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

ul, ol {
  list-style: none;
}

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

input, textarea {
  font-family: inherit;
  border: none;
  outline: none;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════════════════════ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 30px;
}

section {
  position: relative;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-label.center {
  justify-content: center;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-400);
  max-width: 700px;
}

.section-subtitle.center {
  text-align: center;
  margin: 0 auto 50px;
}

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

.section-header-lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.header-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 35px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
}

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

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

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

.btn-glow {
  box-shadow: 0 0 20px var(--gold-glow);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   LOADER - FULL PREMIUM ANIMATION
   ═══════════════════════════════════════════════════════════════════════════════ */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--rich-black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Floating Particles */
.loader-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 4s ease-in-out infinite;
}

.particle:nth-child(1) { left: 5%; animation-delay: 0s; }
.particle:nth-child(2) { left: 15%; animation-delay: 0.3s; }
.particle:nth-child(3) { left: 25%; animation-delay: 0.6s; }
.particle:nth-child(4) { left: 35%; animation-delay: 0.9s; }
.particle:nth-child(5) { left: 45%; animation-delay: 1.2s; }
.particle:nth-child(6) { left: 55%; animation-delay: 1.5s; }
.particle:nth-child(7) { left: 65%; animation-delay: 1.8s; }
.particle:nth-child(8) { left: 75%; animation-delay: 2.1s; }
.particle:nth-child(9) { left: 85%; animation-delay: 2.4s; }
.particle:nth-child(10) { left: 95%; animation-delay: 2.7s; }
.particle:nth-child(11) { left: 10%; animation-delay: 3s; }
.particle:nth-child(12) { left: 90%; animation-delay: 3.3s; }

@keyframes particleFloat {
  0% { 
    bottom: -10px; 
    opacity: 0; 
    transform: translateX(0) scale(0.5);
  }
  10% {
    opacity: 0.8;
  }
  50% {
    transform: translateX(20px) scale(1);
  }
  90% {
    opacity: 0.8;
  }
  100% { 
    bottom: 100%; 
    opacity: 0; 
    transform: translateX(-20px) scale(0.5);
  }
}

/* Decorative Lines */
.loader-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.loader-lines .line {
  position: absolute;
  top: 50%;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  animation: lineExpand 2s ease-out forwards;
}

.loader-lines .line-left {
  right: 55%;
  animation-delay: 0.5s;
}

.loader-lines .line-right {
  left: 55%;
  animation-delay: 0.5s;
}

@keyframes lineExpand {
  0% {
    width: 0;
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    width: 200px;
    opacity: 0.3;
  }
}

.loader-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.loader-logo-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

/* Rotating Rings */
.logo-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: ringRotate 2s linear infinite;
}

.logo-ring.ring-2 {
  width: 85%;
  height: 85%;
  border-top-color: transparent;
  border-right-color: var(--gold-light);
  animation-direction: reverse;
  animation-duration: 1.5s;
}

.logo-ring.ring-3 {
  width: 70%;
  height: 70%;
  border-top-color: transparent;
  border-bottom-color: var(--gold-dark);
  animation-duration: 2.5s;
}

@keyframes ringRotate {
  to { transform: rotate(360deg); }
}

/* Logo - Clean, no box */
.loader-logo {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none !important;
  border: none !important;
  animation: logoReveal 1s ease-out forwards;
  opacity: 0;
  transform: scale(0.8);
}

@keyframes logoReveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.loader-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(201, 169, 98, 0.4));
  background: none !important;
  border: none !important;
}

/* Logo Shine Effect */
.logo-shine {
  position: absolute;
  width: 150%;
  height: 30px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(-45deg) translateX(-200%);
  animation: logoShine 3s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes logoShine {
  0% {
    transform: rotate(-45deg) translateX(-200%);
  }
  30%, 100% {
    transform: rotate(-45deg) translateX(200%);
  }
}

/* Fallback Text Logo */
.logo-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1;
}

.fallback-main {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fallback-sub {
  font-size: 0.6rem;
  letter-spacing: 6px;
  color: var(--gold);
  font-weight: 600;
  margin-top: 4px;
}

/* Animated Tagline */
.loader-tagline {
  display: flex;
  gap: 3px;
  margin-bottom: 30px;
}

.loader-tagline span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gray-400);
  opacity: 0;
  transform: translateY(10px);
  animation: taglineFade 0.5s ease forwards;
}

.loader-tagline span:nth-child(1) { animation-delay: 0.6s; }
.loader-tagline span:nth-child(2) { animation-delay: 0.65s; }
.loader-tagline span:nth-child(3) { animation-delay: 0.7s; }
.loader-tagline span:nth-child(4) { animation-delay: 0.75s; }
.loader-tagline span:nth-child(5) { animation-delay: 0.8s; }
.loader-tagline span:nth-child(7) { animation-delay: 0.9s; }
.loader-tagline span:nth-child(8) { animation-delay: 0.95s; }
.loader-tagline span:nth-child(9) { animation-delay: 1s; }
.loader-tagline span:nth-child(10) { animation-delay: 1.05s; }
.loader-tagline span:nth-child(11) { animation-delay: 1.1s; }
.loader-tagline span:nth-child(12) { animation-delay: 1.15s; }
.loader-tagline span:nth-child(14) { animation-delay: 1.25s; }
.loader-tagline span:nth-child(15) { animation-delay: 1.3s; }
.loader-tagline span:nth-child(16) { animation-delay: 1.35s; }
.loader-tagline span:nth-child(17) { animation-delay: 1.4s; }
.loader-tagline span:nth-child(18) { animation-delay: 1.45s; }
.loader-tagline span:nth-child(19) { animation-delay: 1.5s; }
.loader-tagline span:nth-child(20) { animation-delay: 1.55s; }

.loader-tagline .dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  align-self: center;
  margin: 0 12px;
  animation: dotPulse 1.5s ease infinite;
  animation-delay: 1.6s;
}

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

@keyframes dotPulse {
  0%, 100% { 
    transform: scale(1); 
    opacity: 0.8;
  }
  50% { 
    transform: scale(1.3); 
    opacity: 1;
  }
}

/* Progress Bar */
.loader-bar {
  width: 220px;
  height: 3px;
  background: var(--dark-gray);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 20px;
}

.loader-progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 3px;
  animation: loaderProgress 3.5s ease forwards;
  box-shadow: 0 0 10px var(--gold-glow);
}

@keyframes loaderProgress {
  0% { width: 0; }
  20% { width: 20%; }
  40% { width: 45%; }
  60% { width: 70%; }
  80% { width: 85%; }
  100% { width: 100%; }
}

/* Loading Text */
.loader-text {
  font-size: 0.75rem;
  color: var(--gray-500);
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  animation: textFade 1s ease forwards;
  animation-delay: 0.8s;
}

@keyframes textFade {
  to { opacity: 0.7; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   PRICE TICKER - SINGLE (No duplicate styling)
   ═══════════════════════════════════════════════════════════════════════════════ */
.price-ticker {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(135deg, var(--charcoal), var(--dark-gray));
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.price-ticker.hidden {
  transform: translateY(-100%);
}

.ticker-container {
  max-width: 100%;
  height: 100%;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  height: 100%;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 20px;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}

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

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ticker-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 1px;
}

.ticker-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
}

.ticker-change {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 3px;
}

.ticker-change.positive {
  color: var(--success);
  background: rgba(76, 175, 80, 0.15);
}

.ticker-change.negative {
  color: var(--error);
  background: rgba(229, 57, 53, 0.15);
}

.ticker-divider {
  width: 1px;
  height: 20px;
  background: rgba(201, 169, 98, 0.3);
}

.ticker-time-item {
  gap: 8px;
}

.ticker-time {
  font-size: 0.75rem;
  color: var(--gray-400);
}

.ticker-status {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--success);
  background: rgba(76, 175, 80, 0.15);
  padding: 2px 6px;
  border-radius: 3px;
}

.pulse-icon {
  color: var(--success);
  animation: pulse 2s ease infinite;
}

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

/* ═══════════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 999;
  transition: var(--transition-base);
}

.navbar.scrolled {
  top: 0;
  padding: 15px 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

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

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-text-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 5px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 2px;
  padding-left: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.5px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown .nav-link i {
  font-size: 0.7rem;
  margin-left: 5px;
  transition: var(--transition-base);
}

.nav-dropdown:hover .nav-link i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 250px;
  background: var(--charcoal);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 8px;
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-base);
  box-shadow: var(--shadow-lg);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 25px;
  font-size: 0.9rem;
  color: var(--gray-300);
  transition: var(--transition-base);
}

.dropdown-menu a:hover {
  background: rgba(201, 169, 98, 0.1);
  color: var(--gold);
}

.dropdown-menu a i {
  width: 20px;
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-track {
  display: flex;
  background: var(--dark-gray);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.2);
}

.nav-track input {
  width: 160px;
  padding: 10px 15px;
  background: transparent;
  color: var(--white);
  font-size: 0.85rem;
}

.nav-track input::placeholder {
  color: var(--gray-500);
}

.nav-track button {
  padding: 10px 15px;
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition-base);
}

.nav-track button:hover {
  background: var(--gold-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   MOBILE MENU
   ═══════════════════════════════════════════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--rich-black);
  z-index: 998;
  transition: right 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-content {
  text-align: center;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  transition: var(--transition-base);
}

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

/* ═══════════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-bg {
  width: 100%;
  height: 100%;
}

.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 10s ease infinite alternate;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 30px;
  margin-left: 10%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid rgba(201, 169, 98, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 30px;
}

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

.hero-badge span {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 1px;
}

.hero-text {
  margin-bottom: 30px;
}

.hero-line {
  overflow: hidden;
}

.hero-line-inner {
  transform: translateY(100%);
  animation: slideUp 0.8s ease forwards;
}

.hero-line-inner:nth-child(1) { animation-delay: 0.2s; }
.hero-line-inner:nth-child(2) { animation-delay: 0.4s; }
.hero-line-inner:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideUp {
  to { transform: translateY(0); }
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
}

.hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

.hero-title .gold {
  color: var(--gold);
}

.hero-subtitle-wrapper {
  margin-bottom: 40px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-300);
  line-height: 1.8;
  max-width: 600px;
  transition: var(--transition-base);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
}

.trust-icon {
  color: var(--success);
}

.trust-badge span {
  font-size: 0.85rem;
  color: var(--gray-300);
}

.hero-indicators {
  position: absolute;
  bottom: 100px;
  right: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 3;
}

.indicator-track {
  display: flex;
  gap: 10px;
}

.indicator {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.indicator-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--gold);
  border-radius: 2px;
}

.indicator.active .indicator-fill {
  animation: indicatorProgress 5s linear forwards;
}

@keyframes indicatorProgress {
  to { width: 100%; }
}

.indicator-counter {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.current-slide {
  color: var(--gold);
  font-weight: 600;
}

.divider {
  color: var(--gray-500);
}

.total-slides {
  color: var(--gray-500);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.hero-scroll span {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--gray-400);
  text-transform: uppercase;
}

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

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.5; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   ABOUT SECTION - WITH VIDEO
   ═══════════════════════════════════════════════════════════════════════════════ */
.about-section {
  padding: var(--section-padding) 0;
  background: var(--rich-black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 60px;
}

.about-content .section-title {
  margin-bottom: 30px;
}

.section-text {
  font-size: 1.05rem;
  color: var(--gray-300);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 40px 0;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--charcoal);
  border-radius: 8px;
  border: 1px solid rgba(201, 169, 98, 0.1);
  transition: var(--transition-base);
}

.highlight-item:hover {
  border-color: var(--gold);
  transform: translateX(10px);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon i {
  font-size: 1.2rem;
  color: var(--black);
}

.highlight-text h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}

.highlight-text p {
  font-size: 0.9rem;
  color: var(--gray-400);
}

/* Video Wrapper - Replaces fake stat */
.about-media {
  position: relative;
}

.about-video-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-poster {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.play-btn {
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 0 30px var(--gold-glow);
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 50px var(--gold-glow);
}

.play-btn i {
  font-size: 1.5rem;
  color: var(--black);
  margin-left: 5px;
}

.video-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}

.image-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid var(--gold);
}

.image-corner.top-left { top: 15px; left: 15px; border-right: none; border-bottom: none; }
.image-corner.top-right { top: 15px; right: 15px; border-left: none; border-bottom: none; }
.image-corner.bottom-left { bottom: 15px; left: 15px; border-right: none; border-top: none; }
.image-corner.bottom-right { bottom: 15px; right: 15px; border-left: none; border-top: none; }

.trust-banner {
  text-align: center;
  padding: 30px;
  background: var(--charcoal);
  border-radius: 8px;
  border: 1px solid rgba(201, 169, 98, 0.2);
}

.trust-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.services-section {
  padding-bottom: var(--section-padding);
}

.services-banner {
  position: relative;
  height: 500px;
  margin-bottom: 60px;
  overflow: hidden;
}

.banner-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.banner-slide.active {
  opacity: 1;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: var(--container-width);
  margin: 0 auto 30px;
  padding: 0 30px;
}

.services-grid-secondary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 30px;
}

.service-card {
  position: relative;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
}

.services-grid-secondary .service-card {
  height: 320px;
}

.service-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.service-card:hover .service-bg {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  transition: var(--transition-base);
}

.service-card:hover .service-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.98) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 2;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 1.5rem;
  color: var(--black);
}

.service-title {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 15px;
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-base);
}

.service-card:hover .service-link {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   PROCESS SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.process-section {
  padding: var(--section-padding) 0;
  background: var(--charcoal);
}

.process-header {
  text-align: center;
  margin-bottom: 60px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  background: var(--dark-gray);
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 98, 0.1);
  transition: var(--transition-base);
  position: relative;
}

.process-step:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--dark-gray);
  padding: 5px 15px;
  border-radius: 20px;
  border: 2px solid var(--gold);
}

.step-image {
  width: 100%;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  margin: 20px 0;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

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

/* ═══════════════════════════════════════════════════════════════════════════════
   COUNTRIES SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.countries-section {
  padding: var(--section-padding) 0;
  background: var(--rich-black);
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.country-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--charcoal);
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 98, 0.1);
  transition: var(--transition-base);
}

.country-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.country-flag {
  width: 80px;
  height: 50px;
  margin: 0 auto 20px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.country-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.country-card p {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   WHY SECTION - WITH IMAGES
   ═══════════════════════════════════════════════════════════════════════════════ */
.why-section {
  padding: var(--section-padding) 0;
  background: var(--charcoal);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.why-card {
  background: var(--dark-gray);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.1);
  transition: var(--transition-base);
}

.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.why-image {
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.why-card:hover .why-image img {
  transform: scale(1.1);
}

.why-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  padding: 20px 20px 10px;
}

.why-desc {
  font-size: 0.85rem;
  color: var(--gray-400);
  padding: 0 20px 20px;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   STANDARDS SECTION - WITH IMAGES (NOT ICONS)
   ═══════════════════════════════════════════════════════════════════════════════ */
.standards-section {
  padding: var(--section-padding) 0;
  background: var(--rich-black);
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.standard-card {
  background: var(--charcoal);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.1);
  transition: var(--transition-base);
}

.standard-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

/* IMAGE instead of icon */
.standard-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.standard-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.standard-card:hover .standard-image img {
  transform: scale(1.1);
}

.standard-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  padding: 25px 25px 10px;
}

.standard-desc {
  font-size: 0.9rem;
  color: var(--gray-400);
  padding: 0 25px 25px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.cta-section {
  padding: 120px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 50%, rgba(201, 169, 98, 0.05) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(201, 169, 98, 0.05) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.1rem;
  color: var(--gray-400);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-trust span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-400);
}

.cta-trust i {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FOOTER - CLEAN LOGO
   ═══════════════════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--rich-black);
  border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.footer-main {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
}

.footer-brand {
  max-width: 350px;
}

/* CLEAN FOOTER LOGO - No box, no background */
.footer-logo {
  display: inline-block;
  margin-bottom: 25px;
}

.footer-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  /* NO BACKGROUND - just drop shadow for visibility */
  filter: drop-shadow(0 0 15px rgba(201, 169, 98, 0.2));
  background: none !important;
  border: none !important;
}

.footer-logo-fallback {
  display: none;
  flex-direction: column;
  line-height: 1;
}

.footer-fallback-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-fallback-sub {
  font-size: 0.6rem;
  letter-spacing: 5px;
  color: var(--gold);
  font-weight: 600;
  margin-top: 4px;
}

.footer-brand p {
  color: var(--gray-400);
  margin-bottom: 25px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-base);
}

/* LinkedIn - Blue */
.footer-social a[aria-label="LinkedIn"] {
  background: #0A66C2;
  color: var(--white);
}

.footer-social a[aria-label="LinkedIn"]:hover {
  background: #004182;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(10, 102, 194, 0.4);
}

/* Twitter/X - Black */
.footer-social a[aria-label="Twitter"] {
  background: #000000;
  color: var(--white);
}

.footer-social a[aria-label="Twitter"]:hover {
  background: #333333;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* WhatsApp - Green */
.footer-social a[aria-label="WhatsApp"] {
  background: #25D366;
  color: var(--white);
}

.footer-social a[aria-label="WhatsApp"]:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.footer-column h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul a {
  color: var(--gray-400);
  font-size: 0.95rem;
  transition: var(--transition-base);
}

.footer-column ul a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 4px;
}

.footer-contact-item span,
.footer-contact-item a {
  color: var(--gray-400);
  font-size: 0.95rem;
}

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

.footer-bottom {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 30px;
}

.footer-legal a {
  color: var(--gray-500);
  font-size: 0.9rem;
}

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

/* ═══════════════════════════════════════════════════════════════════════════════
   FLOATING BUTTONS & CHAT
   ═══════════════════════════════════════════════════════════════════════════════ */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 997;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  position: relative;
}

.chat-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-label {
  position: absolute;
  right: 70px;
  background: var(--charcoal);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.float-btn:hover .float-label {
  opacity: 1;
  visibility: visible;
}

.chat-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: chatPulse 2s ease infinite;
}

@keyframes chatPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 380px;
  background: var(--charcoal);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-base);
}

.chat-widget.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.chat-avatar {
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-avatar i {
  font-size: 1.2rem;
  color: var(--black);
}

.chat-header h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.7);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.chat-close {
  width: 35px;
  height: 35px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: var(--transition-base);
}

.chat-close:hover {
  background: rgba(0, 0, 0, 0.2);
}

.chat-body {
  height: 300px;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.chat-message {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 12px;
}

.chat-message.incoming {
  background: var(--dark-gray);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-message.outgoing {
  background: var(--gold);
  color: var(--black);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-message p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.chat-time {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 5px;
  display: block;
}

.chat-footer {
  display: flex;
  padding: 15px;
  background: var(--dark-gray);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-footer input {
  flex: 1;
  padding: 12px 15px;
  background: var(--charcoal);
  border-radius: 25px;
  color: var(--white);
  font-size: 0.9rem;
}

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

.chat-footer button {
  width: 45px;
  height: 45px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: var(--transition-base);
}

.chat-footer button:hover {
  background: var(--gold-light);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--charcoal);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  z-index: 996;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--black);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1400px) {
  .services-grid-secondary {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .countries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1200px) {
  .nav-menu {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-actions {
    display: none;
  }
  
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .standards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px;
  }
  
  .hero-content {
    margin-left: 0;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .hero-indicators {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .services-grid,
  .services-grid-secondary {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .standards-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .chat-widget {
    width: calc(100% - 60px);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 0.85rem;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .countries-grid {
    grid-template-columns: 1fr;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-trust {
    flex-direction: column;
    gap: 15px;
  }
  
  .floating-buttons {
    bottom: 20px;
    right: 20px;
  }
  
  .float-btn {
    width: 55px;
    height: 55px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════════════════════════ */
.animate {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Print Styles */
@media print {
  .loader,
  .price-ticker,
  .navbar,
  .mobile-menu,
  .floating-buttons,
  .chat-widget,
  .back-to-top {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
}