/* Gold Company Website Styles */
:root{
  --gold:#c9a44a;
  --gold-dark:#a07c2f;
  --gold-light:#f4e5a7;
  --gold-shimmer:#e6d08a;
  --muted:#6b6b6b;
  --bg:#ffffff;
  --max-width:1100px;
  --shadow-subtle: 0 2px 8px rgba(0,0,0,0.02);
  --shadow-medium: 0 8px 32px rgba(0,0,0,0.06);
  --shadow-strong: 0 16px 64px rgba(0,0,0,0.08);
  --shadow-premium: 0 24px 80px rgba(160,124,47,0.15);
  --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  --gradient-premium: linear-gradient(135deg, rgba(201,164,74,0.1) 0%, rgba(160,124,47,0.05) 100%);
  --gradient-luxury: linear-gradient(135deg, #c9a44a 0%, #e6d08a 25%, #a07c2f 50%, #c9a44a 75%, #f4e5a7 100%);
  --gradient-shimmer: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  --texture-premium: radial-gradient(circle at 50% 50%, rgba(201,164,74,0.03) 0%, transparent 70%);
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color:#0b1220;
  background:
    /* Premium texture layers */
    radial-gradient(circle at 20% 80%, rgba(201,164,74,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(160,124,47,0.03) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(230,208,138,0.02) 0%, transparent 70%),
    /* Subtle gradient overlay */
    linear-gradient(180deg, #fbfbfb 0%, #fff 40%, #fefefe 100%);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
  position:relative;
}

/* Premium Background Pattern with Animation */
body::before{
  content:'';
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(201,164,74,0.08) 1px, transparent 0);
  background-size:40px 40px;
  opacity:0.3;
  z-index:-2;
  pointer-events:none;
  animation: patternFloat 60s ease-in-out infinite;
}

/* Luxury shimmer overlay */
body::after{
  content:'';
  position:fixed;
  top:-50%;
  left:-50%;
  right:-50%;
  bottom:-50%;
  background:
    linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.02) 50%, transparent 60%);
  background-size:200px 200px;
  z-index:-1;
  pointer-events:none;
  animation: luxuryShimmer 20s ease-in-out infinite;
}

@keyframes patternFloat {
  0%, 100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(-10px) translateY(-5px); }
  50% { transform: translateX(5px) translateY(-10px); }
  75% { transform: translateX(-5px) translateY(5px); }
}

@keyframes luxuryShimmer {
  0%, 100% { transform: translateX(-100px) translateY(-100px) rotate(0deg); }
  50% { transform: translateX(100px) translateY(100px) rotate(180deg); }
}

.container{max-width:var(--max-width);margin:0 auto;padding:0 20px}

/* Premium Typography System */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0b1220;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1.5rem 0;
  background: linear-gradient(135deg, #0b1220 0%, var(--gold-dark) 50%, #0b1220 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin: 0 0 1.25rem 0;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin: 0 0 1rem 0;
}

/* Luxury headings for special sections */
.luxury-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-style: italic;
  background: var(--gradient-luxury);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}

/* Premium brand name styling */
.brand-name {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif !important;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #0b1220 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

/* Premium body text */
.premium-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  font-size: 1.1rem;
  color: #4a5568;
}

/* Elegant quote styling */
.elegant-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--gold-dark);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

/* Premium button text */
.btn, .cta {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* Navigation premium fonts */
.nav a {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Special gold text effect */
.gold-text {
  background: var(--gradient-luxury);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* Premium section headers */
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  background: var(--gradient-luxury);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Modern Header Design */
.header{
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(201,164,74,0.1);
  padding:16px 0;
  position:fixed;
  top:0;
  left:0;
  right:0;
  width:100%;
  z-index:1000;
  transition:all 0.3s ease;
}

.header.scrolled{
  background:rgba(255,255,255,0.98);
  box-shadow:0 4px 32px rgba(0,0,0,0.06);
  padding:12px 0;
}

.header .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  max-width:95%;
  padding:0 40px;
}

.brand{
  display:flex;
  align-items:center;
  gap:16px;
  cursor:pointer;
  transition:transform 0.3s ease;
  text-decoration:none;
  color:inherit;
}

.brand:hover{
  transform:translateY(-1px);
  text-decoration:none;
}

.brand .logo{
  width:48px;
  height:48px;
  border-radius:12px;
  overflow:hidden;
  position:relative;
  transition:all 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow:0 4px 16px rgba(201,164,74,0.15);
}

.brand .logo::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
  opacity:0;
  transition:opacity 0.3s ease;
}

.brand .logo:hover::before{
  opacity:1;
}

.brand .logo:hover{
  transform:translateY(-2px) scale(1.05);
  box-shadow:0 8px 24px rgba(201,164,74,0.25);
}

.brand-text{
  display:flex;
  flex-direction:column;
}

.brand-name{
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  font-weight:800;
  font-size:20px;
  letter-spacing:-0.5px;
  background:linear-gradient(135deg, #0b1220 0%, var(--gold-dark) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  margin:0;
}

.brand-tagline{
  font-size:11px;
  color:var(--muted);
  font-weight:500;
  letter-spacing:0.5px;
  text-transform:uppercase;
  margin:0;
}

/* Modern Navigation */
.nav{
  display:flex;
  gap:8px;
  align-items:center;
}

.nav a{
  color:inherit;
  text-decoration:none;
  font-weight:500;
  font-size:15px;
  position:relative;
  padding:12px 16px;
  border-radius:10px;
  transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
  letter-spacing:-0.2px;
}

.nav a:not(.cta){
  background:transparent;
}

.nav a:not(.cta):hover{
  background:rgba(201,164,74,0.08);
  color:var(--gold-dark);
  transform:translateY(-1px);
}

.nav a[aria-current="page"]:not(.cta){
  background:rgba(201,164,74,0.12);
  color:var(--gold-dark);
  font-weight:600;
}

/* Premium Dropdown Navigation - Improved */
.nav-dropdown{
  position:relative;
}

.dropdown-toggle{
  display:flex;
  align-items:center;
  gap:4px;
  cursor:pointer;
}

.dropdown-arrow{
  font-size:12px;
  transition:transform 0.3s ease;
}

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

/* Improved dropdown - single column, better spacing */
.dropdown-menu{
  position:absolute;
  top:calc(100% + 8px);
  left:50%;
  transform:translateX(-50%);
  background:rgba(255,255,255,0.98);
  backdrop-filter:blur(20px);
  border:2px solid rgba(201,164,74,0.1);
  border-radius:12px;
  padding:8px;
  min-width:180px;
  max-width:200px;
  box-shadow:0 8px 32px rgba(0,0,0,0.08);
  opacity:0;
  visibility:hidden;
  transform:translateX(-50%) translateY(-10px);
  transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
  z-index:1000;
  /* Prevent menu from going off-screen */
  max-height:300px;
  overflow-y:auto;
}

/* Close other dropdowns when one opens */
.nav-dropdown:not(:hover) .dropdown-menu{
  opacity:0;
  visibility:hidden;
  transform:translateX(-50%) translateY(-10px);
}

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

.dropdown-menu a{
  display:block;
  padding:8px 12px;
  border-radius:6px;
  font-size:13px;
  font-weight:500;
  color:#4a5568;
  transition:all 0.2s ease;
  margin-bottom:2px;
  white-space:nowrap;
  text-overflow:ellipsis;
  overflow:hidden;
}

.dropdown-menu a:last-child{
  margin-bottom:0;
}

.dropdown-menu a:hover{
  background:rgba(201,164,74,0.08);
  color:var(--gold-dark);
  transform:translateX(2px);
}

/* Overlay to close dropdown when clicking outside */
.nav-dropdown:hover::before{
  content:'';
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  z-index:999;
  pointer-events:none;
}

/* Live Gold Price Ticker */
.price-ticker{
  background:linear-gradient(135deg, #0b1220 0%, #1a2332 100%);
  color:white;
  padding:12px 0;
  position:relative;
  overflow:hidden;
  border-bottom:1px solid rgba(201,164,74,0.2);
  margin-top:80px;
}

.price-ticker::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:200%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(201,164,74,0.1), transparent);
  animation:tickerShimmer 3s ease-in-out infinite;
}

@keyframes tickerShimmer {
  0% { left:-100%; }
  50% { left:100%; }
  100% { left:-100%; }
}

.ticker-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  position:relative;
  z-index:2;
}

.ticker-item{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:14px;
  white-space:nowrap;
}

.ticker-label{
  color:rgba(255,255,255,0.7);
  font-weight:500;
  font-size:13px;
}

.ticker-price{
  font-weight:800;
  font-size:16px;
  color:var(--gold-light);
  font-feature-settings:"tnum";
}

.ticker-change{
  font-weight:600;
  font-size:13px;
  padding:2px 8px;
  border-radius:12px;
  font-feature-settings:"tnum";
}

.ticker-change.positive,
.ticker-change:not(.negative){
  background:rgba(34,197,94,0.15);
  color:#22c55e;
}

.ticker-change.negative{
  background:rgba(239,68,68,0.15);
  color:#ef4444;
}

.ticker-live{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  font-weight:600;
  color:var(--gold-light);
}

.live-indicator{
  width:8px;
  height:8px;
  background:#22c55e;
  border-radius:50%;
  animation:livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { 
    transform:scale(1);
    opacity:1;
  }
  50% { 
    transform:scale(1.2);
    opacity:0.7;
  }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
  /* Mobile Ticker */
  .ticker-content{
    gap:20px;
    overflow-x:auto;
    scrollbar-width:none;
    -ms-overflow-style:none;
  }
  
  .ticker-content::-webkit-scrollbar{
    display:none;
  }
  
  .ticker-item{
    flex-shrink:0;
  }

  /* Mobile Navigation */
  .nav{
    display:none;
  }
  
  .mobile-nav{
    display:block;
  }

  /* Mobile Hero Section */
  .hero{
    flex-direction:column;
    text-align:center;
    padding:60px 0 40px;
  }
  
  .hero-content{
    margin-bottom:30px;
  }
  
  .hero h1{
    font-size:2.2rem;
    line-height:1.2;
    margin-bottom:16px;
  }
  
  .hero .tagline{
    font-size:1rem;
    margin-bottom:20px;
  }

  /* Mobile Cards - Stack vertically */
  .cards{
    grid-template-columns:1fr;
    gap:20px;
    margin-top:30px;
  }
  
  .card{
    padding:24px 20px;
    margin:0 10px;
    border-radius:16px;
  }
  
  .card h3{
    font-size:1.3rem;
    margin-bottom:12px;
  }
  
  .card p{
    font-size:0.95rem;
    line-height:1.5;
  }

  /* Mobile Grid Layouts */
  .grid-2, .grid-3, .grid-4{
    grid-template-columns:1fr;
    gap:20px;
  }

  /* Mobile Stats */
  .hero-stats{
    flex-direction:column;
    gap:16px;
    padding:20px;
  }
  
  .stat{
    text-align:center;
  }
  
  .stat-number{
    font-size:1.8rem;
  }
  
  .stat-label{
    font-size:0.8rem;
  }

  /* Mobile Container */
  .container{
    padding:0 16px;
  }
  
  /* Mobile Sections */
  .section{
    padding:40px 0;
  }
  
  .section h2{
    font-size:1.8rem;
    margin-bottom:20px;
    text-align:center;
  }

  /* Mobile Hero Visual */
  .hero-visual{
    width:100%;
    margin-top:20px;
  }
  
  .hero-image-container{
    border-radius:16px;
    margin:0 16px;
  }
}

/* Extra Mobile Enhancements for Smaller Screens */
@media (max-width: 480px) {
  /* Ultra Mobile Cards */
  .card{
    padding:20px 16px;
    margin:0 8px;
    border-radius:12px;
    box-shadow:0 4px 16px rgba(160,124,47,0.1);
  }
  
  .card h3{
    font-size:1.2rem;
    margin-bottom:10px;
  }
  
  .card p{
    font-size:0.9rem;
    line-height:1.4;
  }

  /* Mobile Hero */
  .hero h1{
    font-size:1.9rem;
    line-height:1.1;
  }
  
  .hero .tagline{
    font-size:0.95rem;
  }

  /* Mobile Container Tighter */
  .container{
    padding:0 12px;
  }
  
  /* Mobile Sections Tighter */
  .section{
    padding:30px 0;
  }
  
  .section h2{
    font-size:1.6rem;
    margin-bottom:16px;
  }

  /* Mobile Stats Compact */
  .hero-stats{
    gap:12px;
    padding:16px;
  }
  
  .stat-number{
    font-size:1.6rem;
  }
  
  .stat-label{
    font-size:0.75rem;
  }

  /* Mobile Typography */
  .tagline{
    font-size:0.9rem;
  }
  
  .small{
    font-size:0.85rem;
  }

  /* Mobile Button */
  .cta, .btn{
    padding:12px 20px;
    font-size:0.9rem;
  }
}

/* Tablet Optimization */
@media (min-width: 481px) and (max-width: 768px) {
  .cards{
    grid-template-columns:repeat(2, 1fr);
    gap:20px;
  }
  
  .card{
    padding:26px 22px;
  }
  
  .hero{
    padding:80px 0 50px;
  }
  
  .hero h1{
    font-size:2.5rem;
  }
}

/* Mobile Touch & Interaction Enhancements */
@media (max-width: 768px) {
  /* Better button touch targets */
  .btn, .cta, button{
    min-height:48px;
    min-width:48px;
    padding:14px 24px;
    font-size:1rem;
    border-radius:12px;
    touch-action:manipulation;
  }
  
  /* Mobile form improvements */
  .contact-form{
    padding:24px 20px;
    border-radius:16px;
  }
  
  .form-progress{
    margin-bottom:24px;
    padding:16px;
    border-radius:12px;
  }
  
  /* Mobile links with better touch targets */
  .nav a, .footer a{
    padding:12px 8px;
    margin:4px 0;
    border-radius:8px;
    transition:background-color 0.2s ease;
  }
  
  .nav a:active, .footer a:active{
    background-color:rgba(201,164,74,0.1);
  }
  
  /* Mobile-optimized animations */
  .card{
    animation:none; /* Reduce motion for performance */
  }
  
  .card.in-view{
    transform:translateY(0);
    opacity:1;
  }
  
  /* Mobile text sizing */
  h1{
    font-size:2.2rem;
    line-height:1.2;
  }
  
  h2{
    font-size:1.8rem;
    line-height:1.3;
  }
  
  h3{
    font-size:1.4rem;
    line-height:1.3;
  }
  
  p{
    font-size:1rem;
    line-height:1.6;
  }
  
  .small{
    font-size:0.9rem;
    line-height:1.5;
  }
  
  /* Mobile Visual Hierarchy */
  .section{
    padding:50px 0;
  }
  
  .hero{
    padding:80px 0 60px;
  }
  
  /* Mobile-first spacing */
  .card + .card{
    margin-top:20px;
  }
  
  /* Enhanced mobile readability */
  .hero p, .section p{
    max-width:100%;
    margin:0 auto 20px;
  }
  
  /* Mobile image optimization */
  .hero-image, .card img, .section img{
    border-radius:12px;
    box-shadow:0 8px 24px rgba(0,0,0,0.1);
  }
  
  /* Mobile footer adjustments */
  .footer{
    padding:40px 0 20px;
  }
  
  .footer-grid{
    gap:32px;
  }
  
  .footer-section h3{
    font-size:1.1rem;
    margin-bottom:16px;
  }
  
  .footer-links li{
    margin-bottom:8px;
  }
  
  .footer-links a{
    padding:8px 0;
    font-size:0.95rem;
  }
}

/* Modern CTA Button */
.nav .cta{
  background:linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color:white;
  font-weight:600;
  box-shadow:0 4px 16px rgba(201,164,74,0.3);
  border:none;
  position:relative;
  overflow:hidden;
}

.nav .cta::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:left 0.6s ease;
}

.nav .cta:hover::before{
  left:100%;
}

.nav .cta:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(201,164,74,0.4);
}
.cta{background:linear-gradient(90deg,var(--gold) 0%,var(--gold-dark) 100%);color:white;padding:10px 16px;border-radius:10px;box-shadow:0 10px 30px rgba(201,164,74,0.14);border:none}
.cta:hover{transform:translateY(-2px)}

/* Premium Hero Section */
.hero{
  display:grid;
  grid-template-columns:1fr 460px;
  gap:60px;
  align-items:center;
  padding:80px 0 100px;
  position:relative;
  overflow:hidden;
}

.hero::before{
  content:'';
  position:absolute;
  top:-50%;
  right:-20%;
  width:600px;
  height:600px;
  background:radial-gradient(circle, rgba(201,164,74,0.06) 0%, transparent 70%);
  border-radius:50%;
  animation:float 20s ease-in-out infinite;
}

.hero::after{
  content:'';
  position:absolute;
  bottom:-30%;
  left:-10%;
  width:400px;
  height:400px;
  background:radial-gradient(circle, rgba(160,124,47,0.04) 0%, transparent 70%);
  border-radius:50%;
  animation:float 25s ease-in-out infinite reverse;
}

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

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

.hero h1{
  font-size:52px;
  font-weight:800;
  margin:0 0 20px;
  line-height:1.1;
  letter-spacing:-1px;
  background:linear-gradient(135deg, #0b1220 0%, var(--gold-dark) 70%, var(--gold) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  transform:translateY(30px);
  opacity:0;
  animation:heroTextReveal 1.2s cubic-bezier(0.4,0,0.2,1) 0.3s forwards;
}

.hero p{
  color:var(--muted);
  margin:0 0 32px;
  font-size:18px;
  line-height:1.7;
  transform:translateY(30px);
  opacity:0;
  animation:heroTextReveal 1.2s cubic-bezier(0.4,0,0.2,1) 0.6s forwards;
}

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

.hero-actions{
  display:flex;
  gap:16px;
  margin-top:32px;
  transform:translateY(30px);
  opacity:0;
  animation:heroTextReveal 1.2s cubic-bezier(0.4,0,0.2,1) 0.9s forwards;
}

.hero-cta{
  background:var(--gradient-gold);
  color:white;
  padding:16px 32px;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
  font-size:16px;
  box-shadow:var(--shadow-medium);
  position:relative;
  overflow:hidden;
  transition:all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.hero-cta::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:left 0.6s ease;
}

.hero-cta:hover::before{
  left:100%;
}

.hero-cta:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 40px rgba(201,164,74,0.3);
}

.hero-secondary{
  padding:16px 32px;
  border-radius:12px;
  border:3px solid rgba(201,164,74,0.2);
  text-decoration:none;
  font-weight:600;
  color:var(--gold-dark);
  background:rgba(255,255,255,0.8);
  backdrop-filter:blur(10px);
  transition:all 0.3s ease;
}

.hero-secondary:hover{
  background:rgba(201,164,74,0.05);
  border-color:var(--gold);
  transform:translateY(-2px);
}

/* Premium Hero Visual */
.hero-visual{
  position:relative;
  z-index:2;
}

.hero-image-container{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow-premium);
  background:var(--gradient-luxury);
  min-height:580px;
  display:flex;
  align-items:center;
  justify-content:center;
  /* Premium texture overlay */
  background-size:400% 400%;
  animation:luxuryGradient 8s ease-in-out infinite;
}

/* Luxury gradient animation */
@keyframes luxuryGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Premium glass morphism overlay */
.hero-image-container::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(201,164,74,0.08) 0%, transparent 50%);
  z-index:1;
  pointer-events:none;
}

/* Shimmer effect overlay */
.hero-image-container::after{
  content:'';
  position:absolute;
  top:-50%;
  left:-50%;
  right:-50%;
  bottom:-50%;
  background:var(--gradient-shimmer);
  background-size:200% 200%;
  animation:shimmerPass 3s ease-in-out infinite;
  z-index:2;
  pointer-events:none;
  opacity:0.3;
}

@keyframes shimmerPass {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(0%) translateY(0%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.hero-image{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.6s ease;
}

.hero-image:hover{
  transform:scale(1.05);
}

.hero-image-overlay{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  background:linear-gradient(transparent, rgba(0,0,0,0.7));
  padding:40px 32px 32px;
  color:white;
}

.hero-stats{
  display:flex;
  justify-content:space-between;
  gap:24px;
}

.stat{
  text-align:center;
  flex:1;
}

.stat-number{
  font-size:32px;
  font-weight:800;
  color:var(--gold-light);
  margin-bottom:4px;
}

.stat-label{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:1px;
  opacity:0.9;
}

/* Placeholder for missing images */
.hero-image-container:not(.has-image){
  background:linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-image-container:not(.has-image)::before{
  content:'Professional Mining Photo Coming Soon';
  color:white;
  font-size:18px;
  font-weight:600;
  text-align:center;
}

/* ==========================================
   VIDEO SECTION STYLES
   ========================================== */

.video-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.video-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.video-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.video-header p {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
}

.video-container {
  max-width: 1200px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin-bottom: 48px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.video-overlay:hover {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-play-btn {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  padding: 0;
}

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

.video-play-btn svg {
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.video-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.video-info-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.video-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.info-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.video-info-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.video-info-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .video-section {
    padding: 60px 0;
  }
  
  .video-header h2 {
    font-size: 2rem;
  }
  
  .video-header p {
    font-size: 1rem;
  }
  
  .video-wrapper {
    border-radius: 12px;
    margin-bottom: 32px;
  }
  
  .video-play-btn svg {
    width: 60px;
    height: 60px;
  }
  
  .video-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .video-info-card {
    padding: 24px;
  }
}

/* Professional Team Photos */
.team-member{
  text-align:center;
}

.team-photo{
  width:120px;
  height:120px;
  border-radius:50%;
  overflow:hidden;
  margin:0 auto 20px;
  background:linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:var(--shadow-medium);
  position:relative;
}

.team-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  transition:transform 0.3s ease;
  display:block;
  /* Enhanced centering for face positioning */
  transform-origin:center center;
}

/* Specific adjustments for team member photos if needed */
.team-member:nth-child(1) .team-photo img {
  /* Maria Alvarez - adjust if face is off-center */
  object-position: center 20%;
}

.team-member:nth-child(2) .team-photo img {
  /* David Chen - adjust if face is off-center */
  object-position: center center;
}

.team-member:nth-child(3) .team-photo img {
  /* Dr. Farid Amarah - adjust if face is off-center */
  object-position: center 30%;
}

.team-photo:hover img{
  transform:scale(1.1);
}

/* Premium Cards with Custom Icons */
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:32px;
}

.card{
  background:linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(251,251,251,0.9) 100%);
  backdrop-filter:blur(20px);
  border:2px solid rgba(255,255,255,0.4);
  border-radius:16px;
  padding:24px 20px;
  position:relative;
  overflow:hidden;
  transform:translateY(20px);
  opacity:0;
  transition:all 0.6s cubic-bezier(0.4,0,0.2,1);
  box-shadow:
    0 8px 32px rgba(160,124,47,0.08),
    0 2px 8px rgba(0,0,0,0.02),
    inset 0 1px 0 rgba(255,255,255,0.8);
  /* Enhanced touch interaction */
  touch-action:manipulation;
  cursor:pointer;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.card .small {
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

/* Mobile-first touch enhancements */
@media (hover: none) and (pointer: coarse) {
  .card{
    /* Better mobile tap targets */
    min-height:120px;
    /* Reduced hover effects for touch devices */
    transition:transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .card:active{
    transform:translateY(2px) scale(0.98);
    box-shadow:0 4px 16px rgba(160,124,47,0.15);
  }
}

/* Premium card header with custom icon */
.card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:2px;
  background:var(--gradient-luxury);
  background-size:200% 100%;
  animation:luxuryFlow 4s ease-in-out infinite;
}

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

/* Premium floating icon overlay */
.card::after{
  content:'';
  position:absolute;
  top:-50%;
  left:-50%;
  width:200%;
  height:200%;
  background:conic-gradient(from 0deg, transparent 0deg, rgba(201,164,74,0.03) 30deg, transparent 60deg);
  opacity:0;
  transition:opacity 0.6s ease, transform 0.6s ease;
  pointer-events:none;
  transform:rotate(0deg);
}

/* Custom icons for different card types */
.card[data-icon="mining"]::after{
  background:conic-gradient(from 0deg, transparent 0deg, rgba(201,164,74,0.05) 45deg, transparent 90deg);
}

.card[data-icon="refining"]::after{
  background:conic-gradient(from 120deg, transparent 0deg, rgba(230,208,138,0.04) 45deg, transparent 90deg);
}

.card[data-icon="traceability"]::after{
  background:conic-gradient(from 240deg, transparent 0deg, rgba(160,124,47,0.03) 45deg, transparent 90deg);
}

.card.in-view{
  transform:translateY(0);
  opacity:1;
}

.card:hover{
  transform:translateY(-12px);
  box-shadow:
    0 24px 48px rgba(160,124,47,0.12),
    0 8px 16px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,0.9);
  border-color:rgba(201,164,74,0.3);
}

.card:hover::after{
  opacity:1;
  transform:rotate(360deg);
}

.card:hover{
  transform:translateY(-12px);
  box-shadow:
    0 24px 48px rgba(160,124,47,0.12),
    0 8px 16px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,0.9);
  border-color:rgba(201,164,74,0.3);
}

.card:hover::after{
  opacity:1;
  animation:rotate 20s linear infinite;
}

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

.card h3{
  margin:0 0 12px;
  font-size:20px;
  font-weight:700;
  color:#0b1220;
  position:relative;
  z-index:2;
}

.card h4{
  margin:0 0 8px;
  font-size:18px;
  font-weight:600;
  color:var(--gold-dark);
  position:relative;
  z-index:2;
}

.card p, .card .small{
  position:relative;
  z-index:2;
}

.card ul{
  position:relative;
  z-index:2;
  padding-left:0;
  list-style:none;
}

.card ul li{
  position:relative;
  padding-left:20px;
  margin-bottom:8px;
}

.card ul li::before{
  content:'✦';
  position:absolute;
  left:0;
  color:var(--gold);
  font-size:12px;
}
/* Premium Sections and Typography */
.section{
  padding:80px 0;
  position:relative;
  /* Subtle section dividers */
  background:
    linear-gradient(90deg, transparent 0%, rgba(201,164,74,0.02) 50%, transparent 100%);
}

.section:not(:first-child){
  border-top:1px solid rgba(201,164,74,0.08);
}

/* Advanced typography with luxury gradients */
.section h2{
  font-size:42px;
  font-weight:800;
  margin:0 0 32px;
  letter-spacing:-1px;
  background:var(--gradient-luxury);
  background-size:200% 100%;
  animation:luxuryTextFlow 6s ease-in-out infinite;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  position:relative;
  text-shadow:0 1px 2px rgba(160,124,47,0.1);
}

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

/* Premium accent line with animation */
.section h2::after{
  content:'';
  position:absolute;
  bottom:-12px;
  left:0;
  width:80px;
  height:4px;
  background:var(--gradient-luxury);
  background-size:200% 100%;
  border-radius:2px;
  animation:accentFlow 4s ease-in-out infinite;
}

@keyframes accentFlow {
  0%, 100% { 
    background-position: 0% 50%;
    transform:scaleX(1);
  }
  50% { 
    background-position: 100% 50%;
    transform:scaleX(1.2);
  }
}

.section h3{
  font-size:26px;
  font-weight:700;
  margin:0 0 20px;
  background:linear-gradient(135deg, #0b1220 0%, var(--gold-dark) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  position:relative;
}

/* Enhanced paragraph styling */
.section p{
  font-size:16px;
  line-height:1.8;
  color:#4a5568;
  margin:0 0 20px;
  position:relative;
}

/* Premium text highlight effect - exclude small text and trust badges */
.section p:first-of-type:not(.small){
  font-size:18px;
  font-weight:500;
  color:#2d3748;
  position:relative;
}

.section p:first-of-type:not(.small)::before{
  content:'';
  position:absolute;
  left:-4px;
  top:0;
  bottom:0;
  width:3px;
  background:var(--gradient-gold);
  border-radius:2px;
  opacity:0.6;
}

/* Exclude vertical highlight from trust badges and card content */
.trust-badges p::before,
.card p::before,
.small::before{
  display:none !important;
}

/* Premium Grid Layout */
.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:start;
}

/* Market Insights & Educational Content Styles */
.market-dashboard{
  background:linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(251,251,251,0.9) 100%);
  backdrop-filter:blur(20px);
  border:2px solid rgba(255,255,255,0.4);
  border-radius:20px;
  padding:32px;
  margin:40px 0;
  box-shadow:var(--shadow-premium);
}

.price-widget{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:24px;
}

.price-display{
  text-align:right;
}

.current-price{
  font-size:36px;
  font-weight:800;
  background:var(--gradient-luxury);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}

.price-change{
  color:var(--gold-dark);
  font-weight:600;
}

.market-indicators{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
  padding-top:20px;
  border-top:1px solid rgba(201,164,74,0.1);
}

.indicator{
  text-align:center;
}

.indicator-label{
  display:block;
  font-size:12px;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:4px;
}

.indicator-value{
  font-size:20px;
  font-weight:700;
  color:var(--gold-dark);
}

/* Analysis Grid */
.analysis-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:24px;
  margin-top:40px;
}

.analysis-card{
  background:linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(251,251,251,0.9) 100%);
  border:2px solid rgba(255,255,255,0.4);
  border-radius:16px;
  padding:24px;
  transition:all 0.3s ease;
}

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

.analysis-card.featured{
  grid-row:span 2;
}

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

.article-category{
  background:var(--gradient-gold);
  color:white;
  padding:4px 12px;
  border-radius:12px;
  font-size:12px;
  font-weight:600;
  text-transform:uppercase;
}

/* Learning Path Styles */
.learning-path{
  margin:40px 0;
}

.path-options{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  margin-top:24px;
}

.path-card{
  background:linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(251,251,251,0.9) 100%);
  border:3px solid rgba(201,164,74,0.1);
  border-radius:20px;
  padding:32px 24px;
  text-align:center;
  cursor:pointer;
  transition:all 0.3s ease;
}

.path-card:hover{
  border-color:var(--gold);
  transform:translateY(-4px);
  box-shadow:var(--shadow-premium);
}

.path-icon{
  font-size:48px;
  margin-bottom:16px;
}

.path-topics{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:center;
  margin-top:16px;
}

.path-topics span{
  background:rgba(201,164,74,0.1);
  padding:4px 12px;
  border-radius:12px;
  font-size:12px;
  color:var(--gold-dark);
}

/* Course Grid */
.education-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:24px;
  margin-top:40px;
}

.course-card{
  background:linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(251,251,251,0.9) 100%);
  border:2px solid rgba(255,255,255,0.4);
  border-radius:16px;
  overflow:hidden;
  transition:all 0.3s ease;
}

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

.course-card.featured{
  grid-row:span 2;
}

.course-media{
  position:relative;
  height:200px;
  overflow:hidden;
}

.course-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.course-duration{
  position:absolute;
  top:12px;
  right:12px;
  background:rgba(0,0,0,0.8);
  color:white;
  padding:4px 12px;
  border-radius:12px;
  font-size:12px;
}

.course-content{
  padding:20px;
}

.course-header{
  display:flex;
  gap:8px;
  margin-bottom:12px;
}

.course-level, .course-type{
  background:var(--gradient-gold);
  color:white;
  padding:2px 8px;
  border-radius:8px;
  font-size:10px;
  font-weight:600;
  text-transform:uppercase;
}

/* Calculator Widget */
.calculator-section{
  margin:60px 0;
  padding:40px;
  background:var(--gradient-premium);
  border-radius:24px;
  border:2px solid rgba(201,164,74,0.1);
}

.calculator-widget{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  margin-top:24px;
}

.calculator-inputs{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.input-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.input-group label{
  font-weight:600;
  color:var(--gold-dark);
}

.input-group input{
  padding:12px 16px;
  border:3px solid rgba(201,164,74,0.2);
  border-radius:12px;
  font-size:16px;
  background:rgba(255,255,255,0.8);
  transition:border-color 0.3s ease;
}

.input-group input:focus{
  outline:none;
  border-color:var(--gold);
}

.calculator-results{
  display:flex;
  flex-direction:column;
  gap:16px;
  justify-content:center;
}

.result-item{
  display:flex;
  justify-content:space-between;
  padding:16px;
  background:rgba(255,255,255,0.6);
  border-radius:12px;
  border:2px solid rgba(201,164,74,0.1);
}

.result-value{
  font-weight:700;
  color:var(--gold-dark);
}

/* Process Documentation Styles */
.process-navigation{
  margin:40px 0;
}

.process-tabs{
  display:flex;
  gap:8px;
  background:rgba(255,255,255,0.8);
  padding:8px;
  border-radius:16px;
  border:2px solid rgba(201,164,74,0.1);
}

.process-tab{
  flex:1;
  padding:12px 20px;
  border:none;
  background:transparent;
  border-radius:12px;
  font-weight:600;
  cursor:pointer;
  transition:all 0.3s ease;
}

.process-tab.active{
  background:var(--gradient-gold);
  color:white;
}

.process-timeline{
  display:flex;
  flex-direction:column;
  gap:40px;
  margin-top:40px;
}

.timeline-item{
  display:grid;
  grid-template-columns:80px 1fr;
  gap:24px;
  align-items:start;
}

.timeline-number{
  width:60px;
  height:60px;
  background:var(--gradient-gold);
  color:white;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:20px;
}

.timeline-visual{
  width:100%;
  height:300px;
  border-radius:16px;
  overflow:hidden;
  margin:16px 0;
}

.timeline-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.process-specs{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  margin-top:16px;
}

.spec-item{
  background:rgba(201,164,74,0.05);
  padding:12px;
  border-radius:8px;
  text-align:center;
}

.spec-label{
  display:block;
  font-size:12px;
  color:var(--muted);
  text-transform:uppercase;
  margin-bottom:4px;
}

.spec-value{
  font-weight:700;
  color:var(--gold-dark);
}

/* Interactive Flow */
.interactive-flow{
  margin:60px 0;
  padding:40px;
  background:linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(251,251,251,0.9) 100%);
  border-radius:24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.flow-diagram{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  margin:24px 0;
  padding: 20px 0;
}

.flow-step{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  cursor:pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 10px;
  border-radius: 16px;
  position: relative;
}

.flow-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 148, 31, 0.1) 100%);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.flow-step:hover{
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.2);
}

.flow-step:hover::before {
  opacity: 1;
}

.flow-step.active {
  transform: translateY(-4px) scale(1.02);
}

.flow-step.active::before {
  opacity: 1;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(184, 148, 31, 0.2) 100%);
}

.step-icon{
  width:64px;
  height:64px;
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.flow-step:hover .step-icon {
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
  transform: rotate(5deg);
}

.flow-step.active .step-icon {
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
  transform: scale(1.1);
}

/* SVG Icons in Process Flow */
.step-icon.process-svg-icon {
  font-size: 0; /* Hide emoji fallback */
}

.step-icon.process-svg-icon::before {
  content: '';
  width: 28px;
  height: 28px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.flow-step:hover .step-icon.process-svg-icon::before {
  transform: scale(1.1);
}

.process-survey-icon::before {
  background-image: url('../images/process-survey-clean.svg');
}

.process-extract-icon::before {
  background-image: url('../images/process-extract-clean.svg');
}

.process-refine-icon::before {
  background-image: url('../images/process-refine-clean.svg');
}

.process-test-icon::before {
  background-image: url('../images/process-test-clean.svg');
}

.process-deliver-icon::before {
  background-image: url('../images/process-deliver-clean.svg');
}

.step-label {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.flow-step:hover .step-label {
  color: var(--gold-dark);
}

.flow-step.active .step-label {
  color: var(--gold-dark);
  font-weight: 700;
}

.flow-arrow{
  font-size: 28px;
  color: var(--gold);
  font-weight: bold;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.flow-arrow:hover {
  transform: scale(1.2);
  color: var(--gold-dark);
}

/* Enhanced Flow Details Panel */
.flow-details {
  margin-top: 32px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  border: 2px solid rgba(212, 175, 55, 0.1);
  min-height: 120px;
  transition: all 0.3s ease;
}

.step-detail h3 {
  color: var(--gold-dark);
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.step-detail p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-metrics h4 {
  color: var(--gold-dark);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.step-metrics ul {
  list-style: none;
  padding: 0;
}

.step-metrics li {
  background: rgba(212, 175, 55, 0.1);
  padding: 8px 16px;
  margin: 6px 0;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  font-weight: 500;
}

/* Quality Metrics */
.quality-dashboard{
  margin:60px 0;
}

.metrics-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
  margin-top:24px;
}

.metric-card{
  background:linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(251,251,251,0.9) 100%);
  border:2px solid rgba(255,255,255,0.4);
  border-radius:16px;
  padding:24px;
  text-align:center;
  transition:all 0.3s ease;
}

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

.metric-icon{
  font-size:32px;
  margin-bottom:12px;
}

.metric-value{
  display:block;
  font-size:28px;
  font-weight:800;
  background:var(--gradient-luxury);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  margin-bottom:8px;
}

.metric-label{
  font-size:14px;
  color:var(--muted);
  font-weight:500;
}

/* Premium Badge */
.badge{
  display:inline-flex;
  align-items:center;
  background:rgba(201,164,74,0.1);
  color:var(--gold-dark);
  padding:8px 16px;
  border-radius:20px;
  font-weight:600;
  font-size:13px;
  letter-spacing:0.5px;
  text-transform:uppercase;
  border:2px solid rgba(201,164,74,0.2);
  margin-bottom:24px;
  position:relative;
  overflow:hidden;
}

.badge::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
  opacity:0;
  transition:opacity 0.3s ease;
}

.badge:hover::before{
  opacity:1;
}
/* Premium Product Display */
.product{
  display:flex;
  gap:20px;
  align-items:center;
  padding:20px;
  border-radius:16px;
  background:rgba(255,255,255,0.6);
  backdrop-filter:blur(10px);
  border:2px solid rgba(255,255,255,0.3);
  transition:all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.product:hover{
  background:rgba(255,255,255,0.8);
  transform:translateY(-4px);
  box-shadow:var(--shadow-medium);
}

.product .thumb{
  width:80px;
  height:80px;
  border-radius:16px;
  background:var(--gradient-gold);
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-weight:700;
  font-size:14px;
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow-subtle);
}

.product .thumb::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
  opacity:0;
  transition:opacity 0.3s ease;
}

.product .thumb:hover::before{
  opacity:1;
}

.product .thumb.in-view{
  animation:productThumbReveal 0.8s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes productThumbReveal {
  from {
    transform:scale(0.8) rotate(-10deg);
    opacity:0;
  }
  to {
    transform:scale(1) rotate(0deg);
    opacity:1;
  }
}
/* Premium Footer */
.footer{
  background:linear-gradient(135deg, #0f1724 0%, #1a2332 100%);
  color:#d0d6db;
  position:relative;
  overflow:hidden;
  width:100%;
}

.footer::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(201,164,74,0.3), transparent);
}

.footer::after{
  content:'';
  position:absolute;
  top:-50%;
  right:-20%;
  width:400px;
  height:400px;
  background:radial-gradient(circle, rgba(201,164,74,0.03) 0%, transparent 70%);
  border-radius:50%;
}

.footer-content{
  padding:50px 0 0;
  position:relative;
  z-index:2;
}

.footer .container{
  max-width:95%;
  padding:0 40px;
  margin:0 auto;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;
  margin-bottom:40px;
}

.footer-section h3.footer-title{
  color:#ffffff;
  font-size:16px;
  font-weight:700;
  margin-bottom:16px;
  background:linear-gradient(135deg, #ffffff 0%, var(--gold-light) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}

.footer-logo{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:16px;
}

.footer-logo-img{
  width:48px;
  height:48px;
  border-radius:12px;
}

.footer-brand-name{
  font-size:20px;
  font-weight:700;
  color:#ffffff;
  background:linear-gradient(135deg, #ffffff 0%, var(--gold-light) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}

.footer-tagline{
  font-size:13px;
  color:#94a3b8;
  margin-top:2px;
}

.footer-description{
  color:#94a3b8;
  line-height:1.5;
  margin-bottom:20px;
  font-size:14px;
}

.footer-contact{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.contact-item{
  display:flex;
  align-items:flex-start;
  gap:10px;
}

.contact-icon{
  font-size:14px;
  margin-top:1px;
}

.contact-info{
  color:#d0d6db;
  font-size:14px;
  line-height:1.3;
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.footer-links a{
  color:#94a3b8;
  text-decoration:none;
  transition:all 0.3s ease;
  position:relative;
  font-size:14px;
  line-height:1.3;
}

.footer-links a:hover{
  color:var(--gold-light);
  transform:translateX(4px);
}

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

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

.footer-certifications{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.certification-badge{
  background:rgba(201,164,74,0.1);
  border:1px solid rgba(201,164,74,0.3);
  color:var(--gold-light);
  padding:8px 16px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
  letter-spacing:0.5px;
}

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

.footer-social .social-link{
  display:flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:8px;
  color:#ffffff;
  transition:all 0.3s ease;
  text-decoration:none;
}

/* LinkedIn Brand Color */
.footer-social .social-link[aria-label="LinkedIn"] {
  background:#0A66C2;
}

/* X (formerly Twitter) Brand Color */
.footer-social .social-link[aria-label="X"] {
  background:#000000;
}

/* YouTube Brand Color */
.footer-social .social-link[aria-label="YouTube"] {
  background:#FF0000;
}

.footer-social .social-link:hover{
  transform:translateY(-2px);
  opacity:0.9;
}

.footer-copyright{
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
}

.footer-copyright p{
  margin:0;
  color:#94a3b8;
  font-size:14px;
}

.footer-links-inline{
  display:flex;
  gap:16px;
}

.footer-links-inline a{
  color:#94a3b8;
  text-decoration:none;
  font-size:14px;
  transition:color 0.3s ease;
}

.footer-links-inline a:hover{
  color:var(--gold-light);
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-grid{
    grid-template-columns:1fr 1fr;
    gap:30px;
  }
}

@media (max-width: 768px) {
  .footer-content{
    padding:40px 0 0;
  }
  
  .footer-grid{
    grid-template-columns:1fr;
    gap:30px;
    margin-bottom:30px;
  }
  
  .footer-bottom-content{
    flex-direction:column;
    text-align:center;
    gap:16px;
  }
  
  .footer-certifications{
    justify-content:center;
  }
  
  .footer-copyright{
    flex-direction:column;
    gap:12px;
  }
}
/* Premium Forms */
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.input, textarea{
  width:100%;
  padding:16px 20px;
  border:3px solid rgba(201,164,74,0.1);
  border-radius:12px;
  background:rgba(255,255,255,0.8);
  backdrop-filter:blur(10px);
  font-size:16px;
  transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
  font-family:inherit;
}

.input:focus, textarea:focus{
  outline:none;
  border-color:var(--gold);
  box-shadow:0 0 0 4px rgba(201,164,74,0.1);
  background:rgba(255,255,255,0.95);
  transform:translateY(-2px);
}

.input::placeholder, textarea::placeholder{
  color:#9ca3af;
  transition:color 0.3s ease;
}

.input:focus::placeholder, textarea:focus::placeholder{
  color:transparent;
}

textarea{
  min-height:140px;
  resize:vertical;
}

/* Premium Buttons */
.cta{
  background:var(--gradient-gold);
  color:white;
  padding:16px 32px;
  border-radius:12px;
  border:none;
  font-weight:600;
  font-size:16px;
  cursor:pointer;
  transition:all 0.4s cubic-bezier(0.4,0,0.2,1);
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow-medium);
}

.cta::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:left 0.6s ease;
}

.cta:hover::before{
  left:100%;
}

.cta:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-strong);
}

.cta:active{
  transform:translateY(-1px);
}
/* Professional Hamburger Menu System */
.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1001;
  margin-left: auto; /* Push to the right */
  order: 3; /* Ensure it's positioned after the brand and nav */
  min-width: 48px; /* Minimum touch target size */
  min-height: 48px; /* Minimum touch target size */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hamburger-menu:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: scale(1.05);
}

.hamburger-menu:hover .hamburger-inner,
.hamburger-menu:hover .hamburger-inner::before,
.hamburger-menu:hover .hamburger-inner::after {
  background-color: #f5e6b3;
}

.hamburger-menu:hover .hamburger-text {
  color: #f5e6b3;
}

.hamburger-box {
  width: 24px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
  width: 24px;
  height: 3px;
  background-color: #d4af37;
  border-radius: 2px;
  position: absolute;
  transition: all 0.3s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: '';
  display: block;
  width: 24px;
  height: 3px;
  background-color: #d4af37;
  border-radius: 2px;
  position: absolute;
  transition: all 0.3s ease;
}

.hamburger-inner::before {
  top: -6px;
}

.hamburger-inner::after {
  bottom: -6px;
}

.hamburger-text {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #d4af37;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hamburger Animation - Active State */
.hamburger-menu.active .hamburger-inner {
  transform: rotate(45deg);
  background-color: #fff;
}

.hamburger-menu.active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  background-color: #fff;
}

.hamburger-menu.active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  background-color: #fff;
}

.hamburger-menu.active .hamburger-text {
  color: #fff;
}

/* Premium Mobile Navigation System - Clean Sidebar */
.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent; /* No dark overlay - clean and simple */
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none; /* Allow clicks through when closed */
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto; /* Enable clicks when open */
}

.mobile-nav-sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background: #ffffff;
  z-index: 999;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: none; /* Removed black shadow for clean look */
  overflow-y: auto;
  display: none; /* Hide completely on desktop */
  border-left: 1px solid #e5e5e5; /* Subtle border instead of shadow */
}

.mobile-nav-sidebar.active {
  transform: translateX(-320px);
}

.mobile-nav-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.mobile-nav-header {
  background: #ffffff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-logo {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-nav-close {
  background: none;
  border: none;
  color: #666666;
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-close:hover {
  background: #f5f5f5;
  color: #333333;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  padding: 0;
  flex-grow: 1;
}

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

.mobile-nav-item {
  margin: 0;
  border: none;
  background: none;
}

.mobile-nav-item a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  color: #333333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f5f5f5;
  position: relative;
}

.mobile-nav-item a:hover {
  background: #f8f9fa;
  color: #d4af37;
}

.mobile-nav-item.active a {
  background: #fff8e7;
  color: #d4af37;
  border-left: 3px solid #d4af37;
}

.mobile-nav-icon {
  font-size: 18px;
  width: 20px;
  text-align: center;
  color: #d4af37;
}

.mobile-nav-label {
  flex: 1;
  font-weight: 500;
}

.mobile-nav-cta {
  margin: 20px;
  padding: 14px 20px;
  background: #d4af37;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-nav-cta:hover {
  background: #c9a532;
  transform: translateY(-1px);
}

/* Mobile Dropdown */
.mobile-nav-dropdown .mobile-nav-dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
}

.mobile-nav-arrow {
  transition: transform 0.3s ease;
  margin-left: auto;
}

.mobile-nav-dropdown.active .mobile-nav-arrow {
  transform: rotate(180deg);
}

.mobile-nav-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 8px;
}

.mobile-nav-dropdown.active .mobile-nav-submenu {
  max-height: 200px;
}

.mobile-nav-subitem {
  display: block;
  padding: 12px 20px 12px 60px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 4px 0;
}

.mobile-nav-subitem:hover {
  background: rgba(212, 175, 55, 0.1);
  color: #fff;
  transform: translateX(8px);
}

/* Mobile Search */
.mobile-nav-search {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-search-form {
  display: flex;
  gap: 8px;
}

.mobile-search-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
}

.mobile-search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.mobile-search-btn {
  padding: 12px 16px;
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  border: none;
  border-radius: 8px;
  color: #000;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-search-btn:hover {
  transform: scale(1.05);
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Desktop - hide mobile navigation completely */
@media (min-width: 981px) {
  .mobile-nav-backdrop,
  .mobile-nav-sidebar,
  .hamburger-menu {
    display: none !important;
  }
  
  /* Hide WhatsApp button on desktop, show live chat */
  .whatsapp-mobile {
    display: none !important;
  }
  
  .live-chat-widget {
    display: block !important;
  }
}

/* Mobile Responsive Display */
@media (max-width: 980px) {
  /* Prevent horizontal overflow on mobile */
  body {
    overflow-x: hidden;
  }
  
  * {
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  
  .brand {
    order: 1;
    flex-shrink: 0;
  }
  
  .hamburger-menu {
    display: block;
    order: 3;
    margin-left: auto;
  }
  
  /* Show mobile navigation elements only on mobile */
  .mobile-nav-backdrop,
  .mobile-nav-sidebar {
    display: block;
  }
  
  /* Mobile optimization for Process page */
  
  /* Timeline images responsive */
  .timeline-visual {
    height: 200px; /* Reduced height for mobile */
    margin: 12px 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  
  .timeline-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    display: block;
  }
  
  /* Process specs - stack vertically on mobile */
  .process-specs {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 12px;
  }
  
  /* Metrics grid - stack vertically on mobile */
  .metrics-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 16px;
  }
  
  /* Metric cards - adjust padding for mobile */
  .metric-card {
    padding: 20px 16px;
  }
  
  /* Timeline content adjustments */
  .timeline-item {
    padding: 20px 16px;
  }
  
  /* Spec items - better mobile spacing */
  .spec-item {
    padding: 8px 12px;
    font-size: 14px;
  }
  
  .nav {
    display: none !important;
    order: 2;
  }
  
  /* Ensure proper spacing and alignment */
  .nav-search {
    display: none; /* Hide desktop search on mobile */
  }
}

/* Prevent body scroll when menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Modern Mobile Navigation */
.mobile-nav{
  display:none;
  background:rgba(255,255,255,0.9);
  backdrop-filter:blur(10px);
  border:2px solid rgba(201,164,74,0.2);
  font-weight:600;
  cursor:pointer;
  padding:10px 16px;
  border-radius:12px;
  transition:all 0.3s ease;
  font-size:14px;
  color:var(--gold-dark);
}

.mobile-nav:hover{
  background:rgba(201,164,74,0.1);
  transform:translateY(-1px);
  box-shadow:0 4px 12px rgba(201,164,74,0.2);
}

.mobile-nav:active{
  transform:translateY(0);
}

/* Extra small screens - phones in portrait */
@media (max-width: 600px) {
  /* Timeline visual even smaller for very small screens */
  .timeline-visual {
    height: 160px;
    border-radius: 12px;
  }
  
  /* Metric cards more compact */
  .metric-card {
    padding: 16px 12px;
  }
  
  .metric-value {
    font-size: 1.8rem;
  }
  
  .metric-label {
    font-size: 12px;
  }
  
  /* Timeline items more compact */
  .timeline-item {
    padding: 16px 12px;
    overflow: hidden; /* Prevent content overflow */
    max-width: 100%;
  }
  
  /* Ensure timeline content doesn't overflow */
  .timeline-content {
    max-width: 100%;
    overflow: hidden;
  }
  
  /* Process specs - even more compact */
  .process-specs {
    gap: 8px;
  }
  
  .spec-item {
    padding: 6px 10px;
    font-size: 13px;
  }
  
  /* Quality dashboard spacing */
  .quality-dashboard {
    margin: 40px 0;
  }
  
  .metrics-grid {
    gap: 12px;
  }
  
  /* General mobile improvements */
  .container {
    padding: 0 12px;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
  
  /* Ensure all images stay within bounds */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Process page specific containers */
  .timeline-item {
    overflow: hidden;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  /* Education page - extra small screens */
  .path-card {
    padding: 20px 12px;
  }
  
  .path-icon {
    font-size: 36px; /* Smaller icons */
  }
  
  .course-media {
    height: 120px; /* Even smaller on very small screens */
  }
  
  .course-card {
    padding: 16px 12px;
  }
  
  /* Market Insights - extra small screens */
  .chart-container {
    padding: 12px;
    height: auto;
    min-height: 250px; /* Ensure charts have minimum space */
  }
  
  .stat-card {
    padding: 12px;
    text-align: center;
  }
  
  .stat-card h4 {
    font-size: 14px;
  }
  
  /* Chart controls stacking */
  .chart-controls {
    flex-direction: column;
    gap: 12px;
  }
  
  .chart-type-selector {
    justify-content: center;
  }
  
  /* WhatsApp Button for Mobile */
  .whatsapp-mobile {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 9999;
  }
  
  .whatsapp-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: #22c55e;
  }
  
  .whatsapp-mobile svg {
    width: 32px;
    height: 32px;
    fill: white;
  }
  
  /* Hide live chat on mobile */
  .live-chat-widget {
    display: none !important;
  }
  
  /* Education page mobile optimization */
  .education-grid {
    grid-template-columns: 1fr !important; /* Single column on mobile */
    gap: 16px;
  }
  
  .path-card {
    padding: 24px 16px; /* Reduced padding for mobile */
  }
  
  .course-card.featured {
    grid-row: span 1; /* Remove row spanning on mobile */
  }
  
  .course-media {
    height: 150px; /* Reduced height for mobile */
  }
  
  /* Market Insights page mobile optimization */
  .analysis-grid {
    grid-template-columns: 1fr !important; /* Single column on mobile */
    gap: 16px;
  }
  
  .chart-container {
    padding: 16px; /* Reduced padding */
    margin: 16px 0;
  }
  
  .indicators-grid {
    grid-template-columns: 1fr !important; /* Single column on mobile */
    gap: 12px;
  }
  
  .stat-card {
    padding: 16px; /* More compact padding */
  }
}

@media (max-width:980px){
  .hero{grid-template-columns:1fr;}
  .cards{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  
  .nav{
    display:none;
    flex-direction:column;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:rgba(255,255,255,0.98);
    backdrop-filter:blur(20px);
    border:2px solid rgba(201,164,74,0.1);
    border-top:none;
    border-radius:0 0 16px 16px;
    padding:24px;
    gap:4px;
    box-shadow:0 8px 32px rgba(0,0,0,0.1);
  }
  
  .nav a{
    padding:16px 20px;
    border-radius:12px;
    margin:0;
    transition:all 0.3s ease;
  }
  
  .nav a:not(.cta):hover{
    background:rgba(201,164,74,0.1);
    transform:translateX(8px);
  }
  
  .nav .cta{
    margin-top:12px;
    text-align:center;
  }
  
  .mobile-nav{
    display:block;
  }
  
  .header{
    position:relative;
  }
  
  .brand .logo{
    width:44px;
    height:44px;
  }
  
  .brand-name{
    font-size:18px;
  }
}
/* small polish */
a{transition:all .18s ease}
a:hover{opacity:.94}
.small{font-size:13px;color:var(--muted)}
.badge{display:inline-block;background:rgba(201,164,74,0.12);color:var(--gold-dark);padding:6px 10px;border-radius:999px;font-weight:700}

/* CTA animated sheen */
.cta{position:relative;overflow:hidden}
.cta::after{content:'';position:absolute;left:-60%;top:0;width:40%;height:100%;background:linear-gradient(120deg, rgba(255,255,255,0.18), rgba(255,255,255,0.03));transform:skewX(-18deg);transition:all .9s}
.cta:hover::after{left:120%}

/* reveal utility */
.in-view{opacity:1;transform:none}

/* reduce motion preference */
@media (prefers-reduced-motion:reduce){
  *{transition:none!important}
}

/* Screen reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Premium Testimonials */
.testimonials {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
  gap:32px;
  margin-top:40px;
}

.testimonial {
  position:relative;
}

.testimonial::before{
  content:'"';
  position:absolute;
  top:-10px;
  left:20px;
  font-size:60px;
  font-weight:700;
  color:var(--gold);
  opacity:0.3;
  font-family:serif;
  z-index:1;
}

.testimonial blockquote {
  margin:0;
  padding:0;
  position:relative;
  z-index:2;
}

.testimonial p {
  font-style:italic;
  margin-bottom:20px;
  color:#4a5568;
  font-size:16px;
  line-height:1.7;
}

.testimonial footer {
  text-align:right;
  margin-top:16px;
}

.testimonial cite {
  font-weight:600;
  color:var(--gold-dark);
  font-style:normal;
  font-size:14px;
}

/* Premium FAQ */
.faq-container {
  display:grid;
  gap:24px;
  margin-top:40px;
}

.faq-item {
  padding:32px;
  border:2px solid rgba(201,164,74,0.1);
  border-radius:20px;
  background:linear-gradient(145deg, rgba(255,255,255,0.8) 0%, rgba(251,251,251,0.6) 100%);
  backdrop-filter:blur(10px);
  transition:all 0.4s cubic-bezier(0.4,0,0.2,1);
  position:relative;
  overflow:hidden;
}

.faq-item::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:2px;
  background:var(--gradient-gold);
  transform:scaleX(0);
  transition:transform 0.4s ease;
}

.faq-item:hover{
  transform:translateY(-4px);
  border-color:rgba(201,164,74,0.2);
  box-shadow:var(--shadow-medium);
}

.faq-item:hover::before{
  transform:scaleX(1);
}

.faq-item h3 {
  margin:0 0 12px 0;
  color:var(--gold-dark);
  font-size:20px;
  font-weight:700;
}

.faq-item .small{
  font-size:15px;
  line-height:1.7;
}

/* Product Photography */
.product-showcase {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-image {
  position: relative;
  width: 100%;
  height: 240px;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(184,134,11,0.1) 100%);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1.1) contrast(1.1) saturate(1.1);
}

.product-image:hover img {
  transform: scale(1.05);
}

.product-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,215,0,0.05) 0%, rgba(184,134,11,0.1) 100%);
  pointer-events: none;
}

/* Service and Facility Images */
.service-visual {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 1rem;
  filter: brightness(0.95) contrast(1.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-visual:hover {
  filter: brightness(1) contrast(1.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.facility-image {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid rgba(255, 215, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.facility-image:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: scale(1.02);
}

/* Advanced Contact Form System */
.advanced-contact-system {
  max-width: 100%;
  height: 93%;
  margin: 2rem auto;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

/* Form Selector Tabs */
.form-selector {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 0.5rem;
  overflow-x: auto;
  border: 2px solid rgba(0, 0, 0, 0.08);
}

.form-tab {
  flex: 1;
  min-width: 140px;
  padding: 1.2rem 1rem;
  border: none;
  background: transparent;
  color: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

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

.form-tab:hover::before {
  left: 100%;
}

.form-tab:hover {
  color: var(--gold-dark);
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.form-tab.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: white;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.tab-icon {
  font-size: 1.4rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.tab-text {
  font-weight: inherit;
  text-align: center;
  line-height: 1.3;
}

/* Contact Forms */
.contact-form {
  display: none;
  animation: fadeIn 0.4s ease;
}

.contact-form.active {
  display: block;
}

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

/* Progress Indicator */
.form-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 0.8rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 8px;
  border: 2px solid rgba(0, 0, 0, 0.08);
}

.progress-bar {
  flex: 1;
  height: 6px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-right: 1rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  transition: width 0.5s ease;
  border-radius: 3px;
}

.progress-text {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Form Steps */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: slideIn 0.3s ease;
}

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

.form-step h3 {
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 2rem;
  font-size: 1.6rem;
  text-align: center;
  position: relative;
  font-weight: 600;
}

.form-step h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 2px;
}

/* Form Groups and Inputs */
.form-group {
  margin-bottom: 1.8rem;
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.7rem;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: white;
  color: rgba(0, 0, 0, 0.9);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: inherit;
  line-height: 1.5;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
  background: rgba(255, 215, 0, 0.02);
}

.form-input.error, .form-select.error, .form-textarea.error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-input.valid, .form-select.valid, .form-textarea.valid {
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-file {
  width: 100%;
  padding: 1.2rem;
  border: 2px dashed rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.02);
  color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.form-file:hover {
  border-color: var(--gold);
  background: rgba(255, 215, 0, 0.05);
}

.file-info {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Checkbox Groups */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.2rem 0;
  padding: 0.8rem;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.checkbox-group:hover {
  background: rgba(255, 215, 0, 0.05);
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
}

.checkbox-group label {
  margin: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  font-weight: 500;
}

/* Field Validation */
.field-error {
  color: #dc2626;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.6rem;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.field-error.show {
  opacity: 1;
  transform: translateY(0);
}

/* Form Actions */
.form-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-back, .btn-next, .btn-submit {
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 140px;
  letter-spacing: 0.025em;
}

.btn-back {
  background: white;
  color: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(0, 0, 0, 0.15);
}

.btn-back:hover {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.9);
  transform: translateX(-3px);
}

.btn-next, .btn-submit {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  border: 2px solid transparent;
}

.btn-next:hover, .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-next:hover {
  transform: translateX(3px) translateY(-2px);
}

.btn-submit {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.btn-submit:hover {
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}

/* Business Hours Notice */
.business-hours-notice {
  background: rgba(22, 163, 74, 0.1);
  border: 2px solid rgba(22, 163, 74, 0.2);
  border-radius: 8px;
  padding: 1.2rem;
  margin: 1.5rem 0;
  color: rgba(0, 0, 0, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
}

/* Form Status */
.form-status {
  margin-top: 2rem;
  padding: 1.2rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.3s ease;
}

.form-status.show {
  opacity: 1;
  transform: translateY(0);
}

.form-status.success {
  background: rgba(22, 163, 74, 0.1);
  border: 2px solid rgba(22, 163, 74, 0.3);
  color: #16a34a;
}

.form-status.error {
  background: rgba(220, 38, 38, 0.1);
  border: 2px solid rgba(220, 38, 38, 0.3);
  color: #dc2626;
}

.form-status.loading {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  color: var(--gold-dark);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .advanced-contact-system {
    padding: 2rem;
    margin: 1rem;
  }
  
  .form-selector {
    flex-wrap: wrap;
  }
  
  .form-tab {
    min-width: calc(50% - 0.25rem);
    margin-bottom: 0.5rem;
    padding: 1rem 0.75rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .form-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-back, .btn-next, .btn-submit {
    width: 100%;
    min-width: auto;
  }
  
  .tab-text {
    font-size: 0.85rem;
  }
  
  .tab-icon {
    font-size: 1.2rem;
  }
  
  .form-step h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .form-tab {
    min-width: 100%;
    padding: 0.9rem;
  }
  
  .tab-text {
    font-size: 0.9rem;
  }
  
  .advanced-contact-system {
    padding: 1.5rem;
  }
}

/* Trust Section Styling */
.trust-section {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.1) 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.media-mentions {
  margin-bottom: 3rem;
}

.media-mentions h3 {
  text-align: center;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 2rem;
  font-size: 1.4rem;
}

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

.media-item {
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.media-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.media-logo {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.media-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 0.5rem;
}

.media-quote {
  font-style: italic;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
}

/* Trust Badges */
.trust-badges h3 {
  text-align: center;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 2rem;
  font-size: 1.4rem;
}

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

.badge-item {
  background: white;
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 0.8rem;
  text-align: center;
  transition: all 0.3s ease;
}

.badge-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2);
}

.badge-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.badge-text {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
  background: rgba(0, 0, 0, 0.02);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-content p {
  font-style: italic;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.author-avatar {
  font-size: 2.5rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 700;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 0.2rem;
}

.author-title {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.company-logo {
  font-size: 1.5rem;
  opacity: 0.7;
}

/* ========================================
   PREMIUM TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
  background: linear-gradient(135deg, rgba(201,164,74,0.03) 0%, rgba(255,255,255,0.95) 50%, rgba(160,124,47,0.02) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(201,164,74,0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: shimmer 15s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(0); opacity: 0.3; }
  50% { transform: translateX(10%); opacity: 0.6; }
}

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

.section-subtitle {
  max-width: 700px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Testimonials Carousel */
.testimonials-carousel {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
}

.testimonials-track {
  display: flex;
  gap: 32px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px 0;
}

/* Testimonial Card */
.testimonial-card {
  min-width: calc(50% - 16px);
  background: white;
  border-radius: 16px;
  padding: 40px 36px 32px;
  box-shadow: 
    0 2px 12px rgba(0,0,0,0.06),
    0 1px 4px rgba(0,0,0,0.03);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(201,164,74,0.12);
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 12px 40px rgba(201,164,74,0.12),
    0 4px 16px rgba(0,0,0,0.08);
  border-color: rgba(201,164,74,0.25);
}

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

/* Quote Icon */
.testimonial-quote-icon {
  position: absolute;
  top: 32px;
  right: 32px;
  color: var(--gold);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-quote-icon {
  opacity: 0.9;
  transform: scale(1.1);
}

/* Testimonial Content */
.testimonial-content {
  flex: 1;
  margin-bottom: 28px;
}

.testimonial-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #374151;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Testimonial Footer */
.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(201,164,74,0.12);
}

.testimonial-author-info {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.author-avatar {
  flex-shrink: 0;
}

.avatar-initials {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.testimonial-card:hover .avatar-initials {
  transform: scale(1.08);
}

.author-details {
  flex: 1;
  min-width: 0;
}

.author-name {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
  color: #0b1220;
  line-height: 1.2;
}

.author-position {
  margin: 0 0 2px;
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
  line-height: 1.3;
}

.author-company {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gold-dark);
  font-weight: 600;
  line-height: 1.3;
}

/* Testimonial Meta */
.testimonial-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.testimonial-rating {
  display: flex;
  gap: 3px;
}

.testimonial-rating .star {
  color: var(--gold);
  font-size: 15px;
}

.verified-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 600;
  white-space: nowrap;
}

.verified-text svg {
  flex-shrink: 0;
  color: var(--gold);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .testimonial-card {
    min-width: calc(100% - 0px);
  }
  
  .testimonial-footer {
    flex-direction: row;
    align-items: center;
  }
  
  .testimonial-meta {
    flex-direction: column;
    align-items: flex-end;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 100%;
    padding: 32px 24px 28px;
  }
  
  .testimonial-quote-icon {
    top: 24px;
    right: 24px;
  }
  
  .testimonial-quote-icon svg {
    width: 32px;
    height: 26px;
  }
  
  .testimonial-content p {
    font-size: 0.98rem;
  }
  
  .avatar-initials {
    width: 48px;
    height: 48px;
    font-size: 15px;
  }
  
  .author-name {
    font-size: 0.95rem;
  }
  
  .author-position,
  .author-company {
    font-size: 0.825rem;
  }
  
  .testimonial-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .testimonial-meta {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Carousel Controls */
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.testimonial-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(201,164,74,0.2);
  background: white;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.testimonial-nav:hover {
  background: var(--gradient-gold);
  color: white;
  border-color: var(--gold);
  transform: scale(1.1);
}

.testimonial-nav:active {
  transform: scale(0.95);
}

.testimonial-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

/* Carousel Dots */
.testimonials-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(201,164,74,0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonial-dot:hover {
  background: rgba(201,164,74,0.4);
  transform: scale(1.2);
}

.testimonial-dot.active {
  background: var(--gold);
  width: 32px;
  border-radius: 5px;
}

/* Trust Statistics */
.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 2px solid rgba(201,164,74,0.15);
}

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

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .testimonial-card {
    min-width: calc(50% - 16px);
  }
  
  .testimonials-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .testimonial-card {
    min-width: 100%;
    padding: 28px;
  }
  
  .testimonials-carousel {
    padding: 0 16px;
  }
  
  .testimonials-track {
    gap: 20px;
  }
  
  .testimonial-avatar {
    width: 56px;
    height: 56px;
  }
  
  .testimonial-content p {
    font-size: 0.95rem;
  }
  
  .testimonials-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 48px;
  }
  
  .stat-value {
    font-size: 2rem;
  }
  
  .testimonials-controls {
    margin-top: 32px;
  }
}

/* Print styles */
@media print {
  .testimonials-controls {
    display: none;
  }
  
  .testimonials-track {
    display: block;
  }
  
  .testimonial-card {
    page-break-inside: avoid;
    break-inside: avoid;
    margin-bottom: 20px;
  }
}

/* Awards Section */
.awards-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 215, 0, 0.05) 100%);
}

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

.award-item {
  background: white;
  border: 2px solid rgba(255, 215, 0, 0.15);
  border-radius: 12px;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.award-item:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.award-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.award-info h4 {
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.award-info .small {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
  .media-logos {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .awards-grid {
    grid-template-columns: 1fr;
  }
  
  .award-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .badges-grid {
    grid-template-columns: 1fr;
  }
  
  .media-item, .testimonial-card, .award-item {
    padding: 1.2rem;
  }
}

/* Contact Page Premium Styles */
.contact-hero {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Premium Contact Grid */
.premium-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-method-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-method-card.primary {
  border: 2px solid #d4af37;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(184, 148, 31, 0.05) 100%);
}

.contact-method-card.secondary {
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.method-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.method-icon-large {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

/* SVG Icons in Large Method Icons */
.method-icon-large.contact-feature-icon::before {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.method-title h3 {
  margin: 0 0 0.5rem 0;
  color: #333;
  font-size: 1.3rem;
}

.method-title p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

.method-content {
  flex: 1;
}

.method-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.method-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.feature-badge {
  background: rgba(212, 175, 55, 0.1);
  color: #b8941f;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.contact-detail {
  font-size: 1.1rem;
  font-weight: 600;
  color: #d4af37;
  margin-top: 0.5rem;
}

.method-action {
  margin-top: auto;
}

.premium-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  width: 100%;
}

.premium-btn.primary {
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  color: white;
}

.premium-btn.primary:hover {
  background: linear-gradient(135deg, #e6c547 0%, #d4af37 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.premium-btn.secondary {
  background: rgba(212, 175, 55, 0.1);
  color: #b8941f;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.premium-btn.secondary:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: #d4af37;
}

.premium-btn:not(.primary):not(.secondary) {
  background: #f8f9fa;
  color: #333;
  border: 1px solid #ddd;
}

.premium-btn:not(.primary):not(.secondary):hover {
  background: #e9ecef;
  border-color: #ccc;
}

/* Consultation Section */
.consultation-section {
  margin: 4rem 0;
}

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

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.section-header p {
  color: #666;
  font-size: 1.1rem;
}

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

.consultation-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.consultation-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.consultation-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 1rem;
}

/* SVG Icons in Consultation Icons */
.consultation-icon.consultation-svg-icon::before {
  content: '';
  width: 28px;
  height: 28px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
}

.investment-strategy-icon::before {
  background-image: url('../images/investment-strategy-clean.svg');
}

.product-selection-icon::before {
  background-image: url('../images/product-selection-clean.svg');
}

.corporate-services-icon::before {
  background-image: url('../images/corporate-services-clean.svg');
}

.consultation-card h3 {
  margin-bottom: 1rem;
  color: #333;
}

.consultation-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.consultation-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.consultation-features span {
  font-size: 0.9rem;
  color: #666;
}

.consultation-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.consultation-btn:hover {
  background: linear-gradient(135deg, #e6c547 0%, #d4af37 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Company Information Section */
.company-info-section {
  margin: 4rem 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.info-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.info-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.info-content {
  padding: 2rem;
}

.info-content h3 {
  margin-bottom: 1rem;
  color: #333;
  font-size: 1.3rem;
}

.address {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.visit-info p {
  margin-bottom: 1rem;
  color: #666;
}

.visit-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(212, 175, 55, 0.1);
  color: #b8941f;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.visit-btn:hover {
  background: rgba(212, 175, 55, 0.2);
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.day {
  font-weight: 500;
  color: #333;
}

.time {
  color: #666;
}

.response-times h4 {
  margin-bottom: 1rem;
  color: #333;
  font-size: 1.1rem;
}

.response-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
}

.response-item .method {
  color: #555;
}

.response-item .time {
  color: #d4af37;
  font-weight: 500;
}

/* Mobile Responsiveness for Premium Contact */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2rem;
  }
  
  .premium-contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .consultation-grid {
    grid-template-columns: 1fr;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .method-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .consultation-features {
    text-align: center;
  }
}

/* Contact Page Enhancements */
.contact-enhancements {
  margin: 2rem auto 3rem;
  max-width: 100%;
}

.contact-enhancements h3 {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}

/* Quick Contact Methods */
.quick-contact-section {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  color: inherit;
}

.contact-method:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2);
  text-decoration: none;
  color: inherit;
}

.contact-method.whatsapp:hover {
  border-color: #25d366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.2);
}

.method-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.method-title {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 0.3rem;
}

.method-subtitle {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
}

/* Social Media & Professional Links */
.social-professional-section {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
  min-width: 100px;
}

.social-link:hover {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.social-link.linkedin:hover {
  border-color: #0077b5;
  box-shadow: 0 6px 20px rgba(0, 119, 181, 0.2);
}

.social-link.twitter:hover {
  border-color: #1da1f2;
  box-shadow: 0 6px 20px rgba(29, 161, 242, 0.2);
}

.social-link.facebook:hover {
  border-color: #4267b2;
  box-shadow: 0 6px 20px rgba(66, 103, 178, 0.2);
}

.social-link.instagram:hover {
  border-color: #e1306c;
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.2);
}

.social-icon {
  font-size: 2rem;
}

.social-link span {
  font-weight: 500;
  font-size: 0.9rem;
}

/* Payment Section */
.payment-section {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.payment-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.payment-method:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.payment-icon {
  font-size: 2rem;
}

.payment-text {
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
  font-size: 0.9rem;
  text-align: center;
}

.payment-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.payment-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.payment-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  text-decoration: none;
  color: white;
}

.payment-link-icon {
  font-size: 1.2rem;
}

/* Business Information */
.business-info-section {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.business-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.8rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.business-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.business-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.business-title {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.business-text {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Mobile Responsiveness for Contact Enhancements */
@media (max-width: 768px) {
  .contact-methods {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    gap: 1rem;
  }
  
  .social-link {
    min-width: 80px;
    padding: 1rem;
  }
  
  .payment-methods {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .payment-links {
    flex-direction: column;
    align-items: center;
  }
  
  .payment-link {
    min-width: 200px;
    justify-content: center;
  }
  
  .business-details {
    grid-template-columns: 1fr;
  }
  
  .contact-enhancements h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .contact-enhancements {
    margin: 1rem auto 2rem;
  }
  
  .quick-contact-section, .social-professional-section, .payment-section, .business-info-section {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .payment-methods {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    gap: 0.8rem;
  }
  
  .method-icon, .social-icon, .business-icon {
    font-size: 2rem;
  }
}

/* ============================== */
/* CRITICAL MOBILE OVERRIDES     */
/* These MUST be at the end to   */
/* take priority over all other  */
/* styles for mobile devices     */
/* ============================== */

/* MOBILE PRIORITY OVERRIDES */
@media screen and (max-width: 768px) {
  /* FORCE cards to stack vertically */
  .cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    margin-top: 24px !important;
  }
  
  /* FORCE compact card styling */
  .card {
    padding: 20px 16px !important;
    margin: 0 !important;
    border-radius: 12px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* FORCE mobile typography */
  .card h3 {
    font-size: 1.2rem !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
  }
  
  .card p, .card .small {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0 !important;
  }
  
  /* FORCE hero mobile layout */
  .hero {
    flex-direction: column !important;
    padding: 60px 0 40px !important;
    text-align: center !important;
  }
  
  .hero h1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
  }
  
  .hero .tagline {
    font-size: 0.95rem !important;
    margin-bottom: 20px !important;
  }
  
  /* FORCE mobile container */
  .container {
    padding: 0 16px !important;
    max-width: 100% !important;
  }
  
  /* FORCE section spacing */
  .section {
    padding: 40px 0 !important;
  }
  
  .section h2 {
    font-size: 1.6rem !important;
    margin-bottom: 16px !important;
    text-align: center !important;
  }
  
  /* FORCE footer mobile layout */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  
  .footer-section {
    text-align: center !important;
  }
  
  .footer-logo {
    justify-content: center !important;
    margin-bottom: 16px !important;
  }
  
  .footer-contact .contact-item {
    justify-content: center !important;
    text-align: center !important;
  }
  
  .footer-bottom-content {
    flex-direction: column !important;
    gap: 20px !important;
    text-align: center !important;
  }
  
  /* FORCE mobile stats */
  .hero-stats {
    flex-direction: column !important;
    gap: 16px !important;
    padding: 20px !important;
  }
  
  .stat {
    text-align: center !important;
  }
  
  /* FORCE mobile images */
  .hero-visual {
    width: 100% !important;
    margin-top: 20px !important;
  }
  
  .hero-image-container {
    margin: 0 16px !important;
    border-radius: 12px !important;
  }
}

/* EXTRA SMALL MOBILE OVERRIDES */
@media screen and (max-width: 480px) {
  .card {
    padding: 16px 12px !important;
    margin: 0 8px !important;
  }
  
  .card h3 {
    font-size: 1.1rem !important;
  }
  
  .card p, .card .small {
    font-size: 0.85rem !important;
  }
  
  .hero h1 {
    font-size: 1.8rem !important;
  }
  
  .container {
    padding: 0 12px !important;
  }
  
  .section {
    padding: 30px 0 !important;
  }
}
/* Updated: Wed Oct  1 11:01:37 EAT 2025 */

/* ========================================== */
/* WhatsApp Contact System Styles */
/* ========================================== */

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

.contact-hero {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--gradient-premium);
  border-radius: 16px;
  border: 1px solid rgba(201,164,74,0.1);
}

.contact-hero h2 {
  color: var(--gold-dark);
  margin-bottom: 1rem;
  font-size: 2.2rem;
  font-weight: 700;
}

.contact-hero p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Options Grid */
.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-option {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(201,164,74,0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.contact-option:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
  border-color: var(--gold);
}

.option-header {
  margin-bottom: 1.5rem;
}

.option-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.option-header h3 {
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.option-header p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* WhatsApp Buttons */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

/* Add WhatsApp SVG icon before text */
.whatsapp-btn::after {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url('../images/whatsapp-clean.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 8px;
  order: -1; /* Places icon before text */
  flex-shrink: 0;
  filter: brightness(0) invert(1); /* Makes SVG white */
}

.whatsapp-btn::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: left 0.5s ease;
  z-index: 1;
}

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

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

/* WhatsApp Link Styling */
.whatsapp-link {
  color: #25d366;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding-left: 24px;
}

.whatsapp-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url('../images/whatsapp-clean.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: hue-rotate(120deg) saturate(1.5) brightness(0.8); /* Green tint */
}

.whatsapp-link:hover {
  color: #20c157;
  text-decoration: underline;
}

/* WhatsApp Quick Button in Live Chat */
.whatsapp-quick-btn::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('../images/whatsapp-clean.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 6px;
  vertical-align: middle;
  filter: brightness(0) invert(1); /* White icon for dark button */
}

.whatsapp-btn.primary {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.whatsapp-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

.whatsapp-btn.secondary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(201,164,74,0.3);
}

.whatsapp-btn.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,164,74,0.4);
}

.whatsapp-btn.accent {
  background: linear-gradient(135deg, #1877F2 0%, #0B57D0 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(24,119,242,0.3);
}

.whatsapp-btn.accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24,119,242,0.4);
}

.whatsapp-btn.urgent {
  background: linear-gradient(135deg, #FF4757 0%, #FF3838 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(255,71,87,0.3);
}

.whatsapp-btn.urgent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,71,87,0.4);
}

.btn-icon {
  font-size: 1.2rem;
}

/* Phone Contact Button Styles */
.phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #007AFF 0%, #005FCC 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(0,122,255,0.3);
}

.phone-btn::after {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url('../images/phone-clean.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 8px;
  order: -1;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.phone-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,122,255,0.4);
}

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

/* Email Contact Button Styles */
.email-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #EA4335 0%, #D33B2C 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(234,67,53,0.3);
}

.email-btn::after {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url('../images/email-clean.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 8px;
  order: -1;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.email-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234,67,53,0.4);
}

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

/* Location/Visit Button Styles */
.location-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #34A853 0%, #0F9D58 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(52,168,83,0.3);
}

.location-btn::after {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url('../images/location-clean.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 8px;
  order: -1;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.location-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(52,168,83,0.4);
}

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

/* Contact Method Icon Styles for Feature Badges */
.contact-feature-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #666;
}

.contact-feature-icon::before {
  content: '';
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.template-icon::before {
  background-image: url('../images/template-clean.svg');
  filter: hue-rotate(30deg) saturate(1.2) brightness(0.7);
}

.voice-icon::before {
  background-image: url('../images/voice-clean.svg');
  filter: hue-rotate(200deg) saturate(1.2) brightness(0.7);
}

.files-icon::before {
  background-image: url('../images/files-clean.svg');
  filter: hue-rotate(100deg) saturate(1.2) brightness(0.7);
}

.clock-icon::before {
  background-image: url('../images/clock-clean.svg');
  filter: hue-rotate(240deg) saturate(1.1) brightness(0.7);
}

.whatsapp-icon::before {
  background-image: url('../images/whatsapp-clean.svg');
  filter: hue-rotate(120deg) saturate(1.5) brightness(0.8);
}

.phone-icon::before {
  background-image: url('../images/phone-clean.svg');
  filter: hue-rotate(210deg) saturate(1.2) brightness(0.7);
}

/* Footer Contact Icons */
.footer-location-icon::before {
  background-image: url('../images/location-clean.svg');
  filter: brightness(0.8) sepia(1) saturate(2) hue-rotate(35deg);
}

.footer-phone-icon::before {
  background-image: url('../images/phone-clean.svg');
  filter: brightness(0.8) sepia(1) saturate(2) hue-rotate(35deg);
}

.footer-email-icon::before {
  background-image: url('../images/email-clean.svg');
  filter: brightness(0.8) sepia(1) saturate(2) hue-rotate(35deg);
}

/* Alternative Contact Methods */
.alternative-contact {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(201,164,74,0.1);
}

.alternative-contact h3 {
  color: var(--gold-dark);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.6rem;
  font-weight: 600;
}

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

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--gradient-premium);
  border-radius: 12px;
  border: 1px solid rgba(201,164,74,0.1);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.method-icon {
  font-size: 2rem;
  min-width: 60px;
  text-align: center;
}

.method-info h4 {
  color: var(--gold-dark);
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}

.method-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0.25rem 0 0 0;
}

/* WhatsApp Benefits */
.whatsapp-benefits {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(201,164,74,0.1);
}

.whatsapp-benefits h3 {
  color: var(--gold-dark);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.6rem;
  font-weight: 600;
}

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

.benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--gradient-premium);
  border-radius: 12px;
  border: 1px solid rgba(201,164,74,0.1);
}

.benefit-icon {
  font-size: 2rem;
  min-width: 50px;
  text-align: center;
}

.benefit-text h4 {
  color: var(--gold-dark);
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 600;
}

.benefit-text p {
  color: var(--muted);
  margin: 0;
  font-size: 0.9rem;
}

/* Response Info */
.response-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.response-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(201,164,74,0.1);
  text-align: center;
}

.response-card h4 {
  color: var(--gold-dark);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.response-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .whatsapp-contact-system {
    padding: 1rem 0;
  }
  
  .contact-hero {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .contact-hero h2 {
    font-size: 1.8rem;
  }
  
  .contact-hero p {
    font-size: 1rem;
  }
  
  .contact-options-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .contact-option {
    padding: 1.5rem;
  }
  
  .whatsapp-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .contact-alternatives {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-method {
    padding: 1rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .response-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ========================================== */
/* LEGAL PAGES STYLING */
/* ========================================== */

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.legal-content h2 {
  color: var(--gold-dark);
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-light);
}

.legal-content h3 {
  color: var(--gold);
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}

.legal-content h4 {
  color: var(--gold-dark);
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.legal-content strong {
  color: var(--gold-dark);
  font-weight: 600;
}

.legal-notice {
  background: var(--gradient-premium);
  border: 1px solid var(--gold-light);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}

.legal-notice em {
  color: var(--muted);
  font-style: italic;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 1.5rem 0;
}

.contact-grid h4 {
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.contact-grid ul {
  list-style: none;
  padding: 0;
}

.contact-grid li {
  margin-bottom: 0.75rem;
  padding-left: 0;
}

/* Cookie Policy Specific Styles */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.cookie-table th {
  background: var(--gradient-gold);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.cookie-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--gold-light);
}

.cookie-table tr:nth-child(even) {
  background: rgba(201,164,74,0.03);
}

.cookie-table tr:hover {
  background: rgba(201,164,74,0.08);
}

.cookie-controls {
  background: var(--gradient-premium);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
}

.cookie-settings-btn {
  background: var(--gradient-gold);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-medium);
}

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

/* Mobile Responsive for Legal Pages */
@media (max-width: 768px) {
  .legal-content {
    padding: 1rem 0;
  }
  
  .legal-content h2 {
    font-size: 1.3rem;
  }
  
  .legal-content h3 {
    font-size: 1.15rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cookie-table {
    font-size: 0.9rem;
  }
  
  .cookie-table th,
  .cookie-table td {
    padding: 0.5rem;
  }
  
  .cookie-settings-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
  }
}

/* ========================================== */
/* SEARCH FUNCTIONALITY STYLING */
/* ========================================== */

/* Navigation Search Bar */
.nav-search {
  position: relative;
  margin-left: 1.5rem;
}

.search-form {
  position: relative;
}

.search-input-container {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 280px;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  border: 2px solid var(--gold-light);
  border-radius: 25px;
  background: white;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,164,74,0.1);
  width: 320px;
}

.search-btn {
  position: absolute;
  right: 8px;
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.search-btn:hover {
  background: var(--gold-light);
  color: var(--gold-dark);
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--gold-light);
  border-radius: 12px;
  box-shadow: var(--shadow-strong);
  z-index: 1000;
  margin-top: 4px;
  display: none;
  max-height: 300px;
  overflow-y: auto;
}

.suggestion-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid rgba(201,164,74,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}

.suggestion-item:hover {
  background: var(--gradient-premium);
}

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

.suggestion-text {
  font-weight: 500;
  color: #333;
}

.suggestion-text mark {
  background: var(--gold-light);
  color: var(--gold-dark);
  padding: 0 2px;
  border-radius: 2px;
}

.suggestion-category {
  font-size: 0.8rem;
  color: var(--muted);
  background: var(--gold-light);
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
}

/* Main Search Page Styling */
.search-page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.search-page-header h1 {
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}

.main-search-container {
  max-width: 600px;
  margin: 0 auto;
}

.main-search-input-container {
  position: relative;
  display: flex;
  align-items: center;
  background: white;
  border: 3px solid var(--gold-light);
  border-radius: 50px;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
}

.main-search-input-container:focus-within {
  border-color: var(--gold);
  box-shadow: var(--shadow-premium);
}

.main-search-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  border-radius: 50px;
}

.main-search-input:focus {
  outline: none;
}

.main-search-btn {
  background: var(--gradient-gold);
  border: none;
  color: white;
  padding: 1rem;
  border-radius: 50%;
  margin: 0.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-search-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
}

/* Search Filters */
.search-filters {
  background: var(--gradient-premium);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.search-filters h3 {
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

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

.filter-group {
  display: flex;
  flex-direction: column;
}

.filter-label {
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.filter-select {
  padding: 0.5rem;
  border: 2px solid var(--gold-light);
  border-radius: 6px;
  background: white;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.filter-select:focus {
  outline: none;
  border-color: var(--gold);
}

/* Search Results */
.search-results-container {
  margin-bottom: 3rem;
}

.search-stats {
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.search-stats strong {
  color: var(--gold-dark);
}

.search-results {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.search-result {
  background: white;
  border: 1px solid var(--gold-light);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-subtle);
}

.search-result:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

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

.result-title {
  margin: 0;
  flex: 1;
}

.result-link {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

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

.result-link mark {
  background: var(--gold-light);
  color: var(--gold-dark);
  padding: 0 2px;
  border-radius: 2px;
}

.result-meta {
  display: flex;
  gap: 0.5rem;
}

.result-category,
.result-type {
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-weight: 500;
}

.result-category {
  background: var(--gold);
  color: white;
}

.result-type {
  background: var(--gold-light);
  color: var(--gold-dark);
}

.result-description {
  margin: 0 0 1rem;
  line-height: 1.6;
  color: #555;
}

.result-description mark {
  background: var(--gold-light);
  color: var(--gold-dark);
  padding: 0 2px;
  border-radius: 2px;
}

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

.result-visit {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.result-visit:hover {
  color: var(--gold-dark);
}

/* Search Welcome State */
.search-welcome {
  text-align: center;
  padding: 3rem 2rem;
}

.search-welcome-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.search-welcome h2 {
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.search-suggestions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  max-width: 600px;
  margin: 2rem auto 0;
}

.suggestion-btn {
  background: var(--gradient-premium);
  border: 2px solid var(--gold-light);
  color: var(--gold-dark);
  padding: 0.75rem 1rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.suggestion-btn:hover {
  background: var(--gradient-gold);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* No Results State */
.no-results {
  text-align: center;
  padding: 3rem 2rem;
}

.no-results-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.no-results h2 {
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.no-results ul {
  text-align: left;
  max-width: 400px;
  margin: 1.5rem auto;
}

/* Popular Searches */
.popular-searches {
  margin-bottom: 3rem;
}

.popular-searches h3 {
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  background: var(--gold-light);
  color: var(--gold-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tag:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-2px);
}

/* Quick Access */
.quick-access h3 {
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}

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

.quick-link {
  background: white;
  border: 2px solid var(--gold-light);
  border-radius: 12px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  text-align: center;
}

.quick-link:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.quick-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.quick-link h4 {
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.quick-link p {
  color: var(--muted);
  margin: 0;
  font-size: 0.9rem;
}

/* Mobile Responsive for Search */
@media (max-width: 1024px) {
  .nav-search {
    display: none;
  }
}

@media (max-width: 768px) {
  .search-input {
    width: 200px;
  }
  
  .search-input:focus {
    width: 240px;
  }
  
  .main-search-input {
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
  }
  
  .filter-grid {
    grid-template-columns: 1fr;
  }
  
  .search-suggestions-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  
  .quick-access-grid {
    grid-template-columns: 1fr;
  }
  
  .popular-tags {
    justify-content: center;
  }
  
  .result-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .search-page-header {
    margin-bottom: 2rem;
  }
  
  .main-search-input {
    padding: 0.75rem 1rem;
  }
  
  .search-result {
    padding: 1rem;
  }
  
  .search-welcome {
    padding: 2rem 1rem;
  }
  
  .no-results {
    padding: 2rem 1rem;
  }
}

/* ========================================== */

/* Historical Price Analysis Styles */
.historical-analysis-section {
  margin: 4rem 0;
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(201,164,74,0.02) 0%, rgba(160,124,47,0.01) 100%);
  border-radius: 20px;
  border: 1px solid rgba(201,164,74,0.1);
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 1rem;
  background: var(--gradient-luxury);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Chart Controls */
.chart-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.time-period-selector {
  display: flex;
  gap: 0.5rem;
  background: rgba(255,255,255,0.7);
  padding: 0.5rem;
  border-radius: 12px;
  border: 1px solid rgba(201,164,74,0.2);
  box-shadow: var(--shadow-subtle);
}

.period-btn {
  padding: 0.5rem 1rem;
  border: none;
  background: transparent;
  color: var(--muted);
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.period-btn:hover {
  background: rgba(201,164,74,0.1);
  color: var(--gold-dark);
}

.period-btn.active {
  background: var(--gradient-gold);
  color: white;
  box-shadow: var(--shadow-medium);
}

.chart-type-selector select {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(201,164,74,0.3);
  border-radius: 8px;
  background: white;
  color: var(--gold-dark);
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}

.chart-type-selector select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,164,74,0.1);
}

/* Chart Container */
.chart-container {
  position: relative;
  height: 400px;
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(201,164,74,0.1);
  margin-bottom: 2rem;
  overflow: hidden;
}

.chart-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(201,164,74,0.2);
  border-top: 3px solid var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

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

.chart-loading p {
  color: var(--muted);
  font-weight: 500;
}

/* Price Statistics */
.price-statistics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(201,164,74,0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.stat-card h4 {
  margin: 0 0 1rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-values {
  margin-bottom: 0.5rem;
}

.stat-price, .stat-high, .stat-low, .stat-volatility, .stat-volume {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.stat-separator {
  margin: 0 0.5rem;
  color: var(--muted);
  font-weight: 400;
}

.stat-change {
  font-size: 0.9rem;
  font-weight: 500;
}

.stat-change.positive {
  color: #22c55e;
}

.stat-change.negative {
  color: #ef4444;
}

.volatility-level {
  color: #f59e0b !important;
}

/* Trend Analysis Tools */
.trend-analysis-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.analysis-panel {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(201,164,74,0.1);
}

.analysis-panel h3 {
  margin: 0 0 1.5rem 0;
  color: var(--gold-dark);
  font-size: 1.3rem;
  font-weight: 700;
}

.indicators-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.indicator-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: rgba(201,164,74,0.02);
  border-radius: 8px;
  border: 1px solid rgba(201,164,74,0.1);
}

.indicator-name {
  font-weight: 500;
  color: var(--muted);
}

.indicator-value {
  font-weight: 700;
  color: var(--gold-dark);
}

.indicator-signal {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.indicator-signal.bullish {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.indicator-signal.neutral {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.indicator-signal.bearish {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

/* Market Sentiment */
.sentiment-meter {
  margin-bottom: 1.5rem;
}

.sentiment-bar {
  width: 100%;
  height: 12px;
  background: linear-gradient(to right, #ef4444 0%, #f59e0b 50%, #22c55e 100%);
  border-radius: 6px;
  position: relative;
  margin-bottom: 0.5rem;
}

.sentiment-fill {
  height: 100%;
  background: rgba(255,255,255,0.3);
  border-radius: 6px;
  position: relative;
}

.sentiment-fill::after {
  content: '';
  position: absolute;
  right: -6px;
  top: -2px;
  width: 16px;
  height: 16px;
  background: white;
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: var(--shadow-subtle);
}

.sentiment-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.sentiment-score {
  text-align: center;
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 1.1rem;
}

.sentiment-factors {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.factor {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.factor-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
}

.factor.positive .factor-icon {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.factor.negative .factor-icon {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

/* Events Timeline */
.events-timeline {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(201,164,74,0.1);
}

.events-timeline h3 {
  margin: 0 0 1.5rem 0;
  color: var(--gold-dark);
  font-size: 1.3rem;
  font-weight: 700;
}

.timeline-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: rgba(201,164,74,0.02);
  border-radius: 8px;
  border-left: 4px solid var(--gold);
}

.timeline-date {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.timeline-event {
  font-weight: 500;
  color: #0b1220;
}

.timeline-impact {
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

.timeline-impact.positive {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.timeline-impact.negative {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

/* ==========================================
   ASSET COMPARISON CHARTS SECTION
   ========================================== */

.comparison-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.comparison-section .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.comparison-section .section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.comparison-section .section-header p {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.7;
}

/* Chart Tabs */
.comparison-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.tab-btn.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-color: var(--gold);
  color: white;
}

/* Chart Panel */
.chart-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.chart-panel.active {
  display: block;
}

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

/* Chart Controls Row */
.chart-controls-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.asset-toggles {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.asset-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}

.asset-toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--gold);
}

.toggle-label {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.toggle-label.gold { background: rgba(201, 164, 74, 0.1); color: #C9A44A; }
.toggle-label.sp500 { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.toggle-label.bonds { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.toggle-label.bitcoin { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.toggle-label.silver { background: rgba(148, 163, 184, 0.1); color: #94a3b8; }

.period-select {
  padding: 10px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  background: white;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
}

.period-select:hover {
  border-color: var(--gold);
}

.period-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 164, 74, 0.1);
}

/* Enhanced Chart Container */
.enhanced-chart-container {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
  height: 450px;
}

.enhanced-chart-container canvas {
  max-height: 100%;
}

/* Performance Summary */
.performance-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.summary-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.summary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.asset-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.95rem;
}

.asset-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.asset-dot.gold { background: #C9A44A; }
.asset-dot.sp500 { background: #3b82f6; }
.asset-dot.bonds { background: #10b981; }
.asset-dot.bitcoin { background: #f59e0b; }

.returns {
  text-align: right;
}

.return-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #22c55e;
  display: block;
}

.return-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Correlation Insights */
.correlation-insights,
.volatility-insights {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.correlation-insights h4,
.volatility-insights h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.correlation-insights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.correlation-insights li {
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
  line-height: 1.6;
  color: #475569;
}

.correlation-insights li:last-child {
  border-bottom: none;
}

.correlation-insights strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* Volatility Metrics */
.volatility-insights p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 24px;
}

.volatility-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.metric {
  background: rgba(201, 164, 74, 0.05);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(201, 164, 74, 0.1);
  text-align: center;
}

.metric-label {
  display: block;
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 8px;
  font-weight: 500;
}

.metric-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
  .chart-controls {
    flex-direction: column;
    align-items: stretch;
  }
  
  .time-period-selector {
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .trend-analysis-tools {
    grid-template-columns: 1fr;
  }
  
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: center;
  }
  
  .price-statistics {
    grid-template-columns: 1fr;
  }
  
  .chart-container {
    height: 300px;
    padding: 1rem;
  }
  
  /* Comparison Section Mobile */
  .comparison-section {
    padding: 40px 0;
  }
  
  .comparison-section .section-header h2 {
    font-size: 1.75rem;
  }
  
  .comparison-tabs {
    flex-direction: column;
    gap: 8px;
  }
  
  .tab-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  
  .chart-controls-row {
    flex-direction: column;
    align-items: stretch;
  }
  
  .asset-toggles {
    justify-content: center;
  }
  
  .enhanced-chart-container {
    padding: 16px;
    height: 350px;
  }
  
  .performance-summary {
    grid-template-columns: 1fr;
  }
  
  .volatility-metrics {
    grid-template-columns: 1fr;
  }
}

/* ========================================== */
/* Contact Form Styles */
/* ========================================== */

.contact-form-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(251,251,251,0.8) 0%, rgba(255,255,255,0.9) 100%);
  border-top: 1px solid rgba(201,164,74,0.1);
  border-bottom: 1px solid rgba(201,164,74,0.1);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.premium-form {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.08),
    0 8px 32px rgba(201,164,74,0.1);
  border: 1px solid rgba(201,164,74,0.1);
  position: relative;
  overflow: hidden;
}

.premium-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-luxury);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid rgba(201,164,74,0.2);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255,255,255,0.8);
  transition: all 0.3s ease;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: white;
  box-shadow: 
    0 0 0 3px rgba(201,164,74,0.15),
    0 4px 12px rgba(201,164,74,0.1);
  transform: translateY(-1px);
}

.form-group textarea {
  min-height: 120px;
  line-height: 1.6;
}

.form-actions {
  text-align: center;
  margin-top: 2rem;
}

.form-actions .premium-btn {
  min-width: 200px;
  position: relative;
  overflow: hidden;
}

.btn-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-status {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
}

.form-status.success {
  background: linear-gradient(135deg, rgba(34,197,94,0.1) 0%, rgba(21,128,61,0.05) 100%);
  color: #15803d;
  border: 1px solid rgba(34,197,94,0.2);
}

.form-status.error {
  background: linear-gradient(135deg, rgba(239,68,68,0.1) 0%, rgba(185,28,28,0.05) 100%);
  color: #b91c1c;
  border: 1px solid rgba(239,68,68,0.2);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .contact-form-section {
    padding: 2rem 0;
  }
  
  .premium-form {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .form-container {
    padding: 0;
  }
}

/* ========================================== */
/* Final Mobile Polish & Consistency */
/* ========================================== */

/* Ensure consistent mobile spacing across all pages */
@media (max-width: 980px) {
  /* Consistent section spacing */
  .section {
    padding: 2rem 0;
  }
  
  /* Ensure hero sections work well on mobile */
  .hero {
    padding: 3rem 0;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  /* Card spacing consistency */
  .card, .service-card, .product-card {
    margin-bottom: 1rem;
    padding: 1.5rem;
  }
  
  /* Button consistency on mobile */
  .btn, .cta {
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    font-size: 16px; /* Prevent zoom on iOS */
  }
  
  /* Form input consistency */
  input, textarea, select {
    font-size: 16px; /* Prevent zoom on iOS */
    padding: 12px;
    width: 100%;
  }
  
  /* Navigation consistency */
  .mobile-nav-sidebar {
    width: 320px;
    max-width: 85vw;
  }
  
  /* Ensure tables are responsive */
  table {
    width: 100%;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
  }
  
  /* Footer adjustments */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

/* Extra mobile polish for very small screens */
@media (max-width: 600px) {
  /* Even more compact spacing */
  .section {
    padding: 1.5rem 0;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  /* Ensure no horizontal overflow */
  body, html {
    overflow-x: hidden;
  }
  
  * {
    max-width: 100%;
  }
  
  /* Compact navigation */
  .mobile-nav-sidebar {
    width: 280px;
    max-width: 90vw;
  }
  
  /* Ensure WhatsApp button doesn't interfere */
  .whatsapp-mobile {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-mobile svg {
    width: 28px;
    height: 28px;
  }
}

/* ========================================== */
