/* ================= GLOBAL ================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: #f0fdfa; /* soft light teal */
  color: #134e4a; /* dark teal text */
  line-height: 1.6;
}

/* ================= HEADER ================= */
.header {
  background: #ffffff;
  border-bottom: 1px solid #a7f3d0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 52px;
  padding: 6px;
  border-radius: 8px;
}

.brand-name {
  font-size: 20px;
  font-weight: 600;
  color: #065f46; /* dark teal */
}

.nav a {
  color: #065f46;
  margin-left: 22px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

.nav a:hover {
  color: #facc15; /* bright yellow hover */
}

/* ================= MENU TOGGLE ================= */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* ================= HERO ================= */
.hero {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  color: #ffffff;
  padding: 110px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 900px;
  margin: auto;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  opacity: 0.95;
}

.hero-actions {
  margin-top: 35px;
}

.hero-actions .btn {
  margin: 6px;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #facc15; /* bright CTA yellow */
  color: #065f46;
}

.btn.primary:hover {
  background: #eab308;
  color: #ffffff;
}

.btn.secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn.secondary:hover {
  background: #ffffff;
  color: #0d9488;
}

/* ================= SECTIONS ================= */
.section {
  padding: 80px 20px;
}

.bg-light {
  background: #f0fdfa; /* light teal */
}

.bg-gradient {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  color: #ffffff;
}

.section-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.section-title h2 {
  font-size: 32px;
  color: #065f46; /* dark teal */
  margin-bottom: 12px;
}

.section-title p {
  color: #134e4a;
  font-size: 16px;
}

/* ================= SERVICES / CARDS ================= */
.services {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.card .icon {
  font-size: 36px;
  margin-bottom: 15px;
  display: inline-block;
}

.card h3 {
  color: #065f46;
  font-size: 22px;
  margin-bottom: 12px;
}

.card p {
  font-size: 15px;
  color: #134e4a;
}

/* ================= HOVER SCALE EFFECT ================= */
.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

/* ================= STATS ================= */
.stats-grid {
  grid-template-columns: repeat(3, 1fr);
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 700;
  padding: 40px;
  border-radius: 14px;
  text-align: center;
  font-size: 20px;
}

.stat-card h3 {
  font-size: 36px;
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 16px;
}

/* ================= CTA ================= */
.cta .section-title h2 {
  font-size: 36px;
  color: #065f46;
  margin-bottom: 15px;
}

.cta .section-title p {
  color: #134e4a;
  margin-bottom: 25px;
}

/* ================= FOOTER ================= */
.footer {
  background: #065f46;
  color: #f0fdfa;
  padding: 50px 20px;
  text-align: center;
  font-size: 14px;
}

.footer a {
  color: #f0fdfa;
  text-decoration: none;
  margin: 0 6px;
}

.footer a:hover {
  color: #facc15;
}

/* ================= WHY CHOOSE US ================= */
.why-choose-us {
  padding: 80px 20px;
  background: #f0fdfa; /* light teal background */
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.choose-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 35px 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.choose-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-card:hover .choose-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.choose-card h3 {
  color: #065f46;
  font-size: 22px;
  margin-bottom: 12px;
}

.choose-card p {
  font-size: 15px;
  color: #134e4a;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .choose-grid {
    grid-template-columns: 1fr;
  }
  .choose-icon {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }
  .choose-card h3 {
    font-size: 20px;
  }
  .choose-card p {
    font-size: 14px;
  }
}


/* ================= MOBILE NAV ================= */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav {
    display: none;
    flex-direction: column;
    background: #ffffff;
    position: absolute;
    right: 20px;
    top: 70px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
  }
  .nav.show {
    display: flex;
  }
  .nav a {
    padding: 12px 20px;
    margin: 0;
    border-bottom: 1px solid #e5f4f3;
  }
  .nav a:last-child {
    border-bottom: none;
  }
}

/* ================= DESKTOP FIX ================= */
@media (min-width: 769px) {
  .menu-toggle {
    display: none !important;
  }
  .nav {
    display: flex !important;
    position: static;
    box-shadow: none;
  }
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #14b8a6;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 9999;
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
}

/* ================= CONTACT PAGE ================= */
.contact-page {
  background: #f0fdfa; /* soft teal background */
  padding: 80px 20px;
  font-family: "Inter", Arial, sans-serif;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-info h2 {
  color: #065f46;
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-info p {
  color: #134e4a;
  margin-bottom: 25px;
  font-size: 16px;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.contact-details li {
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 15px;
  color: #065f46;
}

/* WhatsApp Button */
.whatsapp-btn {
  display: inline-block;
  background: #25D366;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1ebe57;
}

/* Contact Form Box */
.contact-box {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-box h3 {
  color: #065f46;
  margin-bottom: 25px;
  font-size: 26px;
  text-align: center;
}

/* Contact Form Inputs */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 15px;
  font-family: inherit;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #14b8a6;
  box-shadow: 0 0 8px rgba(20,184,166,0.3);
}

/* Submit Button */
.contact-form .btn.primary {
  width: 100%;
  text-align: center;
  padding: 14px 0;
  font-size: 16px;
  border-radius: 8px;
}

/* Hover effect */
.contact-form .btn.primary:hover {
  background: #0d9488;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-box, .contact-info {
    padding: 30px 20px;
  }
}

