/* ---------- BASE ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #0f172a;
  background: #ffffff;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 20px;
  font-weight: 700;
}

.logo span {
  color: #3b82f6;
}

nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 500;
}

nav a.btn {
  background: #3b82f6;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 8px;
}

/* ---------- HERO ---------- */
.hero {
  padding: 100px 20px 80px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  color: #475569;
  max-width: 540px;
  margin-bottom: 32px;
}

.btn-primary {
  display: inline-block;
  background: #3b82f6;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
}

/* ---------- HERO IMAGE ---------- */
.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
}

/* ---------- SECTIONS ---------- */
section {
  padding: 80px 20px;
}

.section-container {
  max-width: 1100px;
  margin: auto;
}

.section-container h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.section-container p {
  font-size: 17px;
  color: #475569;
  max-width: 700px;
}

/* ---------- SERVICES ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.service-box {
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
}

/* ---------- CONTACT ---------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.contact-card {
  padding: 28px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  text-align: center;
}

.contact-card h3 {
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 12px;
}

.contact-card a {
  text-decoration: none;
  font-weight: 600;
  color: #3b82f6;
}

.contact-card.highlight {
  border-color: #3b82f6;
  background: #f0f7ff;
}

/* ---------- FOOTER ---------- */
footer {
  padding: 30px;
  text-align: center;
  font-size: 14px;
  color: #64748b;
}

/* ---------- ANIMATION ---------- */
.fade-up {
  animation: fadeUp 0.8s ease forwards;
}

.delay {
  animation-delay: 0.15s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-cta {
  display: none;
}


/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
    

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
   /* Hide Contact button ONLY in navbar on mobile */
  .navbar nav a.btn {
    display: none;
  }

  .hero-text h1 {
    font-size: 34px;
    line-height: 1.25;
  }

  .hero-text p {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image {
    margin-top: 24px;
    text-align: center;
  }

  .hero-image img {
    max-width: 420px;
    width: 100%;
    height: auto;
  }

  .nav-container {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Show Talk to Us only on mobile */
  .mobile-cta {
    display: block;
    margin: 32px auto 0;
    text-align: center;
  }
}
