/* CSS/style.css - Main Stylesheet */

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

body {
  font-family: Poppins, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header Styles */
.header {
  background: rgb(33, 50, 91);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.nav-logo i {
  margin-right: 0.5rem;
  color: #4a90e2;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #4a90e2;
}

.nav-cta-btn {
  background: #4a90e2;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.nav-cta-btn:hover {
  background: #357abd;
}

/* Hero Section */
.hero {
  background: rgb(33, 50, 91);
  color: white;
  padding: 120px 0 60px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Simple curved bottom */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 Q600,100 1200,0 L1200,100 L0,100 Z' fill='%23f8f9fa'%3E%3C/path%3E%3C/svg%3E")
    no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}

.hero-container {
  background-image: url(/images/wave-pattern-light.svg);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: #4a90e2;
}

.hero-description {
  font-size: 1.2rem;
  color: #bdc3c7;
  margin-bottom: 2rem;
}

.hero-form {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Typewriter Animation CSS */
.hero-title .highlight {
  position: relative;
  display: inline-block;
}

/* Blinking cursor effect */
.hero-title .highlight::after {
  content: "|";
  display: inline-block;
  animation: blink 1s infinite;
  color: #4a90e2;
  font-weight: normal;
  margin-left: 2px;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.form-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 400px;
}

.form-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-header p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.bonus-badge {
  background: #4a90e2;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
}

.form-card h3 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.3rem;
}

.signup-form label {
  display: block;
  color: #666;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.signup-form input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s;
}

.signup-form input:focus {
  outline: none;
  border-color: #4a90e2;
}

.form-submit-btn {
  width: 100%;
  background: #4a90e2;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.form-submit-btn:hover {
  background: #357abd;
}

.partners-section {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
}

.partners-logos {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.partners-logos img {
  height: 85px;
  min-width: 100px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.partners-logos img:hover {
  opacity: 1;
}

/* Platform Section */
.platform-section {
  padding: 6rem 0;
  background: #f8f9fa;
}

.platform-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.platform-content h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.platform-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.platform-benefits {
  list-style: none;
  margin-bottom: 2rem;
}

.platform-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #2c3e50;
}

.platform-benefits i {
  color: #4a90e2;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.platform-cta {
  background: #4a90e2;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.platform-cta:hover {
  background: #357abd;
}

.platform-image {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1;
}

.mobile-mockup {
  max-width: 400px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  padding-bottom: 1;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 20px;
  overflow: hidden;
}

.app-interface {
  padding: 1rem;
  height: 100%;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.app-header i {
  color: #4a90e2;
  margin-right: 0.5rem;
}

.points {
  background: #4a90e2;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
}

.exchange-btn {
  background: #4a90e2;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  cursor: pointer;
}

.survey-item {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.survey-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.survey-points {
  background: #4a90e2;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

.survey-type {
  background: #4a90e2;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  font-size: 0.7rem;
}

.survey-time {
  color: #666;
  font-size: 0.8rem;
}

.survey-category {
  color: #666;
  font-size: 0.8rem;
}

.rating {
  color: #f39c12;
  font-size: 0.8rem;
}

/* Stats Section */
.stats-section {
  background: white;
  padding: 3rem 0;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #666;
  font-size: 1rem;
}

/* How It Works Section */
.how-it-works {
  padding: 6rem 0;
  background: white;
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.how-it-works-cta-container {
  text-align: center;
  margin-top: 3rem;
  padding: 0 2rem;
}

.how-it-works-content h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 3rem;
  font-weight: 700;
}

.steps {
  margin-bottom: 3rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.step-number {
  background: #4a90e2;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

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

.step-highlight {
  color: #4a90e2 !important;
  font-weight: 600;
}

.how-it-works-cta {
  background: #4a90e2;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.how-it-works-cta:hover {
  background: #357abd;
}

.how-it-works-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.mobile-mockup-large {
  max-width: 450px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* Get Started Section */
.get-started {
  background: rgb(33, 50, 91);
  color: white;
  padding: 4rem 0;
}

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

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

.section-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.get-started-header h2 {
  font-size: 2rem;
  font-weight: 600;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
  color: white;
}

/* Features Grid - FLEXBOX for horizontal layout */
.features-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: nowrap; /* Prevent wrapping to next line */
}

.feature-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1; /* Equal width for all cards */
  max-width: 220px; /* Limit maximum width */
  min-width: 200px; /* Minimum width */
}

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

.feature-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  height: 250px; /* Fixed height for all cards */
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Feature Visual Header */
.feature-visual-header {
  height: 50px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0; /* Prevent shrinking */
}

.feature-visual-header.blue-orange {
  background: linear-gradient(135deg, #4a90e2 0%, #ff9500 100%);
}

.feature-visual-header.gray {
  background: linear-gradient(135deg, #a0a8b8 0%, #d4d7dd 100%);
}

/* Geometric Shapes */
.geometric-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.geometric-shapes .shape-1 {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  transform: rotate(45deg);
}

.geometric-shapes .shape-2 {
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.geometric-shapes .shape-3 {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 25px;
  height: 25px;
  background: rgba(255, 255, 255, 0.15);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

/* Feature Content */
.feature-content {
  padding: 1.25rem 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.feature-header {
  margin-bottom: 1rem;
}

.feature-label {
  color: #4a90e2;
  padding: 0.35rem 0.7rem;
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
}

.feature-card h3 {
  font-size: 0.9rem;
  line-height: 1.3;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    max-width: 900px;
    gap: 1.25rem;
  }

  .feature-card-link {
    max-width: 200px;
    min-width: 180px;
  }

  .feature-card {
    height: 280px;
  }

  .feature-visual-header {
    height: 120px;
  }
}

@media (max-width: 768px) {
  .features-grid {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 500px;
  }

  .feature-card-link {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: 220px;
    min-width: 200px;
  }

  .get-started-header h2 {
    font-size: 1.75rem;
  }

  .feature-card {
    height: 260px;
  }

  .feature-visual-header {
    height: 110px;
  }
}

@media (max-width: 480px) {
  .features-grid {
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
  }

  .feature-card-link {
    flex: none;
    max-width: 100%;
    min-width: auto;
  }

  .get-started {
    padding: 3rem 0;
  }

  .get-started-header h2 {
    font-size: 1.5rem;
  }

  .feature-card {
    height: 240px;
  }

  .feature-visual-header {
    height: 100px;
  }

  .feature-content {
    padding: 1rem 0.875rem;
  }

  .feature-card h3 {
    font-size: 0.85rem;
  }
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background: #f8f9fa;
}

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

.faq-container h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 3rem;
  font-weight: 700;
}

.faq-list {
  space-y: 1rem;
}

.faq-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
  background: white;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question span {
  font-weight: 600;
  color: #2c3e50;
  font-size: 1rem;
}

.faq-question i {
  color: #4a90e2;
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: #666;
  line-height: 1.6;
}

/* More Info Section */
.more-info {
  background: white;
  padding: 2rem 0;
  text-align: center;
}

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

.more-info a {
  color: #4a90e2;
  text-decoration: none;
  font-weight: 600;
}

.more-info a:hover {
  text-decoration: underline;
}

/* Clients Section */
.clients {
  background: #f8f9fa;
  padding: 3rem 0;
}

.clients-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.client-logo {
  height: 40px; /* Fixed height for consistency */
  width: auto; /* Maintain aspect ratio */
  object-fit: contain; /* Ensure logos scale properly */
  opacity: 0.6; /* Muted appearance like in your reference */
  filter: grayscale(100%); /* Convert to grayscale */
  transition: opacity 0.3s, filter 0.3s;
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%); /* Show color on hover */
}

/* Footer */
.footer {
  background: rgb(33, 50, 91);
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.footer-logo i {
  margin-right: 0.5rem;
  color: #4a90e2;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #bdc3c7;
}

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

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

.footer-column a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-column a:hover {
  color: #4a90e2;
}

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

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

.footer-bottom p {
  color: #bdc3c7;
  font-size: 0.9rem;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #bdc3c7;
  font-size: 0.9rem;
  cursor: pointer;
}

.language-selector img {
  width: 20px;
  height: 15px;
  border-radius: 2px;
}

.language-selector:hover {
  color: white;
}
