/* ============================================================================
   LANDING PAGE STYLES
   ============================================================================
   Styles for the index landing page and /getgo gateway page
   ============================================================================ */

/* ----------------------------------------------------------------------------
   Hero Section
   ---------------------------------------------------------------------------- */

.hero-section {
  background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta {
  margin-bottom: 1rem;
}

.hero-link {
  color: #3b82f6;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s ease;
}

.hero-link:hover {
  color: #2563eb;
}

/* Floating Icons Animation */
.hero-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-icons {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-icon {
  position: absolute;
  font-size: 4rem;
  color: #3b82f6;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}

.floating-icon.icon-1 {
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.floating-icon.icon-2 {
  top: 60%;
  left: 10%;
  animation-delay: 1s;
  font-size: 3rem;
}

.floating-icon.icon-3 {
  top: 20%;
  right: 20%;
  animation-delay: 2s;
  font-size: 3.5rem;
}

.floating-icon.icon-4 {
  bottom: 15%;
  right: 15%;
  animation-delay: 1.5s;
  font-size: 3rem;
}

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

/* Mobile hero adjustments */
@media (max-width: 991px) {
  .hero-section {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-visual {
    height: 250px;
    margin-top: 2rem;
  }

  .floating-icon {
    font-size: 3rem;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-cta .btn {
    width: 100%;
  }
}

/* ----------------------------------------------------------------------------
   Value Propositions Section
   ---------------------------------------------------------------------------- */

.value-props-section {
  padding: 80px 0;
  background: #ffffff;
}

.value-card {
  padding: 2rem;
  border-radius: 0.7rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  color: #3b82f6;
  font-size: 2rem;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.value-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .value-props-section {
    padding: 60px 0;
  }
}

/* ----------------------------------------------------------------------------
   Supported Services Section
   ---------------------------------------------------------------------------- */

.supported-services-section {
  padding: 80px 0;
  background: #f9fafb;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.section-subheading {
  font-size: 1.1rem;
  color: #6b7280;
}

.service-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 0.7rem;
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.service-card.coming-soon-service {
  opacity: 0.7;
  background: #f9fafb;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.service-logo {
  height: 40px;
  width: auto;
}

.service-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.service-features {
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #374151;
}

@media (max-width: 767px) {
  .supported-services-section {
    padding: 60px 0;
  }

  .section-heading {
    font-size: 2rem;
  }
}

/* ----------------------------------------------------------------------------
   Feature Highlights Section
   ---------------------------------------------------------------------------- */

.feature-highlights-section {
  padding: 80px 0;
  background: #ffffff;
}

.feature-row {
  margin-bottom: 5rem;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-content {
  padding: 2rem 0;
}

.feature-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.feature-description {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-image-wrapper {
  position: relative;
  border-radius: 0.7rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  background: #f9fafb;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-image-wrapper.is-mobile-shot {
  height: clamp(280px, 62vw, 460px);
  align-items: flex-start;
  padding: clamp(12px, 3vw, 32px);
}

.feature-image-wrapper.is-browser-shot {
  height: clamp(260px, 48vw, 420px);
}

.feature-screenshot {
  width: 100%;
  height: auto;
  display: block;
}

.feature-screenshot.is-browser-shot {
  height: 100%;
  object-fit: contain;
}

.feature-screenshot.is-mobile-shot {
  max-width: clamp(240px, 54vw, 360px);
}

.feature-placeholder {
  padding: 4rem;
  text-align: center;
}

@media (max-width: 991px) {
  .feature-highlights-section {
    padding: 60px 0;
  }

  .feature-title {
    font-size: 1.75rem;
  }

  .feature-description {
    font-size: 1rem;
  }
}

/* ----------------------------------------------------------------------------
   About Section
   ---------------------------------------------------------------------------- */

.about-section {
  padding: 80px 0;
  background: #f9fafb;
}

.about-description {
  font-size: 1.1rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-disclaimer {
  font-size: 0.95rem;
}

@media (max-width: 767px) {
  .about-section {
    padding: 60px 0;
  }
}

/* ----------------------------------------------------------------------------
   Testimonials Section
   ---------------------------------------------------------------------------- */

.testimonials-section {
  padding: 80px 0;
  background: #ffffff;
}

.testimonial-card {
  background: #f9fafb;
  border-radius: 0.7rem;
  padding: 2rem;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

.quote-icon {
  color: #3b82f6;
  font-size: 1.5rem;
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial-quote p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}

@media (max-width: 767px) {
  .testimonials-section {
    padding: 60px 0;
  }
}

/* ----------------------------------------------------------------------------
   Final CTA Section
   ---------------------------------------------------------------------------- */

.final-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 100%);
}

.cta-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.cta-subtext {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .final-cta-section {
    padding: 60px 0;
  }

  .cta-heading {
    font-size: 2rem;
  }
}

/* ----------------------------------------------------------------------------
   Gateway Page Styles
   ---------------------------------------------------------------------------- */

.gateway-header-section {
  background: #f9fafb;
  padding: 2rem 0 3rem;
  border-bottom: 1px solid #e5e7eb;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1.5rem;
}

.gateway-header-content {
  margin-top: 1rem;
}

.gateway-logo {
  height: 60px;
  width: auto;
  margin-right: 1rem;
}

.gateway-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.gateway-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.gateway-tools-section {
  padding: 60px 0;
  background: #ffffff;
}

.tool-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 0.7rem;
  padding: 2rem;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.tool-icon {
  width: 60px;
  height: 60px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.tool-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.tool-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.tool-stats {
  margin-top: 1rem;
}

.gateway-how-section {
  padding: 60px 0;
  background: #f9fafb;
}

.how-step {
  padding: 1.5rem;
}

.how-step-number {
  width: 50px;
  height: 50px;
  background: #3b82f6;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.how-step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.how-step-description {
  font-size: 0.95rem;
  color: #6b7280;
}

.gateway-data-section {
  padding: 60px 0;
  background: #ffffff;
}

.data-info-card {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 0.7rem;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.data-info-icon {
  font-size: 2rem;
  color: #3b82f6;
  flex-shrink: 0;
}

.data-info-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.data-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.data-info-list li {
  padding: 0.25rem 0;
  color: #374151;
  font-size: 0.95rem;
}

@media (max-width: 767px) {
  .gateway-header-section {
    padding: 1.5rem 0 2rem;
  }

  .gateway-logo {
    height: 40px;
  }

  .gateway-title {
    font-size: 2rem;
  }

  .gateway-tools-section,
  .gateway-how-section,
  .gateway-data-section {
    padding: 40px 0;
  }

  .data-info-card {
    flex-direction: column;
  }
}

/* ----------------------------------------------------------------------------
   Button Enhancements
   ---------------------------------------------------------------------------- */

.btn-primary {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  transform: scale(1.02);
}

.btn-outline-primary {
  transition: transform 0.15s ease;
}

.btn-outline-primary:hover {
  transform: translateX(4px);
}

/* ----------------------------------------------------------------------------
   Smooth Scroll
   ---------------------------------------------------------------------------- */

html {
  scroll-behavior: smooth;
}
