/* ===================================
   CSS RESET & BASE STYLES
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #ffffff;
  color: #1b1f26;
  overflow-x: hidden;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px; /* Default padding for mobile */
}

@media (min-width: 768px) {
  .container {
    padding: 0 48px;
  }
}

@media (min-width: 1280px) {
  .container {
    padding: 0 100px;
  }
}

/* ===================================
   DESKTOP NAVIGATION
   =================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.navbar-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1280px) {
  .navbar-container {
    padding: 24px 100px;
  }
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 40px; /* Reduced gap for smaller desktops */
}

@media (min-width: 1280px) {
  .navbar-left {
    gap: 96px;
  }
}

.logo {
  width: 60px;
  height: auto;
  object-fit: cover;
}

@media (min-width: 1280px) {
  .logo {
    width: 81px;
    height: 68px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px; /* Reduced gap */
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1280px) {
  .nav-links {
    gap: 32px;
  }
}

.nav-links a {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #1b1f26;
  transition: color 0.2s ease;
  white-space: nowrap;
}

@media (min-width: 1280px) {
  .nav-links a {
    font-size: 18px;
  }
}

.nav-links a:hover,
.nav-links a.active {
  color: #0052e2;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (min-width: 1280px) {
  .navbar-right {
    gap: 24px;
  }
}

.phone-number {
  font-size: 16px;
  font-weight: 600;
  color: #1b1f26;
  white-space: nowrap;
  display: none; /* Hide phone on smaller desktops if needed */
}

@media (min-width: 1100px) {
  .phone-number {
    display: block;
  }
}

@media (min-width: 1280px) {
  .phone-number {
    font-size: 18px;
  }
}

/* Hide desktop nav on tablet/mobile */
@media (max-width: 1024px) {
  .navbar {
    display: none;
  }
}

/* ===================================
   MOBILE NAVIGATION
   =================================== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  padding: 16px 24px;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1024px) {
  .mobile-nav {
    display: flex;
  }
}

.mobile-logo {
  width: 50px;
  height: auto;
}

.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;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.mobile-menu.active .mobile-menu-content {
  transform: translateY(0);
}

.menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  font-size: 32px;
  color: #1b1f26;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 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;
  transition: color 0.2s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: #0052e2;
}

.mobile-cta {
  width: 100%;
}

/* ===================================
   BUTTONS
   =================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background-color: #0052e2;
  color: #f9f9f9;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid #a3c4ff;
  transition: all 0.2s ease;
  white-space: nowrap;
}

@media (min-width: 1280px) {
  .btn-primary {
    padding: 16px 24px;
    font-size: 18px;
  }
}

.btn-primary:hover {
  background-color: #0046c7;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background-color: #0052e2;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.2s ease;
  width: 100%;
}

@media (min-width: 768px) {
  .btn-secondary {
    width: auto;
  }
}

.btn-secondary:hover {
  background-color: #0046c7;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background-color: transparent;
  color: #0052e2;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid #0052e2;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background-color: #f5f7fa;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background-color: #f9f9f9;
  color: #0052e2;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.2s ease;
  width: 100%;
}

@media (min-width: 768px) {
  .btn-white {
    width: auto;
  }
}

.btn-white:hover {
  background-color: #ffffff;
  transform: translateY(-1px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #f9f9f9;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid #f9f9f9;
  transition: all 0.2s ease;
  width: 100%;
}

@media (min-width: 768px) {
  .btn-outline-white {
    width: auto;
  }
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background-color: #f9f9f9;
  color: #0052e2;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.2s ease;
  width: 100%;
  max-width: 300px;
}

@media (min-width: 768px) {
  .btn-hero {
    width: auto;
  }
}

.btn-hero:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  margin-top: 74px; /* Mobile nav height */
  background-image: url('https://c.animaapp.com/mkzluyi7JZaEsw/img/generated-image-f3d0132f-88ef-469f-9ec4-03638fc2667f-1-8.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

@media (min-width: 1025px) {
  .hero-section {
    margin-top: 116px; /* Desktop nav height */
    height: 750px;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1127px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 70px);
  font-weight: 700;
  line-height: 1.2;
  color: #f9f9f9;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: clamp(24px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.2;
  color: #00d87b;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-description {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  max-width: 800px;
}

/* ===================================
   STATS SECTION
   =================================== */
.stats-section {
  padding: 60px 0;
  background-color: #f2f2f7;
}

@media (min-width: 1024px) {
  .stats-section {
    padding: 100px 0;
  }
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  text-align: center;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: #1b1f26;
}

.text-blue { color: #0052e2; }
.text-black { color: #1b1f26; }
.text-cyan { color: #08cff9; }

.section-subtitle {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(27, 31, 38, 0.72);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 700;
  color: #0052e2;
}

.stat-label {
  font-size: 16px;
  font-weight: 600;
  color: #1b1f26;
  text-align: center;
}

@media (min-width: 1024px) {
  .stat-label {
    font-size: 18px;
  }
}

/* ===================================
   KEY SERVICES SECTION
   =================================== */
.key-services-section {
  padding: 60px 0;
  background-color: #ffffff;
}

@media (min-width: 1024px) {
  .key-services-section {
    padding: 100px 0;
  }
}

.services-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #1b1f26;
  text-align: center;
  margin-bottom: 48px;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .services-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.service-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.service-image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-block:hover .service-image {
  transform: scale(1.05);
}

.service-image-title {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.service-heading {
  font-size: 24px;
  font-weight: 700;
  color: #1b1f26;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: rgba(27, 31, 38, 0.8);
  line-height: 1.5;
}

.service-features svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===================================
   PROCESS SECTION
   =================================== */
.process-section {
  padding: 60px 0;
  background-color: #f2f2f7;
}

@media (min-width: 1024px) {
  .process-section {
    padding: 100px 0;
  }
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  position: relative;
}

.step-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 8px;
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  background-color: #0a2f71;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #f2f2f7;
}

.step-title {
  font-size: 24px;
  font-weight: 700;
  color: #1b1f26;
}

.step-description {
  font-size: 16px;
  color: rgba(27, 31, 38, 0.72);
  line-height: 1.5;
}

.step-line {
  display: none; /* Hidden on mobile/tablet */
}

@media (min-width: 1024px) {
  .step-line {
    display: block;
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #0052e2 0%, #00d87b 100%);
    z-index: 0;
  }
  
  .process-step:last-child .step-line {
    display: none;
  }
}

.process-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.process-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 400px;
}

@media (min-width: 600px) {
  .process-cta-buttons {
    flex-direction: row;
    justify-content: center;
    width: auto;
    max-width: none;
  }
}

/* ===================================
   PROJECTS SECTION
   =================================== */
.projects-section {
  padding: 60px 0;
  background-color: #ffffff;
}

@media (min-width: 1024px) {
  .projects-section {
    padding: 100px 0;
  }
}

.project-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
  .project-tabs {
    justify-content: center;
    overflow-x: visible;
  }
}

.project-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: #ffffff;
  border: 1px solid #e5e5ea;
  border-radius: 12px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}

.project-tab.active {
  border-color: #0052e2;
  background: rgba(0, 82, 226, 0.05);
}

.project-tab span {
  font-weight: 600;
  color: #1b1f26;
}

.projects-slider {
  margin-bottom: 40px;
}

.project-slide {
  display: none;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 1024px) {
  .project-slide {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }
}

.project-slide.active {
  display: flex;
}

.project-image {
  width: 100%;
  height: 240px;
  border-radius: 16px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .project-image {
    height: 320px;
  }
}

@media (min-width: 1024px) {
  .project-image {
    width: 50%;
    height: 400px;
  }
}

.project-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.project-title {
  font-size: 28px;
  font-weight: 700;
  color: #1b1f26;
}

@media (min-width: 1024px) {
  .project-title {
    font-size: 40px;
  }
}

.project-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(27, 31, 38, 0.72);
}

@media (min-width: 1024px) {
  .project-description {
    font-size: 18px;
  }
}

.project-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 600px) {
  .project-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* ===================================
   WHY CHOOSE SECTION
   =================================== */
.why-choose-section {
  padding: 60px 0;
  background-color: #f2f2f7;
}

@media (min-width: 1024px) {
  .why-choose-section {
    padding: 100px 0;
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: #0052e2;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-bottom: 8px;
}

.benefit-title {
  font-size: 20px;
  font-weight: 700;
}

.benefit-description {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.9;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #0052e2 0%, #00d87b 100%);
  color: #ffffff;
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 100px 0;
  }
}

.cta-content {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  max-width: 600px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    width: auto;
    max-width: none;
  }
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  padding: 60px 0 32px;
  background-color: #ffffff;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 1024px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .footer-brand {
    align-items: flex-start;
    text-align: left;
    max-width: 200px;
  }
}

.footer-logo {
  width: 64px;
  height: auto;
}

.footer-tagline {
  font-family: 'Copperplate Gothic Bold', serif;
  font-size: 28px;
  color: rgba(27, 31, 38, 0.72);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  width: 100%;
}

@media (min-width: 600px) {
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 64px;
    flex: 1;
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .footer-column {
    align-items: flex-start;
    text-align: left;
  }
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  color: #1b1f26;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a,
.footer-column span {
  font-size: 16px;
  color: rgba(27, 31, 38, 0.72);
  transition: color 0.2s;
}

.footer-column a:hover {
  color: #0052e2;
}

.footer-divider {
  border: none;
  height: 1px;
  background-color: #e5e5ea;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.copyright {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(27, 31, 38, 0.72);
}

.cookie-link {
  font-size: 14px;
  color: rgba(27, 31, 38, 0.72);
}

.cookie-link:hover {
  color: #0052e2;
}
