/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1f2937;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}
.btn-primary {
  background: #f97316;
  color: #fff;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}
.btn-primary:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}
.btn-outline {
  border: 2px solid #f97316;
  color: #f97316;
  background: transparent;
}
.btn-outline:hover {
  background: #f97316;
  color: #fff;
}
.btn-lg { padding: 0.95rem 1.8rem; font-size: 1.05rem; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.logo-text {
  font-weight: 800;
  font-size: 1.15rem;
  color: #1f2937;
  display: block;
  line-height: 1.2;
}
.logo-tag {
  font-size: 0.7rem;
  color: #f97316;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nav {
  display: flex;
  gap: 1.8rem;
}
.nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: #4b5563;
  transition: color 0.2s;
}
.nav a:hover { color: #f97316; }
.header-cta { display: none; }
@media (min-width: 900px) {
  .header-cta { display: inline-flex; }
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.menu-toggle span {
  width: 24px;
  height: 2.5px;
  background: #1f2937;
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== Hero ===== */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(160deg, #fff7ed 0%, #ffffff 55%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-content { grid-template-columns: 1.15fr 0.85fr; }
}
.hero-badge {
  display: inline-block;
  background: #ffedd5;
  color: #c2410c;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: #111827;
  margin-bottom: 1.2rem;
}
.hero h1 span { color: #f97316; }
.hero-sub {
  font-size: 1.1rem;
  color: #4b5563;
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: #111827;
}
.stat span {
  font-size: 0.85rem;
  color: #6b7280;
}
.hero-visual {
  display: flex;
  justify-content: center;
}
.hero-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border: 1px solid #fed7aa;
  max-width: 340px;
  width: 100%;
  text-align: center;
}
.hero-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: #111827;
}
.hero-card p {
  color: #6b7280;
  margin-bottom: 1.4rem;
  font-size: 0.95rem;
}

/* ===== Sections ===== */
.section {
  padding: 90px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.5rem;
}
.section-header p {
  color: #6b7280;
  font-size: 1.05rem;
}

/* ===== Services ===== */
.services { background: #fafafa; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.8rem;
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: #fed7aa;
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111827;
}
.service-card p {
  color: #6b7280;
  font-size: 0.95rem;
}

/* ===== Rates ===== */
.rates-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.rate-tab {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  background: #f3f4f6;
  color: #4b5563;
  transition: all 0.2s;
}
.rate-tab:hover { background: #ffedd5; color: #c2410c; }
.rate-tab.active {
  background: #f97316;
  color: #fff;
}
.rate-panel { display: none; }
.rate-panel.active { display: block; }
.rate-table {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.rate-row {
  display: flex;
  justify-content: space-between;
  padding: 0.95rem 1.4rem;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.98rem;
}
.rate-row:nth-child(even) { background: #fff7ed; }
.rate-row:last-child { border-bottom: none; }
.rate-row span:last-child {
  font-weight: 700;
  color: #c2410c;
}
.rates-note {
  text-align: center;
  margin-top: 1.8rem;
  color: #6b7280;
  font-size: 0.9rem;
  max-width: 600px;
  margin-inline: auto;
}

/* ===== How it Works ===== */
.how { background: #fff7ed; }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
}
.step {
  text-align: center;
  padding: 1.5rem 1rem;
}
.step-num {
  width: 48px;
  height: 48px;
  background: #f97316;
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: #111827;
}
.step p {
  color: #6b7280;
  font-size: 0.95rem;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 800px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}
.about-content h2 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #111827;
}
.about-content > p {
  color: #4b5563;
  margin-bottom: 1.4rem;
}
.about-list {
  margin-bottom: 1.8rem;
}
.about-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
  color: #374151;
}
.about-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #f97316;
  font-weight: 700;
}
.about-card {
  background: #1f2937;
  color: #e5e7eb;
  border-radius: 20px;
  padding: 2rem;
}
.about-card h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}
.about-card ol {
  list-style: decimal;
  padding-left: 1.2rem;
}
.about-card li {
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===== Contact ===== */
.contact { background: #fafafa; }
.contact-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) {
  .contact-grid { grid-template-columns: 1.1fr 0.9fr; }
}
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.contact-icon {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  background: #ffedd5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item h4 {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.contact-item a, .contact-item p {
  color: #111827;
  font-weight: 600;
}
.contact-item a:hover { color: #f97316; }
.contact-cta-card {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact-cta-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}
.contact-cta-card p {
  opacity: 0.95;
  margin-bottom: 1.5rem;
  max-width: 280px;
}
.contact-cta-card .btn-primary {
  background: #fff;
  color: #ea580c;
  box-shadow: none;
}
.contact-cta-card .btn-primary:hover {
  background: #fff7ed;
  transform: translateY(-2px);
}

/* ===== Footer ===== */
.footer {
  background: #111827;
  color: #9ca3af;
  padding-top: 3rem;
}
.footer-inner {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 700px) {
  .footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: start;
  }
}
.footer-brand strong {
  color: #fff;
  font-size: 1.15rem;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a:hover { color: #f97316; }
.footer-contact a {
  color: #fff;
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}
.footer-contact a:hover { color: #f97316; }
.footer-bottom {
  border-top: 1px solid #374151;
  padding: 1.2rem 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform 0.25s, box-shadow 0.25s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

/* ===== Mobile Nav ===== */
@media (max-width: 899px) {
  .menu-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid #e5e7eb;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a { font-size: 1.05rem; padding: 0.4rem 0; }
}
