/* 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: 600px;
  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;
  margin-top: 116px; /* Offset for fixed navbar */
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 24px 100px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.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;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.hero-subtitle {
  font-family: "Inter Tight", Helvetica;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #f9f9f9;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 16px;
}

.hero-badge {
  font-family: "Inter Tight", Helvetica;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #00d87b;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Trust Section (Why Clients Trust Zila) */
.trust-section {
  background-color: #f8f9fc;
  padding: 80px 0;
}

.trust-section .section-header {
  margin-bottom: 48px;
}

.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: 16px;
  padding: 24px 16px;
}

.benefit-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0052e2 0%, #00d87b 100%);
  margin-bottom: 8px;
  box-shadow: 0 4px 12px rgba(0, 82, 226, 0.2);
}

.benefit-icon-wrapper img, 
.benefit-icon-wrapper svg {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.benefit-title {
  font-family: "Inter Tight", Helvetica;
  font-weight: 700;
  font-size: 20px;
  color: #1b1f26;
}

.benefit-description {
  font-family: "Inter Tight", Helvetica;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(27, 31, 38, 0.72);
}

/* Services Section */
.services-section {
  background-color: #ffffff;
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: "Inter Tight", Helvetica;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #1b1f26;
  margin-bottom: 16px;
}

.section-description {
  font-family: "Inter Tight", Helvetica;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(27, 31, 38, 0.72);
  max-width: 800px;
  margin: 0 auto;
}

.services-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Service Category */
.service-category {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  border-bottom: 2px solid #f2f2f7;
  padding-bottom: 16px;
}

.category-icon {
  width: 32px;
  height: 32px;
}

.category-title {
  font-family: "Inter Tight", Helvetica;
  font-weight: 700;
  font-size: 28px;
  color: #1b1f26;
}

.text-primary {
  color: #0052e2;
}

.text-dark {
  color: #1b1f26;
}

/* Service Cards */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #f2f2f7;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
}

.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.icon-wrapper {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 12px;
  background: rgba(0, 82, 226, 0.05);
}

.service-icon {
  width: 32px;
  height: 32px;
}

.card-title {
  font-family: "Inter Tight", Helvetica;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: #1b1f26;
  flex: 1;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.card-description {
  font-family: "Inter Tight", Helvetica;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(27, 31, 38, 0.72);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: auto;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item span {
  font-family: "Inter Tight", Helvetica;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(27, 31, 38, 0.72);
  flex: 1;
}

/* Process Section (Timeline) */
.process-section {
  padding: 100px 0;
  background-color: #FFFFFF;
  overflow: hidden;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 64px auto 0;
  padding: 20px 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: #00d87b;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-content {
  padding: 32px;
  background-color: #0052E2;
  color: white;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item:nth-child(3) .timeline-content,
.timeline-item:nth-child(4) .timeline-content {
  background-color: #00A896;
}

.timeline-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.timeline-item.left .timeline-header {
  flex-direction: row-reverse;
}

.timeline-icon-badge {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-number {
  font-size: 18px;
  font-weight: 700;
  opacity: 0.8;
  color: #ffffff;
}

.timeline-title {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin: 0;
}

.timeline-description {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  color: white;
  margin: 0;
}

.timeline-dot {
  position: absolute;
  width: 24px;
  height: 24px;
  right: -12px;
  background-color: #FFFFFF;
  border: 4px solid #0052E2;
  top: 32px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.right .timeline-dot {
  left: -12px;
  border-color: #0052E2;
}

.timeline-item:nth-child(3) .timeline-dot,
.timeline-item:nth-child(4) .timeline-dot {
  border-color: #00A896;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(90deg, #0052e2 0%, #00d87b 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 20px;
  background-position: -1px -1px;
  pointer-events: none;
}

.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 20px;
  background-position: 19px 9px;
  pointer-events: none;
}

.cta-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: "Inter Tight", Helvetica;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-description {
  font-family: "Inter Tight", Helvetica;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background-color: #ffffff;
  border: none;
  border-radius: 50px;
  font-family: "Inter Tight", Helvetica;
  font-weight: 700;
  font-size: 18px;
  color: #0052e2;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background-color: transparent;
  border: 2px solid #ffffff;
  border-radius: 50px;
  font-family: "Inter Tight", Helvetica;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-cta-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* 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;
  flex-wrap: wrap;
}

.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: "Inter Tight", Helvetica;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  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: "Inter Tight", Helvetica;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  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: "Inter Tight", Helvetica;
  font-weight: 400;
  font-size: 14px;
  color: rgba(27, 31, 38, 0.72);
}

.footer-legal a {
  font-family: "Inter Tight", Helvetica;
  font-weight: 400;
  font-size: 14px;
  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-video {
    height: 100%;
    object-fit: cover;
  }
  
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Timeline responsive */
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item.left {
    text-align: left;
  }
  
  .timeline-item.left .timeline-header {
    flex-direction: row;
  }
  
  .timeline-item.left, .timeline-item.right {
    left: 0;
  }
  
  .timeline-dot {
    left: 19px;
    right: auto;
  }
  
  .timeline-item.right .timeline-dot {
    left: 19px;
  }
  
  .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;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .service-cards {
    grid-template-columns: 1fr;
  }
  
  .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;
  }
}
