/* Lottery 66 - Modern Financial Platform CSS */
/* Optimized for SEO and User Experience */

:root {
  --emerald-green: #046307;
  --matte-black: #1A1A1A;
  --bright-gold: #FFCC00;
  --dark-gray: #2E2E2E;
  --champagne-white: #FDF6EC;
  --navy-blue: #1e3a8a;
  --cyan-blue: #06b6d4;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --border-light: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--champagne-white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--matte-black);
}

h1 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--emerald-green), var(--bright-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2rem;
  color: var(--emerald-green);
}

h3 {
  font-size: 1.5rem;
  color: var(--dark-gray);
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Navigation */
.navbar {
  background: linear-gradient(135deg, var(--matte-black), var(--dark-gray));
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--bright-gold);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--champagne-white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--bright-gold);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bright-gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--emerald-green) 0%, var(--dark-gray) 50%, var(--matte-black) 100%);
  color: white;
  padding: 6rem 0 8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="white" opacity="0.1"/><circle cx="10" cy="10" r="1" fill="white" opacity="0.05"/><circle cx="50" cy="50" r="1.5" fill="white" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>');
  opacity: 0.3;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--bright-gold), rgba(255, 204, 0, 0.3));
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  right: 30%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-badge svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  font-weight: 800;
  line-height: 1.1;
}

.hero h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--bright-gold);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  font-weight: 600;
  line-height: 1.2;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  color: var(--champagne-white);
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-stats .stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  min-width: 120px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-stats .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-stats .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--bright-gold);
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-stats .stat-label {
  font-size: 0.9rem;
  color: var(--champagne-white);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--champagne-white);
  font-size: 0.9rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.8rem 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
  color: var(--bright-gold);
}

/* Hero Responsive Styles */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 0 6rem;
    min-height: 90vh;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .hero-stats .stat-item {
    padding: 1rem 1.5rem;
    min-width: 100px;
  }
  
  .hero-stats .stat-number {
    font-size: 1.5rem;
  }
  
  .hero-stats .stat-label {
    font-size: 0.8rem;
  }
  
  .hero-trust {
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .trust-item {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
  
  .trust-item svg {
    width: 16px;
    height: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .shape-1 {
    width: 120px;
    height: 120px;
  }
  
  .shape-2 {
    width: 80px;
    height: 80px;
  }
  
  .shape-3 {
    width: 60px;
    height: 60px;
  }
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 180px;
  justify-content: center;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

.btn-primary {
  background: linear-gradient(135deg, var(--emerald-green), var(--bright-gold));
  color: white;
  box-shadow: 0 8px 25px rgba(4, 99, 7, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(4, 99, 7, 0.4);
  background: linear-gradient(135deg, var(--bright-gold), var(--emerald-green));
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--bright-gold);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Cards */
.card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-light);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

/* Step-by-Step Process */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem 0;
  position: relative;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}

.step-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  background: linear-gradient(135deg, var(--emerald-green), var(--bright-gold));
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 3;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  color: var(--emerald-green);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.step-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.step-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--emerald-green), var(--bright-gold));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.step-connector::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--bright-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px white, 0 0 0 5px var(--bright-gold);
}

/* Responsive adjustments for steps */
@media (max-width: 768px) {
  .step-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .step-number {
    align-self: center;
  }
  
  .step-connector {
    height: 30px;
  }
  
  .step-connector::before {
    width: 10px;
    height: 10px;
  }
}

/* Features Section */
.features {
  padding: 4rem 0;
  background: white;
}

/* Advantages Section */
.advantages-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--champagne-white) 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.advantages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23046307" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-top: 1rem;
  font-weight: 400;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.advantage-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald-green), var(--bright-gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.advantage-card:hover::before {
  transform: scaleX(1);
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.advantage-card.security:hover {
  border-color: var(--emerald-green);
}

.advantage-card.fairness:hover {
  border-color: var(--bright-gold);
}

.advantage-card.payouts:hover {
  border-color: var(--navy-blue);
}

.advantage-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.advantage-card.security .advantage-icon {
  background: linear-gradient(135deg, var(--emerald-green), #0a7d0a);
  color: white;
}

.advantage-card.fairness .advantage-icon {
  background: linear-gradient(135deg, var(--bright-gold), #e6b800);
  color: var(--matte-black);
}

.advantage-card.payouts .advantage-icon {
  background: linear-gradient(135deg, var(--navy-blue), var(--cyan-blue));
  color: white;
}

.advantage-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 2.5;
}

.advantage-content h3 {
  color: var(--matte-black);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.advantage-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.advantage-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.advantage-features li {
  color: var(--text-light);
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.5;
}

.advantage-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--emerald-green);
  font-weight: bold;
  font-size: 1.1rem;
}

.advantage-card.security .advantage-features li::before {
  color: var(--emerald-green);
}

.advantage-card.fairness .advantage-features li::before {
  color: var(--bright-gold);
}

.advantage-card.payouts .advantage-features li::before {
  color: var(--navy-blue);
}

/* Responsive adjustments for advantages */
@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .advantage-card {
    padding: 2rem;
  }
  
  .advantage-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
  }
  
  .advantage-icon svg {
    width: 35px;
    height: 35px;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--matte-black) 0%, var(--dark-gray) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23FFCC00" opacity="0.3"/><circle cx="10" cy="10" r="0.5" fill="%23FFCC00" opacity="0.2"/><circle cx="40" cy="15" r="0.8" fill="%23FFCC00" opacity="0.25"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
  opacity: 0.1;
}

.testimonials-section .section-header {
  color: white;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.testimonials-section .section-subtitle {
  color: var(--champagne-white);
  opacity: 0.9;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 204, 0, 0.2);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald-green), var(--bright-gold));
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.testimonial-content {
  padding: 2.5rem;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--emerald-green), var(--bright-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.1;
}

.quote-icon svg {
  width: 20px;
  height: 20px;
  color: var(--emerald-green);
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  z-index: 2;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: var(--emerald-green);
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  opacity: 0.2;
  font-family: serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--bright-gold);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .author-avatar img {
  transform: scale(1.1);
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--matte-black);
  margin-bottom: 0.25rem;
}

.author-location {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.rating {
  display: flex;
  gap: 0.2rem;
}

.star {
  color: var(--bright-gold);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.star:hover {
  transform: scale(1.2);
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .testimonial-content {
    padding: 2rem;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
  
  .author-avatar {
    width: 50px;
    height: 50px;
  }
  
  .quote-icon {
    width: 35px;
    height: 35px;
    top: 1rem;
    right: 1rem;
  }
  
  .quote-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* About Us Page Specific Styles */
.about-story-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--champagne-white) 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.about-story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="timeline-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23046307" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23timeline-dots)"/></svg>');
  opacity: 0.3;
}

.story-timeline {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 60px;
  bottom: -3rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--emerald-green), var(--bright-gold));
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-year {
  background: linear-gradient(135deg, var(--emerald-green), var(--bright-gold));
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 3;
}

.timeline-content {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
  color: var(--emerald-green);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* Mission & Values Section */
.mission-values-section {
  padding: 5rem 0;
  background: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald-green), var(--bright-gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--emerald-green), var(--bright-gold));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.value-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 2.5;
}

.value-card h3 {
  color: var(--matte-black);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.value-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--matte-black) 0%, var(--dark-gray) 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23FFCC00" opacity="0.2"/><circle cx="10" cy="10" r="0.5" fill="%23FFCC00" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-pattern)"/></svg>');
  opacity: 0.1;
}

.stats-section .section-header {
  color: white;
  position: relative;
  z-index: 2;
}

.stats-section .section-subtitle {
  color: var(--champagne-white);
  opacity: 0.9;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--bright-gold);
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.stat-label {
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Why Choose Section */
.why-choose-section {
  padding: 5rem 0;
  background: var(--champagne-white);
}

.features-showcase {
  margin-top: 3rem;
}

.feature-showcase-item {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-showcase-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-showcase-item.reverse {
  flex-direction: row-reverse;
}

.feature-image {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--emerald-green), var(--bright-gold));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.feature-image svg {
  width: 60px;
  height: 60px;
  stroke-width: 2;
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  color: var(--emerald-green);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.feature-content p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.1rem;
  margin: 0;
}

/* Commitment Section */
.commitment-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--emerald-green), var(--dark-gray));
  color: white;
}

.commitment-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.commitment-content {
  flex: 2;
}

.commitment-content h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.commitment-content h3 {
  color: var(--bright-gold);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.commitment-content p {
  color: var(--champagne-white);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.commitment-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.commitment-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 500;
}

.feature-icon {
  font-size: 1.2rem;
}

.commitment-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.protection-shield {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--bright-gold), #e6b800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--matte-black);
  animation: pulse 2s infinite;
}

.protection-shield svg {
  width: 100px;
  height: 100px;
  stroke-width: 2;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive adjustments for About Us page */
@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .timeline-item::before {
    display: none;
  }
  
  .timeline-year {
    align-self: center;
  }
  
  .timeline-content {
    padding: 1.5rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .feature-showcase-item {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .feature-showcase-item.reverse {
    flex-direction: column;
  }
  
  .feature-image {
    width: 100px;
    height: 100px;
  }
  
  .feature-image svg {
    width: 50px;
    height: 50px;
  }
  
  .commitment-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .commitment-content h2 {
    font-size: 2rem;
  }
  
  .protection-shield {
    width: 150px;
    height: 150px;
  }
  
  .protection-shield svg {
    width: 75px;
    height: 75px;
  }
  
  .commitment-features {
    justify-content: center;
  }
}

/* Legal Pages Styles */
.legal-content-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--champagne-white) 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.legal-content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="legal-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%23046307" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23legal-pattern)"/></svg>');
  opacity: 0.3;
}

.legal-info-section {
  padding: 4rem 0;
  background: white;
}

.legal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.legal-header h2 {
  color: var(--emerald-green);
  font-size: 2.5rem;
  margin: 0;
  flex: 1;
}

.legal-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--emerald-green), var(--bright-gold));
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}

.legal-badge svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

.legal-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.legal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald-green), var(--bright-gold));
  border-radius: 20px 20px 0 0;
}

.legal-content {
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 1.1rem;
}

.legal-content p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.info-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald-green), var(--bright-gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.info-card:hover::before {
  transform: scaleX(1);
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.info-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--emerald-green), var(--bright-gold));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: white;
}

.info-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 2.5;
}

.info-content h3 {
  color: var(--matte-black);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.info-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  color: var(--text-light);
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
}

.info-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--emerald-green);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Legal sections with different backgrounds */
.legal-usage-section {
  padding: 4rem 0;
  background: var(--champagne-white);
}

.legal-sharing-section {
  padding: 4rem 0;
  background: white;
}

.legal-security-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--matte-black) 0%, var(--dark-gray) 100%);
  color: white;
}

.legal-security-section .legal-header h2 {
  color: white;
}

.legal-security-section .legal-badge {
  background: linear-gradient(135deg, var(--bright-gold), #e6b800);
  color: var(--matte-black);
}

.legal-security-section .legal-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.legal-security-section .legal-content p {
  color: var(--champagne-white);
}

.legal-rights-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--emerald-green), var(--dark-gray));
  color: white;
}

.legal-rights-section .legal-header h2 {
  color: white;
}

.legal-rights-section .legal-badge {
  background: linear-gradient(135deg, var(--bright-gold), #e6b800);
  color: var(--matte-black);
}

.legal-rights-section .legal-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.legal-rights-section .legal-content p {
  color: var(--champagne-white);
}

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
  .legal-header {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .legal-header h2 {
    font-size: 2rem;
  }
  
  .legal-card {
    padding: 2rem;
  }
  
  .info-cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .info-card {
    padding: 2rem;
  }
  
  .info-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
  }
  
  .info-icon svg {
    width: 35px;
    height: 35px;
  }
  
  .legal-badge {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
  
  .legal-badge svg {
    width: 18px;
    height: 18px;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--emerald-green), var(--bright-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

/* FAQ Section */
.faq {
  background: var(--champagne-white);
  padding: 4rem 0;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background: var(--emerald-green);
  color: white;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--dark-gray);
}

.faq-answer {
  padding: 1.5rem;
  display: none;
  border-top: 1px solid var(--border-light);
}

.faq-answer.active {
  display: block;
}

/* Footer */
.footer {
  background: var(--matte-black);
  color: var(--champagne-white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--bright-gold);
  margin-bottom: 1rem;
}

.footer-section a {
  color: var(--champagne-white);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--bright-gold);
}

.footer-bottom {
  border-top: 1px solid var(--dark-gray);
  padding-top: 1rem;
  text-align: center;
  color: var(--text-light);
}

/* Breadcrumb */
.breadcrumb {
  background: var(--champagne-white);
  padding: 1rem 0;
  margin-top: 80px;
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.breadcrumb-nav a {
  color: var(--emerald-green);
  text-decoration: none;
  margin-right: 0.5rem;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

.breadcrumb-nav span {
  color: var(--text-light);
  margin: 0 0.5rem;
}

/* Mobile Navigation Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--bright-gold);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--matte-black);
    padding: 1rem;
    display: none;
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Accessibility */
.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;
}

/* Focus states */
a:focus,
button:focus {
  outline: 2px solid var(--bright-gold);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --text-light: #000000;
    --border-light: #000000;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--emerald-green), var(--bright-gold));
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
}

.back-to-top.visible {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, var(--bright-gold), var(--emerald-green));
}

.back-to-top:focus {
  outline: 2px solid var(--bright-gold);
  outline-offset: 2px;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Responsive adjustments for back to top button */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .back-to-top svg {
    width: 18px;
    height: 18px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .back-to-top {
    transition: none;
  }
}
