:root {
  --primary: #f57c00;
  --primary-dark: #db6d00;
  --primary-soft: #fff3e7;
  --primary-soft-2: #fff7f1;
  --text: #1f1f1f;
  --muted: #666666;
  --white: #ffffff;
  --black: #111111;
  --bg: #fafafa;
  --border: #ececec;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --radius: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}



/* HERO */
.hero {
  padding: 72px 0;
  background:
    radial-gradient(circle at top left, #fff1e3 0%, transparent 34%),
    radial-gradient(circle at bottom right, #ffe8d3 0%, transparent 30%),
    linear-gradient(135deg, #fffaf6 0%, #ffffff 58%, #fff7f0 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.logo-box {
  margin-bottom: 22px;
}

.logo-main {
  max-width: 300px;
  height: auto;
}

.hero-badge {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .4px;
  padding: 10px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 650px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-highlights {
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-highlights li {
  position: relative;
  padding-left: 24px;
  font-weight: 600;
  color: #383838;
}

.hero-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 900;
}

/* FORM CARD */
.hero-form-card {
  background: var(--white);
  border: 1px solid #f2e5d9;
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.hero-form-card h2 {
  font-size: 30px;
  margin-bottom: 8px;
}

.hero-form-card p {
  color: var(--muted);
  margin-bottom: 20px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 15px;
  font-size: 15px;
  outline: none;
  background: #fff;
  transition: 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(245, 124, 0, 0.12);
}

.mini-contact {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.mini-contact span {
  display: block;
  margin-bottom: 5px;
}

.mini-contact a {
  color: var(--primary-dark);
  font-weight: 700;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  padding: 15px 22px;
  font-weight: 800;
  border: 2px solid transparent;
  transition: .25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary-soft);
}

.btn-light {
  background: #fff;
  color: var(--primary-dark);
}

.btn-light:hover {
  opacity: 0.92;
}

.btn-full {
  width: 100%;
}

/* SECTION HEADING */
.section-heading {
  margin-bottom: 42px;
}

.section-heading.center {
  text-align: center;
}

.tag {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}

.section-heading h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
}

/* SERVICES */
.services {
  padding: 84px 0;
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid #f1e4d8;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card.featured {
  border: 2px solid #ffd2ab;
  background: linear-gradient(180deg, #fffaf6 0%, #ffffff 100%);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 25px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 18px;
  flex-grow: 1;
}

.service-old-price {
  font-size: 18px;
  color: #8d8d8d;
  text-decoration: line-through;
  margin-bottom: 6px;
  font-weight: 700;
}

.service-price {
  color: var(--primary-dark);
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 18px;
  line-height: 1.2;
}

.highlight-price {
  font-size: 34px;
}

/* WHY US */
.why-us {
  padding: 84px 0;
  background: var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.why-us h2 {
  font-size: 38px;
  margin: 14px 0;
}

.why-us p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 20px;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 600;
}

.contact-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  font-size: 30px;
  margin-bottom: 16px;
}

.contact-item {
  padding: 16px 0;
  border-bottom: 1px solid #efefef;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
}

.contact-item a {
  color: var(--primary-dark);
  font-weight: 700;
}

/* FINAL CTA */
.final-cta {
  padding: 0 0 80px;
  background: var(--bg);
}

.final-cta-box {
  background: linear-gradient(135deg, #ff9a2f 0%, #f57c00 100%);
  color: #fff;
  padding: 36px;
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.final-cta-box h2 {
  font-size: 34px;
  margin-bottom: 8px;
}

.final-cta-box p {
  opacity: .96;
}

/* FOOTER */
.footer {
  background: #171717;
  color: #fff;
  padding: 30px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-logo {
  max-width: 220px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-info a {
  color: #fff;
  opacity: 0.92;
}

/* FLOAT WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--primary);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(245, 124, 0, 0.28);
  z-index: 999;
}

.whatsapp-float:hover {
  background: var(--primary-dark);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .topbar-content,
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 56px 0;
  }

  .hero h1,
  .section-heading h2,
  .why-us h2,
  .final-cta-box h2 {
    font-size: 32px;
  }

  .hero-buttons,
  .topbar-right {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-main {
    max-width: 240px;
  }

  .service-price,
  .highlight-price {
    font-size: 28px;
  }
}