/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== ROOT COLORS ===== */
:root {
  --primary: #3b82f6;
  --secondary: #22c55e;
  --dark: #0f172a;
  --light: #f8fafc;
  --muted: #64748b;
  --card-bg: #ffffff;
}

/* ===== GLOBAL ===== */
body {
  font-family: "Poppins", "Segoe UI", sans-serif;
  background: linear-gradient(to bottom, #f8fafc, #eef2ff);
  color: var(--dark);
  line-height: 1.7;
}

section {
  max-width: 1150px;
  margin: auto;
  padding: 70px 20px;
}

h1, h2, h3 {
  font-weight: 600;
  text-align: center;
}

h2 {
  font-size: 34px;
  margin-bottom: 30px;
  text-align: center;
}

h3 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--primary);
}

p {
  font-size: 16px;
  color: var(--muted);
   
}

/* ===== HERO LOGO ===== */
.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.hero-logo img {
  height: 85px;
  width: auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.25));
}

/* Mobile */
@media (max-width: 768px) {
  .hero-logo img {
    height: 65px;
  }
}


/* ===== HERO ===== */
.hero {
  background: radial-gradient(circle at top right, #0c2d55, #000000);
  color: white;
  text-align: center;
  padding: 110px 20px 120px;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
}

.hero h1 {
  font-size: 48px;
  letter-spacing: -1px;
}

.hero .subtitle {
  font-size: 20px;
  margin: 18px auto 35px;
  max-width: 750px;
  color: white;
}
.hero-location {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,0.25);
  padding-bottom: 2px;
  transition: 0.25s ease;
}

.hero-location:hover {
  border-bottom: 1px solid #4fffba;
  color: #4fffba;
}


/* ===== BUTTONS ===== */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  padding: 16px 36px;
  border-radius: 60px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(34,197,94,0.35);
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(34,197,94,0.45);
}

/* ===== ABOUT ===== */
.about {
  background: #ededed;
  border-radius: 30px;
  padding: 50px;
  margin-top: -70px;
  box-shadow: 0 30px 80px rgba(15,23,42,0.08);
}

.about p {
  font-size: 17px;
}

/* ===== SERVICES ===== */
.services {
  margin-top: auto;
}

.services ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  list-style: none;
}

.services ul li {
  background: #ededed;
  padding: 18px 20px;
  border-radius: 18px;
  font-size: 15px;
  color: var(--dark);
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.3s ease;
}

.services ul li::before {
  content: "✓";
  color: var(--secondary);
  font-weight: bold;
  margin-right: 8px;
}

.services ul li:hover {
  transform: translateY(-6px);
}

.services h3 a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
}

.services h3 a:hover {
  text-decoration: underline;
}

.service-img {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  margin: 20px 0 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}


/* ===== WHY US ===== */
.why-us {
  background: linear-gradient(135deg, #eff6ff, #eef2ff);
  border-radius: 40px;
  padding: 80px 40px;
}

.why-us ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.why-us li {
  background: #ededed;
  padding: 25px;
  border-radius: 22px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.why-us li:hover {
  transform: translateY(-6px);
}

/* ===== CONTACT ===== */
.contact {
  background: radial-gradient(circle at top right, #0c2d55, #000000);
  color: white;
  border-radius: 35px;
  padding: 70px 30px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
  margin-bottom: 15px;
}

.contact p {
  color: white;
  font-size: 18px;
  margin-bottom: 12px;
}

.contact h2{
  margin-bottom: 12px;
}

/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
  position: fixed;
  right: 25px;
  bottom: 25px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  font-size: 30px;
  padding: 16px 20px;
  border-radius: 50%;
  box-shadow: 0 25px 50px rgba(34,197,94,0.5);
  text-decoration: none;
  z-index: 1000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero .subtitle {
    color: white;
    font-size: 17px;
  }

  section {
    padding: 60px 18px;
  }

  .about {
    padding: 35px;
  }
}
