/* ════ Krishna Group Vadodara - Homepage Stylesheet ════ */

/* ─── NAVBAR OVERRIDE (Transparent Overlay) ─────────────────── */
.site-header {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: #0d1b36;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 156px 160px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--green);
}
.hero-title {
  font-family: var(--ff);
  font-size: clamp(52px, 4vw, 90px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 20px;
  max-width: 700px;
}
.hero-title em {
  font-style: italic;
  color: #e8b04a;
}
.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-hero-primary {
  background: var(--white);
  color: var(--body);
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: var(--pill);
  border: none;
  cursor: pointer;
  transition: var(--t);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.btn-hero-primary .material-icons-round {
  font-size: 18px;
}
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: var(--pill);
  border: none;
  cursor: pointer;
  transition: var(--t);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid var(--white);
}
.btn-hero-outline .material-icons-round {
  font-size: 18px;
}
.hero-slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 215px 156px 160px;
  opacity: 0;
  transition: opacity 0.8s ease 0.2s;
  pointer-events: none;
}
.hero-slide.active .hero-slide-content {
  opacity: 1;
  pointer-events: all;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    105deg,
    rgba(13, 27, 54, 0.85) 0%,
    rgba(13, 27, 54, 0.55) 50%,
    rgba(13, 27, 54, 0.15) 100%
  ); */background: linear-gradient(105deg, rgb(13 27 54 / 46%) 0%, rgba(13, 27, 54, 0.55) 50%, rgba(13, 27, 54, 0.15) 100%);
}
.hero-bar {
  display: none !important;
}
.hero-arrow-btn {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: rgba(13, 27, 54, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--white);
}
.hero-arrow-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-50%) scale(1.08);
  /* box-shadow: 0 8px 24px rgba(232, 160, 32, 0.3); */
}
.hero-arrow-btn:active {
  transform: translateY(-50%) scale(0.95);
}
.hero-arrow-btn.prev {
  left: 32px;
}
.hero-arrow-btn.next {
  right: 32px;
}
.hero-arrow-btn .material-icons-round {
  font-size: 22px;
}

.hero-bar-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  /* background: rgba(13, 27, 54, 0.3); */
  /* padding: 8px 16px; */
  /* border-radius: 30px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1); */
}
.hero-bar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-bar-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}
.hero-bar-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--green);
}

@media (max-width: 768px) {
  .hero-arrow-btn {
    width: 40px;
    height: 40px;
    top: 60%;
  }
  .hero-arrow-btn.prev {
    left: 16px;
  }
  .hero-arrow-btn.next {
    right: 16px;
  }
  .hero-arrow-btn .material-icons-round {
    font-size: 18px;
  }
  .hero-bar-dots {
    bottom: 24px;
  }
}

/* ─── CATEGORIES ─────────────────────────────────────────────── */
.categories {
  padding: 40px 0 48px;
  background: var(--white);
}
.cat-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cat-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.cat-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00afef;
  margin-bottom: 16px;
}
.cat-eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #e8a020;
}
.cat-title {
  font-family: var(--ff);
  font-size: clamp(32px, 2.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark2);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.cat-title span {
  color: #e8a020;
}
.cat-desc {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 24px;
  /* max-width: 540px; */
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
  width: 100%;
  max-width: 540px;
}
.about-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.about-stat-item:hover {
  background: var(--white);
  border-color: #e8a020;
  box-shadow: 0 10px 25px rgba(232, 160, 32, 0.08);
  transform: translateY(-2px);
}
.stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(232, 160, 32, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon .material-icons-round {
  font-size: 20px;
  color: #e8a020;
}
.stat-number {
  font-family: var(--ff);
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 2px;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.img-floating-card {
  position: absolute;
  bottom: 24px;
  left: -32px;
  background: rgba(13, 27, 54, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}
.floating-icon {
  width: 44px;
  height: 44px;
  background: #e8a020;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
}
.floating-icon .material-icons-round {
  font-size: 24px;
}
.floating-title {
  font-family: var(--ff);
  font-size: 18px;
  font-weight: 800;
  color: #e8a020;
}
.floating-desc {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cat-hero-img {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  aspect-ratio: 16/11;
}
.cat-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.6s ease;
}
/* .cat-hero-img:hover img {
  transform: scale(1.03);
} */
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0d1b36;
  color: var(--white);
  font-family: var(--ff);
  font-size: 1vw;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--pill);
  border: none;
  cursor: pointer;
  transition: background var(--t);
}
.btn-green:hover {
  background: var(--green-dk);
}
.btn-green .material-symbols-outlined {
  font-size: 1.1vw;
}
.cat-hero-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16/10;
}
.cat-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cat-bottom-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cat-sub-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.cat-sub-card.large {
  aspect-ratio: 2/1;
}
.cat-sub-card.small {
  aspect-ratio: 1/1.05;
}
.cat-sub-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cat-sub-card:hover img {
  transform: scale(1.06);
}
.cat-sub-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    transparent 65%
  );
}
.cat-sub-card.large .cat-sub-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.08) 45%,
    transparent 70%
  );
}
.cat-sub-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px;
}
.cat-sub-name {
  font-family: var(--ff);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}
.cat-sub-card.small .cat-sub-name {
  font-size: 14px;
}
.cat-sub-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-top: 6px;
  max-width: 340px;
}
.cat-sub-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity var(--t),
    transform var(--t);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.cat-sub-card:hover .cat-sub-arrow {
  transform: translate(2px, -2px);
}
.cat-sub-arrow .material-icons-round {
  font-size: 18px;
  color: var(--dark);
}

/* ─── PROPERTIES GRID ────────────────────────────────────────── */
.properties {
  padding: 2vw 0;
  background: var(--white);
}
.sec-head {
  text-align: center;
  margin-bottom: 1vw;
}
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00afef;
  margin-bottom: 0.5vw;
}
.sec-eyebrow::before,
.sec-eyebrow::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 2px;
  background: #e8a020;
}
.sec-title {
  font-family: var(--ff);
  font-size: clamp(20px, 2.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--dark);
  margin-bottom: 10px;
}
.sec-title span {
  color: #00afef;
}
/* .sec-sub {
    font-size: 15px;
    color: var(--muted);
  } */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 44px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.filter-btn {
  background: var(--white);
  color: #0d1b36;
  border: 1.5px solid var(--green);
  border-radius: var(--pill);
  font-family: var(--ff);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 12px 32px;
  cursor: pointer;
  transition: all var(--t);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.filter-btn:hover {
  background: rgba(232, 160, 32, 0.08);
}
.filter-btn.active {
  background: var(--green);
  color:black;
  border-color: var(--green);
}
.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.prop-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition:
    box-shadow var(--t),
    transform var(--t);
  cursor: pointer;
}
.prop-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.prop-img {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
}
.prop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.prop-card:hover .prop-img img {
  transform: scale(1.05);
}
.prop-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t);
}
.prop-card:hover .prop-arrow {
  opacity: 1;
}
.prop-arrow .material-icons-round {
  font-size: 18px;
  color: var(--dark);
}
.prop-body {
  padding: 18px 20px 20px;
}
.prop-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}
.prop-name {
  font-family: var(--ff);
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
}
.prop-price-badge {
  position: absolute;
  top: 14px;
  left: 27px;
  background: #ffffff;
  color: var(--body);
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--pill);
  white-space: nowrap;
  z-index: 5;
}
.prop-addr {
  font-size: clamp(14px, 1vw, 16px);;
  color: var(--body);
  margin-bottom: 14px;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.prop-addr .material-icons-round {
  font-size: 16px;
  color: var(--dark);
  margin-top: 2px;
}
.prop-specs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.prop-specs-left {
  display: flex;
  gap: 16px;
}
.prop-spec {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 14px;
  color: var(--body);
  font-weight: 600;
}
.prop-visit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 800;
  color: var(--white);
  background: #0d1b36;
  padding: 10px 20px;
  border-radius: var(--pill);
  /* text-transform: uppercase;  */
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.prop-card:hover .prop-visit-btn {
  /* background: var(--green); */
  color: var(--white);
}
.prop-visit-btn .material-icons-round,
.prop-visit-btn .material-symbols-outlined {
  font-size: 16px;
  color: var(--white);
  transition: transform 0.2s ease;
}
.prop-card:hover .prop-visit-btn .material-icons-round,
.prop-card:hover .prop-visit-btn .material-symbols-outlined {
  transform: translateX(3px);
}
.prop-spec .material-icons-round,
.prop-spec .material-symbols-outlined {
  font-size: 16px;
  color: var(--dark);
  margin-top: 2px;
}

/* ─── FEATURED PROPERTY ──────────────────────────────────────── */
.featured {
  padding: 80px 0;
  background: var(--surface);
}
.feat-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.feat-slider {
  position: relative;
}
.feat-img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/4.2;
}
.feat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feat-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 16px;
  pointer-events: none;
}
.feat-nav-btn {
  width: 44px;
  height: 44px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: background var(--t);
}
.feat-nav-btn:hover {
  background: #222;
}
.feat-nav-btn .material-icons-round {
  font-size: 20px;
  color: var(--white);
}
.feat-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}
.feat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}
.feat-dot.active {
  background: var(--green);
}
.feat-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 14px;
}
.feat-title {
  font-family: var(--ff);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--dark);
  margin-bottom: 8px;
}
.feat-addr {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}
.feat-addr .material-icons-round {
  font-size: 15px;
}
.feat-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.feat-perks {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.feat-perk {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feat-perk-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feat-perk-icon .material-icons-round {
  font-size: 18px;
  color: var(--dark);
}
.feat-perk-title {
  font-family: var(--ff);
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 2px;
}
.feat-perk-desc {
  font-size: 13px;
  color: var(--muted);
}
.feat-cta {
  display: flex;
  align-items: center;
  gap: 28px;
}
.feat-price {
  font-family: var(--ff);
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
}
.feat-price-lbl {
  font-size: 12px;
  color: var(--muted);
}

/* ─── BLOG ───────────────────────────────────────────────────── */
.blog {
  padding: 80px 0;
  background: var(--white);
}
.blog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.blog-sec-title {
  font-family: var(--ff);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--dark);
}
.blog-sec-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--pill);
  border: none;
  cursor: pointer;
  transition: background var(--t);
  white-space: nowrap;
}
.btn-dark:hover {
  background: #222;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  cursor: pointer;
}
.blog-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 14px;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-img img {
  transform: scale(1.04);
}
.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.blog-title {
  font-family: var(--ff);
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
}
.blog-date {
  font-size: 12px;
  color: var(--muted);
}
.blog-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--pill);
  border: 1px solid var(--border);
  color: var(--muted);
}

/* ─── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 25, 0.65);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 72px 40px;
  max-width: 680px;
}
.cta-title {
  font-family: var(--ff);
  font-size: clamp(24px, 4vw, 46px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 32px;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--dark);
  font-family: var(--ff);
  font-size: 14px;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: var(--pill);
  border: none;
  cursor: pointer;
  transition: var(--t);
}
.btn-cta:hover {
  background: #f0f0f0;
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq {
  padding: 2vw 0;
  background: var(--white);
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.faq-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  aspect-ratio: 1/1;
}
.faq-img {
  border-radius: var(--r-lg);
  overflow: hidden;
}
.faq-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faq-title {
  font-family: var(--ff);
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--dark);
  margin-bottom: 10px;
}
.faq-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.faq-features {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 24px;
}
.faq-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.faq-feature-icon {
  flex-shrink: 0;
}
.faq-feature-icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: brightness(0) invert(15%);
}
.faq-feature-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-feature-title {
  font-family: var(--ff);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}
.faq-feature-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── RESPONSIVE HOMEPAGE SECTIONS ────────────────────────── */
@media (min-width: 1024px) and (max-width: 1280px) {
  .hero-slide-content {
    padding: 180px 100px 120px;
  }
  .hero-title {
    font-size: 52px;
  }
  .hero-desc {
    font-size: 15px;
    margin-bottom: 24px;
  }
  
  .categories {
    padding: 20px 0;
  }
  .cat-top-row {
    gap: 30px;
  }
  .cat-title {
    font-size: 34px;
    margin-bottom: 14px;
  }
  
  .properties {
    padding: 20px 0;
  }
  .props-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .prop-body {
    padding: 16px 16px 18px;
  }
  .prop-name {
    font-size: 15px;
  }
  .prop-addr {
    font-size: 13px;
    margin-bottom: 12px;
  }
  .prop-specs-left {
    gap: 12px;
  }
  .prop-spec {
    font-size: 12px;
    gap: 4px;
  }
  .prop-visit-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .faq-inner {
    gap: 40px;
  }
  .faq-title {
    font-size: 32px;
  }
  .faq-features {
    gap: 24px;
  }

  .container {
    margin: 0 auto;
    
    padding: 0vw 0vw;

}
.faq {
    padding: 20px 0;
   

}}

@media (max-width: 1023px) {
  .cat-top-row,
  .feat-inner,
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cat-bottom-row {
    grid-template-columns: 1fr;
  }
  .cat-bottom-right {
    grid-template-columns: 1fr 1fr;
  }
  .props-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .specs-bar {
    left: 20%;
  }
}
@media (max-width: 768px) {
  .hero-body {
    padding: 100px 20px 200px;
  }
  .hero-slide-content {
    padding: 100px 24px 140px;
  }
  .hero-title {
    font-size: 48px;
  }
  .props-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .cat-bottom-row {
    grid-template-columns: 1fr;
  }
  .cat-bottom-right {
    grid-template-columns: 1fr;
  }
  .specs-bar {
    left: 0;
    right: 0;
    border-radius: 0;
  }
  .spec-item {
    padding: 16px 10px;
  }
  .blog-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .feat-inner {
    grid-template-columns: 1fr;
  }
  .faq-inner {
    grid-template-columns: 1fr;
  }
  .faq-imgs {
    aspect-ratio: auto;
  }
  .properties {
    padding: 20px;
  }
}

/* ─── COMMON AMENITIES SECTION ───────────────────────────────── */
.common-amenities-section {
  padding: 2vw 0 4vw;
  background: url('../images/hero/pattern-1.webp') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.common-amenities-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(244, 247, 251, 0.55);
  pointer-events: none;
}

.common-amenities-header {
  text-align: center;
  margin-bottom: 1.5vw;
  position: relative;
  z-index: 1;
}

.common-amenities-title {
  font-family: var(--ff);
  font-size: 2.5vw;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 1vw;
  margin-top: 0.8vw;
}

.common-amenities-title span {
  color: #00afef;
}

.common-amenities-subtitle {
  font-size: 1.05vw;
  color: var(--body);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* Grid */
.common-amenities-grid {
  display: flex;
  justify-content: center;
  gap: 2vw;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Individual amenity card */
.amenity-card {
  background: #ffffff;
  border-radius: 1.2vw;
  padding: 2.5vw 2vw 2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2vw;
  width: calc(18% - 1vw);
  min-width: 150px;
  box-shadow: 0 4px 20px rgba(13, 27, 54, 0.07);
  border: 1px solid rgba(13, 27, 54, 0.07);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
   /* box-shadow: 0 12px 32px rgba(13, 27, 54, 0.13); */
  border-color: var(--dark2);
}

.amenity-card:hover {
  transform: translateY(-6px);
  /* box-shadow: 0 12px 32px rgba(13, 27, 54, 0.13); */
  border-color: var(--dark2);
}

/* Icon circle */
.amenity-icon-wrap {
  width: 5.5vw;
  height: 5.5vw;
  min-width: 64px;
  min-height: 64px;
  background: #e8f0f8;
  border-radius: 50%;
  border: 2px solid rgba(13, 59, 102, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
}
/* .amenity-card */
.amenity-card:hover  {
  /* background: #daeaf6; */
  border-color: rgba(13, 59, 102, 0.35);
  transform: scale(1.08);
}

.amenity-icon-wrap img {
  width: 55%;
  height: 55%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(15%) sepia(60%) saturate(900%) hue-rotate(193deg) brightness(88%) contrast(110%);
  transition: filter 0.3s ease;
}

.amenity-card:hover .amenity-icon-wrap img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(60%) saturate(900%) hue-rotate(193deg) brightness(88%) contrast(110%);
}

/* Label */
.amenity-label {
  font-family: var(--ff);
  font-size: 1vw;
  font-weight: 700;
  color: #0d1b36;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

/* ─── AMENITIES RESPONSIVE ───────────────────────────────────── */
@media (max-width: 991px) {
  .common-amenities-title {
    font-size: 3.5vw;
  }
  .common-amenities-subtitle {
    font-size: 1.8vw;
  }
  .amenity-card {
    width: calc(28% - 1.5vw);
    padding: 3vw 2vw;
    border-radius: 2vw;
  }
  .amenity-icon-wrap {
    width: 8vw;
    height: 8vw;
  }
  .amenity-label {
    font-size: 1.6vw;
  }
}

@media (max-width: 768px) {

.cat-desc {
    font-size: 4vw;
}

/* ─── SEC-HEAD responsive ─── */
.sec-head {
  margin-bottom: 4vw;
  padding: 0 4vw;
}
.sec-eyebrow {
  font-size: 2.8vw;
  gap: 8px;
  margin-bottom: 2vw;
}
.sec-eyebrow::before,
.sec-eyebrow::after {
  width: 20px;
}
.sec-title {
  font-size: clamp(18px, 26px, 32px);
  letter-spacing: -0.5px;
}

.prop-addr {
    font-size: 3.3vw;
}
    .prop-visit-btn {
    
    font-size: 3.2vw;
    }

.footer-links a {
  font-size: clamp(13px, 3.5vw, 16px);
}
.footer-social-links a {
  font-size: clamp(16px, 4.5vw, 20px);
}
.footer-cta-title {
  font-size: clamp(18px, 4.5vw, 26px);
}

.common-amenities-section {
  padding: 10vw 0 12vw;
}
.common-amenities-header {
  margin-bottom: 7vw;
}
.common-amenities-title {
  font-size: 6vw;
}
.common-amenities-subtitle {
  font-size: 3.5vw;
  max-width: 85vw;
}
.common-amenities-grid {
  gap: 4vw;
}
.amenity-card {
  width: calc(42% - 2vw);
  padding: 5vw 3vw 4vw;
  border-radius: 3vw;
  gap: 3vw;
}
.amenity-icon-wrap {
  width: 16vw;
  height: 16vw;
  min-width: unset;
  min-height: unset;
}
.amenity-label {
  font-size: 3.4vw;


}

.cat-hero-img img{
  border-radius: 0px;
}

.cat-hero-img{
  border-radius: 0px;
}




@media (max-width: 480px) {
  .common-amenities-title {
    font-size: 7vw;
  }
  .amenity-card {
    width: calc(42% - 2vw);
    padding: 6vw 3vw 5vw;
  }
  .amenity-icon-wrap {
    width: 18vw;
    height: 18vw;
  }
  .amenity-label {
    font-size: 3.8vw;
  }





}
}