/* ---------- Global ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #0f172a;
  background: radial-gradient(circle at top left, #fee2e2 0, #fff 40%, #e0f2fe 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

section {
  padding: 5rem 1.5rem;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 600;
}

.section-intro {
  max-width: 640px;
  margin: 0.75rem auto 2.5rem;
  text-align: center;
  color: #475569;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
    color 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #b91c1c, #48cf0a);
  color: #fff;
  box-shadow: 0 12px 30px rgba(185, 28, 28, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(185, 28, 28, 0.5);
}

.btn-outline {
  border: 1px solid #cbd5f5;
  background: #ffffffd9;
  color: #0f172a;
}

.btn-outline:hover {
  background: #0f172a;
  color: #fff;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.highlight {
  color: #b91c1c;
}

.pill {
  display: inline-block;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.navbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(circle at 10% 0, #fee2e2, #b91c1c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 10px 25px rgba(185, 28, 28, 0.45);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.brand-tagline {
  font-size: 0.75rem;
  color: #64748b;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  font-weight: 500;
  color: #0f172a;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, #b91c1c, #48cf0a);
  transition: width 0.18s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-phone {
  font-weight: 600;
  font-size: 0.9rem;
  color: #48cf0a;
}

.nav-toggle {
  display: none;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: #fff;
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #0f172a;
  position: relative;
}

.nav-toggle-line::before,
.nav-toggle-line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #0f172a;
}

.nav-toggle-line::before {
  top: -5px;
}

.nav-toggle-line::after {
  top: 5px;
}

/* ---------- Hero ---------- */
.hero {
  padding-top: 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: center;
  gap: 3.5rem;
}

.hero-eyebrow {
  margin-bottom: 0.8rem;
}

.hero-title {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-title span {
  display: inline-block;
}

.hero-subtitle {
  max-width: 32rem;
  color: #475569;
  margin-bottom: 1.6rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.8rem;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #64748b;
}

.hero-note-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.2);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 30rem;
}

.stat-card {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: #ffffffd9;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: #b91c1c;
}

.stat-label {
  font-size: 0.8rem;
  color: #64748b;
}

.hero-media {
  position: relative;
}

.hero-image-card {
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.3);
}

.hero-image-card img {
  height: 620px;
  width: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -1.4rem;
  left: 1.4rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: #0f172a;
  color: #e5e7eb;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.7);
}

.hero-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #48cf0a;
}

/* ---------- About ---------- */
.about {
  background: #0f172a;
  color: #e5e7eb;
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, #47372d 0, #604d42 40%, #e0f2fe 100%);  color: #e5e7eb;
  pointer-events: none;
}

.about-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: center;
  gap: 3.2rem;
}

.about-heading {
  font-size: 2.1rem;
  margin-bottom: 1rem;
}

.about-copy {
  color: #cbd5f5;
  margin-bottom: 1.75rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.about-stat {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.about-stat .stat-number {
  color: #48cf0a;
}

.about-stat .stat-label {
  color: #e5e7eb;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  border-radius: 1rem;
  padding: 0.85rem 0.9rem;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.85rem;
}

.feature-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-desc {
  color: #cbd5f5;
  font-size: 0.8rem;
}

.about-media {
  position: relative;
}

.about-photo {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.7);
}

.about-tag {
  position: absolute;
  bottom: -1.4rem;
  right: 0.5rem;
  background: rgba(15, 23, 42, 0.95);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.about-tag span {
  font-weight: 600;
  color: #48cf0a;
}

/* ---------- Services ---------- */
.services {
  background: #f8fafc;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2.5rem;
  margin-top: 2.25rem;
  align-items: flex-start;
}

.services-content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.services-intro-block {
  padding: 1.2rem 1.3rem 1.25rem;
  border-radius: 1.2rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  font-size: 0.95rem;
  color: #475569;
}

.services-intro-block p {
  margin: 0.6rem 0 0;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.service-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: #0f172a;
}

.service-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.service-item .service-meta {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.services-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.services-image-card {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
}

.services-image-card img {
  width: 100%;
  height: 100%;
  max-height: 630px;
  object-fit: cover;
}

.services-note {
  padding: 0.9rem 1.1rem;
  border-radius: 1.2rem;
  border: 1px dashed #e5e7eb;
  background: #ffffff;
  font-size: 0.85rem;
  color: #4b5563;
}

.services-note strong {
  display: block;
  margin-bottom: 0.2rem;
}

.why-us {
  background: #ffffff;
}

.why-us-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-us-header .section-title {
  margin-bottom: 0.75rem;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.why-us-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-us-point h3 {
  margin: 0 0 0.25rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: #0f172a;
}

.why-us-point p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.why-us-footer {
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px dashed #e5e7eb;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.9rem;
  color: #4b5563;
}

.extra-services {
  background: #ffffff;
}

.extra-services .section-title {
  margin-bottom: 0.9rem;
}

.extra-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem 1.8rem;
  margin-top: 1.4rem;
}

.extra-service {
  padding: 1.1rem 1.25rem;
  border-radius: 1.1rem;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.extra-service h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: #0f172a;
}

.extra-service p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.additional-services {
  margin-top: 3rem;
  border-radius: 1.4rem;
  background: radial-gradient(circle at top left, #47372d 0, #604d42 40%, #e0f2fe 100%);  color: #e5e7eb;
  padding: 1.8rem 1.8rem 1.9rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
}

.additional-services h3 {
  margin: 0 0 0.4rem;
}

.additional-services p {
  margin: 0 0 0.75rem;
  color: #cbd5f5;
  font-size: 0.9rem;
}

.additional-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 1.2rem;
  font-size: 0.85rem;
}

.additional-services li::before {
  content: "✓";
  color: #22c55e;
  margin-right: 0.4rem;
}

.additional-note {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 0.7rem;
}

.additional-cta {
  align-self: center;
  justify-self: flex-end;
}

/* ---------- FAQs ---------- */
.faqs {
  background: #fff;
}

.faq-grid {
  max-width: 800px;
  margin: 2.2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-item {
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.faq-item.open {
  border-color: #fed7aa;
  background: #fff7ed;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.faq-question {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
}

.faq-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.faq-city-pill {
  font-size: 0.7rem;
  padding: 0.1rem 0.55rem;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.faq-toggle {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid #cbd5f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #64748b;
  background: #fff;
}

.faq-item.open .faq-toggle {
  background: #0f172a;
  color: #48cf0a;
  border-color: #0f172a;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.1rem;
  font-size: 0.9rem;
  color: #64748b;
  transition: max-height 0.22s ease, padding-bottom 0.22s ease;
}

.faq-item.open .faq-answer {
  padding-bottom: 0.9rem;
  max-height: 260px;
}

/* ---------- Service Areas ---------- */
.areas {
  background: radial-gradient(circle at top left, #5a4c43 0, #876b5b 40%, #e0f2fe 100%);  color: #e5e7eb;
  color: #e5e7eb;
}

.areas-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.6rem;
  align-items: center;
}

.areas-copy {
  color: #cbd5f5;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.areas-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem 1.5rem;
  font-size: 0.9rem;
}

.areas-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.areas-list span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #48cf0a;
}

.areas-badge {
  align-self: center;
  justify-self: end;
  max-width: 360px;
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.85rem;
  color: #cbd5f5;
  text-align: center;
}

/* ---------- Contact ---------- */
.contact {
  background: #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  margin-top: 2.2rem;
}

.contact-card {
  background: #fff;
  border-radius: 1.4rem;
  padding: 1.6rem 1.6rem 1.8rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
}

.contact-grid label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 0.25rem;
}

.contact-grid input,
.contact-grid textarea,
.contact-grid select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 0.9rem;
  border: 1px solid #e2e8f0;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  background: #f9fafb;
}

.contact-grid input:focus,
.contact-grid textarea:focus,
.contact-grid select:focus {
  border-color: #48cf0a;
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.3);
  background: #fff;
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.contact-row-full {
  margin-bottom: 0.9rem;
}

.contact-info {
  margin-top: 1.6rem;
  border-top: 1px dashed #e2e8f0;
  padding-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  font-size: 0.8rem;
}

.contact-info strong {
  display: block;
  margin-bottom: 0.18rem;
  font-size: 0.8rem;
}

.contact-info a {
  color: #b91c1c;
  font-weight: 600;
}

.contact-map {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  min-height: 320px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Footer ---------- */
.footer {
  background: radial-gradient(circle at top left, #47372d 0, #604d42 40%, #e0f2fe 100%);  color: #e5e7eb;
  color: #9ca3af;
  padding: 2.5rem 1.5rem 1.4rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  align-items: flex-start;
}

.footer-brand {
  font-size: 0.9rem;
}

.footer-brand h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  color: #e5e7eb;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  margin-top: 0.4rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.9);
  color: #e5e7eb;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 0.5rem;
}

.footer-links,
.footer-contact {
  font-size: 0.85rem;
}

.footer-links a {
  display: block;
  margin-bottom: 0.25rem;
  color: inherit;
}

.footer-links a:hover {
  color: #48cf0a;
}

.footer-contact a {
  display: block;
  margin-bottom: 0.2rem;
  color: #e5e7eb;
}

.footer-contact a:hover {
  color: #48cf0a;
}

.footer-bottom {
  max-width: 1120px;
  margin: 1.1rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(55, 65, 81, 0.7);
  font-size: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.footer-bottom a {
  color: #9ca3af;
}

.footer-bottom a:hover {
  color: #48cf0a;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .navbar-inner {
    padding-inline: 1.25rem;
  }

  .nav-links {
    position: fixed;
    inset: 0 0 auto 0;
    top: 60px;
    flex-direction: column;
    padding: 1.2rem 1.5rem 1.5rem;
    background: rgba(15, 23, 42, 0.98);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .nav-links a {
    color: #e5e7eb;
  }

  .nav-links-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .about-inner,
  .services-layout,
  .why-us-grid,
  .additional-services,
  .areas-inner,
  .contact-grid,
  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    order: -1;
  }

  .hero-badge,
  .about-tag {
    position: static;
    margin-top: 0.7rem;
  }

  .additional-services ul {
    grid-template-columns: minmax(0, 1fr);
  }

  .areas-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-info {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  section {
    padding-inline: 1.25rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .areas-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

