/* ============================================================
   Noida Propertys - Main Stylesheet
   Author: Noida Propertys
   Version: 1.0
   ============================================================ */

/* ─── SKYVILLA DESIGN SYSTEM ───────────────────────────────── */
:root {
  --primary: #040618;
  --secondary: #ffffff;
  --bg: #F3F3F3;
  --text: #585960;
  --accent: #040618;
  --lime: #DCFF09;
  --white: #ffffff;
  --divider: rgba(4, 6, 24, .1);
  --dark-divider: rgba(255, 255, 255, .1);
  --radius: 20px;
  --font: 'DM Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1em;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

::selection {
  color: var(--primary);
  background: var(--lime);
}

::-webkit-scrollbar {
  width: 6px;
  background: var(--lime);
}

::-webkit-scrollbar-thumb {
  background: var(--lime);
}

::-webkit-scrollbar-track {
  background: var(--primary);
}

p {
  line-height: 1.6em;
  margin-bottom: 1.5em;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2em;
  color: var(--primary);
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

/* ─── PAGE SYSTEM ─── */
.page {
  display: none;
  animation: pgIn .4s ease both;
}

.page.active {
  display: block;
}

@keyframes pgIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── CONTAINERS ─── */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

@media(max-width:768px) {
  .container {
    padding: 0 20px;
  }
}

/* ─── BG SECTION (white card look) ─── */
.bg-section {
  background: var(--secondary);
  border-radius: var(--radius);
}

.dark-section {
  background: var(--primary);
  color: var(--white);
}

/* ─── BUTTONS ─── */
.btn-default {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--accent);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  padding: 15px 24px;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  overflow: hidden;
  transition: color .4s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-default::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: var(--lime);
  border-radius: 100px;
  width: 0;
  height: 100%;
  transition: width .4s ease;
  z-index: 0;
}

.btn-default:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-default:hover {
  color: var(--primary);
}

.btn-default .arr {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: transform .4s ease;
  font-size: 14px;
}

.btn-default:hover .arr {
  transform: translateY(-50%) rotate(45deg);
}

.btn-default .btn-text {
  position: relative;
  z-index: 1;
}

.btn-no-icon {
  padding-left: 24px;
  padding-right: 24px;
}

.btn-no-icon .arr {
  display: none;
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white .arr {
  color: var(--primary);
}

.btn-white:hover {
  color: var(--primary);
}

.btn-lime {
  background: var(--lime);
  color: var(--primary);
}

.btn-lime .arr {
  color: var(--primary);
}

.btn-lime:hover {
  color: var(--primary);
}

.readmore {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  transition: gap .3s ease, color .3s ease;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
}

.readmore .arr {
  width: 26px;
  height: 26px;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--primary);
  transition: transform .4s ease;
}

.readmore:hover .arr {
  transform: rotate(45deg);
}

.dark-section .readmore {
  color: var(--white);
}

/* ─── SUB TITLE ─── */
.sub-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  background: var(--bg);
  border-radius: 100px;
  padding: 7px 16px 7px 28px;
  margin-bottom: 14px;
}

.sub-title::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--lime);
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

.dark-section .sub-title {
  background: rgba(255, 255, 255, .1);
  color: var(--white);
}

.dark-section .sub-title::before {
  background: var(--lime);
}

.bg-section .sub-title {
  background: var(--bg);
}

/* ─── SECTION TITLE ─── */
.sec-title {
  margin-bottom: 40px;
}

.sec-title h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--primary);
  line-height: 1.15;
}

.sec-title h2 em {
  font-style: italic;
  font-weight: 500;
}

.sec-title h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--primary);
  line-height: 1.1;
}

.sec-title h1 em {
  font-style: italic;
}

.sec-title p {
  margin-top: 16px;
  line-height: 1.65;
}

.dark-section .sec-title h1,
.dark-section .sec-title h2,
.dark-section .sec-title p {
  color: var(--white);
}

/* ─── NAV ─── */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 16px 40px;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  box-shadow: 0 2px 20px rgba(4, 6, 24, .08);
  transition: border-radius .3s, box-shadow .3s;
}

.main-header.scrolled {
  padding: 0 40px;
}

.main-header.scrolled .header-inner {
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 4px 30px rgba(4, 6, 24, .12);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  text-decoration: none;
  flex-shrink: 0;
  cursor: pointer;
}

.brand-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.brand-icon svg {
  width: 44px;
  height: 44px;
}

.brand-text {
  font-size: .98rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.brand-text span {
  display: block;
  font-size: .52rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 0;
  flex-wrap: nowrap;
}

.nav-menu ul li button {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  padding: 9px 11px;
  border-radius: 8px;
  transition: color .2s;
  white-space: nowrap;
}

.nav-menu ul li button:hover,
.nav-menu ul li button.nav-active {
  color: var(--primary);
  font-weight: 600;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.header-phone {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: var(--lime);
  border-radius: 8px;
  border: none;
  flex-shrink: 0;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* mobile consult btn — hidden by default, shown on mobile */
.mob-consult-btn {
  display: none;
}

.mob-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--primary);
  z-index: 9999;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(4, 6, 24, .4);
  transition: right .35s cubic-bezier(.4, 0, .2, 1);
}

.mob-nav.open {
  display: flex;
  right: 0;
}

/* Backdrop */
.mob-nav.open::before {
  content: '';
  position: fixed;
  inset: 0;
  right: min(320px, 85vw);
  background: rgba(4, 6, 24, .6);
  backdrop-filter: blur(3px);
  z-index: -1;
}

.mob-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, .1);
  border: none;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.mob-close:hover {
  background: rgba(220, 255, 9, .2);
}

.mob-nav-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 70px 24px 32px;
  overflow-y: auto;
  gap: 0;
}

.mob-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  margin-bottom: 20px;
}

.mob-nav-logo .brand-icon {
  background: transparent;
}

.mob-nav-logo .brand-icon svg {
  width: 48px;
  height: 48px;
}

.mob-nav-logo-text {
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.1;
}

.mob-nav-logo-text span {
  display: block;
  font-size: .52rem;
  color: rgba(255, 255, 255, .4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

.mob-nav-inner button {
  font-family: var(--font);
  font-size: .97rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .75);
  background: none;
  border: none;
  cursor: pointer;
  padding: 13px 0;
  text-align: left;
  border-radius: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: color .2s, padding-left .2s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mob-nav-inner button:last-of-type {
  border-bottom: none;
}

.mob-nav-inner button:hover {
  color: var(--lime);
  padding-left: 6px;
}

.mob-nav-contact {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 140px;
  background: #040618;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* ── HERO BG IMAGE ── */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero-bg-2.jpg');
  background-size: cover;
  background-position: center center;
  opacity: 0.4;
  transform: scale(1.04);
  transition: transform 10s ease;
  z-index: 0;
}

.hero:hover .hero-bg-img {
  transform: scale(1);
}

/* dark overlay layers */
.hero-overlay-1 {
  display: none;
}

.hero-overlay-2 {
  display: none;
}

.hero-overlay-3 {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(4, 6, 24, .98) 100%);
  z-index: 0;
}

/* lime accent glow bottom-left */
.hero-glow {
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(220, 255, 9, .12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
  border-radius: 50%;
}

/* dot grid */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  padding-bottom: 80px;
}

.hero-left .sub-title {
  background: rgba(220, 255, 9, .12);
  color: rgba(255, 255, 255, .8);
}

.hero-left .sub-title::before {
  background: var(--lime);
}

.hero-left h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -.03em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-left h1 em {
  font-style: italic;
  color: var(--lime);
}

.hero-left p {
  color: rgba(255, 255, 255, .6);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btns .btn-default {
  padding: 15px 48px 15px 24px;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 3;
}

.stat-box {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
  padding: 24px 28px;
}

.stat-box h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: -.02em;
  line-height: 1;
}

.stat-box p {
  color: rgba(255, 255, 255, .6);
  margin: 6px 0 0;
  font-size: .9rem;
}

.hero-counter-bar {
  border-top: 1px solid var(--dark-divider);
  padding-top: 40px;
  margin-top: 20px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-counter-bar .hc {
  position: relative;
}

.hero-counter-bar .hc::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 0;
  height: 100%;
  width: 1px;
  background: var(--dark-divider);
  transform: rotate(8deg);
}

.hero-counter-bar .hc:last-child::after {
  display: none;
}

.hero-counter-bar .hc h4 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.hero-counter-bar .hc p {
  color: rgba(255, 255, 255, .5);
  margin: 5px 0 0;
  font-size: .85rem;
}

/* ─── SEARCH BAR ─── */
.search-wrap {
  background: var(--bg);
  padding: 0 40px;
}

.search-card {
  max-width: 1320px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(4, 6, 24, .1);
  padding: 28px 32px;
  display: flex;
  gap: 16px;
  align-items: flex-end;
  flex-wrap: wrap;
  transform: translateY(-50%);
  z-index: 10;
}

.sf {
  flex: 1;
  min-width: 150px;
}

.sf label {
  display: block;
  font-size: .71rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.sf select,
.sf input {
  width: 100%;
  border: 1.5px solid var(--divider);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: var(--font);
  font-size: .9rem;
  color: var(--primary);
  background: var(--bg);
  outline: none;
  transition: border-color .2s;
}

.sf select:focus,
.sf input:focus {
  border-color: var(--lime);
  background: var(--white);
}

/* ─── SECTION SPACING ─── */
.section {
  padding: 100px 0;
}

/* ─── SERVICES ─── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 50px;
}

.svc-item {
  position: relative;
  border-radius: 0;
  min-height: 380px;
  padding: 40px;
  overflow: hidden;
  border: 1px solid var(--divider);
}

.svc-item:nth-child(1) {
  border-radius: var(--radius) 0 0 0;
}

.svc-item:nth-child(2) {
  border-radius: 0;
}

.svc-item:nth-child(3) {
  border-radius: 0 var(--radius) 0 0;
}

.svc-item:nth-child(4) {
  border-radius: 0 0 0 var(--radius);
}

.svc-item:nth-child(5) {
  border-radius: 0;
}

.svc-item:nth-child(6) {
  border-radius: 0 0 var(--radius) 0;
}

/* bg overlay */
.svc-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg);
  transition: transform .5s ease;
  z-index: 0;
}

.svc-item:hover::before {
  transform: translate(100%, -100%);
}

/* hover bg image using emoji */
.svc-item-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .5s ease;
  z-index: 0;
}

.svc-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.svc-item-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 24, .58);
}

.svc-item:hover .svc-item-img {
  opacity: 1;
}

.svc-body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.svc-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
}

.svc-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--lime);
  border-radius: 50%;
  transform: scale(0);
  transition: transform .4s ease;
}

.svc-item:hover .svc-icon::before {
  transform: scale(1);
}

.svc-icon span {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: white !important;
  /* Forces icon color to white */
}

.svc-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  display: block;
}

.svc-item:hover .svc-icon span {
  filter: brightness(0);
}

.svc-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  transition: color .3s;
}

.svc-content p {
  font-size: .88rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
  transition: color .3s;
}

.svc-item:hover .svc-content h3,
.svc-item:hover .svc-content p {
  color: var(--white);
}

.svc-footer {
  border-top: 1px solid var(--divider);
  padding-top: 24px;
  transition: border-color .3s;
}

.svc-item:hover .svc-footer {
  border-color: var(--dark-divider);
}

.svc-item:hover .readmore {
  color: var(--white);
}

.svc-tag {
  display: inline-block;
  background: var(--lime);
  color: var(--primary);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

/* ─── PROPERTIES ─── */
.prop-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.pf-btn {
  padding: 9px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--divider);
  background: var(--white);
  color: var(--text);
  font-weight: 500;
  font-size: .85rem;
  cursor: pointer;
  font-family: var(--font);
  transition: all .2s;
}

.pf-btn.active,
.pf-btn:hover {
  background: var(--primary);
  color: var(--lime);
  border-color: var(--primary);
}

.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prop-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .3s;
  cursor: pointer;
}

.prop-card:hover {
  box-shadow: 0 20px 60px rgba(4, 6, 24, .12);
}

.prop-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.prop-img-inner {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform .6s ease;
}

.prop-card:hover .prop-img-inner {
  transform: scale(1.07);
}

/* gradient overlay on .prop-img not on img tag */
.prop-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 6, 24, 0) 40%, rgba(4, 6, 24, .5) 100%);
  pointer-events: none;
  z-index: 1;
}

.prop-type-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(4, 6, 24, .78);
  color: #fff;
  font-size: .68rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  z-index: 3;
}

.prop-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--lime);
  color: #040618;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 5px 14px;
  border-radius: 100px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  text-transform: uppercase;
}

.prop-fav {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--white);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-size: 14px;
  z-index: 3;
  transition: background .2s;
}

.prop-fav:hover {
  background: var(--bg);
}

/* modal image */
.modal-img {
  height: 230px;
  margin: 16px 28px;
  border-radius: 14px;
  overflow: hidden;
}

.modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.prop-body {
  padding: 20px 22px 22px;
}

.prop-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.prop-name {
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 10px;
}

.prop-loc {
  font-size: .82rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--divider);
}

.prop-meta {
  display: flex;
  gap: 16px;
  font-size: .8rem;
  color: var(--text);
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.prop-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.prop-actions {
  display: flex;
  gap: 8px;
}

.p-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  border: none;
  transition: all .2s ease;
  white-space: nowrap;
  text-align: center;
}

.p-btn-dark {
  background: var(--primary);
  color: var(--lime);
}

.p-btn-dark:hover {
  background: var(--lime);
  color: var(--primary);
}

.p-btn-wa {
  background: #25d366;
  color: #fff;
  border: 1px solid transparent;
}

.p-btn-wa:hover {
  background: #1da851;
}

.p-btn-wa:hover {
  background: #1da851;
}

/* ─── MODAL ─── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 24, .8);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(6px);
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 640px;
  width: 100%;
  max-height: 96vh;
  overflow: hidden;
  animation: pgIn .3s ease;
  display: flex;
  flex-direction: column;
}

/* header */
.modal-head {
  padding: 16px 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.modal-close {
  background: var(--bg);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  flex-shrink: 0;
}

.modal-close:hover {
  background: var(--lime);
}

/* image — shorter */
.modal-img {
  height: 175px;
  margin: 12px 20px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* body — no scroll */
.modal-body {
  padding: 0 20px 20px;
  overflow: hidden;
  flex: 1;
}

/* badge row */
.modal-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.modal-badge-row .prop-badge {
  position: static;
  display: inline-block;
}

.modal-badge-row .modal-type {
  font-size: .73rem;
  font-weight: 600;
  color: var(--text);
}

/* price + title */
.modal-price {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.modal-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 5px;
}

.modal-loc {
  color: var(--text);
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--divider);
  margin-bottom: 12px;
}

/* specs — compact row */
.modal-specs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.spec {
  background: var(--bg);
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center;
  flex: 1;
}

.spec .sv {
  font-weight: 700;
  font-size: .92rem;
  color: var(--primary);
  line-height: 1;
}

.spec .sk {
  font-size: .65rem;
  color: var(--text);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* description — 2 lines max */
.modal-desc {
  color: var(--text);
  font-size: .84rem;
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* features */
.modal-feats-label {
  font-size: .68rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 8px;
}

.feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.feat-tag {
  background: var(--bg);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: .74rem;
  font-weight: 600;
  border: 1px solid var(--divider);
}

/* actions */
.modal-actions {
  display: flex;
  gap: 8px;
}

.modal-actions .btn-default {
  flex: 1;
  justify-content: center;
  padding: 11px 10px;
  font-size: .82rem;
}

/* ─── WHY US (dark section) ─── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-nums {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--dark-divider);
}

.wn .nv {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: -.02em;
  line-height: 1.1;
}

.wn .nk {
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  margin-top: 8px;
}

.feat-list {
  list-style: none;
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.fi {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.fi-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.fi-text strong {
  display: block;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 3px;
  font-size: 1.05rem;
  line-height: 1.3;
}

.fi-text span {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.6;
}

/* Readability fixes for dark section feature list */
.dark-section .fi-text strong {
  color: var(--white);
}

.dark-section .fi-text span {
  color: rgba(255, 255, 255, .72);
}

/* award box */
.award-box {
  background: var(--lime);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 24px;
}

.award-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.award-box p {
  font-size: .85rem;
  color: var(--primary);
  opacity: .7;
  margin: 5px 0 0;
}

/* ─── PROCESS ─── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.step-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  transition: background .3s;
}

.step-card:hover,
.step-card.active {
  background: var(--primary);
}

.step-card:hover *,
.step-card.active * {
  color: var(--white) !important;
}

.step-card:hover .step-num,
.step-card.active .step-num {
  color: rgba(220, 255, 9, .2) !important;
}

.step-num {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(4, 6, 24, .1);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -.03em;
}

.step-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-card p {
  font-size: .85rem;
  line-height: 1.65;
  color: var(--text);
}

.step-arr {
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  z-index: 2;
  color: var(--primary) !important;
}

/* ─── TESTIMONIALS ─── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.testi {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.stars span {
  color: var(--lime);
  font-size: 16px;
}

.testi blockquote {
  color: var(--text);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--divider);
}

.av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--primary);
}

.testi-author span {
  font-size: .78rem;
  color: var(--text);
}

/* ─── CTA ─── */
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding: 70px 60px;
  background: var(--primary);
  border-radius: var(--radius);
}

.cta-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--white);
  max-width: 500px;
  letter-spacing: -.02em;
}

.cta-inner h2 em {
  font-style: italic;
  color: var(--lime);
}

.cta-inner p {
  color: rgba(255, 255, 255, .6);
  margin-top: 8px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--primary);
  padding: 130px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(220, 255, 9, .06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -.03em;
  margin-bottom: 14px;
}

.page-hero h1 em {
  color: var(--lime);
  font-style: italic;
}

.page-hero p {
  color: rgba(255, 255, 255, .6);
  max-width: 520px;
  font-size: .97rem;
  line-height: 1.65;
}

.breadcrumb-row {
  display: flex;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 18px;
  align-items: center;
  list-style: none;
  padding: 0;
}

.breadcrumb-row li button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .4);
  cursor: pointer;
  font-size: .8rem;
  font-family: var(--font);
  transition: color .2s;
}

.breadcrumb-row li button:hover {
  color: var(--lime);
}

.breadcrumb-row li::after {
  content: '›';
  margin-left: 8px;
  color: rgba(255, 255, 255, .2);
}

.breadcrumb-row li:last-child::after {
  display: none;
}

.breadcrumb-row li:last-child {
  color: rgba(255, 255, 255, .7);
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.ci {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.ci-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.ci strong {
  display: block;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 3px;
  font-size: .95rem;
}

.ci span {
  font-size: .87rem;
  color: var(--text);
  line-height: 1.5;
}

.form-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
}

.form-box h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fg {
  margin-bottom: 14px;
}

.fg label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  border: 1.5px solid var(--divider);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: .9rem;
  color: var(--primary);
  background: var(--bg);
  outline: none;
  transition: border-color .2s;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--lime);
  background: var(--white);
}

.fg textarea {
  resize: vertical;
}

.form-success {
  background: rgba(220, 255, 9, .15);
  border: 1.5px solid var(--lime);
  border-radius: 10px;
  padding: 16px;
  color: var(--primary);
  font-weight: 600;
  font-size: .9rem;
  display: none;
  margin-top: 14px;
  text-align: center;
}

/* ─── EMI ─── */
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.calc-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
}

.calc-box h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 26px;
}

.cr {
  margin-bottom: 22px;
}

.cr label {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .7px;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.cr label span {
  font-size: .87rem;
  letter-spacing: 0;
  color: var(--primary);
}

.cr input[type=range] {
  width: 100%;
  height: 4px;
  accent-color: var(--lime);
  cursor: pointer;
}

.emi-result {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 36px;
}

.emi-result h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
}

.emi-main {
  background: rgba(220, 255, 9, .1);
  border: 1px solid rgba(220, 255, 9, .2);
  border-radius: 14px;
  padding: 26px;
  text-align: center;
  margin-bottom: 20px;
}

.emi-main .ev {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: -.03em;
}

.emi-main .ek {
  font-size: .8rem;
  color: rgba(255, 255, 255, .6);
  margin-top: 4px;
}

.emi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.eb {
  background: rgba(255, 255, 255, .06);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.eb .bv {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.eb .bk {
  font-size: .73rem;
  color: rgba(255, 255, 255, .5);
  margin-top: 3px;
}

/* ─── ABOUT / TEAM ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow .3s;
}

.team-card:hover {
  box-shadow: 0 14px 40px rgba(4, 6, 24, .1);
}

.team-av {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--lime);
  margin: 0 auto 14px;
}

.team-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-card .desig {
  font-size: .78rem;
  color: var(--lime);
  background: var(--primary);
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 9px;
}

.team-card p {
  font-size: .82rem;
  color: var(--text);
}

.ms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.ms {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.ms .mv {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: -.02em;
}

.ms .mk {
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
  margin-top: 5px;
}

/* ─── BLOG ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .3s;
}

.blog-card:hover {
  box-shadow: 0 14px 40px rgba(4, 6, 24, .1);
}

.blog-img {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  position: relative;
  overflow: hidden;
}

.blog-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  transition: transform .5s ease;
}

.blog-card:hover .blog-img-inner {
  transform: scale(1.08);
}

.blog-body {
  padding: 22px 20px;
}

.blog-cat {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--lime);
  border-radius: 50px;
  padding: 3px 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 9px;
  line-height: 1.4;
}

.blog-body p {
  font-size: .84rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 14px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--text);
  padding-top: 14px;
  border-top: 1px solid var(--divider);
}

/* ─── FOOTER ─── */
footer {
  background: var(--primary);
  padding: 70px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}

.footer-brand p {
  font-size: .85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .5);
  margin: 14px 0 0;
  max-width: 240px;
}

.footer-col h5 {
  color: var(--white);
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 16px;
  letter-spacing: .3px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li button {
  color: rgba(255, 255, 255, .5);
  font-size: .85rem;
  transition: color .2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  padding: 0;
  text-align: left;
}

.footer-col ul li button:hover {
  color: var(--lime);
}

.footer-bottom {
  border-top: 1px solid var(--dark-divider);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .35);
}

.footer-btm-links button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .35);
  cursor: pointer;
  font-size: .8rem;
  font-family: var(--font);
  margin-left: 18px;
  transition: color .2s;
}

.footer-btm-links button:hover {
  color: var(--lime);
}

.social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.soc {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  border: none;
  transition: all .2s;
}

.soc:hover {
  background: var(--lime);
  color: var(--primary);
}

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 100px;
  font-size: .87rem;
  z-index: 99999;
  transform: translateY(80px);
  opacity: 0;
  transition: all .35s;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .1);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success {
  background: var(--lime);
  color: var(--primary);
}

.toast.error {
  background: #e65757;
  color: #fff;
}

/* ─── WA FLOAT ─── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 0;
  z-index: 9998;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  transition: transform .2s;
  text-decoration: none;
}

.wa-float svg {
  width: 26px;
  height: 26px;
}

.wa-float:hover {
  transform: scale(1.1);
}

/* ─── NO RESULTS ─── */
.no-res {
  display: none;
  text-align: center;
  padding: 60px 0;
}

.no-res .ico {
  font-size: 3rem;
  margin-bottom: 14px;
}

.no-res h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

/* ════════════════════════════════════════════
   RESPONSIVE — full device coverage
   ════════════════════════════════════════════ */

/* ── Tablet landscape 1100px ── */
@media(max-width:1100px) {
  .container {
    padding: 0 28px;
  }

  .header-inner {
    padding: 0 20px;
  }

  .header-phone {
    display: none;
  }

  .nav-menu ul li button {
    font-size: 12px;
    padding: 8px 8px;
  }

  /* hero */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-right {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
  }

  .stat-box {
    flex: 1;
    min-width: 160px;
    padding: 18px 20px;
  }

  .hero-counter-bar {
    gap: 24px;
  }

  /* grids */
  .props-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-item:nth-child(1) {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .svc-item:nth-child(2) {
    border-radius: 0;
  }

  .svc-item:nth-child(3) {
    border-radius: 0;
  }

  .svc-item:nth-child(4) {
    border-radius: 0;
  }

  .svc-item:nth-child(5) {
    border-radius: 0;
  }

  .svc-item:nth-child(6) {
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-arr {
    display: none;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .calc-wrap {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .section {
    padding: 70px 0;
  }

  .cta-inner {
    padding: 50px 40px;
  }
}

/* ── Switch to hamburger at 900px ── */
@media(max-width:900px) {
  .nav-menu {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .main-header {
    padding: 10px 20px;
  }

  .header-inner {
    padding: 0 18px;
    border-radius: 14px;
  }

  .main-header.scrolled {
    padding: 0 20px;
  }

  .main-header.scrolled .header-inner {
    border-radius: 0 0 14px 14px;
  }

  /* hide desktop consult, show mobile compact one */
  .header-cta .btn-default {
    display: none;
  }

  .mob-consult-btn {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: var(--lime);
    border: none;
    border-radius: 100px;
    font-family: var(--font);
    font-size: .78rem;
    font-weight: 700;
    padding: 9px 16px;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s;
  }

  .mob-consult-btn:hover {
    background: var(--lime);
    color: var(--primary);
  }
}

/* ── Tablet portrait 768px ── */
@media(max-width:768px) {
  .main-header {
    padding: 8px 14px;
  }

  .header-inner {
    padding: 0 14px;
    border-radius: 12px;
  }

  .main-header.scrolled {
    padding: 0 14px;
  }

  .main-header.scrolled .header-inner {
    border-radius: 0 0 12px 12px;
  }

  .navbar-brand {
    padding: 10px 0;
  }

  /* — MOBILE NAV panel — */
  .mob-nav {
    padding: 0;
    justify-content: flex-start;
    align-items: stretch;
  }

  .mob-nav-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 80px 28px 40px;
    overflow-y: auto;
  }

  .mob-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 0 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    margin-bottom: 24px;
  }

  .mob-nav-logo .brand-icon {
    background: transparent;
  }

  .mob-nav-logo .brand-icon svg {
    width: 48px;
    height: 48px;
  }

  .mob-nav-logo-text {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.1;
  }

  .mob-nav-logo-text span {
    display: block;
    font-size: .55rem;
    color: rgba(255, 255, 255, .4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
  }

  .mob-nav button {
    font-size: 1.05rem;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    border-radius: 0;
    text-align: left;
    width: 100%;
    justify-content: flex-start;
  }

  .mob-nav button:last-of-type {
    border-bottom: none;
  }

  .mob-nav-contact {
    margin-top: auto;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mob-close {
    top: 18px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

  /* — HERO — */
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 40px;
  }

  .hero-left h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-left p {
    font-size: .92rem;
    max-width: 100%;
  }

  .hero-btns {
    gap: 10px;
  }

  .hero-btns .btn-default {
    padding: 12px 44px 12px 18px;
    font-size: .85rem;
  }

  .hero-right {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .stat-box {
    flex: 1;
    min-width: 140px;
    padding: 16px 18px;
  }

  .stat-box h3 {
    font-size: 1.6rem;
  }

  .hero-counter-bar {
    gap: 20px;
    padding-top: 28px;
    margin-top: 16px;
    flex-wrap: wrap;
  }

  .hero-counter-bar .hc h4 {
    font-size: 1.4rem;
  }

  .hero-counter-bar .hc::after {
    display: none;
  }

  /* — SEARCH — */
  .search-wrap {
    padding: 0 20px;
  }

  .search-card {
    transform: none;
    margin: 0;
    border-radius: var(--radius);
    padding: 20px;
    flex-direction: column;
    gap: 12px;
  }

  .sf {
    min-width: 100%;
    flex: none;
  }

  .search-card .btn-default {
    width: 100%;
    justify-content: center;
  }

  /* — SECTIONS — */
  .section {
    padding: 56px 0;
  }

  .sec-title h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .page-hero {
    padding: 100px 0 50px;
  }

  .page-hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .svc-item:nth-child(n) {
    border-radius: var(--radius);
  }

  .svc-item {
    min-height: 300px;
    padding: 28px;
  }

  .props-grid {
    grid-template-columns: 1fr;
  }

  .steps-row {
    grid-template-columns: 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-nums {
    gap: 16px 28px;
  }

  .cta-inner {
    padding: 32px 24px;
    flex-direction: column;
    gap: 22px;
  }

  .cta-actions {
    flex-direction: column;
    gap: 10px;
  }

  .cta-actions .btn-default,
  .cta-actions a {
    width: 100%;
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .form-box {
    padding: 24px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .calc-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .calc-box {
    padding: 24px 20px;
  }

  .emi-result {
    padding: 24px 20px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .modal-box {
    margin: 10px;
    border-radius: 14px;
  }

  .modal-specs {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-actions .btn-default {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  footer {
    padding: 48px 0 22px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .footer-btm-links button {
    margin-left: 8px;
  }
}

/* ── Mobile 480px ── */
@media(max-width:480px) {
  .container {
    padding: 0 16px;
  }

  .header-inner {
    padding: 0 12px;
  }

  .search-wrap {
    padding: 0 16px;
  }

  /* hide mobile consult text on very small screens */
  .mob-consult-btn {
    font-size: .72rem;
    padding: 8px 12px;
  }

  .hero {
    padding: 88px 0 48px;
  }

  .hero-left h1 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .hero-right {
    flex-direction: column;
  }

  .stat-box {
    min-width: 100%;
  }

  .hero-counter-bar {
    gap: 16px;
  }

  .hero-counter-bar .hc h4 {
    font-size: 1.2rem;
  }

  .section {
    padding: 44px 0;
  }

  .page-hero {
    padding: 88px 0 40px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .ms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .props-grid,
  .blog-grid,
  .testi-grid,
  .steps-row,
  .svc-grid {
    grid-template-columns: 1fr;
  }

  .btn-default {
    font-size: .85rem;
    padding: 12px 44px 12px 18px;
  }

  .cta-inner h2 {
    font-size: 1.4rem;
  }

  .form-box {
    padding: 20px 16px;
  }

  .calc-box,
  .emi-result {
    padding: 20px 16px;
  }

  .emi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .modal-specs {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── MULTI-PAGE ANCHOR NAV ─── */
.nav-menu ul li a {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  display: block;
  padding: 9px 11px;
  border-radius: 8px;
  transition: color .2s;
  white-space: nowrap;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.nav-active {
  color: var(--primary);
  font-weight: 600;
}

.mob-nav-inner a {
  font-family: var(--font);
  font-size: .97rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color .2s, padding-left .2s;
}

.mob-nav-inner a:hover {
  color: var(--lime);
  padding-left: 6px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, .5);
  font-size: .85rem;
  text-decoration: none;
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: var(--lime);
}

.footer-btm-links a {
  color: rgba(255, 255, 255, .35);
  font-size: .8rem;
  font-family: var(--font);
  margin-left: 18px;
  text-decoration: none;
  transition: color .2s;
}

.footer-btm-links a:hover {
  color: var(--lime);
}

.soc {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}