:root {
  /* Premium color scheme - brightened gold colors */
  --primary-dark: #121212;
  --secondary-dark: #1e1e1e;
  --gold: #f5c518; /* Brightened from #d4af37 */
  --gold-light: #ffdf00; /* Brightened from #f8e9a1 */
  --gold-glow: rgba(245, 197, 24, 0.2);
  --white: #ffffff;
  --gray: #888888;
  --light-gray: #f5f5f5;
  
  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Playfair Display', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--primary-dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Body state when mobile menu is active */
body.menu-open {
  overflow: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.section-header p {
  color: var(--gray);
  font-size: 1.1rem;
}

.highlight {
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.scarcity-note {
  font-style: italic;
  color: var(--gold-light);
  margin-top: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary-dark);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s ease;
  z-index: -1;
}

.btn-primary:hover:before {
  left: 100%;
  transition: 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 7px 20px rgba(245, 197, 24, 0.4), 0 0 30px rgba(245, 197, 24, 0.2);
}

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

.btn-secondary:hover {
  background-color: rgba(212, 175, 55, 0.1);
}

/* Header - Redesigned */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
  background-color: transparent;
}

.site-header.scrolled {
  background-color: rgba(18, 18, 18, 0.95);
  padding: 1rem 0;
}

.site-header .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: relative;
}

.header-left {
  justify-self: start;
}

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

.header-right {
  justify-self: end;
}

.menu-trigger,
.contact-trigger {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
}

.menu-trigger:hover,
.contact-trigger:hover {
  color: var(--white);
}

.header-tagline {
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--white);
  font-weight: 500;
  opacity: 0.9;
}

/* Enhanced Main Navigation */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.main-nav.active {
  transform: translateY(0);
  opacity: 1;
}

.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.main-nav li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: calc(var(--item-index) * 0.1s);
}

.main-nav.active li {
  opacity: 1;
  transform: translateY(0);
}

.main-nav a {
  display: block;
  padding: 1rem;
  color: white;
  font-size: 2rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #D4AF37;
}

.nav-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-close:hover {
  color: #D4AF37;
}

.mobile-menu-toggle {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 4px 0;
  background-color: var(--text-color);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Hero Section - Redesigned for Sterling-like Impact */
.hero {
  height: 100vh;
  position: relative;
  background-color: var(--primary-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 60% 50%, rgba(245, 197, 24, 0.03) 0%, rgba(18, 18, 18, 0.4) 70%);
  z-index: 1;
}

.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1600px;
  height: 75vh;
  position: relative;
  z-index: 2;
}

.hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5%;
}

.brand-name {
  font-size: 9vw;
  font-weight: 900;
  line-height: 0.9;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: -3px;
  margin: 0;
  font-family: var(--font-primary);
  position: relative;
}

.brand-period {
  color: var(--white);
  opacity: 0.9;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.digital-structure {
  position: relative;
  width: 80%;
  aspect-ratio: 1;
  transform: rotate(45deg);
  overflow: visible;
}

.structure-beam {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.beam-horizontal {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  animation: beamPulse 4s infinite alternate;
}

.beam-vertical {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: beamPulse 4s infinite alternate-reverse;
}

.beam-diagonal-1 {
  width: 2px;
  height: 141%;
  top: -20%;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  animation: beamPulse 5s infinite alternate;
}

.beam-diagonal-2 {
  width: 2px;
  height: 141%;
  top: -20%;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  animation: beamPulse 5s infinite alternate-reverse;
}

.beam-diagonal-3 {
  width: 2px;
  height: 100%;
  top: 0%;
  left: 50%;
  transform: translateX(-50%) rotate(22.5deg);
  animation: beamPulse 6s infinite alternate;
}

.beam-diagonal-4 {
  width: 2px;
  height: 100%;
  top: 0%;
  left: 50%;
  transform: translateX(-50%) rotate(-22.5deg);
  animation: beamPulse 6s infinite alternate-reverse;
}

.structure-node {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--gold);
  transform: translate(-50%, -50%);
}

.node-1 {
  top: 0;
  left: 50%;
  animation: nodePulse 3s infinite alternate;
}

.node-2 {
  top: 50%;
  left: 0;
  animation: nodePulse 4s infinite alternate-reverse;
}

.node-3 {
  top: 100%;
  left: 50%;
  animation: nodePulse 3.5s infinite alternate;
}

.node-4 {
  top: 50%;
  left: 100%;
  animation: nodePulse 4.5s infinite alternate-reverse;
}

.node-5 {
  top: 15%;
  left: 15%;
  animation: nodePulse 5s infinite alternate;
}

.node-6 {
  top: 15%;
  left: 85%;
  animation: nodePulse 5.5s infinite alternate-reverse;
}

.node-7 {
  top: 85%;
  left: 15%;
  animation: nodePulse 4.8s infinite alternate;
}

.node-8 {
  top: 85%;
  left: 85%;
  animation: nodePulse 5.2s infinite alternate-reverse;
}

.node-center {
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  animation: centerPulse 3s infinite;
}

.structure-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  border: 1px solid var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  animation: ringPulse 6s infinite;
}

.outer-ring {
  width: 80%;
  height: 80%;
  animation: ringPulse 8s infinite reverse;
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.particles-container::before,
.particles-container::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: var(--gold);
  border-radius: 50%;
  opacity: 0;
}

.particles-container::before {
  top: 30%;
  left: 45%;
  animation: particleFloat 6s infinite;
}

.particles-container::after {
  top: 60%;
  left: 55%;
  animation: particleFloat 8s 2s infinite;
}

@keyframes beamPulse {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.6;
  }
}

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

@keyframes centerPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 15px var(--gold);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    box-shadow: 0 0 30px var(--gold);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 15px var(--gold);
  }
}

@keyframes ringPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.2;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.2;
  }
}

@keyframes particleFloat {
  0% {
    transform: translate(0, 0) scale(0.8);
    opacity: 0;
  }
  30% {
    opacity: 0.8;
  }
  70% {
    opacity: 0.6;
  }
  100% {
    transform: translate(20px, -20px) scale(0);
    opacity: 0;
  }
}

.hero-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
  background: linear-gradient(to top, rgba(18, 18, 18, 0.9), transparent);
  z-index: 3;
}

.hero-tagline {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.highlight-text {
  color: var(--gold);
  position: relative;
  display: inline-block;
  font-weight: 600;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(212, 175, 55, 0.3);
  transition: all 0.4s ease;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 2px;
  opacity: 0.7;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator svg {
  margin-top: 0.5rem;
  animation: scrollArrow 2s infinite;
}

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

/* Media Queries for Responsive Design */
@media (max-width: 1200px) {
  .brand-name {
    font-size: 100px;
  }
}

@media (max-width: 992px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
    gap: 2rem;
  }
  
  .hero-brand {
    justify-content: center;
    padding-left: 0;
    padding-top: 20vh;
  }
  
  .brand-name {
    font-size: 80px;
    text-align: center;
  }
  
  .hero-visual {
    height: 40vh;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.75rem 0;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-left, .header-right {
    display: none;
  }
  
  .site-header .container {
    justify-content: center;
  }
  
  .main-nav {
    transform: translateX(100%);
  }
  
  .main-nav.active {
    transform: translateX(0);
  }

  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
  }
  
  .main-nav ul {
    flex-direction: column;
    text-align: center;
    padding: 2rem 0;
  }
  
  .main-nav li {
    margin: 1rem 0;
    opacity: 1;
    transform: none;
    animation: none;
  }
  
  .main-nav a {
    font-size: 1.5rem;
    display: block;
    padding: 0.8rem 1.5rem;
  }
  
  .header-tagline {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }
  
  .menu-trigger, 
  .contact-trigger {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .brand-name {
    font-size: 60px;
  }
  
  .hero-tagline {
    font-size: 1rem;
  }

  .language-selector {
    margin: 1rem auto;
    width: fit-content;
  }
  
  .btn-nav {
    border: 2px solid var(--gold);
    text-align: center;
  }
  
  .hero {
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .subheadline {
    font-size: 1.1rem;
    margin: 0 auto 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    margin-bottom: 1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .hero-animation {
    opacity: 0.5;
  }
  
  .floating-icon {
    width: 60px;
    height: 60px;
  }

  .vision-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .journey-steps {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .custom-cta {
    padding: 2rem;
  }

  .custom-cta h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .header-tagline {
    display: none;
  }
  
  .brand-name {
    font-size: 48px;
  }
  
  .digital-structure {
    width: 90%;
  }
}

/* Solutions Section */
.solutions {
  position: relative;
  background: linear-gradient(180deg, #0c0c0c 0%, #181818 100%);
  padding: 100px 0;
  overflow: hidden;
  z-index: 1;
}

.solutions .background-accents {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.solutions .accent {
  position: absolute;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.03);
  filter: blur(60px);
}

.solutions .accent-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}

.solutions .accent-2 {
  width: 300px;
  height: 300px;
  bottom: 20%;
  left: -150px;
}

.solutions .accent-3 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  right: 30%;
}

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

.section-header h2 {
  font-size: 42px;
  margin-bottom: 20px;
  background: linear-gradient(to right, #fff, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0;
}

.section-accent .accent-line {
  height: 1px;
  width: 80px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.6), transparent);
}

.section-accent .accent-icon {
  margin: 0 12px;
  display: flex;
}

.section-tagline {
  font-size: 18px;
  color: #aaa;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.solution-card {
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(212, 175, 55, 0.2);
}

.solution-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.emotion-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #d4af37;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.solution-icon {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: rgba(30, 30, 30, 0.5);
  transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
  transform: scale(1.05);
}

.solution-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  font-weight: 600;
}

.solution-pain-points {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 14px;
}

.solution-pain-points p {
  margin: 0;
  line-height: 1.5;
  color: #ccc;
}

.solution-pain-points strong {
  color: #d4af37;
}

.multi-location-badge {
  display: flex;
  align-items: center;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 16px;
}

.multi-location-badge .icon {
  margin-right: 8px;
  display: flex;
}

.multi-location-badge .text {
  font-size: 13px;
  font-weight: 500;
  color: #d4af37;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.solution-features li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 15px;
  color: #eee;
}

.solution-features li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4af37;
}

.solution-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.solutions-note {
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.solutions-note:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  z-index: -1;
}

.solutions-note .highlight {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 24px;
  color: #fff;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.solutions-note .cta-container {
  display: flex;
  justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .solutions {
    padding: 80px 0;
  }
  
  .section-header h2 {
    font-size: 36px;
  }
  
  .solutions-note {
    padding: 30px;
  }
  
  .solutions-note .highlight {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .solutions {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .section-tagline {
    font-size: 16px;
  }
  
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  
  .solutions-note {
    padding: 24px;
  }
  
  .solutions-note .highlight {
    font-size: 16px;
  }
}

/* Custom Software Section */
.custom-software {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.custom-software:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.section-tagline {
  font-size: 1.3rem;
  color: var(--gray);
  margin-bottom: 4rem;
  font-style: italic;
}

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

.vision-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.vision-card:before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, var(--gold), transparent);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.vision-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.3));
}

.vision-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--gold);
  stroke-width: 2px;
  fill: none;
}

.vision-icon svg path,
.vision-icon svg circle,
.vision-icon svg rect {
  stroke: var(--gold);
  stroke-width: 2;
  transition: all 0.3s ease;
}

.vision-card:hover .vision-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.5));
}

.vision-card:hover .vision-icon svg path,
.vision-card:hover .vision-icon svg circle,
.vision-card:hover .vision-icon svg rect {
  stroke-width: 2.5;
}

.vision-card h3 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.vision-card p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
}

.vision-card:hover p {
  color: var(--white);
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 5rem 0;
  position: relative;
}

.journey-steps:before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold));
  opacity: 0.3;
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-dark);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--gold);
  transition: all 0.3s ease;
}

.step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--gold-glow);
}

.step h4 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.step p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.6;
}

.investment-plans {
  text-align: center;
  margin: 5rem 0;
}

.investment-plans h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 3rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.plan-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.plan-card.featured {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--gold);
  transform: translateY(-20px);
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.plan-card.featured:hover {
  transform: translateY(-30px);
}

.plan-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-header h4 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.plan-header p {
  color: var(--gray);
  font-size: 1rem;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
}

.plan-features li {
  color: var(--white);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.plan-features li:before {
  content: '✓';
  color: var(--gold);
  position: absolute;
  left: 0;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.plan-features li:hover:before {
  transform: scale(1.2);
  opacity: 1;
}

.plan-range {
  margin-top: auto;
}

.plan-range span {
  display: block;
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.plan-range strong {
  color: var(--gold);
  font-size: 2rem;
  font-weight: 600;
}

.custom-cta {
  text-align: center;
  margin-top: 5rem;
  padding: 4rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-cta h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.custom-cta p {
  color: var(--gray);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
}

.btn-arrow {
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(5px);
}

/* Why Choose Us Section */
.why-choose {
  padding: 5rem 0;
}

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

.benefit-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--secondary-dark);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
}

.benefit-card h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

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

/* Waiting List Section */
.waiting-list {
  padding: 5rem 0;
  background-color: var(--secondary-dark);
}

.waitlist-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.waitlist-benefits {
  margin: 2rem 0;
}

.waitlist-benefits .benefit {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.waitlist-benefits .benefit-icon {
  width: 40px;
  height: 40px;
  margin: 0 1rem 0 0;
}

.waitlist-benefits .benefit-text {
  flex: 1;
}

.waitlist-benefits h4 {
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.waitlist-form-container {
  background-color: var(--primary-dark);
  border-radius: 8px;
  padding: 2rem;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: var(--font-primary);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.radio-label input {
  width: auto;
  margin-right: 0.5rem;
}

.form-message {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 4px;
}

.success {
  background-color: rgba(39, 174, 96, 0.1);
  border-left: 3px solid #27ae60;
}

.error {
  background-color: rgba(231, 76, 60, 0.1);
  border-left: 3px solid #e74c3c;
}

/* Footer */
.site-footer {
  padding: 3rem 0 1.5rem;
  background-color: var(--secondary-dark);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
  margin-bottom: 1.5rem;
}

.footer-logo a {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  flex: 1;
  min-width: 150px;
  margin-bottom: 1.5rem;
}

.footer-column h4 {
  color: var(--gold);
  margin-bottom: 1rem;
}

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

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

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .custom-content,
  .waitlist-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pricing-tiers {
    grid-template-columns: 1fr;
  }

  .vision-grid,
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-steps:before {
    display: none;
  }

  .plan-card.featured {
    transform: translateY(0);
  }

  .plan-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .solutions-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    flex-direction: column;
  }
}

/* Add animations and effects for more vibrant feel */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes glow {
  0% { box-shadow: 0 0 5px var(--gold-glow); }
  50% { box-shadow: 0 0 20px var(--gold-glow); }
  100% { box-shadow: 0 0 5px var(--gold-glow); }
}

.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

.animate-pulse {
  animation: none !important;
}

.animate-glow {
  animation: glow 2s infinite;
}

/* Enhanced Card Hover Effects */
.solution-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px var(--gold-glow);
}

/* Emotional Highlights */
.emotion-tag {
  display: inline-block;
  padding: 5px 10px;
  background-color: var(--gold-glow);
  border-left: 3px solid var(--gold);
  margin-bottom: 1rem;
  font-style: italic;
  border-radius: 0 4px 4px 0;
}

.pain-point {
  border-left: 3px solid #e74c3c;
  background-color: rgba(231, 76, 60, 0.1);
}

.solution-point {
  border-left: 3px solid #2ecc71;
  background-color: rgba(46, 204, 113, 0.1);
}

/* Enhanced section transitions */
.section-divider {
  position: relative;
  height: 100px;
  margin: 2rem 0;
  overflow: hidden;
}

.section-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  fill: var(--secondary-dark);
}

/* Testimonial styling */
.testimonial {
  background-color: rgba(245, 197, 24, 0.05);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  margin: 3rem 0;
}

.testimonial:before {
  content: '"';
  font-family: var(--font-secondary);
  position: absolute;
  top: -30px;
  left: 20px;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  border: 2px solid var(--gold);
}

.testimonial-author-info h4 {
  margin-bottom: 0.2rem;
}

.testimonial-author-info p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Problem/Solution cards */
.problem-solution-card {
  background-color: var(--secondary-dark);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.problem-solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.problem-solution-card h3 {
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}

.problem-solution-card h3:before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #e74c3c;
}

.problem-solution-card.solution h3:before {
  content: '✓';
  color: #2ecc71;
}

.problem-solution-card p {
  color: var(--light-gray);
}

/* Highlight ribbon */
.ribbon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 15px;
  background: var(--gold);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.8rem;
  transform: translateY(-50%) translateX(30%) rotate(45deg);
  width: 150px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
}

/* Hero Animation */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 800px;
}

.text-highlight {
  position: relative;
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
}

.text-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  animation: highlightPulse 3s infinite;
}

@keyframes highlightPulse {
  0%, 100% {
    opacity: 0.3;
    box-shadow: 0 0 5px var(--gold);
  }
  50% {
    opacity: 0.6; 
    box-shadow: 0 0 10px var(--gold);
  }
}

.emotion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.emotion-tags .emotion-tag {
  margin-bottom: 0;
}

.hero-animation {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.floating-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  animation: float 6s ease-in-out infinite;
  opacity: 0.1;
}

.floating-icon:nth-child(1) {
  top: 20%;
  right: 15%;
}

.floating-icon:nth-child(2) {
  top: 50%;
  right: 25%;
}

.floating-icon:nth-child(3) {
  top: 30%;
  right: 40%;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@media (max-width: 768px) {
  .hero-animation {
    opacity: 0.5;
  }
  
  .floating-icon {
    width: 60px;
    height: 60px;
  }
}

/* Multi-step Form */
.progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--gold);
  transition: width 0.3s ease;
}

.form-step {
  display: none;
}

.form-step[data-step="1"] {
  display: block;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.btn-prev {
  display: none;
}

.form-step h4 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

input.error, select.error, textarea.error {
  border-color: #e74c3c;
}

/* Language Selector */
.language-selector {
  display: flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  margin-left: 1rem;
}

.lang-divider {
  color: rgba(212, 175, 55, 0.4);
  font-size: 1rem;
  margin: 0 -2px;
}

.lang-btn {
  background: none;
  border: none;
  padding: 5px 10px;
  color: var(--gray);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.lang-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary-dark);
  font-weight: 700;
}

/* RTL Styles for Arabic */
html[lang="ar"] body {
  direction: rtl;
  text-align: right;
  font-family: 'Tajawal', var(--font-primary);
}

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

html[lang="ar"] .main-nav li {
  margin-left: 0;
  margin-right: 2rem;
}

@media (max-width: 768px) {
  .language-selector {
    margin: 1rem auto;
    width: fit-content;
  }
  
  html[lang="ar"] .main-nav ul {
    flex-direction: column;
  }
  
  html[lang="ar"] .main-nav li {
    margin-right: 0;
  }
}

/* Custom cursor styles */
.custom-cursor {
  position: fixed;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #D4AF37;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: width 0.2s, height 0.2s, opacity 0.2s, transform 0.01s;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  mix-blend-mode: difference;
}

.custom-cursor-follower {
  position: fixed;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background-color: transparent;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: width 0.3s, height 0.3s, opacity 0.3s, background-color 0.3s, transform 0.08s;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

/* Cursor hover state */
.custom-cursor.cursor-hover {
  width: 8px;
  height: 8px;
  background-color: #D4AF37;
  mix-blend-mode: difference;
}

.custom-cursor-follower.cursor-hover {
  width: 32px;
  height: 32px;
  background-color: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.7);
}

/* Hidden cursor state */
.cursor-hidden {
  opacity: 0 !important;
}

/* Brand name hover effects */
.brand-name {
  position: relative;
  transition: letter-spacing 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.brand-name:hover {
  letter-spacing: 1.5px;
}

.gateway-text, .prime-text {
  position: relative;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.prime-text {
  color: #D4AF37;
}

/* Underline effects */
.gateway-text::after,
.prime-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.prime-text::after {
  background-color: #D4AF37;
}

.gateway-text:hover::after,
.prime-text:hover::after {
  width: 100%;
}

/* Brand name parts hover effect */
.gateway-text:hover,
.prime-text:hover {
  transform: translateY(-2px);
}

/* Brand container hover effect */
.brand-container:hover .brand-name {
  letter-spacing: 2px;
}

/* Premium button effects */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: center;
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.btn:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.btn:hover:before {
  opacity: 1;
}

.btn:active {
  transform: scale(0.98);
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  box-shadow: 0 5px 15px -3px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 10px 30px -5px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  box-shadow: 0 5px 15px -3px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
}

/* Scroll reveal animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Elegant fade-ins with delay variations */
.fade-in-delay-1 {
  animation: fadeIn 1s ease 0.1s forwards;
}

.fade-in-delay-2 {
  animation: fadeIn 1s ease 0.2s forwards;
}

.fade-in-delay-3 {
  animation: fadeIn 1s ease 0.3s forwards;
}

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

/* Enhanced card effects */
.service-card, .vision-card, .pricing-card {
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), 
              box-shadow 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
              background-color 0.5s ease;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.service-card:hover, .vision-card:hover, .pricing-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.vision-card:hover .vision-icon {
  transform: scale(1.1) rotateY(10deg);
}

.vision-icon {
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Dynamic background effect */
.gradient-background {
  background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

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

/* Enhanced digital structure animation */
.digital-structure {
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation: rotateStructure 40s linear infinite;
  will-change: transform;
}

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

/* Elegant text animations */
.highlight-text {
  position: relative;
  display: inline-block;
}

.highlight-text:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #D4AF37;
  transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.highlight-text:hover:after {
  width: 100%;
}

/* Better focus styles for accessibility */
:focus {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}

/* Parallax sections */
.parallax-layer {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.parallax-scroll {
  will-change: transform;
}

/* Hero section enhancements */
.hero h1, .hero h2 {
  background-image: linear-gradient(135deg, #fff 30%, #e0e0e0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: text-shadow 0.5s ease;
}

.hero h1:hover, .hero h2:hover {
  text-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

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

/* Enhanced header and navigation */
.main-header {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(12, 12, 12, 0.8);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
} 