@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #3396d3;
  --secondary-color: #2563eb;
  --white-color: #fff;
  --dark-color: #0f0e0e;
  --text-color: #44444e;
  --green-color: rgb(0, 128, 0);
  --warning-color: #faa533;
  --red-color: red;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

body {
  font-family: "Montserrat", serif;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
}

p {
  line-height: 1.5;
}

p,
a {
  font-size: 1rem;
}

.wrapper {
  position: relative;
}

.container {
  max-width: 90%;
  margin: 2rem auto;
  padding: 1rem;
}

.container-fluid {
  max-width: 100%;
  padding: 2rem 5%;
}

@media screen and (min-width: 768px) {
  p,
  a {
    font-size: 1.7rem;
  }
}

@media screen and (min-width: 888px) {
  p,
  a {
    font-size: 1rem;
  }
}

.toast-box,
.alert-box {
  position: fixed;
  width: 300px;
  pointer-events: none;
  top: 10vh;
  height: 300px;
  right: 5%;
  z-index: 9999;
}

/* Alert/Toast */
.toast,
.alert {
  background-color: var(--white-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  padding: 10px;
  margin: 10px 0;
  border-radius: 10px;
}

.toast-success,
.alert-success {
  color: var(--green-color);
}

.toast-warning,
.alert-warning {
  color: var(--warning-color);
}

.toast-error,
.alert-error {
  color: var(--red-color);
}

@media screen and (min-width: 888px) {
  .toast-box {
    width: 400px;
  }
}

/* Buttons */
.btn-primary {
  display: inline-block;
  width: auto;
  padding: 0.9rem;
  background: var(--primary-color);
  color: var(--white-color);
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.btn-primary:hover {
  background: var(--secondary-color);
}

.btn-secondary {
  background: var(--secondary-color);
  color: var(--white-color);
  display: inline-block;
  width: auto;
  padding: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.btn-secondary:hover {
  background: var(--primary-color);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: var(--white-color);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.nav-logo {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.nav-logo img {
  width: 150px;
  margin-right: 8px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  color: var(--dark-color);
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

.nav-links li a:hover {
  color: var(--primary-color);
}

.nav-actions {
  display: flex;
  gap: 1rem;
}

/* Mobile styles */
.nav-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--dark-color);
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: var(--white-color);
    flex-direction: column;
    gap: 1.5rem;
    width: 200px;
    padding: 1rem;
    display: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
  padding: 4rem 5%;
  margin-top: 4rem;
  background: linear-gradient(135deg, #f9fafb, #eef6fb);
}

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

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.hero-image img {
  max-width: 500px;
}

/* Larger screens */
@media (min-width: 888px) {
  .hero {
    flex-direction: row;
    text-align: left;
  }

  .hero-content {
    flex: 1;
  }

  .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }
}

/* Features Section */
.features {
  padding: 5rem 5%;
  background: #fff;
}

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

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-color);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-card {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

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

.feature-card h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

.feature-card p {
  color: var(--text-color);
  font-size: 1rem;
}

/* Larger screens */
@media (min-width: 888px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* FAQ Section */
.faq {
  padding: 5rem 5%;
  background: #f9fafb;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

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

.faq-answer {
  display: none;
  padding: 1rem;
  border-top: 1px solid #e5e7eb;
  color: var(--text-color);
}

.faq-item.active .faq-answer {
  display: block;
}

/* CTA Section */
.cta-section {
  padding: 4rem 5%;
  background: linear-gradient(180deg, #eef6fb 0%, #ffffff 100%);
  margin-top: 2rem;
}

.cta-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.cta-content h2 {
  font-size: 2rem;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.cta-content p {
  color: var(--text-color);
  max-width: 720px;
  margin: 0 auto 1.2rem;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 0.6rem;
}

.cta-note {
  color: #6b7280; /* subtle grey */
  font-size: 0.95rem;
}

/* trust badges */
.trust-badges {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

.trust-badges .badge {
  background: #fff;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(16, 24, 40, 0.06);
  color: #111827;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Responsive layout for larger screens: add a small side-by-side decorative layout */
@media (min-width: 992px) {
  .cta-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .cta-content {
    flex: 1;
    padding-right: 2rem;
  }

  .trust-badges {
    flex: 0 0 38%;
    justify-content: flex-end;
    gap: 1rem;
  }
}

/* Contact Section */
.contact-section {
  padding: 4rem 5%;
  background: #f9fafb;
  margin-top: 3rem;
}

.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.contact-info p {
  color: var(--text-color);
  margin-bottom: 1rem;
}

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

.contact-info li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #374151;
}

/* form */
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
  margin-bottom: 1.2rem;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #111827;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color, #2563eb);
}

.contact-form button {
  margin-top: 0.5rem;
  width: 100%;
}

/* Larger screens */
@media (min-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .contact-form button {
    width: auto;
  }
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: var(--white-color);
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* Features Section */
#businessFeatures {
  padding: 4rem 0;
  background: #f9fafb;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--dark-color);
}

.feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 2rem;
}

.feature.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
}

.feature-text h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.feature-text p {
  font-size: 1rem;
  color: var(--text-color);
}

.feature-image {
  flex: 1;
  text-align: center;
}

.feature-image img {
  max-width: 90%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 768px) {
  .feature,
  .feature.reverse {
    flex-direction: column;
    text-align: center;
  }
}
