:root {
  --blue: #145f9f;
  --blue-dark: #0c3f6f;
  --green: #36a269;
  --green-dark: #237b50;
  --soft-blue: #eef8ff;
  --soft-green: #f2fbf6;
  --cream: #fffaf1;
  --dark: #1f2d3d;
  --text: #4d5c68;
  --white: #ffffff;
  --shadow: 0 12px 35px rgba(0, 0, 0, 0.10);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}

.container {
  width: 90%;
  max-width: 1180px;
  margin: auto;
}

.header {
  background: rgba(238, 248, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrapper {
  min-height: 105px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 95px;
  display: block;
}

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 15px;
}

.nav a:hover,
.nav a.active {
  color: var(--green);
}

.header-actions {
  display: flex;
  gap: 10px;
}

.call-btn,
.whatsapp-btn {
  color: white;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
}

.call-btn { background: var(--blue); }
.whatsapp-btn { background: var(--green); }

.menu-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 34px;
  color: var(--blue);
  cursor: pointer;
}

.hero {
  background: linear-gradient(135deg, rgba(238,248,255,0.95), rgba(242,251,246,0.95));
  padding: 85px 0;
}

.hero-grid,
.two-col,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: white;
  color: var(--green-dark);
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

h1 {
  font-size: 52px;
  line-height: 1.12;
  color: var(--blue-dark);
  margin-bottom: 22px;
}

h1 span { color: var(--green); }

h2 {
  color: var(--blue-dark);
  font-size: 38px;
  line-height: 1.25;
  margin-bottom: 18px;
}

h3 {
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.hero p,
.page-hero p {
  font-size: 18px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 800;
  transition: 0.3s ease;
  border: none;
  cursor: pointer;
}

.primary-btn {
  background: var(--green);
  color: white;
}

.secondary-btn {
  background: var(--blue);
  color: white;
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-3px);
  opacity: 0.92;
}

.hero-image,
.page-image {
  position: relative;
}

.hero-image img,
.page-image img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  left: -25px;
  bottom: 25px;
  background: white;
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 260px;
}

.hero-card strong {
  color: var(--blue-dark);
  display: block;
}

.trust-bar {
  background: var(--blue-dark);
  color: white;
  padding: 22px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  font-weight: 800;
}

.section {
  padding: 90px 0;
}

.center { text-align: center; }

.small-title {
  color: var(--green);
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.narrow {
  max-width: 850px;
  margin: auto;
}

.light-bg { background: var(--soft-green); }

.cards,
.icon-row,
.testimonial-grid {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card,
.icon-box,
.testimonial-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transition: 0.35s ease;
}

.card:hover,
.icon-box:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 38px rgba(0,0,0,0.13);
}

.card {
  overflow: hidden;
  text-align: left;
}

.card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.card-content {
  padding: 28px;
}

.card h3,
.icon-box h3 {
  color: var(--blue-dark);
  font-size: 22px;
}

.icon-box {
  padding: 35px 25px;
  border-top: 6px solid var(--green);
}

.icon {
  font-size: 42px;
  margin-bottom: 15px;
}

.testimonials {
  background: var(--cream);
}

.testimonial-card {
  padding: 35px 28px;
  text-align: center;
}

.avatar {
  width: 78px;
  height: 78px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
}

.stars {
  color: #f5b301;
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 18px;
}

.testimonial-card h4 {
  color: var(--blue-dark);
}

.page-hero {
  background: linear-gradient(135deg, var(--soft-blue), var(--soft-green));
  padding: 80px 0;
  text-align: center;
}

.list {
  margin: 22px 0;
  padding-left: 22px;
}

.list li {
  margin-bottom: 10px;
}

.cta {
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: white;
  padding: 75px 0;
  text-align: center;
}

.cta h2 { color: white; }

.contact-section {
  background: var(--soft-blue);
}

.contact-grid {
  align-items: start;
}

.contact-info p {
  margin-bottom: 12px;
}

.contact-info a {
  color: var(--blue-dark);
  font-weight: 700;
}

.contact-form {
  background: white;
  padding: 35px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #d5dce3;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.map-box {
  margin-top: 35px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.footer {
  background: var(--blue-dark);
  color: white;
  padding: 45px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 35px;
}

.footer img {
  width: 160px;
  margin-bottom: 15px;
}

.footer h3 {
  color: white;
}

.footer a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 8px;
}

.copyright {
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.25);
}

.floating-buttons {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.floating-buttons a {
  text-decoration: none;
  color: white;
  padding: 12px 16px;
  border-radius: 30px;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.float-call { background: var(--blue); }
.float-whatsapp { background: var(--green); }

@media (max-width: 1080px) {
  .header-actions { display: none; }

  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 14px;
  }

  h1 { font-size: 44px; }
}

@media (max-width: 900px) {
  .nav-wrapper { min-height: 88px; }

  .logo img { height: 72px; }

  .menu-toggle { display: block; }

  .nav {
    display: none;
    position: absolute;
    top: 88px;
    right: 5%;
    width: 270px;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    border-radius: 0 0 20px 20px;
    box-shadow: var(--shadow);
  }

  .nav.active { display: flex; }

  .hero-grid,
  .two-col,
  .contact-grid,
  .cards,
  .icon-row,
  .testimonial-grid,
  .footer-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 60px 0;
    text-align: center;
  }

  h1 { font-size: 34px; }
  h2 { font-size: 30px; }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image img,
  .page-image img {
    height: 320px;
  }

  .hero-card {
    position: static;
    margin: 18px auto 0;
  }

  .section {
    padding: 65px 0;
  }

  .btn {
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .logo img { height: 62px; }

  h1 { font-size: 29px; }

  .hero-image img,
  .page-image img {
    height: 245px;
  }

  .floating-buttons a {
    font-size: 13px;
    padding: 10px 13px;
  }
}