/* =========================
   0) Variables + Reset
========================= */
:root {
  --main: #491c04;
  --main-2: #6b2a08;
  --text: #111827;
  --muted: #6b7280;
  --soft: #f6f3f1;
  --ring: rgba(73, 28, 4, 0.22);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
  --shadow2: 0 26px 80px rgba(0, 0, 0, 0.14);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    "Cairo",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      900px 320px at 70% 0%,
      rgba(73, 28, 4, 0.12),
      transparent 55%
    ),
    radial-gradient(
      700px 320px at 10% 10%,
      rgba(73, 28, 4, 0.08),
      transparent 55%
    ),
    linear-gradient(180deg, #fff, #fff 420px, #fafafa);
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

/* =========================
   1) Reveal Animation
========================= */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   2) Topbar
========================= */
.topbar {
  background: linear-gradient(90deg, var(--main), #2c1006);
  color: #fff;
  font-size: 14px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
}
.meta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0.95;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

/* =========================
   3) Header + Navbar
========================= */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(10px);
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    box-shadow 0.25s ease,
    background 0.25s ease;
}
header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.07);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.brand small {
  display: block;
  font-weight: 700;
  color: var(--muted);
  margin-top: -3px;
}

.logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: radial-gradient(
    120% 120% at 20% 20%,
    #9b3a0a 0%,
    var(--main) 52%,
    #2c1006 100%
  );
  box-shadow: 0 10px 24px rgba(73, 28, 4, 0.25);
  position: relative;
  overflow: hidden;
}
.logo::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );
  transform: rotate(18deg);
  animation: shine 5.5s linear infinite;
}
@keyframes shine {
  0% {
    transform: translateX(-30%) rotate(18deg);
  }
  100% {
    transform: translateX(30%) rotate(18deg);
  }
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
}
nav a {
  font-weight: 800;
  color: #111827;
  padding: 10px 12px;
  border-radius: 14px;
  transition: 0.2s ease;
}
nav a:hover {
  background: rgba(73, 28, 4, 0.06);
  color: var(--main);
}
nav a.active {
  background: rgba(73, 28, 4, 0.1);
  color: var(--main);
  border: 1px solid rgba(73, 28, 4, 0.14);
}

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  cursor: pointer;
  font-weight: 900;
  transition: 0.2s ease;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  user-select: none;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn.primary {
  background: linear-gradient(180deg, var(--main-2), var(--main));
  border-color: rgba(0, 0, 0, 0.02);
  color: #fff;
  box-shadow: 0 18px 44px rgba(73, 28, 4, 0.25);
}
.btn.ghost {
  border: 1px solid rgba(73, 28, 4, 0.18);
  background: rgba(73, 28, 4, 0.04);
  color: var(--main);
  box-shadow: none;
}
.btn.full {
  width: 100%;
  margin-top: 12px;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  cursor: pointer;
}

/* Mobile menu */
.mobileMenu {
  display: none;
  padding: 0 0 12px;
}
.mobileMenu.open {
  display: block;
}
.mobileMenu a {
  display: block;
  padding: 12px 12px;
  margin: 6px 0;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  font-weight: 900;
}
.mobileMenu a:hover {
  color: var(--main);
  border-color: rgba(73, 28, 4, 0.18);
}

/* =========================
   4) Hero (Card Layout)
========================= */
.hero {
  padding: 34px 0 0;
  position: relative;
  overflow: hidden;
}
.slider {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
  align-items: stretch;
}
.slideCard {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.slideCard::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 280px;
  background: radial-gradient(
    closest-side,
    rgba(73, 28, 4, 0.18),
    transparent 62%
  );
  transform: rotate(-6deg);
}
.heroTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(73, 28, 4, 0.06);
  color: var(--main);
  font-weight: 900;
  border: 1px solid rgba(73, 28, 4, 0.1);
}
.trustPill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-weight: 900;
  color: #111827;
}
.slideCard h1 {
  margin: 12px 0 10px;
  font-size: 42px;
  line-height: 1.12;
  position: relative;
  z-index: 1;
}
.slideCard p {
  margin: 0 0 18px;
  color: #4b5563;
  font-weight: 700;
  line-height: 1.9;
  position: relative;
  z-index: 1;
}
.heroBtns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.heroMini {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.miniCard {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}
.miniCard b {
  display: block;
  font-weight: 900;
}
.miniCard span {
  color: var(--muted);
  font-weight: 800;
}

/* Right side card */
.sideCard {
  border-radius: var(--radius);
  background: linear-gradient(180deg, #1b1b1c, #0d0d0f);
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  padding: 22px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.sideCard::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(closest-side, rgba(73, 28, 4, 0.55), transparent 62%),
    radial-gradient(closest-side, rgba(255, 255, 255, 0.1), transparent 60%);
  transform: translate(18%, -18%);
}
.statGrid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 14px;
}
.stat b {
  display: block;
  font-size: 20px;
}
.stat span {
  opacity: 0.86;
  font-weight: 800;
}

.badge {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1.8;
  font-weight: 700;
  opacity: 0.95;
}
.badgeTitle {
  display: block;
  margin-bottom: 4px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffb37a, #a24312);
  box-shadow: 0 10px 22px rgba(255, 179, 122, 0.22);
  margin-top: 7px;
  flex: 0 0 auto;
}
.ctaBox {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.ctaBox b {
  display: block;
  margin-bottom: 6px;
  font-weight: 900;
}
.ctaBox p {
  margin: 0 0 10px;
  opacity: 0.88;
  font-weight: 700;
  line-height: 1.85;
}

/* =========================
   5) Sections (Global)
========================= */
section {
  padding: 74px 0;
}
.sectionTitle {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.sectionTitle h2 {
  margin: 0;
  font-size: 32px;
  letter-spacing: 0.2px;
}
.sectionTitle p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.8;
  max-width: 520px;
}

/* =========================
   6) About
========================= */
.about {
  background: linear-gradient(180deg, #fff, var(--soft));
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.aboutGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
}
.aboutCard {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.lead {
  margin: 0;
  color: #374151;
  font-weight: 800;
  line-height: 1.95;
}
.list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 16px;
  background: rgba(73, 28, 4, 0.04);
  border: 1px solid rgba(73, 28, 4, 0.1);
}
.check {
  width: 24px;
  height: 24px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--main-2), var(--main));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex: 0 0 auto;
  box-shadow: 0 14px 30px rgba(73, 28, 4, 0.22);
}
.item b {
  display: block;
  font-weight: 900;
}
.item span {
  color: #4b5563;
  font-weight: 800;
}

.photo {
  border-radius: var(--radius);
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  background: url("imgs/about.jpg") center/cover no-repeat;
}

.photo .frame {
  position: absolute;
  inset: 18px;
  border-radius: calc(var(--radius) - 8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.photoOverlay {
  width: 100%;
}
.photo .tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 900;
  color: #fff;
}
.quote {
  margin-top: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 900;
  line-height: 1.9;
}
.quote small {
  display: block;
  opacity: 0.85;
  font-weight: 800;
  margin-top: 6px;
}

/* =========================
   7) Cards Grid (Services/Features)
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.07);
  transition: 0.18s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: -40% -40% auto -40%;
  height: 200px;
  background: radial-gradient(
    closest-side,
    rgba(73, 28, 4, 0.1),
    transparent 62%
  );
  transform: rotate(-8deg);
}
.card > * {
  position: relative;
  z-index: 1;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.1);
}
.icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(73, 28, 4, 0.06);
  border: 1px solid rgba(73, 28, 4, 0.12);
  color: var(--main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 10px;
}
.card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 900;
}
.card p {
  margin: 0;
  color: #4b5563;
  font-weight: 800;
  line-height: 1.9;
}
.more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--main);
  font-weight: 900;
}

/* =========================
   8) Blog Cards
========================= */
.blogCard {
  padding: 0;
  overflow: hidden;
}
.blogCover {
  height: 170px;
  background:
    radial-gradient(
      closest-side at 25% 25%,
      rgba(255, 255, 255, 0.3),
      transparent 62%
    ),
    linear-gradient(180deg, rgba(73, 28, 4, 0.25), rgba(0, 0, 0, 0.12)),
    linear-gradient(180deg, #1b1b1c, #0d0d0f);
  position: relative;
}
.blogCover::after {
  content: "";
  position: absolute;
  inset: auto -30% -60% -30%;
  height: 260px;
  background: radial-gradient(
    closest-side,
    rgba(73, 28, 4, 0.45),
    transparent 62%
  );
}
.blogBody {
  padding: 16px 18px 18px;
}
.blogTitle {
  margin: 10px 0 6px;
  font-weight: 900;
}
.metaRow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: #6b7280;
  font-weight: 900;
  font-size: 14px;
}

/* =========================
   9) Who We Are + FAQ
========================= */
.whoWeAre {
  background: linear-gradient(180deg, #fff, #f9f7f5);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.whoGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.whoCard {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.07);
}
.whoCard h3 {
  margin: 0 0 8px;
  color: var(--main);
  font-size: 20px;
  font-weight: 900;
}
.whoCard p {
  margin: 0;
  color: #4b5563;
  font-weight: 800;
  line-height: 1.9;
}
.whoCard ul {
  margin: 0;
  padding-right: 18px;
  color: #4b5563;
  font-weight: 800;
  line-height: 2;
}

.faqSection {
  background: linear-gradient(180deg, #f9f7f5, #fff);
}
.faqList {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.faqItem {
  background: #fff;
  border: 1px solid rgba(73, 28, 4, 0.14);
  border-radius: 16px;
  padding: 0 16px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
}
.faqItem summary {
  cursor: pointer;
  list-style: none;
  font-weight: 900;
  color: #111827;
  padding: 15px 28px 15px 0;
  position: relative;
}
.faqItem summary::-webkit-details-marker {
  display: none;
}
.faqItem summary::before {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--main);
  font-weight: 900;
  font-size: 24px;
  line-height: 1;
}
.faqItem[open] summary::before {
  content: "-";
}
.faqItem p {
  margin: 0 0 14px;
  color: #4b5563;
  font-weight: 800;
  line-height: 1.9;
}

/* =========================
   10) Contact
========================= */
.contact {
  background: linear-gradient(180deg, var(--soft), #fff);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.contactGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 16px;
  align-items: start;
}
form {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
label {
  display: block;
  font-weight: 900;
  margin: 10px 0 6px;
}
input,
textarea,
select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  outline: none;
  font-family: inherit;
  font-weight: 800;
  background: #fff;
}
input:focus,
textarea:focus {
  border-color: rgba(73, 28, 4, 0.45);
  box-shadow: 0 0 0 6px var(--ring);
}
textarea {
  min-height: 120px;
  resize: vertical;
}

.note {
  color: #6b7280;
  font-weight: 800;
  line-height: 1.9;
  background: rgba(73, 28, 4, 0.04);
  border: 1px solid rgba(73, 28, 4, 0.1);
  border-radius: var(--radius);
  padding: 18px;
}
.note h3 {
  margin: 0 0 6px;
  color: #111827;
  font-weight: 900;
}
.note .row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-weight: 900;
  color: #111827;
}
.divider {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
}
.divider b {
  display: block;
  margin-bottom: 6px;
  color: #111827;
}
.divider span {
  color: #4b5563;
  font-weight: 800;
}

.formMsg {
  margin: 12px 0 0;
  color: #065f46;
  font-weight: 900;
  display: none;
}

/* =========================
   11) Footer (ONLY New Layout)
========================= */
.siteFooter {
  background: linear-gradient(180deg, #0f0f10, #0b0b0c);
  color: #fff;
  padding: 46px 0 22px;
  margin-top: 40px;
}
.siteFooter .footTop {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: start;
}
.siteFooter .footerBrand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.siteFooter .footerLogo {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.siteFooter .numberLogo {
  height: 52px;
  opacity: 0.95;
}

.siteFooter .footerDesc {
  margin: 12px 0 14px;
  opacity: 0.86;
  font-weight: 800;
  line-height: 1.9;
  max-width: 560px;
}
.siteFooter .footTitle {
  display: block;
  margin: 8px 0 12px;
  font-weight: 900;
}

/* IMPORTANT: scope footer links so it doesn't clash with any .links in page */
.siteFooter .links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.siteFooter .links a {
  opacity: 0.9;
  font-weight: 900;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  transition: 0.2s ease;
}
.siteFooter .links a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* Social */
.siteFooter .social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.siteFooter .socialBtn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 900;
  transition: 0.2s ease;
}
.siteFooter .socialBtn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

/* bottom bar */
.siteFooter .footBottom {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.siteFooter .copy {
  margin: auto;
}

/* =========================
   12) Floating Buttons (WhatsApp + Call)
========================= */
.floatingBtns {
  position: fixed;
  left: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}
.floatBtn {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.2s ease;
}
.floatBtn:hover {
  transform: translateY(-3px);
}
.whatsappBtn {
  background: linear-gradient(180deg, #25d366, #128c7e);
}
.callBtn {
  background: linear-gradient(180deg, #6b2a08, #491c04);
}

/* =========================
   13) Hero Slider (FULLSCREEN option)
   If you use .heroSlider section
========================= */
.heroSlider {
  position: relative;
  min-height: 620px;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  isolation: isolate;
}
.heroBg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  opacity: 0;
  transition: opacity 0.9s ease;
  will-change: transform, opacity;
}
.heroBg.active {
  opacity: 1;
  animation: kenburns 7s ease-in-out both;
}
@keyframes kenburns {
  0% {
    transform: scale(1.08) translateY(0);
  }
  100% {
    transform: scale(1.16) translateY(-6px);
  }
}
.heroOverlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px 420px at 50% 32%,
      rgba(0, 0, 0, 0.22),
      transparent 65%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.42));
  z-index: 1;
}
.heroSlider::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 420px;
  background: radial-gradient(
    closest-side,
    rgba(255, 255, 255, 0.14),
    transparent 62%
  );
  z-index: 1;
  pointer-events: none;
}
.heroCenter {
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 92px 0 56px;
  position: relative;
  z-index: 2;
}
.heroBox {
  width: min(720px, 94%);
  text-align: center;
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 28px 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.38);
  transform: translateY(10px);
  opacity: 0;
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.heroBox.show {
  opacity: 1;
  transform: translateY(0);
}
.heroKicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.8px;
}
.heroTitle {
  margin: 14px 0 10px;
  color: #fff;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 900;
}
.heroDesc {
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  line-height: 1.95;
  max-width: 560px;
}
.heroDots {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.heroDot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: 0.22s ease;
  position: relative;
}
.heroDot::after {
  content: "";
  position: absolute;
  inset: -10px;
}
.heroDot.active {
  width: 30px;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.82);
}
.heroArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.2s ease;
  backdrop-filter: blur(8px);
}
.heroArrow:hover {
  transform: translateY(-50%) scale(1.03);
  background: rgba(0, 0, 0, 0.38);
}
.heroArrow.prev {
  right: 14px;
}
.heroArrow.next {
  left: 14px;
}

.heroStrip {
  position: relative;
  z-index: 2;
  margin-top: -28px;
  margin-bottom: 26px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.12);
  padding: 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* =========================
   14) Responsive (Keep at END)
========================= */
@media (max-width: 980px) {
  .slider {
    grid-template-columns: 1fr;
  }
  .aboutGrid {
    grid-template-columns: 1fr;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .whoGrid {
    grid-template-columns: 1fr 1fr;
  }
  .contactGrid {
    grid-template-columns: 1fr;
  }
  .slideCard h1 {
    font-size: 36px;
  }
  .actions .btn {
    padding: 9px 10px;
    border-radius: 12px;
    font-size: 13px;
  }
  .heroCenter {
    padding: 82px 0 54px;
  }
  .heroStrip {
    margin-top: -18px;
  }
}

@media (max-width: 720px) {
  nav ul {
    display: none;
  }
  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .topbar .container {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .meta {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }
  .pill {
    width: 100%;
    justify-content: space-between;
  }

  .heroMini {
    grid-template-columns: 1fr;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .whoGrid {
    grid-template-columns: 1fr;
  }

  /* optional: hide header action buttons on mobile */
  .actions a.btn {
    display: none;
  }

  /* Hero slider responsive */
  .heroSlider {
    min-height: 520px;
  }
  .heroCenter {
    min-height: 520px;
    padding: 74px 0 34px;
  }
  .heroBox {
    width: min(560px, 94%);
    padding: 18px 14px;
    border-radius: 16px;
  }
  .heroKicker {
    font-size: 11px;
    padding: 7px 10px;
  }
  .heroTitle {
    font-size: 28px;
    line-height: 1.2;
    margin: 10px 0 8px;
  }
  .heroDesc {
    font-size: 13px;
    line-height: 1.85;
    margin-bottom: 14px;
  }
  .heroArrow {
    display: none;
  }

  .heroStrip {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    margin-top: -14px;
    margin-bottom: 16px;
  }

  /* Footer */
  .siteFooter .footTop {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .siteFooter .footerLogo {
    height: 48px;
  }
  .siteFooter .footBottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
