:root {
  --brand: #f29d28;
  --brand-dark: #d97904;
  --ink: #111827;
  --muted: #5f6878;
  --line: #e8ecf3;
  --soft: #fff7ec;
  --blue: #0f3b68;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wide { max-width: 1240px; }
.section { padding: 86px 0; }
.section.alt { background: #f8fafc; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
}
.eyebrow:before {
  content: "";
  width: 32px;
  height: 3px;
  border-radius: 99px;
  background: var(--brand);
}
.section-title {
  max-width: 760px;
  margin: 14px 0 34px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 800;
}
.top-strip {
  background: #111827;
  color: #fff;
  font-size: 14px;
}
.top-strip .wide {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.top-left, .top-social { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.top-left a, .top-social a { color: #fff; opacity: .92; }
.top-left i { color: var(--brand); margin-right: 8px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .08);
}
.main-nav { background: #fff; }
.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand img { width: 190px; max-height: 54px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav-links > a, .nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1f2937;
  font-weight: 600;
  transition: color .2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand-dark); }
.nav-dropdown--compact > a {
  font-size: 21px;
  font-weight: 800;
  color: #202938;
}
.nav-dropdown--compact > a i {
  font-size: 12px;
  margin-top: 2px;
}
.nav-chevron {
  font-size: 13px;
  line-height: 1;
}
.nav-cta, .btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  border: 0;
  color: #111827;
  background: var(--brand);
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(242, 157, 40, .28);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
  font-weight: 700;
}
.nav-toggle {
  display: none;
  border: 0;
  background: var(--soft);
  color: var(--brand-dark);
  width: 44px;
  height: 44px;
  border-radius: 8px;
}
.nav-dropdown { position: relative; }
.mega-menu {
  position: absolute;
  top: calc(100% + 22px);
  left: -30px;
  width: 620px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 28px 60px rgba(15, 23, 42, .16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}
.mega-menu--compact {
  width: 360px;
  grid-template-columns: 1fr;
  left: -18px;
}
.mega-menu--compact a {
  display: block;
}
.mega-menu--split {
  width: min(760px, calc(100vw - 40px));
  left: -120px;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 16px;
  padding: 0;
  overflow: hidden;
}
.mega-menu__groups {
  padding: 14px;
  background: #fff;
  border-right: 1px solid var(--line);
  max-height: 430px;
  overflow-y: auto;
}
.mega-menu__groups span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 8px;
  color: #1f2937;
  font-weight: 700;
}
.mega-menu__groups span:after {
  content: "›";
  color: var(--brand-dark);
}
.mega-menu__groups span.active,
.mega-menu__groups span:hover {
  background: #fff7ec;
  color: var(--brand-dark);
}
.mega-menu__links {
  padding: 20px 22px;
  max-height: 430px;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
}
.mega-menu__section h4 {
  margin: 0 0 8px;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 800;
}
.mega-menu__links a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(232, 236, 243, .8);
}
.mega-menu__links a:hover {
  background: transparent;
}
.nav-dropdown:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu a { padding: 12px; border-radius: 10px; }
.mega-menu a:hover { background: var(--soft); }
.mega-menu strong { display: block; color: var(--ink); font-size: 15px; }
.mega-menu span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(10, 22, 38, .92), rgba(10, 22, 38, .55)), var(--hero-image);
  background-size: cover;
  background-position: center;
  color: #fff;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  max-width: 780px;
  margin: 16px 0 20px;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.02;
  font-weight: 800;
}
.hero p { max-width: 660px; color: #e5e7eb; font-size: 18px; line-height: 1.8; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-card {
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
}
.hero-card h3 { font-weight: 800; margin-bottom: 18px; }
.mini-form input, .mini-form textarea, .contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  margin-bottom: 12px;
  outline: none;
}
.stats-row {
  transform: translateY(-46px);
  position: relative;
  z-index: 2;
}
.stats-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .12);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.stat { padding: 28px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: 34px; color: var(--brand-dark); line-height: 1; }
.stat span { color: var(--muted); font-weight: 600; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card, .info-card, .blog-card, .testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover, .blog-card:hover { transform: translateY(-5px); box-shadow: 0 22px 45px rgba(15, 23, 42, .1); }
.service-card img, .blog-card img { width: 100%; height: 230px; object-fit: cover; }
.card-body { padding: 24px; }
.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}
.card-body h3 { font-weight: 800; font-size: 22px; margin-bottom: 12px; }
.card-body p { color: var(--muted); line-height: 1.7; }
.about-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-image {
  min-height: 530px;
  border-radius: 14px;
  overflow: hidden;
  background: #ddd;
}
.about-image img { width: 100%; height: 100%; min-height: 530px; object-fit: cover; }
.check-list { display: grid; gap: 13px; margin: 24px 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: #374151; font-weight: 600; }
.check-list i { color: var(--brand-dark); margin-top: 4px; }
.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 36px;
  align-items: start;
}
.service-detail-main {
  min-width: 0;
}
.service-detail-image {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 28px;
}
.service-detail-main h3,
.service-detail-sidebar h3 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 800;
}
.service-detail-main p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}
.service-detail-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 110px;
}
.service-detail-sidebar .contact-card a:not(.btn-main) {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.info-card { padding: 26px; }
.info-card .num { font-size: 42px; font-weight: 800; color: var(--brand); line-height: 1; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { padding: 24px; }
.stars { color: var(--brand); margin-bottom: 14px; }
.avatar-row { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.avatar-row img { width: 54px; height: 54px; object-fit: cover; border-radius: 50%; }
.cta-band {
  background: linear-gradient(120deg, var(--blue), #11233a);
  color: #fff;
  border-radius: 16px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.inner-hero {
  padding: 90px 0;
  background: linear-gradient(120deg, #fff7ec, #eef6ff);
}
.inner-hero h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 800; margin: 12px 0; }
.inner-hero p { max-width: 760px; color: var(--muted); font-size: 18px; line-height: 1.8; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid img { width: 100%; height: 240px; object-fit: cover; border-radius: 10px; }
.site-footer {
  background: #090f1a;
  color: #fff;
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.site-footer h3, .site-footer h4 { font-weight: 800; margin-bottom: 18px; }
.site-footer p, .site-footer a { color: #d1d5db; line-height: 1.8; display: block; margin-bottom: 8px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .08);
}
.footer-bottom {
  margin-top: 54px;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
  color: #cbd5e1;
}
.floating-call {
  position: fixed;
  right: 20px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #111827;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
  z-index: 40;
}
.float-button {
  position: fixed;
  right: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
  z-index: 90;
}
.float-button:hover {
  color: #fff;
  transform: translateY(-2px);
}
.whatsapp-btn {
  bottom: 92px;
  background: #25d366;
}
.call-btn {
  bottom: 24px;
  background: var(--brand);
  color: #111827;
}
.call-btn:hover {
  color: #111827;
}
.booking-call-fixed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 0;
  background: #111827;
  z-index: 89;
  box-shadow: 0 -10px 26px rgba(0, 0, 0, .18);
}
.booking-call-fixed .call-link {
  color: #fff;
  font-weight: 800;
}
.home-enquiry-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.home-enquiry-popup.is-open {
  display: flex;
}
.home-enquiry-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, .62);
  backdrop-filter: blur(1px);
}
.home-enquiry-popup__dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 44px);
  overflow-y: auto;
  background: #fff;
  border-radius: 18px;
  padding: 34px 38px 38px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
  text-align: center;
}
.home-enquiry-popup__close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: 0;
  background: transparent;
  color: #111827;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.home-enquiry-popup__brand img {
  max-width: 156px;
  max-height: 86px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.home-enquiry-popup__eyebrow {
  margin: 10px 0 8px;
  color: #4b5563;
  font-size: 18px;
}
.home-enquiry-popup h2 {
  margin: 0 0 26px;
  color: #111827;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
}
.home-enquiry-popup__form {
  display: grid;
  gap: 14px;
}
.home-enquiry-popup__form input,
.home-enquiry-popup__form select {
  width: 100%;
  height: 62px;
  border: 1px solid #dedede;
  border-radius: 999px;
  padding: 0 26px;
  background: #fff;
  color: #111827;
  font-size: 20px;
  outline: 0;
}
.home-enquiry-popup__form input::placeholder {
  color: #8b8b8b;
}
.home-enquiry-popup__form select {
  appearance: auto;
}
.home-enquiry-popup__form button {
  height: 64px;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
  margin-top: 12px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, .08);
}
.form-alert {
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 14px;
  font-weight: 700;
}
.form-alert.success {
  background: #ecfdf5;
  color: #047857;
}
.form-alert.error {
  background: #fef2f2;
  color: #b91c1c;
}

@media (max-width: 991px) {
  .top-strip { display: none; }
  .nav-inner { min-height: 72px; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; }
  .nav-cta { display: none; }
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 24px 22px;
    background: #fff;
    box-shadow: 0 22px 38px rgba(15, 23, 42, .12);
  }
  .nav-links.open { display: flex; }
  .nav-links > a, .nav-dropdown > a { padding: 12px 0; }
  .mega-menu { position: static; width: 100%; box-shadow: none; opacity: 1; visibility: visible; transform: none; grid-template-columns: 1fr; display: none; }
  .nav-dropdown:hover .mega-menu { display: grid; }
  .hero { min-height: auto; padding: 80px 0; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .stats-box, .process-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 58px 0; }
  .brand img { width: 154px; }
  .hero-card { padding: 22px; }
  .stats-row { transform: none; padding: 20px 0 0; }
  .stats-box, .card-grid, .testimonial-grid, .process-grid, .footer-grid, .gallery-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .cta-band { align-items: flex-start; flex-direction: column; padding: 28px; }
  .home-enquiry-popup__dialog { padding: 30px 18px 24px; }
  .home-enquiry-popup h2 { font-size: 24px; }
  .home-enquiry-popup__form input,
  .home-enquiry-popup__form select {
    height: 54px;
    font-size: 16px;
    padding: 0 18px;
  }
}
