/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  color: #4b5563;
  height: auto;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hidden {
  display: none;
}

/* Navigation Styles */
.nav {
  background-color: #ffffff;
  border-bottom: 1px solid #f3f4f6;
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  height: 4rem;
}

.nav-logo-wrapper {
  display: flex;
  align-items: center;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-icon {
  width: 2.5rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: 2.5rem;
  height: 3.25rem;
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: #111827;
}

.nav-menu-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link-active {
  color: #2563eb;
  font-weight: 700;
  text-decoration: none;
}

.nav-links {
  color: #4b5563;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links:hover {
  color: #2563eb;
}

.nav-button {
  background-color: #2563eb;
  color: #ffffff;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s;
}

.nav-button:hover {
  background-color: #1d4ed8;
}

.mobile-menu-btn-wrapper {
  display: flex;
  align-items: center;
}

.mobile-menu-btn {
  color: #6b7280;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  transition: color 0.3s;
}

.mobile-menu-btn:hover {
  color: #4b5563;
}

.mobile-menu-btn:focus {
  outline: none;
}

.menu-icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
  background-color: #ffffff;
  border-top: 1px solid #f3f4f6;
}

.mobile-menu-content {
  padding: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-link-active {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 700;
  color: #2563eb;
  background-color: #eff6ff;
  text-decoration: none;
}

.mobile-link {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 700;
  color: #4b5563;
  text-decoration: none;
  transition: all 0.3s;
}

.mobile-link:hover {
  color: #2563eb;
  background-color: #f9fafb;
}

.mobile-cta-wrapper {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}

.mobile-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 700;
  background-color: #2563eb;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s;
}

.mobile-cta-btn:hover {
  background-color: #1d4ed8;
}

/* Hero Section */
.hero-section {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
}

.hero-container {
  max-width: 80rem;
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-bottom: 2rem;
  background-color: #ffffff;
  padding-top: 5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.hero-main {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.hero-text {
  text-align: left;
}

.hero-heading {
  font-size: 2.25rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.025em;
}

.hero-heading-line1 {
  display: block;
}

.hero-heading-line2 {
  display: block;
  color: #2563eb;
}

.hero-description {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: #6b7280;
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.hero-image {
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  width: 100%;
  height: auto;
  margin: 2rem auto auto auto;
}

.btn-primary {
  background-color: #2563eb;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: inline-block;
}

.btn-primary:hover {
  background-color: #1d4ed8;
}

.btn-secondary {
  background-color: #f3f4f6;
  color: #4b5563;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: #e5e7eb;
}

/* Features Section */
.features-section {
  padding: 4rem 0;
  background-color: #f9fafb;
}

.section-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #111827;
}

.section-subtitle {
  margin-top: 1rem;
  font-size: 1.25rem;
  color: #6b7280;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.feature-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background-color: #eff6ff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #2563eb;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: #6b7280;
}

/* Services Section */
.services-section {
  padding: 4rem 0;
  background-color: #ffffff;
}

.services-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* .services-text {
} */

.services-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 1rem;
}

.services-description {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
}

.service-icon {
  flex-shrink: 0;
}

.check-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #2563eb;
}

.service-text {
  margin-left: 0.75rem;
  font-size: 1.125rem;
  color: #4b5563;
}

.services-link-wrapper {
  margin-top: 2.5rem;
}

.services-link {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: not-allowed;
  transition: color 0.3s;
}

.services-link:hover {
  color: #1d4ed8;
}

.arrow-icon {
  width: 1rem;
  height: 1rem;
}

.services-image-wrapper {
  margin-top: 2.5rem;
}

.services-image {
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
}

/* Process Section */
.process-section {
  padding: 4rem 0;
  background-color: #111827;
  color: #ffffff;
}

.section-title-white {
  font-size: 1.875rem;
  font-weight: 800;
  color: #ffffff;
}

.section-subtitle-gray {
  margin-top: 1rem;
  font-size: 1.25rem;
  color: #9ca3af;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.process-step {
  position: relative;
}

.step-number {
  color: #3b82f6;
  font-weight: 700;
  font-size: 3.75rem;
  opacity: 0.2;
  position: absolute;
  top: -1.5rem;
  left: -1rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 10;
}

.step-description {
  color: #9ca3af;
  position: relative;
  z-index: 10;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background-color: #1e3a8a;
}

.cta-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.25rem;
  color: #bfdbfe;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn-wrapper {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.cta-btn {
  background-color: #ffffff;
  color: #2563eb;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: inline-block;
}

.cta-btn:hover {
  background-color: #f3f4f6;
}

/* Footer */
.footer {
  background-color: #f9fafb;
  border-top: 1px solid #e5e7eb;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

/* .footer-brand {
} */

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 2.5rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-img {
  width: 2.5rem;
  height: 3.25rem;
}

.footer-logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: #111827;
}

.footer-brand-text {
  color: #6b7280;
  font-size: 0.875rem;
}

/* .footer-column {
} */

.footer-heading {
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
}

.__cf_email__ {
  color: #003175;
  text-decoration: none;
}

.footer-link {
  /* font-weight: 600; */
  color: #4b5563;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #2563eb;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-icon {
  width: 1rem;
  height: 1rem;
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 0.875rem;
  color: #6b7280;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social-link {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social-link:hover {
  color: #2563eb;
}

.footer-socials-icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* RESPONSIVENESS STYLE */

/* Tablet (640px and up) */
@media (min-width: 640px) {
  .nav-container {
    padding: 0 1.5rem;
  }

  .hero-content {
    padding-bottom: 4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero-main {
    margin-top: 0rem;
  }

  .hero-image {
    margin-top: 2rem;
  }

  .hero-heading {
    font-size: 3rem;
  }

  .hero-description {
    margin-top: 1.25rem;
    font-size: 1.125rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    margin-top: 2rem;
    flex-direction: row;
    justify-content: center;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .section-title-white {
    font-size: 2.25rem;
  }

  .cta-title {
    font-size: 2.25rem;
  }

  .section-container {
    padding: 0 1.5rem;
  }
}

/* Desktop (768px and up) */
@media (min-width: 768px) {
  .nav-menu-desktop {
    display: flex;
  }

  .mobile-menu-btn-wrapper {
    display: none;
  }

  .hero-main {
    margin-top: 0rem;
  }

  .hero-heading {
    font-size: 3.75rem;
  }

  .hero-description {
    margin-top: 1.25rem;
    font-size: 1.25rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-image-wrapper {
    margin-top: 0;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: row;
  }

  .footer-socials {
    margin-top: 0;
  }
}

/* Large Desktop (1024px and up) */
@media (min-width: 1024px) {
  .nav-container {
    padding: 0 2rem;
  }

  .hero-main {
    gap: -5rem;
  }

  .hero-content {
    padding-bottom: 5rem;
    /* max-width: 42rem; same as max-w-2xl */
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero-section {
    position: relative;
    margin-bottom: 2rem;
  }

  .hero-text {
    width: 45%;
  }

  .hero-image-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50%;
    background-color: #f9fafb; /* bg-gray-50 */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0.9;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    box-shadow: none; /* Tailwind image has NO shadow */
    margin: 0;
  }

  .hero-description {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-cta {
    justify-content: flex-start;
  }

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .section-container {
    padding: 0 2rem;
  }
}

/* Extra Large Desktop (1280px and up) */
@media (min-width: 1280px) {
  .hero-content {
    padding-bottom: 7rem;
  }

  .hero-main {
    margin-top: 0rem;
  }

  .hero-heading-line1 {
    display: inline;
  }
}

/* Special responsive handling for nav menu */
@media (min-width: 640px) and (max-width: 769px) {
  .nav-menu-desktop {
    gap: 1rem;
  }
}
