/* English-specific styles */
/* TODO: Load Google Fonts - Poppins recommended */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap'); */

body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Typography Scale */
h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-4);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: var(--space-3);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: var(--space-3);
}

p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: var(--space-3);
  color: var(--muted);
}

.lead {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  font-weight: 500;
  color: var(--text);
}

/* Header & Navigation */
header {
  background: transparent !important;
  padding-top: var(--space-8);
  padding-bottom: var(--space-6);
  position: relative;
  z-index: 1001;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-6) 0;
  margin-top: 0;
  position: relative;
  z-index: 1002;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1003;
}

.logo-image {
  height: 80px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 1003;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-6);
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu .btn-primary {
  background-color: var(--accent);
  color: white;
}

.nav-menu a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

/* Hero Section */
.hero {
  padding: var(--space-8) 0;
  background: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-image {
  margin-top: var(--space-6);
  text-align: center;
}

.hero-image .btn {
  font-size: 1.25rem;
  padding: var(--space-4) var(--space-6);
  color: white;
}

/* Feature Cards */
.features {
  padding: var(--space-8) 0;
}

/* Override any card inheritance */
.features .feature-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* Ensure header is transparent */
body header {
  background: transparent !important;
}

/* Ensure testimonials animation works */
.testimonials .testimonials-track {
  display: flex !important;
  animation: scroll 30s linear infinite !important;
}



.features-header {
  text-align: left;
  margin-bottom: var(--space-6);
}

.feature-card {
  text-align: left;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.feature-card img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
  margin: 0 auto;
}

.feature-card-content {
  flex: 1;
  padding-top: var(--space-2);
  text-align: left;
  width: 100%;
}

.feature-card h3 {
  color: var(--text);
  font-weight: 700;
  margin-bottom: var(--space-3);
  text-align: left;
}

.feature-card p {
  text-align: left;
  color: var(--muted);
}

/* How It Works */
.how-it-works {
  padding: var(--space-8) 0;
}

.how-it-works .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-8);
}

.how-it-works-content {
  display: block;
}

.how-it-works-content h2 {
  margin-bottom: var(--space-6);
  text-align: left;
}

.steps-and-image-container {
  display: flex;
  align-items: flex-start;
  gap: var(--space-8);
}

.how-it-works-image {
  flex-shrink: 0;
  text-align: center;
  margin-top: 0;
  padding-top: 0;
  margin-left: auto;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.step {
  text-align: left;
  padding: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.step-text {
  flex: 1;
  max-width: 500px;
}

.how-it-works-image {
  flex-shrink: 0;
  text-align: center;
}

.works-image {
  width: 322px;
  height: 700px;
  object-fit: cover;
  border-radius: var(--radius);
}

.step-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}



/* CTA Section */
.cta {
  padding: var(--space-8) 0;
  background: var(--text);
  color: white;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-8);
  align-items: center;
}

.cta-text {
  text-align: left;
  max-width: 600px;
}

.cta-text h2 {
  color: white;
}

.cta-buttons {
  text-align: right;
}

.cta .btn {
  background: white;
  color: var(--text);
  margin-left: var(--space-3);
}

.cta .btn:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

/* Testimonials */
.testimonials {
  padding: var(--space-8) 0;
}

.testimonials-container {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex !important;
  gap: var(--space-5);
  animation: scroll 30s linear infinite !important;
}

.testimonial {
  text-align: center;
  padding: var(--space-5);
  min-width: 300px;
  flex-shrink: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-300px * 3 - 20px * 3));
  }
}

blockquote {
  font-style: italic;
  font-size: 1.125rem;
  margin-bottom: var(--space-4);
  color: var(--text);
}

.testimonial-author {
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-2);
}

.testimonial-role {
  color: var(--muted);
  font-size: 0.9rem;
}



/* Footer */
footer {
  background: white;
  color: var(--text);
  padding: var(--space-8) 0 var(--space-6);
  border-top: 1px solid #e5e7eb;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-6);
}

.footer-left h4 {
  color: var(--text);
  margin-bottom: var(--space-4);
  font-size: 1.5rem;
}

.footer-left p {
  color: var(--muted);
  margin-bottom: var(--space-4);
  max-width: 300px;
}

.social-icons {
  display: flex;
  gap: var(--space-3);
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--text);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--accent);
  transform: scale(1.1);
}

.footer-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.footer-section h4 {
  color: var(--text);
  margin-bottom: var(--space-4);
}

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

.footer-section ul li {
  margin-bottom: var(--space-2);
}

.footer-section a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding-top: var(--space-4);
  text-align: center;
  color: var(--muted);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
  }

  /* Logo when menu is open */
  .logo.logo-menu-open {
    position: fixed;
    top: var(--space-4);
    left: var(--space-4);
    z-index: 1003;
  }

  .logo.logo-menu-open .logo-image {
    filter: brightness(0) invert(1);
    height: 60px;
  }

  .nav-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    flex-direction: column;
    padding: var(--space-8) var(--space-4);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    justify-content: center;
    align-items: center;
    gap: var(--space-6);
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-100%);
  }

  .nav-menu.nav-open {
    visibility: visible;
    transform: translateX(0);
  }

  .nav-menu a {
    color: white !important;
    font-size: 1.25rem;
    transform: translateX(-30px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius);
    text-decoration: none;
  }

  .nav-menu a:hover {
    color: white !important;
    background-color: #333333;
    transform: translateY(-2px);
  }

  .nav-menu.nav-open a {
    transform: translateX(0);
  }

  .nav-menu a:nth-child(1) { transition-delay: 0.1s; }
  .nav-menu a:nth-child(2) { transition-delay: 0.15s; }
  .nav-menu a:nth-child(3) { transition-delay: 0.2s; }
  .nav-menu a:nth-child(4) { transition-delay: 0.25s; }

  .nav-toggle {
    display: block;
    z-index: 1002;
    position: relative;
    transition: all 0.3s ease;
  }

  /* Toggle button when menu is open - opposite side of logo */
  .nav-menu.nav-open ~ .nav-toggle {
    position: fixed;
    top: var(--space-4);
    right: var(--space-4);
    z-index: 1003;
    color: white;
  }

  /* Remove old logo inversion logic */
  /* .nav-menu.nav-open ~ .logo .logo-image {
    filter: brightness(0) invert(1);
  } */

  /* Ensure logo is visible above menu */
  .logo {
    z-index: 1002;
    position: relative;
  }

  .hero {
    padding: var(--space-6) 0;
  }

  .features,
  .how-it-works,
  .cta,
  .testimonials {
    padding: var(--space-6) 0;
  }
  
  .how-it-works-content {
    display: block;
  }
  
  .how-it-works-image {
    display: none;
  }
  
  .steps-and-image-container {
    flex-direction: column;
    gap: var(--space-6);
  }
  
  .cta-content {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    text-align: center;
  }
  
  .cta-text {
    text-align: center;
  }
  
  .cta-buttons {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
  }
  
  .cta .btn {
    margin-left: 0;
    width: 100%;
    max-width: 250px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .footer-right {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .feature-card {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
    padding: var(--space-2) var(--space-6);
  }
  
  .feature-card img {
    width: 200px;
    height: 200px;
  }
  
  .feature-card-content {
    text-align: left;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-image {
    width: 80px;
    height: 80px;
  }
} 