:root {
  --ink: #18212f;
  --muted: #667085;
  --line: #e6eaf0;
  --paper: #ffffff;
  --soft: #f7f9fc;
  --teal: #0f9f8f;
  --blue: #2457e6;
  --green: #19b36b;
  --gold: #f3b23a;
  --shadow: 0 22px 70px rgba(24, 33, 47, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(230, 234, 240, 0.7);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-text {
  font-size: 1.25rem;
  letter-spacing: 0;
}

.brand-text span {
  color: var(--teal);
}

.logo-mark {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 12px 28px rgba(36, 87, 230, 0.24);
}

.logo-roof {
  width: 22px;
  height: 22px;
  border-left: 5px solid #fff;
  border-top: 5px solid #fff;
  transform: rotate(45deg) translate(2px, 2px);
}

.logo-door {
  position: absolute;
  bottom: 10px;
  width: 13px;
  height: 15px;
  border-radius: 3px 3px 0 0;
  background: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 8px;
  color: #364152;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: #eef4ff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--soft);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #eef6f5;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.8) 42%, rgba(15,159,143,0.12) 100%),
    url("https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.25;
}

.hero-copy,
.about-copy p,
.contact-intro {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(36, 87, 230, 0.25);
}

.btn.secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 620px;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid rgba(230, 234, 240, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.hero-stats strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.88rem;
}

.property-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 0;
  color: var(--muted);
}

.panel-top strong {
  color: var(--ink);
}

.property-visual {
  position: relative;
  height: 380px;
  margin: 26px;
  border-radius: 8px;
  background: linear-gradient(160deg, #dff7ef 0%, #e8f0ff 48%, #fff2d2 100%);
  overflow: hidden;
}

.property-visual::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  background: linear-gradient(90deg, #0f9f8f, #2457e6);
}

.building {
  position: absolute;
  bottom: 58px;
  border-radius: 8px 8px 0 0;
}

.tower-one {
  left: 48px;
  width: 120px;
  height: 230px;
  background: repeating-linear-gradient(0deg, #fff 0 15px, #cbd9ff 15px 25px);
}

.tower-two {
  right: 56px;
  width: 138px;
  height: 280px;
  background: repeating-linear-gradient(0deg, #fff 0 18px, #bfeee6 18px 30px);
}

.home-shape {
  left: 42%;
  width: 150px;
  height: 140px;
  background: #fff;
  box-shadow: 0 16px 30px rgba(24, 33, 47, 0.1);
}

.home-shape::before {
  content: "";
  position: absolute;
  left: 18px;
  top: -48px;
  width: 112px;
  height: 112px;
  background: var(--gold);
  transform: rotate(45deg);
  border-radius: 8px;
}

.quick-card {
  display: flex;
  gap: 14px;
  margin: 0 26px 26px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 33, 47, 0.08);
}

.quick-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(25, 179, 107, 0.13);
}

.about {
  background: var(--paper);
}

.split-layout,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 16px;
}

.about-copy p {
  margin-bottom: 0;
}

.services {
  background: var(--soft);
}

.centered {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(24, 33, 47, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(24, 33, 47, 0.1);
}

.service-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
  font-weight: 800;
}

.service-card:nth-child(2) .service-icon {
  background: var(--blue);
}

.service-card:nth-child(3) .service-icon {
  background: var(--green);
}

.service-card:nth-child(4) .service-icon {
  background: var(--gold);
  color: var(--ink);
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.rich-content {
  background: #fff;
}

.rich-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.rich-grid .section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.rich-list {
  display: grid;
  gap: 16px;
}

.rich-list div,
.faq-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(24, 33, 47, 0.05);
}

.rich-list p,
.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-areas {
  background: linear-gradient(180deg, #f7f9fc 0%, #fff 100%);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.area-tags span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  background: #fff;
  color: #364152;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(24, 33, 47, 0.05);
}

.faq {
  background: var(--soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact {
  background:
    linear-gradient(90deg, rgba(24, 33, 47, 0.9), rgba(24, 33, 47, 0.72)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #fff;
}

.contact .eyebrow,
.contact-intro {
  color: #a4eee5;
}

.contact-box {
  display: grid;
  gap: 12px;
}

.contact-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.contact-line span {
  color: #c8d0dc;
  font-weight: 700;
}

.contact-line strong {
  text-align: right;
}

.site-footer {
  padding: 26px 0;
  background: #111827;
  color: #cbd5e1;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-inner a {
  color: #fff;
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: #20ba64;
  box-shadow: 0 16px 36px rgba(32, 186, 100, 0.35);
  font-weight: 800;
}

.whatsapp-icon {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.whatsapp-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .section-pad {
    padding: 76px 0;
  }

  .hero-grid,
  .split-layout,
  .contact-grid,
  .rich-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 36px;
  }

  .service-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .navbar {
    width: min(100% - 24px, 1180px);
    height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 76px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 20px;
  }

  .hero-stats,
  .service-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .property-visual {
    height: 300px;
    margin: 18px;
  }

  .tower-one {
    left: 26px;
    width: 92px;
    height: 190px;
  }

  .tower-two {
    right: 24px;
    width: 98px;
    height: 226px;
  }

  .home-shape {
    left: 36%;
    width: 120px;
    height: 116px;
  }

  .home-shape::before {
    left: 16px;
    top: -38px;
    width: 88px;
    height: 88px;
  }

  .quick-card,
  .panel-top {
    margin-left: 18px;
    margin-right: 18px;
  }

  .contact-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .contact-line strong {
    text-align: left;
  }

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

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 0 14px;
  }
}
