@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Cuneiform&display=swap');

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

/* Custom Historical Cursor */
* {
  cursor: none;
}

/* Hide cursor on mobile devices */
@media (max-width: 768px) {
  * {
    cursor: none !important;
  }
  
  body {
    cursor: none !important;
  }
  
  a, button, input, textarea, select {
    cursor: none !important;
  }
  
  /* Ensure no cursor appears on touch devices */
  .custom-cursor {
    display: none !important;
  }
}

/* Additional touch device detection */
@media (hover: none) and (pointer: coarse) {
  * {
    cursor: none !important;
  }
  
  .custom-cursor {
    display: none !important;
  }
}

/* Hide cursor for very small screens */
@media (max-width: 480px) {
  * {
    cursor: none !important;
  }
  
  .custom-cursor {
    display: none !important;
  }
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.1s ease-out, opacity 0.2s ease;
  will-change: transform;
}

.cursor-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #E8B86D;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease-out;
  will-change: transform;
}

.cursor-outline {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  border: 2px solid #E8B86D;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-out;
  opacity: 0.7;
  will-change: transform;
}

.cursor-cuneiform {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: 'Noto Sans Cuneiform', serif;
  font-size: 16px;
  color: #E8B86D;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s ease;
  animation: cuneiformRotate 4s linear infinite;
}

@keyframes cuneiformRotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Cursor hover states */
.custom-cursor.hover {
  transform: scale(1.5);
}

.custom-cursor.hover .cursor-dot {
  background: #E8B86D;
  transform: translate(-50%, -50%) scale(1.2);
}

.custom-cursor.hover .cursor-outline {
  border-color: #E8B86D;
  transform: translate(-50%, -50%) scale(1.3);
  opacity: 1;
}

.custom-cursor.hover .cursor-cuneiform {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
  animation-duration: 2s;
}

/* Cursor click state */
.custom-cursor.click {
  transform: scale(0.8);
}

.custom-cursor.click .cursor-dot {
  background: #E8B86D;
  transform: translate(-50%, -50%) scale(0.8);
}

.custom-cursor.click .cursor-outline {
  border-color: #E8B86D;
  transform: translate(-50%, -50%) scale(0.7);
}

/* Text selection cursor */
.custom-cursor.text {
  width: 2px;
  height: 20px;
  background: #E8B86D;
  border-radius: 1px;
}

.custom-cursor.text .cursor-dot,
.custom-cursor.text .cursor-outline,
.custom-cursor.text .cursor-cuneiform {
  display: none;
}

body {
  font-family: "Inter", sans-serif;
  transition: font-family 0.3s ease;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(232, 184, 109, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(232, 184, 109, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(232, 184, 109, 0.05) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
  animation: backgroundPulse 8s ease-in-out infinite;
}

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

body.rtl {
  font-family: "Cairo", "Tajawal", "Amiri", sans-serif;
  letter-spacing: 0;
  word-spacing: 0.1em;
  line-height: 1.8;
}

/* Arabic text improvements */
body.rtl .text h1,
body.rtl .text h2 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

body.rtl .section-header h2 {
  font-weight: 700;
  letter-spacing: -0.01em;
}

body.rtl p,
body.rtl .service-card p,
body.rtl .about-text p {
  line-height: 1.9;
  font-weight: 400;
}

body.rtl .btn {
  font-weight: 600;
  letter-spacing: 0;
}

body.rtl .nav-links a,
body.rtl .nav-actions a {
  font-weight: 500;
  letter-spacing: 0;
}

/* English text improvements */
body.ltr .text h1,
body.ltr .text h2 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

body.ltr .section-header h2 {
  font-weight: 700;
  letter-spacing: -0.01em;
}

body.ltr p,
body.ltr .service-card p,
body.ltr .about-text p {
  line-height: 1.7;
  font-weight: 400;
}

body.ltr .btn {
  font-weight: 600;
  letter-spacing: 0.5px;
}

body.ltr .nav-links a,
body.ltr .nav-actions a {
  font-weight: 500;
  letter-spacing: 0.5px;
}

::selection {
  background-color: #0b372dbb;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: white;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.logo a:hover {
  transform: scale(1.05);
  color: #ffd700;
}

.logo-image {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.logo span {
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
}

header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  padding: 0.9rem 0;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  padding: 0.6rem 0;
}

header nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0.5rem;
}

.nav-actions {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0.5rem;
}

header ul a {
  text-decoration: none;
  color: #fff;
  padding: 0 1.5rem;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 0.83rem;
}

.search a {
  font-size: 1.05rem;
  padding: 0 3rem;
}

.hamburger {
  padding-left: 1.5rem;
  display: none;
  top: 30% !important;
  transform: translateY(-30%) !important;
}

.hamburger a {
  padding: 0;
  width: 37px;
  height: 37px;
  display: flex;
  border-radius: 50% 0 0 50% !important;
  background-color: rgba(115, 115, 115, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
}

.hamburger .bar {
  position: relative;
  width: 52%;
  height: 1.3px;
  background-color: #fff;
  border-radius: 2px;
}

.hamburger .bar::before,
.hamburger .bar::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 100%;
  background-color: inherit;
  border-radius: 2px;
}

.hamburger .bar::before {
  top: -4.5px;
}

.hamburger .bar::after {
  top: 4.5px;
}

main {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.parallax {
  pointer-events: none;
  transition: none;
}

.bg-img {
  position: absolute;
  width: 200%;
  top: 1.86%;
  left: 50.69%;
  z-index: 1;
}

.fog-7 {
  position: absolute;
  z-index: 2;
  top: 37.7%;
  left: 70.8%;
  width: 132%;
}

.mountain-10 {
  position: absolute;
  z-index: 3;
  top: 63.58%;
  /* width: 71.52%; */
  left: 67.84%;
}

.fog-6 {
  position: absolute;
  z-index: 4;
  top: 62.09%;
  left: 50.4%;
  width: 129.3%;
}

.mountain-9 {
  position: absolute;
  z-index: 5;
  top: 80.95%;
  /* width: 32.63%; */
  left: 18.3%;
}

.mountain-8 {
  position: absolute;
  z-index: 6;
  top: 80.6%;
  /* width: 56.25%; */
  left: 36%;
}

.fog-5 {
  position: absolute;
  z-index: 7;
  top: 69.7%;
  left: 51.3%;
  width: 31.25%;
}

.mountain-7 {
  position: absolute;
  z-index: 8;
  /* width: 37.36%; */
  top: 65.18%;
  left: 71.18%;
}

.text {
  position: absolute;
  z-index: 25;
  top: 34%;
  left: 50%;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  pointer-events: auto;
}

.text h2 {
  font-weight: 100;
  font-size: 2.8rem;
  line-height: 0.88;
}

.text h1 {
  font-weight: 800;
  line-height: 0.88;
  font-size: 7.7rem;
}

.mountain-6 {
  position: absolute;
  z-index: 10;
  top: 70.4%;
  /* width: 28.33%; */
  left: 90.97%;
}

.fog-4 {
  position: absolute;
  z-index: 11;
  top: 77.7%;
  left: 45.84%;
  width: 40.27%;
}

.mountain-5 {
  position: absolute;
  z-index: 12;
  top: 80.86%;
  width: 23.4%;
  left: 50%;
}

.fog-3 {
  position: absolute;
  z-index: 13;
  top: 63.58%;
  left: 48.27%;
  width: 107.63%;
}

.mountain-4 {
  position: absolute;
  z-index: 14;
  top: 74.19%;
  /* width: 54.16%; */
  left: 23.55%;
}

.mountain-3 {
  position: absolute;
  z-index: 15;
  top: 61.35%;
  left: 101.11%;
  width: 32.22%;
}

.fog-2 {
  position: absolute;
  z-index: 16;
  top: 68.14%;
  left: 48%;
  width: 108.33%;
}

.mountain-2 {
  position: absolute;
  z-index: 17;
  top: 69.01%;
  left: 78.61%;
  /* width: 47.91%; */
}

.mountain-1 {
  position: absolute;
  z-index: 18;
  top: 52%;
  left: 8.27%;
  /* width: 37.15%; */
}

.sun-rays {
  position: absolute;
  z-index: 19;
  top: 0;
  right: 0%;
  width: 41.31%;
  pointer-events: none;
}

.black-shadow {
  position: absolute;
  z-index: 20;
  bottom: 0;
  right: 0%;
  pointer-events: none;
  width: 100%;
}

.fog-1 {
  position: absolute;
  z-index: 21;
  top: 59.26%;
  left: 50.69%;
  width: 111.8%;
}

.vignette {
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0) 65%,
    rgba(0, 0, 0, 0.7)
  );
  pointer-events: none;
}

/* Language Switcher Styles */
.language-switcher {
  display: flex;
  gap: 0.5rem;
}

.language-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.language-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.language-btn.active {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  border-color: rgba(255, 255, 255, 0.9);
}

.signup-btn {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px !important;
  padding: 0.6rem 1.2rem !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.signup-btn:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Section Enhancements */
.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin: 1rem 0 2rem 0;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid rgba(232, 184, 109, 1);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(232, 184, 109, 0.4);
  border: 2px solid rgba(232, 184, 109, 1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 184, 109, 0.6);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(232, 184, 109, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10000;
  transition: right 0.3s ease;
  padding: 2rem 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

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

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  margin: 1.5rem 0;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.language-switcher-mobile {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.language-switcher-mobile .language-btn {
  margin-right: 0.5rem;
}

/* Sections Styling */
section {
  padding: 5rem 0;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(232, 184, 109, 0.6),
    0 0 50px rgba(232, 184, 109, 0.3);
  animation: titleGlow 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-header p {
  font-size: 1.6rem;
  color: #E8B86D;
  font-weight: 600;
  letter-spacing: 2px;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.8),
    0 0 15px rgba(232, 184, 109, 0.4);
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  margin-top: 1rem;
}

/* About Section */
.about-section {
  background: transparent;
  position: relative;
  overflow: hidden;
}

@keyframes backgroundPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(232, 184, 109, 0.3);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

.section-header p {
  font-size: 1.3rem;
  color: #E8B86D;
  font-weight: 300;
  letter-spacing: 1px;
  animation: subtitleFloat 4s ease-in-out infinite;
}

@keyframes titleGlow {
  0%, 100% { 
    color: #ffffff;
    text-shadow: 
      0 4px 8px rgba(0, 0, 0, 0.8),
      0 0 30px rgba(232, 184, 109, 0.6),
      0 0 50px rgba(232, 184, 109, 0.3);
  }
  50% { 
    color: #E8B86D;
    text-shadow: 
      0 4px 8px rgba(0, 0, 0, 0.8),
      0 0 40px rgba(232, 184, 109, 0.8),
      0 0 60px rgba(232, 184, 109, 0.5),
      0 0 80px rgba(232, 184, 109, 0.2);
  }
}

@keyframes subtitleFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

.about-text {
  position: relative;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #e0e0e0;
  position: relative;
  padding-left: 2rem;
  animation: textSlideIn 1s ease-out forwards;
  opacity: 0;
  transform: translateX(-30px);
}

.about-text p:nth-child(1) { animation-delay: 0.2s; }
.about-text p:nth-child(2) { animation-delay: 0.4s; }
.about-text p:nth-child(3) { animation-delay: 0.6s; }

.about-text p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 3px;
  height: 2rem;
  background: linear-gradient(to bottom, #E8B86D, #f39c12);
  border-radius: 2px;
  animation: lineGlow 2s ease-in-out infinite alternate;
}

@keyframes textSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes lineGlow {
  0% { box-shadow: 0 0 5px rgba(232, 184, 109, 0.5); }
  100% { box-shadow: 0 0 15px rgba(232, 184, 109, 0.8), 0 0 25px rgba(232, 184, 109, 0.4); }
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 184, 109, 0.2);
  border-radius: 15px;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: statSlideUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.stat-item:nth-child(1) { animation-delay: 0.8s; }
.stat-item:nth-child(2) { animation-delay: 1s; }
.stat-item:nth-child(3) { animation-delay: 1.2s; }
.stat-item:nth-child(4) { animation-delay: 1.4s; }

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 184, 109, 0.1), transparent);
  transition: left 0.5s ease;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  transform: translateY(-10px);
  border-color: rgba(232, 184, 109, 0.5);
  box-shadow: 0 10px 30px rgba(232, 184, 109, 0.2);
}

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

.stat-item h3 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #E8B86D, #f39c12, #E8B86D);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  animation: gradientShift 3s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(232, 184, 109, 0.3);
  position: relative;
  z-index: 2;
}

.stat-item p {
  font-size: 1rem;
  color: #b0b0b0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .section-header h2 {
    font-size: 3.2rem;
  }
  
  .section-header p {
    font-size: 1.4rem;
  }
  
  .services-section {
    padding: 4rem 0;
  }
  
  .about-text p {
    font-size: 1.1rem;
    padding-left: 1.5rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stat-item {
    padding: 1.5rem 1rem;
  }
  
  .stat-item h3 {
    font-size: 2.5rem;
  }
  
  .about-section .cuneiform-decoration,
  .guarantee-section .cuneiform-decoration {
    font-size: 3rem;
  }
}

/* TradeLocker Platform Section */
.tradelocker-section {
  background: transparent;
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  margin: 6rem 0;
}

.tradelocker-stats {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
  backdrop-filter: blur(20px);
  padding: 4rem 0;
  position: relative;
  z-index: 2;
  border-top: 2px solid rgba(232, 184, 109, 0.3);
  border-bottom: 2px solid rgba(232, 184, 109, 0.3);
}

.tradelocker-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(232, 184, 109, 0.1) 0%, transparent 50%, rgba(232, 184, 109, 0.1) 100%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.tradelocker-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.tradelocker-stats .stat-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 184, 109, 0.2);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  animation: statSlideUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.tradelocker-stats .stat-item:nth-child(1) { animation-delay: 0.2s; }
.tradelocker-stats .stat-item:nth-child(2) { animation-delay: 0.4s; }
.tradelocker-stats .stat-item:nth-child(3) { animation-delay: 0.6s; }
.tradelocker-stats .stat-item:nth-child(4) { animation-delay: 0.8s; }

.tradelocker-stats .stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 184, 109, 0.1), transparent);
  transition: left 0.6s ease;
}

.tradelocker-stats .stat-item:hover::before {
  left: 100%;
}

.tradelocker-stats .stat-item:hover {
  transform: translateY(-10px);
  border-color: rgba(232, 184, 109, 0.5);
  box-shadow: 0 20px 40px rgba(232, 184, 109, 0.2);
}

.tradelocker-stats .stat-item h3 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 30px rgba(232, 184, 109, 0.6);
  background: linear-gradient(45deg, #fff, #E8B86D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tradelocker-stats .stat-item p {
  font-size: 1.1rem;
  color: #E8B86D;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 1.4;
}

.tradelocker-main {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
  backdrop-filter: blur(20px);
  padding: 6rem 0;
  position: relative;
  z-index: 2;
  border-radius: 30px;
  margin: 3rem;
  border: 1px solid rgba(232, 184, 109, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.tradelocker-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
  min-height: 500px;
}

.tradelocker-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.tradelocker-visual::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(45deg, rgba(232, 184, 109, 0.1), transparent, rgba(232, 184, 109, 0.1));
  border-radius: 40px;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

/* Platform Images Container */
.platform-images {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

/* Platform Images */
.platform-image {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(232, 184, 109, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  animation: mockupFloat 6s ease-in-out infinite;
}

.platform-image:hover {
  transform: scale(1.02);
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 2px rgba(232, 184, 109, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Desktop Image - Show on desktop and tablet */
.desktop-image {
  display: block;
}

.mobile-image {
  display: none;
}

/* Mobile Image - Show only on mobile */
@media (max-width: 768px) {
  .desktop-image {
    display: none;
  }
  
  .mobile-image {
    display: block;
  }
  
  .platform-images {
    height: 300px;
    max-width: 100%;
  }
  
  .platform-image {
    border-radius: 10px;
    box-shadow: 
      0 20px 40px rgba(0, 0, 0, 0.3),
      0 0 0 1px rgba(232, 184, 109, 0.2);
  }
}

@media (max-width: 480px) {
  .platform-images {
    height: 250px;
    max-width: 100%;
  }
  
  .platform-image {
    border-radius: 8px;
    box-shadow: 
      0 15px 30px rgba(0, 0, 0, 0.25),
      0 0 0 1px rgba(232, 184, 109, 0.15);
  }
  
  .tradelocker-content {
    gap: 2rem;
  }
}

.platform-mockup {
  width: 600px;
  height: 400px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(232, 184, 109, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  animation: mockupFloat 6s ease-in-out infinite;
}

@keyframes mockupFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

.platform-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(232, 184, 109, 0.05) 50%, transparent 70%);
  animation: scanLine 3s linear infinite;
}

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

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-dots {
  display: flex;
  gap: 8px;
}

.mockup-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #E8B86D;
}

.mockup-title {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}

.trading-interface {
  height: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 20px;
}

.asset-info {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.asset-symbol {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.asset-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #E8B86D;
}

.price-chart {
  grid-column: 1;
  grid-row: 2;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  padding: 15px;
  display: flex;
  flex-direction: column;
  animation: chartContainerGlow 2s ease-out 2s forwards;
  opacity: 0;
}

@keyframes chartContainerGlow {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.chart-title {
  color: #E8B86D;
  font-size: 0.9rem;
  font-weight: 600;
}

.chart-timeframe {
  color: #888;
  font-size: 0.8rem;
}

.chart-area {
  flex: 1;
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  animation: chartAreaGlow 3s ease-in-out infinite alternate;
}

@keyframes chartAreaGlow {
  0% {
    box-shadow: inset 0 0 20px rgba(232, 184, 109, 0.1);
  }
  100% {
    box-shadow: inset 0 0 30px rgba(232, 184, 109, 0.2);
  }
}

.candlestick-chart {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: end;
  justify-content: space-around;
  padding: 10px;
  animation: chartSlideIn 2s ease-out, chartPulse 4s ease-in-out infinite 3s, chartAutoMove 8s ease-in-out infinite 5s;
}

@keyframes chartPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

@keyframes chartAutoMove {
  0%, 100% {
    transform: translateX(0) scale(1);
  }
  25% {
    transform: translateX(5px) scale(1.01);
  }
  50% {
    transform: translateX(0) scale(1.02);
  }
  75% {
    transform: translateX(-5px) scale(1.01);
  }
}

@keyframes chartSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.candlestick {
  width: 8px;
  background: #27ae60;
  position: relative;
  border-radius: 2px;
  margin: 0 2px;
  animation: candlestickGrow 0.8s ease-out forwards, candlestickAutoMove 6s ease-in-out infinite 3s;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
}

.candlestick:nth-child(1) { animation-delay: 0.1s; }
.candlestick:nth-child(2) { animation-delay: 0.2s; }
.candlestick:nth-child(3) { animation-delay: 0.3s; }
.candlestick:nth-child(4) { animation-delay: 0.4s; }
.candlestick:nth-child(5) { animation-delay: 0.5s; }
.candlestick:nth-child(6) { animation-delay: 0.6s; }
.candlestick:nth-child(7) { animation-delay: 0.7s; }
.candlestick:nth-child(8) { animation-delay: 0.8s; }
.candlestick:nth-child(9) { animation-delay: 0.9s; }
.candlestick:nth-child(10) { animation-delay: 1.0s; }
.candlestick:nth-child(11) { animation-delay: 1.1s; }
.candlestick:nth-child(12) { animation-delay: 1.2s; }

@keyframes candlestickGrow {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }
  50% {
    opacity: 0.7;
    transform: scaleY(0.5);
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes candlestickAutoMove {
  0%, 100% {
    transform: scaleY(1) translateY(0);
  }
  25% {
    transform: scaleY(1.05) translateY(-2px);
  }
  50% {
    transform: scaleY(1.1) translateY(-3px);
  }
  75% {
    transform: scaleY(1.05) translateY(-2px);
  }
}

.candlestick::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 4px;
  background: #27ae60;
}

.candlestick::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 4px;
  background: #27ae60;
}

.candlestick.bearish {
  background: #e74c3c;
}

.candlestick.bearish::before,
.candlestick.bearish::after {
  background: #e74c3c;
}

.candlestick:hover {
  transform: scaleY(1.1) scaleX(1.2);
  box-shadow: 0 0 15px rgba(232, 184, 109, 0.5);
  z-index: 10;
  transition: all 0.3s ease;
}

.candlestick.bearish:hover {
  box-shadow: 0 0 15px rgba(231, 76, 60, 0.5);
}

.chart-line {
  position: absolute;
  bottom: 20px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: linear-gradient(90deg, #E8B86D 0%, #f39c12 100%);
  border-radius: 1px;
  animation: chartLineDraw 2s ease-out 1.5s forwards, chartLinePulse 3s ease-in-out infinite 4s;
  transform: scaleX(0);
  transform-origin: left;
}

@keyframes chartLineDraw {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

@keyframes chartLinePulse {
  0%, 100% {
    opacity: 1;
    transform: scaleX(1);
  }
  50% {
    opacity: 0.7;
    transform: scaleX(1.05);
  }
}

.trading-metrics {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  animation: metricPulse 4s ease-in-out infinite;
}

.metric:nth-child(1) { animation-delay: 0.5s; }
.metric:nth-child(2) { animation-delay: 1s; }
.metric:nth-child(3) { animation-delay: 1.5s; }
.metric:nth-child(4) { animation-delay: 2s; }
.metric:nth-child(5) { animation-delay: 2.5s; }
.metric:nth-child(6) { animation-delay: 3s; }

.metric:last-child {
  border-bottom: none;
}

@keyframes metricPulse {
  0%, 100% {
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1);
  }
  50% {
    background: rgba(232, 184, 109, 0.1);
    transform: scale(1.02);
  }
}

.metric-label {
  font-size: 0.9rem;
  color: #888;
  font-weight: 400;
}

.metric-value {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
  animation: valueGlow 3s ease-in-out infinite;
}

@keyframes valueGlow {
  0%, 100% {
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  }
  50% {
    color: #E8B86D;
    text-shadow: 0 0 10px rgba(232, 184, 109, 0.6);
  }
}

.trading-nav {
  grid-column: 1 / -1;
  grid-row: 3;
  display: flex;
  justify-content: space-around;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item {
  color: #888;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 5px;
}

.nav-item:hover {
  color: #E8B86D;
  background: rgba(232, 184, 109, 0.1);
}

.nav-item.active {
  color: #E8B86D;
  background: rgba(232, 184, 109, 0.2);
}

.trading-buttons {
  grid-column: 1 / -1;
  grid-row: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}

.trade-btn {
  padding: 15px 25px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sell-btn {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #fff;
  border: 1px solid #e74c3c;
}

.buy-btn {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
  color: #fff;
  border: 1px solid #27ae60;
}

.trade-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.trade-btn:hover::before {
  left: 100%;
}

.trade-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.sell-btn:hover {
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.buy-btn:hover {
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.tradelocker-text {
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.tradelocker-header h2 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #E8B86D 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% { 
    background: linear-gradient(135deg, #ffffff 0%, #E8B86D 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  100% { 
    background: linear-gradient(135deg, #E8B86D 0%, #ffffff 50%, #E8B86D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}

.tradelocker-header p {
  font-size: 1.3rem;
  color: #cccccc;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tradelocker-features h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
}

.tradelocker-features h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #E8B86D, #f39c12);
  border-radius: 2px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.features-list li {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.features-list li:hover {
  color: #ffffff;
  transform: translateX(10px);
}

.features-list li::before {
  content: "▶";
  color: #E8B86D;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.features-list li:hover::before {
  transform: translateX(5px);
  color: #f39c12;
}

.tradelocker-cta {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(232, 184, 109, 0.1) 0%, rgba(243, 156, 18, 0.1) 100%);
  border-radius: 15px;
  border-left: 4px solid #E8B86D;
  position: relative;
  overflow: hidden;
}

.tradelocker-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 184, 109, 0.2), transparent);
  animation: ctaShimmer 2s ease-in-out infinite;
}

@keyframes ctaShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.tradelocker-cta p {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tradelocker-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.tradelocker-cards .feature-card {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(232, 184, 109, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tradelocker-cards .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 184, 109, 0.1), transparent);
  transition: left 0.6s ease;
}

.tradelocker-cards .feature-card:hover::before {
  left: 100%;
}

.tradelocker-cards .feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(232, 184, 109, 0.5);
  box-shadow: 0 20px 40px rgba(232, 184, 109, 0.3);
}

.tradelocker-cards .card-icon {
  font-size: 2.5rem;
  color: #E8B86D;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.tradelocker-cards .feature-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  color: #f39c12;
}

.tradelocker-cards .feature-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* TradeLocker Section Responsive */
@media (max-width: 1024px) {
  .tradelocker-main {
    margin: 1rem;
    border-radius: 20px;
  }
  
  .tradelocker-content {
    gap: 3rem;
  }
  
  .platform-mockup {
    width: 500px;
    height: 350px;
  }
  
  .trading-interface {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }
  
  .price-chart {
    grid-column: 1;
    grid-row: 2;
  }
  
  .trading-metrics {
    grid-column: 1;
    grid-row: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .tradelocker-section {
    padding: 6rem 0;
    margin: 4rem 0;
  }
  
  .tradelocker-stats {
    padding: 3rem 0;
  }
  
  .tradelocker-stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .tradelocker-stats .stat-item {
    padding: 2rem 1rem;
  }
  
  .tradelocker-stats .stat-item h3 {
    font-size: 2.8rem;
  }
  
  .tradelocker-stats .stat-item p {
    font-size: 1rem;
  }
  
  .tradelocker-main {
    padding: 3rem 0;
    margin: 1rem 0.5rem;
  }
  
  .tradelocker-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
  }
  
  .platform-images {
    height: 300px;
    max-width: 100%;
  }
  
  .trading-interface {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 15px;
  }
  
  .price-chart {
    grid-column: 1;
    grid-row: 2;
  }
  
  .trading-metrics {
    grid-column: 1;
    grid-row: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
  }
  
  .candlestick-chart {
    padding: 5px;
  }
  
  .candlestick {
    width: 6px;
    margin: 0 1px;
  }
  
  .tradelocker-header h2 {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .tradelocker-header p {
    text-align: center;
    font-size: 1.1rem;
  }
  
  .tradelocker-features h3 {
    text-align: center;
  }
  
  .tradelocker-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .tradelocker-cta {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .tradelocker-section {
    padding: 4rem 0;
    margin: 2rem 0;
  }
  
  .tradelocker-stats {
    padding: 2rem 0;
  }
  
  .tradelocker-stats .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .tradelocker-stats .stat-item {
    padding: 1.5rem 1rem;
  }
  
  .tradelocker-stats .stat-item h3 {
    font-size: 2.2rem;
  }
  
  .tradelocker-stats .stat-item p {
    font-size: 0.9rem;
  }
  
  .tradelocker-main {
    padding: 2rem 0;
    margin: 0.5rem;
    border-radius: 15px;
  }
  
  .platform-mockup {
    width: 320px;
    height: 250px;
    padding: 12px;
  }
  
  .trading-interface {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 12px;
  }
  
  .price-chart {
    grid-column: 1;
    grid-row: 2;
    padding: 10px;
  }
  
  .trading-metrics {
    grid-column: 1;
    grid-row: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 8px;
  }
  
  .candlestick-chart {
    padding: 3px;
  }
  
  .candlestick {
    width: 4px;
    margin: 0 1px;
  }
  
  .chart-header {
    margin-bottom: 5px;
  }
  
  .chart-title {
    font-size: 0.8rem;
  }
  
  .chart-timeframe {
    font-size: 0.7rem;
  }
  
  .tradelocker-header h2 {
    font-size: 2rem;
  }
  
  .tradelocker-header p {
    font-size: 1rem;
  }
  
  .tradelocker-features h3 {
    font-size: 1.5rem;
  }
  
  .features-list li {
    font-size: 1rem;
    padding-left: 1.5rem;
  }
  
  .tradelocker-cta p {
    font-size: 1.2rem;
  }
  
  .tradelocker-cards .feature-card {
    padding: 1.5rem 1rem;
  }
  
  .tradelocker-cards .card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .tradelocker-cards .feature-card h4 {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .section-header p {
    font-size: 1.1rem;
  }
  
  .services-section {
    padding: 2.5rem 0;
  }
  
  /* Profit Calculator Mobile Small */
  .profit-calculator {
    padding: 1.5rem 1rem;
    margin: 1.5rem 0.25rem;
    border-radius: 15px;
  }
  
  .profit-calculator h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }
  
  .calculator-inputs,
  .calculator-results {
    padding: 0.8rem;
  }
  
  .calculator-inputs select,
  .calculator-inputs input {
    padding: 0.7rem;
    font-size: 0.9rem;
  }
  
  .result-item {
    padding: 0.6rem;
  }
  
  .result-item .label {
    font-size: 0.8rem;
  }
  
  .result-item .value {
    font-size: 1rem;
  }
  
  .calculator-cta .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
  }
  
  /* Hero Section Mobile Small */
  .hero {
    padding: 5rem 0.5rem 3rem;
    min-height: 70vh;
  }
  
  /* Fix text positioning for small mobile */
  .text {
    top: 50% !important;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 350px;
    padding-top: 1.5rem; /* Add padding to avoid navbar overlap */
  }
  
  .text h2 {
    font-size: 1.8rem !important;
    line-height: 1.1;
    margin-bottom: 0.4rem;
  }
  
  .text h1 {
    font-size: 2.8rem !important;
    line-height: 1.1;
    margin-bottom: 0.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem !important;
    margin-bottom: 1.2rem;
    opacity: 0.9;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    margin-top: 1.2rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 250px;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 0.8rem;
  }
  
  .hero-content .subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-actions .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    max-width: 250px;
  }
  
  .hero-image {
    margin-top: 1.5rem;
    max-width: 250px;
  }
  
  /* Challenges Mobile Small */
  .challenges-row {
    padding: 0 0.5rem;
    gap: 1rem;
  }
  
  .challenge-section {
    padding: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .challenge-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
  
  .challenge-subtitle {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }
  
  .challenge-details {
    gap: 0.6rem;
  }
  
  .detail-item {
    padding: 0.6rem;
    font-size: 0.8rem;
  }
  
  .price-card {
    padding: 1.2rem;
    margin-top: 0.8rem;
  }
  
  .price-card h4 {
    font-size: 1rem;
  }
  
  .price-card .price {
    font-size: 1.5rem;
  }
  
  .buy-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
  
  .about-text p {
    font-size: 1rem;
    padding-left: 1rem;
  }
  
  .stat-item h3 {
    font-size: 2rem;
  }
  
  /* General Mobile Improvements */
  .container {
    padding: 0 1rem;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  /* Contact Form Mobile */
  .contact-form {
    padding: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.8rem;
    font-size: 1rem;
  }
  
  .contact-info {
    padding: 1.5rem;
  }
  
  .contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .contact-item {
    margin-bottom: 1rem;
  }
  
  .contact-item i {
    font-size: 1.2rem;
    width: 20px;
  }
  
  .contact-item span {
    font-size: 0.9rem;
  }
  
  .stat-item p {
    font-size: 0.9rem;
  }
  
  /* Footer Mobile */
  .footer {
    padding: 3rem 0 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .footer-section ul {
    gap: 0.8rem;
  }
  
  .footer-section ul li a {
    font-size: 0.9rem;
  }
  
  .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
  }
  
  .footer-bottom p {
    font-size: 0.8rem;
  }
  
  /* Footer Mobile Small */
  .footer {
    padding: 2rem 0 1.5rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
  
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  
  .footer-section ul {
    gap: 0.6rem;
  }
  
  .footer-section ul li a {
    font-size: 0.8rem;
  }
  
  .footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }
  
  .footer-bottom p {
    font-size: 0.7rem;
  }
  
  /* Additional Mobile Optimizations */
  * {
    -webkit-tap-highlight-color: transparent;
  }
  
  body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }
  
  /* Smooth scrolling for mobile */
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Touch-friendly buttons */
  .btn, .buy-btn, button {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Input focus improvements */
  input:focus, textarea:focus, select:focus {
    outline: 2px solid #E8B86D;
    outline-offset: 2px;
  }
  
  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
  }
  
  /* Image responsiveness */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Ensure hero text doesn't overlap with navbar */
  .text {
    z-index: 25;
    position: relative;
  }
  
  /* Add safe area for mobile devices */
  .text {
    padding-top: env(safe-area-inset-top, 2rem);
  }
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(232, 184, 109, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(232, 184, 109, 0.05) 0%, transparent 50%);
  pointer-events: none;
  animation: backgroundPulse 8s ease-in-out infinite;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-category {
  margin-bottom: 3rem;
  animation: categorySlideIn 1s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.faq-category:nth-child(1) { animation-delay: 0.1s; }
.faq-category:nth-child(2) { animation-delay: 0.2s; }
.faq-category:nth-child(3) { animation-delay: 0.3s; }
.faq-category:nth-child(4) { animation-delay: 0.4s; }
.faq-category:nth-child(5) { animation-delay: 0.5s; }
.faq-category:nth-child(6) { animation-delay: 0.6s; }
.faq-category:nth-child(7) { animation-delay: 0.7s; }

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

.faq-category h3 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #E8B86D 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.faq-category h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #E8B86D, transparent);
  border-radius: 2px;
}

.faq-items {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 2px solid rgba(232, 184, 109, 0.3);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(20px);
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(232, 184, 109, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item:hover {
  border-color: rgba(232, 184, 109, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(20, 20, 20, 0.5) 100%);
  border: 1px solid rgba(232, 184, 109, 0.2);
  border-radius: 15px;
  margin-bottom: 1rem;
  backdrop-filter: blur(20px);
}

.faq-question:hover {
  background: linear-gradient(135deg, rgba(232, 184, 109, 0.1) 0%, rgba(243, 156, 18, 0.1) 100%);
  border-color: rgba(232, 184, 109, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 184, 109, 0.2);
}

.faq-question h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  flex: 1;
  padding-right: 1rem;
}

.faq-question i {
  font-size: 1.2rem;
  color: #E8B86D;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(20, 20, 20, 0.3) 100%);
  border-radius: 0 0 15px 15px;
  border: 1px solid rgba(232, 184, 109, 0.1);
  border-top: none;
  backdrop-filter: blur(20px);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

/* FAQ Mobile Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 4rem 0;
  }
  
  .faq-category h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  
  .faq-question {
    padding: 1.2rem 1.5rem;
  }
  
  .faq-question h4 {
    font-size: 1rem;
    padding-right: 0.8rem;
  }
  
  .faq-question i {
    font-size: 1.1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.2rem 1.5rem;
  }
  
  .faq-answer p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 3rem 0;
  }
  
  .faq-category h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }
  
  .faq-question {
    padding: 1rem 1.2rem;
  }
  
  .faq-question h4 {
    font-size: 0.9rem;
    padding-right: 0.6rem;
  }
  
  .faq-question i {
    font-size: 1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.2rem 1rem 1.2rem;
  }
  
  .faq-answer p {
    font-size: 0.85rem;
  }
}

/* Guarantee Section */
.guarantee-section {
  background: transparent;
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}


.guarantee-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.guarantee-header {
  margin-bottom: 4rem;
}

.guarantee-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #E8B86D 0%, #f39c12 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 10px 30px rgba(232, 184, 109, 0.3);
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(232, 184, 109, 0.3); }
  50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(232, 184, 109, 0.5); }
}

.guarantee-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #E8B86D 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.guarantee-subtitle {
  font-size: 1.3rem;
  color: #E8B86D;
  font-weight: 500;
  margin-bottom: 0;
}

.guarantee-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.guarantee-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 184, 109, 0.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.guarantee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 184, 109, 0.1), transparent);
  transition: left 0.6s ease;
}

.guarantee-card:hover::before {
  left: 100%;
}

.guarantee-card:hover {
  transform: translateY(-10px);
  border-color: rgba(232, 184, 109, 0.5);
  box-shadow: 0 20px 40px rgba(232, 184, 109, 0.2);
}

.guarantee-card.compensation {
  background: linear-gradient(135deg, rgba(232, 184, 109, 0.1) 0%, rgba(232, 184, 109, 0.05) 100%);
  border-color: rgba(232, 184, 109, 0.4);
  position: relative;
}

.guarantee-card.compensation::after {
  content: '';
  position: absolute;
  top: -10px;
  right: 20px;
  /* background: linear-gradient(135deg, #E8B86D 0%, #2D3748 100%); */
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(232, 184, 109, 0.4);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #E8B86D 0%, #f39c12 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 8px 25px rgba(232, 184, 109, 0.3);
}

.guarantee-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #E8B86D;
}

.guarantee-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

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

.guarantee-message {
  font-size: 1.5rem;
  font-weight: 600;
  color: #E8B86D;
  margin-bottom: 2rem;
  font-style: italic;
}

.guarantee-btn {
  background: linear-gradient(135deg, #E8B86D 0%, #f39c12 100%);
  color: white;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(232, 184, 109, 0.4);
  border: 2px solid transparent;
}

.guarantee-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(232, 184, 109, 0.6);
  border-color: rgba(232, 184, 109, 0.5);
}

/* Mobile Responsive for Guarantee Section */
@media (max-width: 768px) {
  .guarantee-section {
    padding: 4rem 0;
  }
  
  .guarantee-header h2 {
    font-size: 2.2rem;
  }
  
  .guarantee-subtitle {
    font-size: 1.1rem;
  }
  
  .guarantee-details {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .guarantee-card {
    padding: 2rem 1.5rem;
  }
  
  .guarantee-message {
    font-size: 1.2rem;
  }
  
  .guarantee-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .guarantee-header h2 {
    font-size: 1.8rem;
  }
  
  .guarantee-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* Services Section */
.services-section {
  background: transparent;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}


@keyframes backgroundPulse {
  0%, 100% { 
    opacity: 0.3;
  }
  50% { 
    opacity: 0.7;
  }
}

/* Challenges Section - Tabs Design */
.challenges-tabs-container {
  width: 100%;
  max-width: 1200px;
  margin: 4rem auto 0;
  position: relative;
  z-index: 2;
  background-image: url('../img/lamassu_logo_gold.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 300px;
  background-attachment: fixed;
  padding: 4rem 2rem;
  border-radius: 25px;
  overflow: hidden;
}

.challenges-tabs-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(2px);
  z-index: -1;
}

.challenges-tabs-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(232, 184, 109, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(232, 184, 109, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(232, 184, 109, 0.05) 0%, transparent 50%);
  z-index: -1;
  animation: backgroundPulse 8s ease-in-out infinite;
}

/* Logo glow effect */
.challenges-tabs-container {
  position: relative;
}

.challenges-tabs-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 184, 109, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -2;
  animation: logoGlow 4s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  0% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.challenges-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  position: relative;
}

.challenges-tabs::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(232, 184, 109, 0.2);
  border-radius: 1px;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 184, 109, 0.2);
  border-radius: 15px 15px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: blur(10px);
}

.tab-btn:hover {
  background: rgba(232, 184, 109, 0.1);
  border-color: rgba(232, 184, 109, 0.4);
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.tab-btn.active {
  background: rgba(232, 184, 109, 0.15);
  border-color: rgba(232, 184, 109, 0.5);
  color: #E8B86D;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232, 184, 109, 0.2);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #E8B86D;
  border-radius: 1px;
}

.tab-btn i {
  font-size: 1.2rem;
}

.tab-badge {
  background: linear-gradient(135deg, #E8B86D 0%, #f39c12 100%);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(232, 184, 109, 0.3);
}

.tab-badge.premium {
  background: linear-gradient(135deg, #f39c12 0%, #E8B86D 100%);
}

.tab-content {
  display: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(232, 184, 109, 0.2);
  border-radius: 0 0 20px 20px;
  padding: 3rem;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.tab-content.active {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

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

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

.challenge-hero {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(232, 184, 109, 0.2);
}

.challenge-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #E8B86D 0%, #f39c12 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 15px 40px rgba(232, 184, 109, 0.4);
  animation: iconPulse 3s ease-in-out infinite;
  flex-shrink: 0;
}

.challenge-info h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #E8B86D 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.challenge-subtitle {
  font-size: 1.4rem;
  color: #E8B86D;
  font-weight: 600;
  margin-bottom: 1rem;
}

.challenge-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}

.challenge-details {
  margin-bottom: 3rem;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.detail-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 184, 109, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.detail-card:hover {
  background: rgba(232, 184, 109, 0.1);
  border-color: rgba(232, 184, 109, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(232, 184, 109, 0.2);
}

.detail-card i {
  font-size: 2rem;
  color: #E8B86D;
  margin-bottom: 1rem;
  display: block;
}

.detail-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

.detail-card p {
  font-size: 1.1rem;
  font-weight: 700;
  color: #E8B86D;
  margin: 0;
}

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

.challenge-pricing h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #E8B86D;
  margin-bottom: 2rem;
}

/* Challenge CTA Button */
.challenge-cta {
  margin-top: 2rem;
  text-align: center;
}

.challenge-cta .btn {
  background: linear-gradient(135deg, #E8B86D 0%, #D4A574 100%);
  color: #1a1a1a;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 184, 109, 0.3);
  border: none;
  cursor: pointer;
}

.challenge-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 184, 109, 0.4);
  background: linear-gradient(135deg, #D4A574 0%, #E8B86D 100%);
}

.challenge-cta .btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(232, 184, 109, 0.3);
}



.challenge-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 184, 109, 0.2);
  border-radius: 25px;
  padding: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.challenge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 184, 109, 0.1), transparent);
  transition: left 0.8s ease;
  z-index: 1;
}

.challenge-card:hover::before {
  left: 100%;
}

.challenge-card:hover {
  transform: translateY(-15px);
  border-color: rgba(232, 184, 109, 0.5);
  box-shadow: 0 25px 60px rgba(232, 184, 109, 0.3);
}

.challenge-card.freedom {
  background: linear-gradient(135deg, rgba(232, 184, 109, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: rgba(232, 184, 109, 0.3);
}

.challenge-card.evaluation {
  background: linear-gradient(135deg, rgba(232, 184, 109, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: rgba(232, 184, 109, 0.4);
  position: relative;
}

.challenge-card.evaluation::after {
  content: 'PREMIUM';
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #E8B86D 0%, #f39c12 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(232, 184, 109, 0.4);
  z-index: 3;
}

.challenge-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem;
  position: relative;
  z-index: 2;
}

.challenge-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #E8B86D 0%, #f39c12 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 10px 30px rgba(232, 184, 109, 0.4);
  animation: iconPulse 3s ease-in-out infinite;
}

.challenge-badge {
  background: linear-gradient(135deg, #E8B86D 0%, #f39c12 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(232, 184, 109, 0.4);
}

.challenge-badge.premium {
  background: linear-gradient(135deg, #f39c12 0%, #E8B86D 100%);
}

.challenge-content {
  padding: 0 2rem 2rem;
  position: relative;
  z-index: 2;
}

.challenge-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #E8B86D 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.challenge-subtitle {
  font-size: 1.3rem;
  color: #E8B86D;
  font-weight: 600;
  margin-bottom: 1rem;
}

.challenge-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.challenge-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(232, 184, 109, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(232, 184, 109, 0.1);
  border-color: rgba(232, 184, 109, 0.3);
  transform: translateX(5px);
}

.feature-item i {
  color: #E8B86D;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.feature-item span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
}

.challenge-pricing {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 2rem;
  margin: 0 2rem 2rem;
  position: relative;
  z-index: 2;
}

.pricing-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.price-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(232, 184, 109, 0.2);
  transition: all 0.3s ease;
}

.price-option:hover {
  background: rgba(232, 184, 109, 0.1);
  border-color: rgba(232, 184, 109, 0.4);
  transform: translateY(-3px);
}

.account-size {
  font-size: 1rem;
  font-weight: 700;
  color: #E8B86D;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
}

.challenge-btn {
  background: linear-gradient(135deg, #E8B86D 0%, #f39c12 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(232, 184, 109, 0.4);
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.challenge-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(232, 184, 109, 0.6);
  border-color: rgba(232, 184, 109, 0.5);
  background: linear-gradient(135deg, #f39c12 0%, #E8B86D 100%);
}

/* Mobile Responsive for Tabs Design */
@media (max-width: 768px) {
  .challenges-tabs-container {
    margin: 2rem auto 0;
    padding: 2rem 1rem;
    background-size: 200px;
    background-attachment: scroll;
  }
  
  .challenges-tabs {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .tab-btn {
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-align: center;
  }
  
  .tab-btn.active::after {
    display: none;
  }
  
  .tab-content {
    padding: 2rem 1rem;
    border-radius: 15px;
  }
  
  .challenge-hero {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .challenge-info h3 {
    font-size: 2rem;
  }
  
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
}

@media (max-width: 480px) {
  .challenges-tabs-container {
    background-size: 150px;
    padding: 1.5rem 0.5rem;
  }
  
  .challenge-info h3 {
    font-size: 1.8rem;
  }
  
  .challenge-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .details-grid {
    grid-template-columns: 1fr;
  }
  
  
  
  .tab-btn {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
  
  .tab-btn i {
    font-size: 1rem;
  }
}

/* Privacy Policy Page Styles */
.privacy-policy-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding-top: 120px;
  padding-bottom: 60px;
}

.privacy-policy-page .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.privacy-header {
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

.privacy-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.privacy-header .last-updated {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 500;
}

.privacy-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.privacy-section {
  margin-bottom: 2.5rem;
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-section h2 {
  color: #2c3e50;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #E8B86D;
  display: inline-block;
}

.privacy-section h3 {
  color: #34495e;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem 0;
}

.section-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.section-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: #555;
}

.section-content li {
  margin-bottom: 0.8rem;
  line-height: 1.7;
  position: relative;
}

.section-content li::before {
  content: '▸';
  color: #E8B86D;
  font-weight: bold;
  position: absolute;
  left: -1.2rem;
}

.contact-info {
  background: linear-gradient(135deg, rgba(232, 184, 109, 0.1), rgba(232, 184, 109, 0.05));
  padding: 1.5rem;
  border-radius: 15px;
  border-left: 4px solid #E8B86D;
  margin-top: 1rem;
}

.contact-info p {
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.contact-info strong {
  color: #2c3e50;
}

.privacy-footer {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: white;
  padding: 2rem 0;
}

.privacy-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #E8B86D;
}

.footer-copyright {
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Privacy Policy Responsive */
@media (max-width: 768px) {
  .privacy-policy-page {
    padding-top: 100px;
  }
  
  .privacy-header h1 {
    font-size: 2.2rem;
  }
  
  .privacy-content {
    padding: 2rem 1.5rem;
  }
  
  .privacy-section h2 {
    font-size: 1.5rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
}

/* Challenge Cards Row */
.challenges-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 0;
  padding: 0;
  background: transparent;
  position: relative;
  overflow: visible;
  animation: sectionSlideIn 1s ease-out;
}

/* Removed background effects */

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

/* Removed background shimmer animation */

@media (max-width: 768px) {
  .challenges-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .challenge-section {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  .challenge-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  
  .challenge-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .challenge-details {
    gap: 0.8rem;
  }
  
  .detail-item {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .price-card {
    padding: 1.5rem;
    margin-top: 1rem;
  }
  
  .price-card h4 {
    font-size: 1.2rem;
  }
  
  .price-card .price {
    font-size: 1.8rem;
  }
  
  .buy-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Challenge Sections */
.challenge-section {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0px;
  padding: 2rem;
  border: 0px solid rgba(232, 184, 109, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: visible;
  height: fit-content;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: cardSlideIn 1s ease-out forwards;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.challenge-section:nth-child(1) {
  animation-delay: 0.2s;
}

.challenge-section:nth-child(2) {
  animation-delay: 0.4s;
}

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

.challenge-section:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(232, 184, 109, 0.3);
  border-color: rgba(232, 184, 109, 1);
  border: 2px solid rgba(232, 184, 109, 0.8);
  border-radius: 40px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-image {
  position: absolute;
  top: -30px;
  right: 20px;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 3px solid rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  z-index: 10;
  transition: all 0.3s ease;
  animation: imageFloat 4s ease-in-out infinite;
}

.floating-image:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.4);
  animation-play-state: paused;
}

@keyframes imageFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
  }
  50% { 
    transform: translateY(-10px) rotate(2deg);
  }
}

.challenge-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
  filter: contrast(1.1) brightness(1.05) saturate(1.1);
}

.challenge-section:hover .challenge-image {
  transform: scale(1.05);
  filter: contrast(1.15) brightness(1.1) saturate(1.15);
}

.challenge-section:hover .floating-image {
  transform: translateY(-5px) scale(1.05);
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.3);
}

.lamassu-challenge {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: white;
}

.challenge-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.challenge-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  animation: iconPulse 3s ease-in-out infinite;
  transition: all 0.3s ease;
  border: 3px solid rgba(232, 184, 109, 1);
  box-shadow: 0 4px 15px rgba(232, 184, 109, 0.4);
}

.challenge-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(232, 184, 109, 0.6);
  animation-play-state: paused;
}

@keyframes iconPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(232, 184, 109, 0.4);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(232, 184, 109, 0.6);
  }
}

.challenge-icon.sargon {
  background: linear-gradient(135deg, #E8B86D 0%, #f39c12 100%);
  color: white;
}

.challenge-icon.lamassu {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.challenge-info h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff !important;
  animation: titleGlow 4s ease-in-out infinite;
  transition: all 0.3s ease;
}

.challenge-info h3:hover {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(232, 184, 109, 0.5);
}

@keyframes titleGlow {
  0%, 100% { 
    text-shadow: 0 0 5px rgba(232, 184, 109, 0.2);
  }
  50% { 
    text-shadow: 0 0 15px rgba(232, 184, 109, 0.4);
  }
}

.challenge-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.8;
  margin-bottom: 1rem;
  color: #E8B86D !important;
}

.challenge-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: rgba(232, 184, 109, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(232, 184, 109, 0.3);
  backdrop-filter: blur(5px);
}

.lamassu-challenge .challenge-details {
  background: rgba(255, 255, 255, 0.15);
}

.detail-item {
  text-align: center;
  padding: 1rem 0.8rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
    border: 2px solid rgba(232, 184, 109, 0.8);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: detailFloat 2s ease-in-out infinite;
  animation-delay: calc(var(--item-index) * 0.1s);
}

.detail-item:nth-child(1) { --item-index: 1; }
.detail-item:nth-child(2) { --item-index: 2; }
.detail-item:nth-child(3) { --item-index: 3; }
.detail-item:nth-child(4) { --item-index: 4; }

.detail-item:hover {
  transform: translateY(-5px) scale(1.05);
    border-color: rgba(232, 184, 109, 1);
  box-shadow: 0 8px 25px rgba(232, 184, 109, 0.3);
  animation-play-state: paused;
}

@keyframes detailFloat {
  0%, 100% { 
    transform: translateY(0px);
  }
  50% { 
    transform: translateY(-3px);
  }
}

.detail-item .label {
  display: block;
  font-size: 0.85rem;
  color: #718096;
  margin-bottom: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.detail-item .value {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: #E8B86D;
  text-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
  margin-top: 0.5rem;
  line-height: 1.2;
}

.detail-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #E8B86D, #f39c12);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.detail-item:hover::before {
  opacity: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.8rem;
}

.price-card {
  background: white;
  padding: 1.5rem 1rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid rgba(232, 184, 109, 0.8);
  animation: priceCardSlide 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
}

.price-card:nth-child(1) { animation-delay: 0.6s; }
.price-card:nth-child(2) { animation-delay: 0.7s; }
.price-card:nth-child(3) { animation-delay: 0.8s; }
.price-card:nth-child(4) { animation-delay: 0.9s; }
.price-card:nth-child(5) { animation-delay: 1s; }

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 184, 109, 0.1), transparent);
  transition: left 0.6s ease;
}

.price-card:hover::before {
  left: 100%;
}

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

.price-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(232, 184, 109, 0.2);
  border-color: rgba(232, 184, 109, 0.5);
}

.price-card.featured {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.3);
}

.price-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.price-card .price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #E8B86D;
  margin: 0;
}

/* Profit Calculator */
.profit-calculator {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: white;
  padding: 4rem 3rem;
  border-radius: 30px;
  margin: 5rem auto;
  max-width: 1200px;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(232, 184, 109, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(232, 184, 109, 0.2);
  backdrop-filter: blur(20px);
  animation: calculatorSlideIn 1.2s ease-out;
}

.profit-calculator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(232, 184, 109, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(232, 184, 109, 0.05) 0%, transparent 50%);
  animation: calculatorPulse 6s ease-in-out infinite;
}

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

@keyframes calculatorPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

.profit-calculator h3 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #E8B86D 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: titleGlow 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes titleGlow {
  0%, 100% { 
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 10px rgba(232, 184, 109, 0.3);
  }
  50% { 
    color: #E8B86D;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(232, 184, 109, 0.6);
  }
}

.calculator-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-top: 2rem;
}

.calculator-inputs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(20, 20, 20, 0.5) 100%);
  border-radius: 20px;
  border: 1px solid rgba(232, 184, 109, 0.2);
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 2;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
}

.input-group label {
  font-weight: 600;
  color: #E8B86D;
  font-size: 1.1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.input-group select,
.input-group input {
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(232, 184, 109, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.input-group select:focus,
.input-group input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(232, 184, 109, 0.8);
  transform: translateY(-2px);
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.2),
    0 0 0 3px rgba(232, 184, 109, 0.2),
    0 5px 20px rgba(0, 0, 0, 0.3);
}

.input-group select option {
  background: #1a1a1a;
  color: white;
}

.calculator-results {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(20, 20, 20, 0.5) 100%);
  padding: 2.5rem;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(232, 184, 109, 0.2);
  position: relative;
  z-index: 2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(232, 184, 109, 0.1);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.result-item:hover {
  background: rgba(232, 184, 109, 0.05);
  border-radius: 8px;
  padding: 1.5rem 1rem;
  margin: 0 -1rem;
}

.result-item:last-child {
  border-bottom: none;
}

.result-item .label {
  font-weight: 600;
  font-size: 1.1rem;
  color: #E8B86D;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.result-item .value {
  font-weight: 800;
  font-size: 1.5rem;
  color: #ffffff;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(232, 184, 109, 0.3);
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

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

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.5s ease;
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
}

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

.stars {
  margin-bottom: 1.5rem;
}

.stars i {
  color: #E8B86D;
  font-size: 1.2rem;
  margin: 0 0.2rem;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
  color: #555;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: #333;
}

.author-info span {
  font-size: 0.9rem;
  color: #E8B86D;
  font-weight: 500;
}

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

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(232, 184, 109, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: #E8B86D;
  transform: scale(1.2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(232, 184, 109, 0.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  animation: serviceSlideUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }
.service-card:nth-child(4) { animation-delay: 0.8s; }

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 184, 109, 0.1), transparent);
  transition: left 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(232, 184, 109, 0.5);
  box-shadow: 0 20px 40px rgba(232, 184, 109, 0.3);
}

.service-icon {
  font-size: 3rem;
  color: #E8B86D;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  color: #f39c12;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.service-card p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

@keyframes serviceSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Legal Pages Section */
.legal-pages-section {
  background: transparent;
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}


.legal-pages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.legal-page-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 2px solid rgba(232, 184, 109, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  animation: cardSlideIn 1s ease-out forwards;
  opacity: 0;
  transform: translateY(50px);
}

.legal-page-card:nth-child(1) { animation-delay: 0.1s; }
.legal-page-card:nth-child(2) { animation-delay: 0.2s; }
.legal-page-card:nth-child(3) { animation-delay: 0.3s; }
.legal-page-card:nth-child(4) { animation-delay: 0.4s; }
.legal-page-card:nth-child(5) { animation-delay: 0.5s; }
.legal-page-card:nth-child(6) { animation-delay: 0.6s; }
.legal-page-card:nth-child(7) { animation-delay: 0.7s; }
.legal-page-card:nth-child(8) { animation-delay: 0.8s; }

.legal-page-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(232, 184, 109, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.legal-page-card:hover::before {
  opacity: 1;
}

.legal-page-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(232, 184, 109, 0.8);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(232, 184, 109, 0.5);
}

.legal-page-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #E8B86D 0%, #D4A574 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(232, 184, 109, 0.4);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.legal-page-card:hover .legal-page-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(232, 184, 109, 0.6);
}

.legal-page-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.legal-page-card p {
  font-size: 1rem;
  color: #cbd5e0;
  margin-bottom: 2rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.legal-page-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, #E8B86D 0%, #D4A574 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 184, 109, 0.3);
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legal-page-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(232, 184, 109, 0.5);
  background: linear-gradient(135deg, #f39c12 0%, #E8B86D 100%);
  color: #ffffff;
}

.legal-page-btn i {
  transition: transform 0.3s ease;
}

.legal-page-btn:hover i {
  transform: translateX(3px);
}

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

/* Contact Section */
.contact-section {
  background: transparent;
  color: white;
}

.contact-section .section-header h2,
.contact-section .section-header p {
  color: white;
}

/* Enhanced Form Styles */
.contact-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(232, 184, 109, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid rgba(232, 184, 109, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(232, 184, 109, 0.8);
  background: rgba(255, 255, 255, 1);
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.05),
    0 0 0 3px rgba(232, 184, 109, 0.2);
  transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0aec0;
  font-weight: 400;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

/* Form validation states */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: #EF4444;
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.05),
    0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
  border-color: #10B981;
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.05),
    0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Submit button enhancements */
.contact-form .btn {
  width: 100%;
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #E8B86D 0%, #D4A574 100%);
  color: #ffffff;
  border: 2px solid rgba(232, 184, 109, 1);
  box-shadow: 
    0 8px 25px rgba(232, 184, 109, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-form .btn:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 12px 35px rgba(232, 184, 109, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #f39c12 0%, #E8B86D 100%);
}

.contact-form .btn:active {
  transform: translateY(-1px) scale(1.01);
}

.contact-form .btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}

/* Loading spinner */
.fa-spinner {
  animation: spin 1s linear infinite;
}

/* Font Awesome Icons Fix for Mobile */
.fas, .far, .fab, .fa-solid, .fa-regular, .fa-brands {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 6 Pro", "FontAwesome", sans-serif !important;
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  visibility: visible;
  opacity: 1;
}

/* Mobile Icon Fixes */
@media (max-width: 768px) {
  .fas, .far, .fab, .fa-solid, .fa-regular, .fa-brands {
    font-size: 1.2em !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-weight: 900 !important;
  }
  
  /* Specific icon fixes */
  .fa-bolt, .fa-trophy, .fa-clock, .fa-shield-alt, .fa-target, .fa-rocket, .fa-percentage, .fa-calendar, .fa-infinity {
    font-size: 1.3em !important;
    color: #E8B86D !important;
  }
  
  .fa-cogs, .fa-desktop, .fa-headset {
    font-size: 1.5em !important;
    color: #E8B86D !important;
  }
  
  .fa-star {
    font-size: 1.1em !important;
    color: #ffd700 !important;
  }
  
  .fa-map-marker-alt, .fa-phone, .fa-envelope {
    font-size: 1.2em !important;
    color: #E8B86D !important;
  }
  
  .fa-file-contract, .fa-gavel, .fa-shield-alt, .fa-exclamation-triangle, .fa-undo, .fa-info-circle, .fa-trophy, .fa-handshake {
    font-size: 1.4em !important;
    color: #E8B86D !important;
  }
  
  .fa-arrow-right {
    font-size: 1em !important;
    color: #E8B86D !important;
  }
  
  .fa-plus-circle, .fa-handshake {
    font-size: 1.3em !important;
    color: #E8B86D !important;
  }
  
  .fa-chart-pie {
    font-size: 1.4em !important;
    color: #E8B86D !important;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .fas, .far, .fab, .fa-solid, .fa-regular, .fa-brands {
    font-size: 1.1em !important;
  }
  
  .fa-bolt, .fa-trophy, .fa-clock, .fa-shield-alt, .fa-target, .fa-rocket, .fa-percentage, .fa-calendar, .fa-infinity {
    font-size: 1.2em !important;
  }
  
  .fa-cogs, .fa-desktop, .fa-headset {
    font-size: 1.3em !important;
  }
  
  .fa-star {
    font-size: 1em !important;
  }
  
  .fa-map-marker-alt, .fa-phone, .fa-envelope {
    font-size: 1.1em !important;
  }
  
  .fa-file-contract, .fa-gavel, .fa-shield-alt, .fa-exclamation-triangle, .fa-undo, .fa-info-circle, .fa-trophy, .fa-handshake {
    font-size: 1.2em !important;
  }
  
  .fa-arrow-right {
    font-size: 0.9em !important;
  }
  
  .fa-plus-circle, .fa-handshake {
    font-size: 1.2em !important;
  }
  
  .fa-chart-pie {
    font-size: 1.3em !important;
  }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
}

.contact-info {
  padding: 2rem 0;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
}

.contact-item i {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
}

/* Cuneiform Decorations */
.cuneiform-decoration {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.25;
  pointer-events: none;
  font-size: 3.5rem;
  line-height: 1.6;
  color: #E8B86D;
  font-family: 'Noto Sans Cuneiform', serif;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  animation: cuneiformFloat 8s ease-in-out infinite;
}

.cuneiform-right {
  right: 2rem;
}

.cuneiform-left {
  left: 2rem;
}

.cuneiform-text {
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  animation: cuneiformGlow 6s ease-in-out infinite;
}

.cuneiform-text:nth-child(1) {
  animation-delay: 0s;
}

.cuneiform-text:nth-child(2) {
  animation-delay: 2s;
}

.cuneiform-text:nth-child(3) {
  animation-delay: 4s;
}

.cuneiform-decoration:hover .cuneiform-text {
  opacity: 0.3;
  transform: scale(1.1);
}

/* Section positioning for cuneiform */
.about-section,
.guarantee-section,
.tradelocker-section,
.services-section,
.contact-section,
.footer {
  position: relative;
  overflow: hidden;
}

/* Enhanced cuneiform for different sections */
.about-section .cuneiform-decoration,
.guarantee-section .cuneiform-decoration,
.tradelocker-section .cuneiform-decoration {
  color: #E8B86D;
  opacity: 0.15;
  font-size: 5rem;
  animation: cuneiformFloat 6s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(232, 184, 109, 0.3);
}

@keyframes cuneiformFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.15;
  }
  50% { 
    transform: translateY(-10px) rotate(2deg);
    opacity: 0.25;
  }
}

.services-section .cuneiform-decoration {
  color: #f39c12;
  opacity: 0.25;
  font-size: 4rem;
  animation-duration: 10s;
}

.contact-section .cuneiform-decoration {
  color: #e74c3c;
  opacity: 0.22;
}

.footer .cuneiform-decoration {
  color: #E8B86D;
  opacity: 0.3;
}

/* Cuneiform Animations */
@keyframes cuneiformFloat {
  0%, 100% {
    transform: translateY(-50%) translateX(0);
  }
  25% {
    transform: translateY(-45%) translateX(5px);
  }
  50% {
    transform: translateY(-55%) translateX(0);
  }
  75% {
    transform: translateY(-45%) translateX(-5px);
  }
}

@keyframes cuneiformGlow {
  0%, 100% {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    opacity: 1;
  }
  50% {
    text-shadow: 0 4px 16px rgba(212, 175, 55, 0.6), 0 0 20px rgba(212, 175, 55, 0.3);
    opacity: 0.8;
  }
}

@keyframes cuneiformPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Footer */
.footer {
  background: transparent;
  color: white;
  padding: 3rem 0 1rem;
  position: relative;
  clear: both; /* ضمان عدم التداخل */
  z-index: 1; /* ضمان ظهور الفوتر فوق المحتوى */
  margin-top: 0; /* إزالة أي margin إضافي */
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #fff;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #E8B86D;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #E8B86D;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  text-align: center;
  color: #999;
}

.footer .contact-item {
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer .contact-item i {
  background: #333;
  width: 35px;
  height: 35px;
  font-size: 1rem;
  margin-top: 0.2rem;
}

.footer .contact-item span {
  color: #ccc;
  font-size: 0.95rem;
}

@media (max-width: 1100px) {
  .text h1 {
    font-size: 5.8rem;
  }

  .text h2 {
    font-size: 4.7rem;
  }
}

/* RTL Support */
body.rtl {
  direction: rtl;
  font-family: "Cairo", "Tajawal", "Amiri", sans-serif;
  text-align: right;
  line-height: 1.8;
}

body.ltr {
  font-family: "Inter", sans-serif;
}

body.rtl .nav-links,
body.rtl .nav-actions {
  flex-direction: row-reverse;
}

body.rtl .hero-buttons {
  flex-direction: row-reverse;
}

body.rtl .about-content {
  grid-template-columns: 1fr 1fr;
  text-align: right;
}

body.rtl .services-grid {
  direction: rtl;
}

body.rtl .contact-content {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

body.rtl .footer-content {
  direction: rtl;
  text-align: right;
}

body.rtl .social-links {
  justify-content: flex-end;
}

body.rtl .mobile-menu {
  right: auto;
  left: -100%;
}

body.rtl .mobile-menu.active {
  left: 0;
}

/* RTL Text Alignment Improvements */
body.rtl .section-header {
  text-align: center;
}

body.rtl .section-header h2 {
  text-align: center;
}

body.rtl .section-header p {
  text-align: center;
}

body.rtl .tradelocker-content {
  direction: rtl;
}

body.rtl .tradelocker-text {
  text-align: right;
}

body.rtl .features-list {
  text-align: right;
}

body.rtl .features-list li {
  padding-left: 0;
  padding-right: 2rem;
}

body.rtl .features-list li::before {
  left: auto;
  right: 0;
}

body.rtl .faq-question {
  text-align: right;
}

body.rtl .faq-question h4 {
  text-align: right;
  padding-right: 0;
  padding-left: 1rem;
}

body.rtl .faq-answer {
  text-align: right;
}

body.rtl .faq-answer p {
  text-align: right;
}

body.rtl .calculator-inputs {
  direction: rtl;
}

body.rtl .input-group {
  text-align: right;
}

body.rtl .input-group label {
  text-align: right;
}

body.rtl .calculator-results {
  direction: rtl;
}

body.rtl .result-item {
  direction: rtl;
}

body.rtl .service-card {
  text-align: right;
}

body.rtl .service-card h3 {
  text-align: right;
}

body.rtl .service-card p {
  text-align: right;
}

body.rtl .challenge-section {
  direction: rtl;
}

body.rtl .challenge-content {
  text-align: right;
}

body.rtl .challenge-info h3 {
  text-align: right;
}

body.rtl .challenge-info p {
  text-align: right;
}

body.rtl .challenge-details {
  text-align: right;
}

body.rtl .detail-item {
  text-align: right;
}

body.rtl .detail-item .label {
  text-align: right;
}

body.rtl .detail-item .value {
  text-align: right;
}

body.rtl .legal-section {
  text-align: right;
}

body.rtl .legal-section h2 {
  text-align: right;
}

body.rtl .legal-section h3 {
  text-align: right;
}

body.rtl .legal-section p {
  text-align: right;
}

body.rtl .legal-section ul {
  text-align: right;
}

body.rtl .legal-section li {
  text-align: right;
  padding-left: 0;
  padding-right: 25px;
}

body.rtl .legal-section li::before {
  left: auto;
  right: 0;
  margin-right: 8px;
  transform: translateX(0);
}

body.rtl .privacy-section {
  text-align: right;
}

body.rtl .privacy-section h2 {
  text-align: right;
}

body.rtl .privacy-section h3 {
  text-align: right;
}

body.rtl .privacy-section p {
  text-align: right;
}

body.rtl .privacy-section ul {
  text-align: right;
}

body.rtl .privacy-section li {
  text-align: right;
}

body.rtl .privacy-section li::before {
  left: auto;
  right: 0;
}

body.rtl .section-content {
  text-align: right;
}

body.rtl .section-content p {
  text-align: right;
}

body.rtl .section-content ul {
  text-align: right;
}

body.rtl .section-content li {
  text-align: right;
}

body.rtl .section-content li::before {
  left: auto;
  right: 0;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .nav-links,
  .nav-actions li:not(.hamburger) {
    display: none;
  }
  
  /* Header Mobile Improvements */
  .header {
    padding: 0.8rem 1rem;
  }
  
 
  
  .logo img {
    width: 70px;
    height: 70px;
  }
  
  .hamburger {
    width: 30px;
    height: 30px;
  }
  
  .hamburger span {
    height: 2px;
  }
  
  /* Mobile Menu */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .mobile-menu.active {
    left: 0;
  }
  
  .mobile-menu .nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .mobile-menu .nav-links a {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  
  .mobile-menu .nav-links a:hover {
    background: rgba(232, 184, 109, 0.2);
    color: #E8B86D;
  }
  
  .mobile-menu .nav-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .mobile-menu .nav-actions .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  
  /* Hero Section Mobile */
  .hero {
    padding: 6rem 1rem 4rem;
    min-height: 80vh;
  }
  
  /* Fix text positioning for mobile */
  .text {
    top: 45% !important;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    padding-top: 2rem; /* Add padding to avoid navbar overlap */
  }
  
  .text h2 {
    font-size: 2.2rem !important;
    line-height: 1.1;
    margin-bottom: 0.5rem;
  }
  
  .text h1 {
    font-size: 3.5rem !important;
    line-height: 1.1;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem !important;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 1.5rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    padding: 1rem 2rem;
    font-size: 1rem;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero-content .subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .hero-image {
    margin-top: 2rem;
    max-width: 300px;
  }
  
  .hero-image img {
    width: 100%;
    height: auto;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 200px;
    text-align: center;
  }
  
  .challenge-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .challenge-details {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .challenge-section {
    padding: 1.5rem;
  }
  
  .floating-image {
    width: 100px;
    height: 100px;
    top: -25px;
    right: 15px;
  }
  
  /* Mobile cuneiform adjustments */
  .cuneiform-decoration {
    font-size: 2.5rem;
    opacity: 0.15;
  }
  
  .services-section .cuneiform-decoration {
    font-size: 3rem;
  }
  
  .cuneiform-right {
    right: 1rem;
  }
  
  .cuneiform-left {
    left: 1rem;
  }
  
  /* Mobile calculator */
  .calculator-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .profit-calculator {
    padding: 2rem 1.5rem;
    margin: 2rem 0.5rem;
    border-radius: 20px;
    max-width: 100%;
  }
  
  .profit-calculator h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
  }
  
  .calculator-inputs,
  .calculator-results {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .calculator-inputs select,
  .calculator-inputs input {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border-radius: 8px;
  }
  
  .calculator-results {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(232, 184, 109, 0.3);
  }
  
  .result-item .label {
    font-size: 0.9rem;
    color: #E8B86D;
  }
  
  .result-item .value {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffffff;
  }
  
  .calculator-cta .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    margin-top: 1rem;
  }
  
  /* Mobile testimonials */
  .testimonial-card {
    padding: 2rem 1rem;
  }
  
  .testimonials-slider {
    height: auto;
    min-height: 250px;
  }
}

@media (max-width: 725px) {
  .text h1 {
    font-size: 5rem;
    line-height: 1.1;
  }

  .text h2 {
    font-size: 4.1rem;
    line-height: 1.1;
  }

  header nav {
    padding: 0 1rem;
  }

  .logo {
    width: 75px;
  }

  header ul a {
    font-size: 0.73rem;
    padding: 0 0.9rem;
  }

  .search a {
    font-size: 0.85rem;
    padding: 0 1.8rem;
  }

  .hamburger {
    padding-left: 0.9rem;
  }

  .hamburger a {
    height: 30px;
    width: 30px;
  }

  .bg-img {
    width: initial;
    height: 208.1%;
  }


  .fog-7 {
    width: initial;
    height: 146.17%;
  }

  .mountain-10 {
    width: initial;
    height: 77.59%;
  }

  .fog-6 {
    width: initial;
    height: 73.11%;
  }

  .mountain-9 {
    height: 87.64%;
    width: initial;
  }

  .mountain-8 {
    height: 84.33%;
    width: initial;
  }

  .fog-5 {
    width: initial;
    height: 54.16%;
  }

  .mountain-7 {
    width: initial;
    height: 72.26%;
  }

  .mountain-6 {
    width: initial;
    height: 56.78%;
  }

  .fog-4 {
    width: initial;
    height: 104.5%;
  }

  .mountain-5 {
    width: initial;
    height: 60.64%;
  }

  .fog-3 {
    width: initial;
    height: 90.78%;
  }

  .mountain-4 {
    width: initial;
    height: 71.42%;
  }

  .mountain-3 {
    width: initial;
    height: 96.86%;
  }

  .fog-2 {
    width: initial;
    height: 84.73%;
  }

  .mountain-2 {
    display: none;
  }

  .mountain-1 {
    width: initial;
    height: 100.03%;
  }

  .fog-1 {
    width: initial;
    height: 89.86%;
  }
}

@media (max-width: 520px) {
  .text h1 {
    font-size: 3.3rem;
  }

  .text h2 {
    font-size: 2.6rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 3rem;
  }
  
  .section-header p {
    font-size: 1.3rem;
  }
  
  .services-section {
    padding: 4rem 0;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  section {
    padding: 3rem 0;
  }
}

/* Legal Pages Styles */
.legal-page {
  min-height: 100vh;
  background: transparent;
  color: #fff;
  padding: 120px 0 100px; /* تقليل المساحة السفلية */
  position: relative;
  overflow: hidden; /* إرجاع hidden لمنع الخروج */
  margin-bottom: 0; /* إزالة أي margin إضافي */
}


.legal-page .container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  max-height: calc(100vh - 200px); /* تحديد الارتفاع الأقصى للحاوية */
  overflow-y: auto; /* إضافة سكرول عمودي عند الحاجة */
}

.legal-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 0;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(10px);
}

.legal-header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.last-updated {
  font-size: 1.1rem;
  color: #ccc;
  margin: 0;
}

.legal-content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  padding-bottom: 40px; /* تقليل المساحة السفلية */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px; /* تقليل المساحة السفلية */
  max-height: calc(100vh - 300px); /* تحديد الارتفاع الأقصى */
  overflow-y: auto; /* إضافة سكرول عمودي عند الحاجة */
}

.legal-section {
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border-left: 4px solid #ffd700;
  transition: all 0.3s ease;
}

.legal-section:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
}

.legal-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffd700;
  display: flex;
  align-items: center;
  gap: 15px;
}

.legal-section h2::before {
  content: '⚖️';
  font-size: 1.5rem;
}

.legal-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 25px 0 15px;
  color: #ffed4e;
}

.legal-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.legal-section ul {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.legal-section li {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #e0e0e0;
}

.legal-section li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #ffd700;
  font-weight: bold;
  font-size: 1.2rem;
}

.contact-info {
  background: rgba(255, 215, 0, 0.1);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.contact-info p {
  margin: 10px 0;
  font-size: 1.1rem;
}

.contact-info strong {
  color: #ffd700;
  font-weight: 600;
}

/* Company Information Styles */
.company-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
  border: 1px solid rgba(232, 184, 109, 0.2);
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 8px;
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.info-item strong {
  color: #E8B86D;
  font-weight: 600;
  min-width: 200px;
}

.info-item span {
  color: #e0e0e0;
  font-weight: 500;
  text-align: right;
}

/* RTL Support for Phone Numbers */
body.rtl .contact-item span[data-translate="phone"],
body.rtl .contact-info p:has(strong[data-translate="phone"]) span,
body.rtl .contact-info p:has(strong[data-translate="phone"]) {
  direction: ltr;
  text-align: left;
  unicode-bidi: embed;
}

/* Ensure phone numbers display correctly in RTL */
body.rtl .contact-item span[data-translate="phone"] {
  display: inline-block;
  direction: ltr;
  unicode-bidi: embed;
}

/* Additional RTL fixes for phone numbers */
body.rtl .contact-info p strong[data-translate="phone"] + span,
body.rtl .contact-info p:contains("Phone:") span,
body.rtl .contact-info p:contains("الهاتف:") span {
  direction: ltr !important;
  text-align: left !important;
  unicode-bidi: embed !important;
}

/* Fix for all phone number spans in RTL */
body.rtl span:contains("+964"),
body.rtl span:contains("770"),
body.rtl span:contains("549"),
body.rtl span:contains("8112") {
  direction: ltr !important;
  unicode-bidi: embed !important;
}

/* RTL Support for Company Info */
body.rtl .info-item {
  flex-direction: row-reverse;
}

body.rtl .info-item strong {
  text-align: right;
  min-width: auto;
}

body.rtl .info-item span {
  text-align: left;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .info-item strong {
    min-width: auto;
  }
  
  .info-item span {
    text-align: left;
  }
  
  body.rtl .info-item {
    flex-direction: column;
    align-items: flex-end;
  }
  
  body.rtl .info-item span {
    text-align: right;
  }
}

/* Consistency Rule Content Styles */
.consistency-rule-content {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
}

.consistency-rule-content p {
  margin: 15px 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.consistency-rule-content p:first-child {
  margin-top: 0;
}

.consistency-rule-content p:last-child {
  margin-bottom: 0;
}

/* RTL Support for Consistency Rule */
body.rtl .consistency-rule-content {
  text-align: right;
}

/* Mobile Responsive for Consistency Rule */
@media (max-width: 768px) {
  .consistency-rule-content {
    padding: 15px;
    margin: 15px 0;
  }
  
  .consistency-rule-content p {
    font-size: 0.9rem;
    margin: 12px 0;
  }
}

.risk-warning, .disclaimer-warning, .important-notice {
  background: rgba(255, 69, 0, 0.1);
  border: 2px solid rgba(255, 69, 0, 0.3);
  border-radius: 15px;
  padding: 25px;
  margin: 30px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.risk-warning i, .disclaimer-warning i, .important-notice i {
  color: #ff4500;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.risk-warning p, .disclaimer-warning p, .important-notice p {
  margin: 0;
  font-weight: 600;
  color: #ff6b6b;
}

.challenge-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
}

.challenge-type {
  background: rgba(255, 215, 0, 0.1);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.challenge-type h3 {
  color: #ffd700;
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.challenge-type ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.challenge-type li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  color: #e0e0e0;
}

.challenge-type li:last-child {
  border-bottom: none;
}

.challenge-type li::before {
  content: '▶';
  color: #ffd700;
  font-weight: bold;
  margin-right: 10px;
}

/* Cuneiform decorations for legal pages */
.cuneiform-decoration {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  opacity: 0.1;
  font-family: 'Noto Sans Cuneiform', serif;
  font-size: 2rem;
  color: #ffd700;
  pointer-events: none;
}

.cuneiform-left {
  left: 50px;
}

.cuneiform-right {
  right: 50px;
}

.cuneiform-text {
  margin: 20px 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

/* Legal Index Page Styles */
.breadcrumb {
  margin-bottom: 30px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.breadcrumb a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #ffed4e;
}

.breadcrumb .separator {
  margin: 0 10px;
  color: #ccc;
}

.legal-intro {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-top: 20px;
  line-height: 1.6;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.legal-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.legal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.legal-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
}

.legal-card:hover::before {
  opacity: 1;
}

.legal-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #0a0a0a;
}

.legal-card-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffd700;
}

.legal-card-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.legal-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.document-type {
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.document-type.essential {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.document-type.important {
  background: rgba(249, 115, 22, 0.2);
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.document-type.challenge {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.document-type.legal {
  background: rgba(168, 85, 247, 0.2);
  color: #a855f7;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.document-type.partnership {
  background: rgba(236, 72, 153, 0.2);
  color: #ec4899;
  border: 1px solid rgba(236, 72, 153, 0.3);
}

.last-updated {
  color: #ccc;
  font-size: 0.9rem;
}

.legal-card-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #0a0a0a;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.legal-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
  color: #0a0a0a;
}

.quick-access {
  margin-top: 60px;
  padding: 40px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.quick-access h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #ffd700;
  text-align: center;
}

.quick-access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  text-decoration: none;
  color: #e0e0e0;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-link:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  color: #ffd700;
  transform: translateY(-2px);
}

.quick-link i {
  font-size: 1.2rem;
  color: #ffd700;
  width: 20px;
  text-align: center;
}

.quick-link span {
  font-weight: 500;
}

/* Legal Navigation */
.legal-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px; /* تقليل المساحة السفلية */
  padding: 20px 0;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  position: relative;
  z-index: 10;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  text-decoration: none;
  color: #e0e0e0;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.nav-btn:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  color: #ffd700;
  transform: translateY(-2px);
}

.nav-btn i {
  font-size: 1rem;
}

.prev-btn {
  margin-right: auto;
}

.next-btn {
  margin-left: auto;
}

@media (max-width: 768px) {
  .legal-navigation {
    flex-direction: column;
    gap: 20px;
  }
  
  .nav-btn {
    width: 100%;
    justify-content: center;
  }
  
  .prev-btn, .next-btn {
    margin: 0;
  }
}

/* Responsive design for legal pages */
@media (max-width: 768px) {
  .legal-page {
    padding: 100px 0 80px; /* تقليل المساحة السفلية للهواتف */
  }
  
  .legal-header h1 {
    font-size: 2.5rem;
  }
  
  .legal-content {
    padding: 20px;
    padding-bottom: 20px; /* تقليل المساحة السفلية */
    margin-bottom: 20px;
    max-height: calc(100vh - 250px); /* تقليل الارتفاع الأقصى للهواتف */
  }
  
  .legal-section {
    padding: 20px;
    margin-bottom: 20px; /* تقليل المساحة بين الأقسام */
  }
  
  .challenge-types {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cuneiform-decoration {
    display: none;
  }
  
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .legal-card {
    padding: 20px;
  }
  
  .quick-access {
    padding: 20px;
  }
  
  .quick-access-grid {
    grid-template-columns: 1fr;
  }
  
  .legal-navigation {
    margin-bottom: 20px; /* تقليل المساحة السفلية */
  }
}

/* Legal Spacer */
.legal-spacer {
  height: 50px; /* تقليل المساحة الإضافية */
  width: 100%;
  position: relative;
  z-index: 5;
}

@media (max-width: 768px) {
  .legal-spacer {
    height: 30px; /* مساحة أقل للهواتف */
  }
}

/* إصلاح مشكلة خروج المحتوى من الفوتر */
.legal-page {
  position: relative;
  z-index: 0;
}

.legal-page::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  z-index: -1;
}

/* ضمان بقاء المحتوى داخل الحدود */
.legal-content {
  position: relative;
  z-index: 2;
}

.legal-navigation {
  position: relative;
  z-index: 2;
}

.legal-spacer {
  position: relative;
  z-index: 2;
}

/* Loading Screen Styles */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

/* Keep main content visible at all times */
main {
  opacity: 1;
  visibility: visible;
  position: relative;
  background: transparent;
  min-height: 100vh;
}

/* Fade out gradient at the end of main section */
main::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.02) 55%,
    rgba(0, 0, 0, 0.05) 65%,
    rgba(0, 0, 0, 0.1) 75%,
    rgba(0, 0, 0, 0.2) 85%,
    rgba(0, 0, 0, 0.4) 95%,
    rgba(0, 0, 0, 0.7) 100%
  );
  pointer-events: none;
  z-index: 10;
}

/* Additional fade effect for smoother transition */
main::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 30%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0.6) 100%
  );
  pointer-events: none;
  z-index: 5;
  opacity: 0.8;
}

/* Dark filter for main section */
.parallax {
  filter: brightness(0.85) contrast(1.1) saturate(1.05) sharpness(1.2);
}

.bg-img {
  filter: brightness(0.8) contrast(1.15) saturate(1.1) sharpness(1.3);
}

.mountain-5 {
  filter: brightness(0.9) contrast(1.2) saturate(1.1) sharpness(1.25);
}

.mountain-10,
.mountain-9,
.mountain-8,
.mountain-6,
.mountain-4,
.mountain-3,
.mountain-2,
.mountain-1 {
  filter: brightness(0.8) contrast(1.15) saturate(1.05) sharpness(1.2);
}

.fog-5,
.fog-4,
.fog-3,
.fog-2 {
  filter: brightness(0.85) contrast(1.1) saturate(0.9) opacity(0.9) sharpness(1.1);
}

/* Enhanced image quality filters */
.parallax img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
}

/* Alternative sharpening for better browser support */
.parallax {
  -webkit-filter: brightness(0.85) contrast(1.1) saturate(1.05);
  filter: brightness(0.85) contrast(1.1) saturate(1.05);
  transform: translateZ(0); /* Force hardware acceleration */
  backface-visibility: hidden;
  perspective: 1000px;
}

/* High-quality image rendering */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Specific enhancements for parallax images */
.parallax img {
  will-change: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Enhanced contrast and sharpness for better visibility */
.bg-img {
  -webkit-filter: brightness(0.8) contrast(1.15) saturate(1.1) drop-shadow(0 0 2px rgba(0,0,0,0.3));
  filter: brightness(0.8) contrast(1.15) saturate(1.1) drop-shadow(0 0 2px rgba(0,0,0,0.3));
}

.mountain-5 {
  -webkit-filter: brightness(0.9) contrast(1.2) saturate(1.1) drop-shadow(0 0 3px rgba(0,0,0,0.2));
  filter: brightness(0.9) contrast(1.2) saturate(1.1) drop-shadow(0 0 3px rgba(0,0,0,0.2));
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
  color: #E8B86D;
}

.lamassu-logo {
  margin-bottom: 2rem;
}

.loading-logo {
  width: 150px;
  height: 150px;
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.loading-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(232, 184, 109, 0.5);
  animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  from { text-shadow: 0 0 20px rgba(232, 184, 109, 0.5); }
  to { text-shadow: 0 0 30px rgba(232, 184, 109, 0.8), 0 0 40px rgba(232, 184, 109, 0.3); }
}

.cuneiform-ticker {
  width: 100%;
  height: 60px;
  overflow: hidden;
  position: relative;
  margin: 2rem 0;
  border-top: 2px solid rgba(232, 184, 109, 0.3);
  border-bottom: 2px solid rgba(232, 184, 109, 0.3);
}

.ticker-content {
  display: flex;
  animation: tickerMove 15s linear infinite;
  white-space: nowrap;
}

.cuneiform-txt {
  font-family: 'Noto Sans Cuneiform', serif;
  font-size: 2rem;
  color: #E8B86D;
  margin-right: 3rem;
  opacity: 0.7;
  text-shadow: 0 0 10px rgba(232, 184, 109, 0.3);
}

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

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(232, 184, 109, 0.3);
  border-top: 3px solid #E8B86D;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 2rem auto 0;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Fix navbar text wrapping on mobile */
@media (max-width: 768px) {
  .logo span {
    white-space: nowrap;
    font-size: 2rem;
    letter-spacing: 0.5px;
  }
  
  .logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .logo-image {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
  }
  
  /* Hamburger menu improvements */
  .hamburger {
    order: 1;
    margin-left: auto;
    margin-right: 1rem;
  }
  
  .hamburger a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(232, 184, 109, 0.15);
    border: 2px solid rgba(232, 184, 109, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(232, 184, 109, 0.2);
    position: relative;
    overflow: hidden;
  }
  
  .hamburger a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 184, 109, 0.3), transparent);
    transition: left 0.6s ease;
  }
  
  .hamburger a:hover::before {
    left: 100%;
  }
  
  .hamburger a:hover {
    background: rgba(232, 184, 109, 0.25);
    border-color: rgba(232, 184, 109, 0.6);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(232, 184, 109, 0.3);
  }
  
  .hamburger .bar {
    width: 22px;
    height: 3px;
    background: linear-gradient(45deg, #E8B86D, #f39c12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(232, 184, 109, 0.3);
  }
  
  .hamburger .bar::before,
  .hamburger .bar::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 3px;
    background: linear-gradient(45deg, #E8B86D, #f39c12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(232, 184, 109, 0.3);
  }
  
  .hamburger .bar::before {
    top: -8px;
    transform-origin: center;
  }
  
  .hamburger .bar::after {
    top: 8px;
    transform-origin: center;
  }
  
  /* Beautiful close animation */
  .hamburger.active .bar {
    background: transparent;
    box-shadow: none;
  }
  
  .hamburger.active .bar::before {
    transform: rotate(45deg) translate(0, 8px);
    top: 0;
    animation: barRotateIn 0.4s ease-out;
  }
  
  .hamburger.active .bar::after {
    transform: rotate(-45deg) translate(0, -8px);
    top: 0;
    animation: barRotateIn 0.4s ease-out 0.1s both;
  }
  
  /* Active state styling */
  .hamburger.active a {
    background: rgba(232, 184, 109, 0.3);
    border-color: rgba(232, 184, 109, 0.7);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(232, 184, 109, 0.4);
  }
  
  /* Animation keyframes */
  @keyframes barRotateIn {
    0% {
      transform: rotate(0deg) translate(0, 0);
      opacity: 1;
    }
    50% {
      transform: rotate(22deg) translate(0, 4px);
      opacity: 0.8;
    }
    100% {
      transform: rotate(45deg) translate(0, 8px);
      opacity: 1;
    }
  }
  
  /* Mobile menu styles */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(15, 15, 35, 0.98));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 10000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(232, 184, 109, 0.2);
  }
  
  .mobile-menu.active {
    right: 0;
    animation: menuSlideIn 0.4s ease-out;
  }
  
  /* Menu slide in animation */
  @keyframes menuSlideIn {
    0% {
      right: -100%;
      opacity: 0;
      transform: translateX(50px);
    }
    50% {
      opacity: 0.5;
      transform: translateX(25px);
    }
    100% {
      right: 0;
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mobile-menu li {
    margin: 1.2rem 0;
    opacity: 0;
    transform: translateX(30px);
    animation: menuItemSlideIn 0.4s ease-out forwards;
  }
  
  .mobile-menu li:nth-child(1) { animation-delay: 0.1s; }
  .mobile-menu li:nth-child(2) { animation-delay: 0.15s; }
  .mobile-menu li:nth-child(3) { animation-delay: 0.2s; }
  .mobile-menu li:nth-child(4) { animation-delay: 0.25s; }
  .mobile-menu li:nth-child(5) { animation-delay: 0.3s; }
  .mobile-menu li:nth-child(6) { animation-delay: 0.35s; }
  
  .mobile-menu a {
    color: #E8B86D;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    display: block;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }
  
  .mobile-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 184, 109, 0.1), transparent);
    transition: left 0.6s ease;
  }
  
  .mobile-menu a:hover::before {
    left: 100%;
  }
  
  .mobile-menu a:hover {
    background: rgba(232, 184, 109, 0.15);
    border-color: rgba(232, 184, 109, 0.4);
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 5px 15px rgba(232, 184, 109, 0.2);
  }
  
  /* Menu item slide in animation */
  @keyframes menuItemSlideIn {
    0% {
      opacity: 0;
      transform: translateX(30px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }
  
  /* Language switcher in mobile menu */
  .language-switcher-mobile {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(232, 184, 109, 0.3);
  }
  
  .language-switcher-mobile .language-btn {
    background: rgba(232, 184, 109, 0.1);
    border: 1px solid rgba(232, 184, 109, 0.3);
    color: #E8B86D;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .language-switcher-mobile .language-btn:hover,
  .language-switcher-mobile .language-btn.active {
    background: rgba(232, 184, 109, 0.2);
    border-color: rgba(232, 184, 109, 0.5);
  }
}

/* Extra small mobile navbar adjustments */
@media (max-width: 480px) {
  .logo span {
    font-size: 1.9rem;
    letter-spacing: 0.3px;
  }
  
  .logo-image {
    width: 25px;
    height: 25px;
  }
  
  .logo a {
    gap: 0.3rem;
  }
}

@media (max-width: 360px) {
  .logo span {
    font-size: 0.8rem;
    letter-spacing: 0.2px;
  }
  
  .logo-image {
    width: 22px;
    height: 22px;
  }
}

/* Mobile Responsive for Loading Screen */
@media (max-width: 768px) {
  .loading-logo {
    width: 80px;
    height: 80px;
  }
  
  .loading-text h2 {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
  
  .cuneiform-txt {
    font-size: 1.5rem;
  }
  
  .cuneiform-ticker {
    height: 50px;
  }
  
  /* Mobile fade gradient adjustment */
  main::after {
    height: 300px;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 45%,
      rgba(0, 0, 0, 0.01) 60%,
      rgba(0, 0, 0, 0.03) 70%,
      rgba(0, 0, 0, 0.08) 80%,
      rgba(0, 0, 0, 0.15) 90%,
      rgba(0, 0, 0, 0.3) 100%
    );
  }
  
  main::before {
    height: 150px;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.05) 25%,
      rgba(0, 0, 0, 0.15) 50%,
      rgba(0, 0, 0, 0.4) 100%
    );
    opacity: 0.6;
  }
  
  /* Responsive Mobile Backgrounds for .bg-img */
  .bg-img {
    width: 120%;
    height: auto;
    object-fit: cover;
    object-position: center;
    min-height: 100vh;
  }
  
  /* Adjust parallax positioning for mobile - preserve transforms */
  .parallax {
    max-width: 100vw;
    height: auto;
  }
  
  /* Ensure parallax transforms work on mobile */
  .parallax.bg-img {
    transform-origin: center center;
  }
  
  /* Mobile responsive sizing for all parallax images */
  .mountain-10,
  .mountain-9,
  .mountain-8,
  .mountain-6,
  .mountain-4,
  .mountain-3,
  .mountain-2,
  .mountain-1 {
    width: 80%;
    height: auto;
    object-fit: cover;
    object-position: center;
  }
  
  .mountain-5 {
    width: 75%;
    height: auto;
    object-fit: cover;
    object-position: center;
  }
  
  .fog-5,
  .fog-4,
  .fog-3,
  .fog-2 {
    width: 90%;
    height: auto;
    object-fit: cover;
    object-position: center;
    opacity: 0.8;
  }
  
  .sun-rays,
  .black-shadow {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
  }
  
  /* Specific adjustments for different screen sizes */
  @media (max-width: 480px) {
    .bg-img {
      min-width: 900px !important;
      min-height: 120vh;
      object-position: center top;
    }
    
    /* Smaller mobile adjustments for parallax images */
    .mountain-10,
    .mountain-9,
    .mountain-8,
    .mountain-6,
    .mountain-4,
    .mountain-3,
    .mountain-2,
    .mountain-1 {
      max-width: 40%;
    }

    .mountain-1 {
      position: absolute;
      max-width: 65%;
      top: 60%;
    }

    .mountain-3 {
      position: absolute;
      max-width: 65%;
      top: 60%;
    }

    .mountain-4 {
      position: absolute;
      max-width: 20%;
      top: 60%;
      opacity: 0;
    }

    .mountain-6 {
      position: absolute;
      max-width: 20%;
      top: 60%;
      opacity: 0;
    }

    .mountain-6 {
      position: absolute;
      max-width: 20%;
      top: 60%;
      opacity: 0;
    }

    .mountain-8 {
      position: absolute;
      max-width: 40%;
      top: 60%;
      /* opacity: 0; */
    }

    .mountain-9 {
      position: absolute;
      max-width: 20%;
      top: 60%;
      opacity: 0;
    }

    .mountain-10 {
      position: absolute;
      max-width: 40%;
      top: 60%;
      /* opacity: 0; */
    }
    
    .mountain-5 {
      width: 55%;
    }
    
    .fog-5,
    .fog-4,
    .fog-3,
    .fog-2 {
      width: 70%;
    }
  }
  
  @media (max-width: 360px) {
    .bg-img {
      width: 160%;
      min-height: 130vh;
      object-position: center top;
    }
    
    /* Extra small mobile adjustments */
    .mountain-10,
    .mountain-9,
    .mountain-8,
    .mountain-6,
    .mountain-4,
    .mountain-3,
    .mountain-2,
    .mountain-1 {
      width: 50%;
    }
    
    .mountain-5 {
      width: 45%;
    }
    
    .fog-5,
    .fog-4,
    .fog-3,
    .fog-2 {
      width: 60%;
    }
  }
}

/* Additional Mobile Background Optimizations */
@media (max-width: 1024px) {
  .bg-img {
    width: 110%;
    height: auto;
    object-fit: cover;
    object-position: center;
  }
  
  /* Tablet responsive sizing for parallax images */
  .mountain-10,
  .mountain-9,
  .mountain-8,
  .mountain-6,
  .mountain-4,
  .mountain-3,
  .mountain-2,
  .mountain-1 {
    width: 90%;
    height: auto;
    object-fit: cover;
    object-position: center;
  }
  
  .mountain-5 {
    width: 85%;
    height: auto;
    object-fit: cover;
    object-position: center;
  }
  
  .fog-5,
  .fog-4,
  .fog-3,
  .fog-2 {
    width: 95%;
    height: auto;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 768px) {
  .bg-img {
    width: 120%;
    height: auto;
    object-fit: cover;
    object-position: center;
    min-height: 100vh;
  }
}

@media (max-width: 480px) {
  .bg-img {
    width: 150%;
    min-height: 190vh;
    object-position: center top;
  }
}

@media (max-width: 360px) {
  .bg-img {
    width: 160%;
    min-height: 130vh;
    object-position: center top;
  }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .bg-img {
    width: 150%;
    height: 120vh;
    object-fit: cover;
    object-position: center;
  }
}

/* Mobile Parallax Animation Fix */
@media (max-width: 768px) {
  .parallax {
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  /* Ensure parallax transforms are not overridden */
  .parallax.bg-img {
    transform-origin: center center !important;
  }
  
  /* Preserve parallax animation on mobile */
  .parallax[data-speedx],
  .parallax[data-speedy],
  .parallax[data-speedz] {
    transform-style: preserve-3d;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Navigation link hover effects */
.nav-links a {
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #ffd700;
  transform: translateY(-2px);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  transition: width 0.3s ease;
}

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

/* Sign up button hover effect */
.signup-btn {
  transition: all 0.3s ease;
}

.signup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Buy Now Buttons */
.buy-btn {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 25px;
  text-align: center;
  width: 100%;
  border: 2px solid rgba(232, 184, 109, 1);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  animation: buttonPulse 2s ease-in-out infinite;
}

.buy-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.buy-btn:active::before {
  width: 300px;
  height: 300px;
}

@keyframes buttonPulse {
  0%, 100% { 
    box-shadow: 0 0 0 0 rgba(232, 184, 109, 0.4);
  }
  50% { 
    box-shadow: 0 0 0 10px rgba(232, 184, 109, 0);
  }
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
  .legal-pages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .legal-page-card {
    padding: 2rem;
  }
  
  .legal-page-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .legal-page-card h3 {
    font-size: 1.3rem;
  }
  
  .legal-page-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .legal-pages-section {
    padding: 4rem 0;
  }
  
  .legal-page-card {
    padding: 1.5rem;
  }
  
  .legal-page-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .legal-page-card h3 {
    font-size: 1.2rem;
  }
  
  .legal-page-card p {
    font-size: 0.85rem;
  }
  
  .legal-page-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
}

.buy-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(232, 184, 109, 0.4);
  background: linear-gradient(135deg, #f39c12, #E8B86D);
}

/* Calculator CTA */
.calculator-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(232, 184, 109, 0.3);
  position: relative;
}

.calculator-cta::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232, 184, 109, 0.8), transparent);
}

.calculator-cta .btn {
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #E8B86D 0%, #D4A574 100%);
  color: #ffffff;
  border: 2px solid rgba(232, 184, 109, 1);
  box-shadow: 
    0 8px 25px rgba(232, 184, 109, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.calculator-cta .btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 12px 35px rgba(232, 184, 109, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #f39c12 0%, #E8B86D 100%);
}

/* Price Card Updates */
.price-card {
  position: relative;
  padding-bottom: 60px; /* Space for button */
}

.price-card h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #ffd700;
}

.price-card .price {
  font-size: 2rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 15px;
}

/* Legal Intro CTA */
.legal-intro-cta {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.legal-intro-cta .btn {
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border-radius: 30px;
}

.legal-intro-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Audio Controls for Legal Pages */
.audio-controls {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.audio-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  color: #ffd700;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.audio-btn:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.5);
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.audio-btn.active {
  background: rgba(255, 215, 0, 0.3);
  border-color: #ffd700;
  color: #0a0a0a;
}

.audio-btn.muted {
  background: rgba(255, 69, 0, 0.1);
  border-color: rgba(255, 69, 0, 0.3);
  color: #ff4500;
}

@media (max-width: 768px) {
  .audio-controls {
    right: 10px;
    top: auto;
    bottom: 20px;
    transform: none;
    flex-direction: row;
  }
  
  .audio-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}
