/* Services Desktop Page Styles */

.services-desktop {
  background-color: #ffffff;
  min-height: 100vh;
  width: 100%;
}

/* Mobile Nav Styles */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  padding: 16px 20px;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mobile-logo {
  width: 50px;
  height: 42px;
  object-fit: cover;
}

.menu-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-icon {
  width: 24px;
  height: 2px;
  background-color: #1b1f26;
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #1b1f26;
  transition: all 0.3s ease;
}

.menu-icon::before { top: -8px; }
.menu-icon::after { bottom: -8px; }

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(27, 31, 38, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background-color: #ffffff;
  padding: 20px;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.mobile-menu.active .mobile-menu-content {
  transform: translateY(0);
}

.menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.mobile-nav-links li {
  border-bottom: 1px solid #e5e5ea;
}

.mobile-nav-links a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  color: #1b1f26;
  text-decoration: none;
}

.mobile-cta {
  width: 100%;
}

/* Hero Section */
.hero-header {
  position: relative;
  width: 100%;
  height: 866px;
  background-image: url(https://c.animaapp.com/ml032xcnwuQzoK/img/generated-image-f3d0132f-88ef-469f-9ec4-03638fc2667f-1-5.png);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Navbar */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  padding: 24px 100px;
  z-index: 100;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
}

.logo-nav-group {
  display: flex;
  align-items: center;
  gap: 96px;
}

.logo {
  width: 81px;
  height: 68px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: "Inter Tight", Helvetica;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #1b1f26;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0052e2;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.phone-link {
  font-family: "Inter Tight", Helvetica;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #1b1f26;
  text-decoration: none;
  transition: color 0.2s;
}

.phone-link:hover {
  color: #0052e2;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background-color: #0052e2;
  border: 1px solid #a3c4ff;
  border-radius: 12px;
  font-family: "Inter Tight", Helvetica;
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  color: #f9f9f9;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0px 0px 0px 1px rgba(4, 128, 154, 0.08), 0px 4px 8px -2px rgba(8, 207, 249, 0.25);
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #0041b8;
  transform: translateY(-1px);
}

.btn-primary:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

/* Hero Text */
.hero-text {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.hero-subtitle {
  font-family: var(--global-tokens-headings-h-4-font-family);
  font-weight: var(--global-tokens-headings-h-4-font-weight);
  font-size: var(--global-tokens-headings-h-4-font-size);
  line-height: var(--global-tokens-headings-h-4-line-height);
  color: #f9f9f9;
  text-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
  margin-bottom: 16px;
}

.hero-badge {
  font-family: var(--global-tokens-headings-h-4-font-family);
  font-weight: var(--global-tokens-headings-h-4-font-weight);
  font-size: var(--global-tokens-headings-h-4-font-size);
  line-height: var(--global-tokens-headings-h-4-line-height);
  color: #00d87b;
  -webkit-text-stroke: 1px #ffffff;
  text-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
}

/* Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Services Section */
.services-section {
  background-color: #f2f2f7;
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--global-tokens-headings-h-5-font-family);
  font-weight: var(--global-tokens-headings-h-5-font-weight);
  font-size: var(--global-tokens-headings-h-5-font-size);
  line-height: var(--global-tokens-headings-h-5-line-height);
  color: #1b1f26;
  margin-bottom: 16px;
}

.section-description {
  font-family: "Inter Tight", Helvetica;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  color: rgba(27, 31, 38, 0.72);
  max-width: 700px;
  margin: 0 auto;
}

.services-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* Service Category */
.service-category {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.category-icon {
  width: auto;
  height: auto;
}

.category-title {
  font-family: var(--global-tokens-headings-h-6-font-family);
  font-weight: var(--global-tokens-headings-h-6-font-weight);
  font-size: var(--global-tokens-headings-h-6-font-size);
  line-height: var(--global-tokens-headings-h-6-line-height);
}

.text-primary {
  color: #0052e2;
}

.text-dark {
  color: #1b1f26;
}

.text-muted {
  color: rgba(27, 31, 38, 0.72);
}

.text-accent {
  color: #08cff9;
}

/* Service Cards */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-cards {
    grid-template-columns: 1fr;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.3);
}

.card-accent {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(0, 82, 226, 1) 0%, rgba(0, 216, 123, 1) 100%);
}

.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.icon-wrapper {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 82, 226, 0.2) 0%, rgba(0, 216, 123, 0.2) 100%);
  box-shadow: 0px 2px 16.4px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 48px;
  height: 48px;
}

.card-title {
  font-family: var(--global-tokens-headings-h-9-font-family);
  font-weight: var(--global-tokens-headings-h-9-font-weight);
  font-size: var(--global-tokens-headings-h-9-font-size);
  line-height: var(--global-tokens-headings-h-9-line-height);
  color: #1b1f26;
  flex: 1;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-description {
  font-family: "Inter Tight", Helvetica;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: rgba(27, 31, 38, 0.72);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.check-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 3px;
}

.feature-item span {
  font-family: "Inter Tight", Helvetica;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: rgba(27, 31, 38, 0.72);
  flex: 1;
}

/* Section Divider */
.section-divider {
  border: none;
  height: 3px;
  background-color: rgba(27, 31, 38, 0.1);
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(0, 82, 226, 1) 0%, rgba(0, 216, 123, 1) 100%);
  padding: 100px 0;
}

.cta-header {
  text-align: center;
  margin-bottom: 64px;
}

.cta-title {
  font-family: var(--global-tokens-headings-h-5-font-family);
  font-weight: var(--global-tokens-headings-h-5-font-weight);
  font-size: var(--global-tokens-headings-h-5-font-size);
  line-height: var(--global-tokens-headings-h-5-line-height);
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-description {
  font-family: "Inter Tight", Helvetica;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background-color: #f9f9f9;
  border: none;
  border-radius: 12px;
  font-family: "Inter Tight", Helvetica;
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  color: #0052e2;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0px 0px 0px 1px rgba(4, 128, 154, 0.08), 0px 4px 8px -2px rgba(8, 207, 249, 0.25);
  text-decoration: none;
}

.btn-cta-primary:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background-color: rgba(245, 247, 250, 0.02);
  border: 1px solid #f9f9f9;
  border-radius: 12px;
  font-family: "Inter Tight", Helvetica;
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(8.95px);
  -webkit-backdrop-filter: blur(8.95px);
  text-decoration: none;
}

.btn-cta-secondary:hover {
  background-color: rgba(245, 247, 250, 0.1);
  transform: translateY(-2px);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* Trust Section */
.trust-section {
  background-color: #f2f2f7;
  padding: 100px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: 24px 0;
}

.benefit-icon {
  width: auto;
  height: auto;
}

.benefit-title {
  font-family: var(--global-tokens-headings-h-9-font-family);
  font-weight: var(--global-tokens-headings-h-9-font-weight);
  font-size: var(--global-tokens-headings-h-9-font-size);
  line-height: var(--global-tokens-headings-h-9-line-height);
  color: #1b1f26;
}

.benefit-description {
  font-family: var(--global-tokens-body-b-1-font-family);
  font-weight: var(--global-tokens-body-b-1-font-weight);
  font-size: var(--global-tokens-body-b-1-font-size);
  line-height: var(--global-tokens-body-b-1-line-height);
  color: rgba(27, 31, 38, 0.72);
}

/* Footer */
.footer {
  background-color: #ffffff;
  padding: 64px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 185px;
}

.footer-logo {
  width: 64px;
  height: 54px;
  object-fit: cover;
}

.footer-tagline {
  font-family: "Copperplate Gothic Bold-Regular", Helvetica;
  font-weight: 400;
  font-size: 34px;
  line-height: 51px;
}

.footer-nav {
  display: flex;
  gap: 80px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-heading {
  font-family: "Inter Tight", Helvetica;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #1b1f26;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  font-family: var(--global-tokens-body-b-2-font-family);
  font-weight: var(--global-tokens-body-b-2-font-weight);
  font-size: var(--global-tokens-body-b-2-font-size);
  line-height: var(--global-tokens-body-b-2-line-height);
  color: rgba(27, 31, 38, 0.72);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #0052e2;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-style: normal;
}

.contact-item {
  display: flex;
  gap: 8px;
}

.contact-label {
  font-family: "Inter Tight", Helvetica;
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  color: #1b1f26;
}

.contact-item a,
.contact-item span {
  font-family: var(--global-tokens-body-b-2-font-family);
  font-weight: var(--global-tokens-body-b-2-font-weight);
  font-size: var(--global-tokens-body-b-2-font-size);
  line-height: var(--global-tokens-body-b-2-line-height);
  color: rgba(27, 31, 38, 0.72);
  text-decoration: none;
}

.contact-item a:hover {
  color: #0052e2;
}

.footer-divider {
  border: none;
  height: 2px;
  background-color: rgba(27, 31, 38, 0.1);
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  display: flex;
  align-items: center;
  gap: 5px;
}

.copyright-icon {
  width: 19px;
  height: 19px;
}

.copyright p {
  font-family: var(--global-tokens-body-b-2-font-family);
  font-weight: var(--global-tokens-body-b-2-font-weight);
  font-size: var(--global-tokens-body-b-2-font-size);
  line-height: var(--global-tokens-body-b-2-line-height);
  color: rgba(27, 31, 38, 0.72);
}

.footer-legal a {
  font-family: var(--global-tokens-body-b-2-font-family);
  font-weight: var(--global-tokens-body-b-2-font-weight);
  font-size: var(--global-tokens-body-b-2-font-size);
  line-height: var(--global-tokens-body-b-2-line-height);
  color: rgba(27, 31, 38, 0.72);
  text-decoration: none;
}

.footer-legal a:hover {
  color: #0052e2;
}

/* Responsive adjustments */
@media (max-width: 1440px) {
  .navbar {
    padding: 24px 50px;
  }
  
  .services-section,
  .cta-section,
  .trust-section,
  .footer {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 1024px) {
  .navbar {
    display: none;
  }
  
  .mobile-nav {
    display: flex;
  }
  
  .hero-header {
    height: 600px;
    margin-top: 74px;
  }
  
  .hero-text {
    bottom: 60px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  .services-section,
  .cta-section,
  .trust-section,
  .footer {
    padding: 60px 0;
  }
  
  .hero-header {
    height: 500px;
  }
  
  .hero-subtitle {
    font-size: 32px;
    line-height: 1.2;
  }
  
  .section-title {
    font-size: 32px;
    line-height: 1.3;
  }
  
  .section-description {
    font-size: 18px;
    line-height: 1.5;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}
