*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #0f172a;
  background-color: #020617;
}

body {
  min-height: 100vh;
}

:root {
  --bg: #020617;
  --bg-elevated: #020817;
  --bg-elevated-soft: #020c1f;
  --accent: #22c55e;
  --accent-soft: rgba(34, 197, 94, 0.12);
  --accent-strong: #16a34a;
  --border-subtle: rgba(148, 163, 184, 0.35);
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --text-soft: #6b7280;
  --danger: #f97373;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.85);
  --shadow-subtle: 0 18px 40px rgba(15, 23, 42, 0.75);
}

body {
  background: radial-gradient(circle at top left, #0f172a, #020617 45%, #000);
  color: var(--text-main);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), #020617);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, #4ade80, #22c55e 50%, #16a34a);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #020617;
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 12px 26px rgba(22, 163, 74, 0.6);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 0.72rem;
  color: var(--text-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  position: relative;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.2rem 0;
  transition: color 0.18s ease;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4ade80, #22c55e);
  transition: width 0.18s ease;
}

.nav-list a:hover {
  color: #e5e7eb;
}

.nav-list a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.85);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  width: 16px;
  height: 1.8px;
  background: #e5e7eb;
  border-radius: 999px;
  margin-inline: auto;
}

.header-call {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, rgba(52, 211, 153, 0.6), #22c55e);
  color: #020617;
  box-shadow: 0 12px 28px rgba(34, 197, 94, 0.64);
}

.call-label {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}

.call-number {
  font-weight: 600;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease,
    transform 0.12s ease, box-shadow 0.16s ease, color 0.2s ease;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

.btn-primary {
  background: linear-gradient(135deg, #4ade80, #22c55e, #16a34a);
  color: #020617;
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.7);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(34, 197, 94, 0.8);
}

.btn-outline {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.55);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: #22c55e;
  color: #e5e7eb;
  background: rgba(22, 163, 74, 0.08);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(148, 163, 184, 0.4);
  color: var(--text-main);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(148, 163, 184, 0.7);
}

.btn-full {
  width: 100%;
}

.btn-sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.9;
}

.hero {
  padding: 3.5rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.75rem;
  align-items: stretch;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.1rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(
    circle at 0 0,
    rgba(34, 197, 94, 0.3),
    rgba(15, 23, 42, 0.98)
  );
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.15;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hero h1 .highlight {
  background: linear-gradient(90deg, #4ade80, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.badge {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(
      circle at 0 0,
      rgba(34, 197, 94, 0.16),
      transparent 55%
    ),
    rgba(15, 23, 42, 0.96);
}

.badge-title {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
}

.badge-text {
  display: block;
  font-size: 0.78rem;
  color: var(--text-main);
}

.hero-card {
  background: radial-gradient(circle at top, #020c1f, #020617 52%, #000);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.6rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.65);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 10% 0, rgba(52, 211, 153, 0.38), transparent 50%),
    radial-gradient(circle at 85% 100%, rgba(45, 212, 191, 0.25), transparent);
  opacity: 0.6;
  z-index: -1;
}

.hero-card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.3rem;
}

.hero-card-text {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.section {
  padding: 3.25rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, #020617, #000 70%);
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header.align-left {
  text-align: left;
}

.section-header h2 {
  margin: 0.4rem 0 0.6rem;
  font-size: 1.5rem;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cards-grid {
  display: grid;
  gap: 1.15rem;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: radial-gradient(circle at top, #020617, #020617 50%, #000);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.1rem 1.15rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 10% 0, #4ade80, #22c55e);
  color: #020617;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.service-card h3 {
  margin: 0;
  font-size: 1rem;
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.card-list {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
  font-size: 0.8rem;
}

.card-list li + li {
  margin-top: 0.15rem;
}

.brand-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.brand-pill {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.96);
  font-size: 0.78rem;
  color: var(--text-main);
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  color: var(--text-muted);
  font-size: 0.78rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.testimonial-rating {
  color: #facc15;
  font-size: 0.9rem;
}

.testimonial-card p {
  margin: 0;
  color: var(--text-main);
  font-size: 0.9rem;
}

.testimonial-author {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.accordion details {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(15, 23, 42, 0.96);
  padding: 0.75rem 0.9rem;
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding-right: 1.2rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.accordion summary::marker,
.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "＋";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion p {
  margin: 0.5rem 0 0;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.contact-card {
  display: flex;
  gap: 0.7rem;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.98);
  text-decoration: none;
  color: inherit;
}

.contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.16);
  color: #4ade80;
}

.contact-label {
  font-size: 0.78rem;
  color: var(--text-soft);
}

.contact-value {
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-note {
  font-size: 0.76rem;
  color: var(--text-soft);
}

.contact-form-card {
  padding: 1.25rem 1.2rem 1.3rem;
}

.contact-form-card h3 {
  margin: 0 0 0.9rem;
  font-size: 1.05rem;
}

.quote-form,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.form-group label {
  font-size: 0.78rem;
  color: var(--text-soft);
}

input,
select,
textarea {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.96);
  padding: 0.55rem 0.7rem;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.86rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease,
    background-color 0.18s ease;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-soft);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.45);
  background: rgba(15, 23, 42, 0.98);
}

.field-error {
  border-color: rgba(248, 113, 113, 0.9);
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.5);
}

.form-small {
  margin: 0;
  font-size: 0.74rem;
  color: var(--text-soft);
}

.form-success {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  color: #4ade80;
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at bottom, #020617, #000 70%);
  padding: 1.4rem 0 1.6rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.footer-logo .logo-icon {
  width: 30px;
  height: 30px;
  font-size: 0.7rem;
}

.footer-text {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.footer-phone {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
}

.footer-phone:hover {
  color: #4ade80;
}

.footer-location {
  font-size: 0.78rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #22c55e, #16a34a);
  color: #f9fafb;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.85);
  transform: translateY(0);
  transition: transform 0.12s ease, box-shadow 0.16s ease,
    background 0.16s ease, opacity 0.16s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(22, 163, 74, 0.95);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #22c55e;
  font-size: 1.2rem;
}

.whatsapp-text {
  display: flex;
  flex-direction: column;
  font-size: 0.78rem;
  line-height: 1.15;
}

.whatsapp-sub {
  font-size: 0.7rem;
  opacity: 0.9;
}

@media (max-width: 560px) {
  .whatsapp-float {
    right: 1.1rem;
    bottom: 1.1rem;
    padding-inline: 0.8rem;
  }
}

.nav.open .nav-list {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav.open .nav-toggle {
  border-color: rgba(34, 197, 94, 0.6);
}

.nav.open .nav-toggle span:nth-child(1) {
  transform: translateY(2.2px) rotate(45deg);
}

.nav.open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.open .nav-toggle span:nth-child(3) {
  transform: translateY(-2.2px) rotate(-45deg);
}

.nav-toggle span {
  transition: transform 0.16s ease, opacity 0.16s ease,
    background-color 0.16s ease;
}

.hero,
.section {
  scroll-margin-top: 88px;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding-block: 0.75rem;
  }

  .nav-list {
    position: absolute;
    inset-inline: 1.5rem;
    top: 58px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.5);
    padding: 0.7rem;
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .nav-list li {
    text-align: center;
  }

  .nav-list .btn {
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .hero-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    padding-inline: 1.1rem;
  }

  .header-inner {
    gap: 0.5rem;
  }

  .header-call {
    display: none;
  }

  .hero-badges {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

