/* =========================================================
   CANDEUR KUKATPALLY — DESIGN TOKENS
   Signature element: "The Skyline Thread" — a gold vertical
   line with tower notches tracking scroll, echoing the
   high-rise silhouette that defines this project.
   ========================================================= */
:root {
  --primary: #0e3b2e;
  --primary-dark: #082820;
  --primary-tint: #123f31;
  --accent: #c9a227;
  --accent-light: #e4c767;
  --bg: #ffffff;
  --bg-light: #f8f8f8;
  --text: #333333;
  --text-soft: #5c6660;
  --cream-line: rgba(201, 162, 39, 0.28);
  --radius-lg: 20px;
  --radius-md: 16px;
  --shadow-soft: 0 20px 50px rgba(14, 59, 46, 0.1);
  --shadow-deep: 0 30px 70px rgba(8, 40, 32, 0.35);
  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  margin: 0;
  color: var(--primary);
}
p {
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.container,
.container-fluid {
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.eyebrow {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.eyebrow--light {
  color: var(--accent-light);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.25;
  /* max-width: 760px; */
}
.section-title--light {
  color: #fff;
}
.section-head {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section-head .section-title {
  margin: 0 auto;
  margin-bottom: 1em;
}
.section-copy {
  margin-top: 1.25rem;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 520px;
}

section {
  padding: clamp(70px, 9vw, 120px) 0;
  position: relative;
}

/* copy-pending placeholders — visually distinct, never mistaken for real copy */
.copy-pending {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: #9a7a15;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 0.15rem 0.6rem;
}

/* image placeholders */
.hero__placeholder-img,
.about__placeholder-img,
.homes__placeholder-img,
.masterplan__placeholder,
.gallery__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  height: 100%;
  background: url(banner.png) center/cover no-repeat;
  color: rgba(255, 255, 255, 0.55);
  border-radius: inherit;
}
.hero {
  height: 100vh;
}

.hero__media {
  width: 100%;
  height: 100%;
  background: url("banner.png") center center/cover no-repeat;
}

@media (max-width: 768px) {
  .hero__media {
    background-image: url("mobile.png");
  }
}
.hero__placeholder-img i,
.about__placeholder-img i,
.homes__placeholder-img i,
.masterplan__placeholder i,
.gallery__placeholder i {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.35);
}
.hero__placeholder-img .copy-pending,
.masterplan__placeholder .copy-pending,
.gallery__placeholder .copy-pending {
  background: rgba(0, 0, 0, 0.25);
  color: #eecd6c;
  border-color: rgba(238, 205, 108, 0.6);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease),
    color 0.35s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(120deg, var(--accent-light), var(--accent) 60%, #a9820f);
  color: #12210f;
  box-shadow: 0 12px 30px rgba(201, 162, 39, 0.35);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(201, 162, 39, 0.45);
}
.btn-outline-light-gold {
  border: 1px solid var(--accent-light);
  color: #fff;
  background: transparent;
}
.btn-outline-light-gold:hover {
  background: rgba(228, 199, 103, 0.12);
  transform: translateY(-3px);
}
.btn-primary-dark {
  background: var(--primary);
  color: #fff;
}
.btn-primary-dark:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}
.btn-call {
  border: 1px solid rgba(201, 162, 39, 0.6);
  color: var(--accent);
  padding: 0.6rem 1.2rem;
}
.btn-register {
  background: var(--accent);
  color: #12210f;
  padding: 0.7rem 1.4rem;
}
.btn-register:hover {
  background: var(--accent-light);
}

/* =========================================================
   SKYLINE THREAD — signature scroll element (desktop)
   ========================================================= */
.skyline-thread {
  position: fixed;
  left: 28px;
  top: 0;
  height: 100vh;
  width: 40px;
  z-index: 900;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.skyline-thread__svg {
  position: absolute;
  left: 10px;
  top: 0;
  height: 100%;
  width: 20px;
}
.skyline-thread__track {
  stroke: rgba(14, 59, 46, 0.14);
  stroke-width: 2;
  fill: none;
}
.skyline-thread__fill {
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  transition: stroke-dashoffset 0.1s linear;
}
.skyline-thread__notches {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 78vh;
  margin: 11vh 0;
  pointer-events: auto;
}
.notch {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: #fff;
  border: 1.5px solid rgba(14, 59, 46, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(14, 59, 46, 0.35);
  font-size: 0.65rem;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}
.notch:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.notch.is-active {
  background: var(--primary);
  border-color: var(--accent);
  color: var(--accent-light);
  transform: scale(1.18);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
}
.skyline-thread-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(14, 59, 46, 0.12);
  z-index: 1050;
  display: none;
}
.skyline-thread-mobile__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.1s linear;
}
@media (max-width: 991px) {
  .skyline-thread {
    display: none;
  }
  .skyline-thread-mobile {
    display: block;
  }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition:
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    padding 0.4s var(--ease);
  padding: 14px 0;
}
.site-header .navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-mark {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: #fff;
}
.brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--accent-light);
  margin-top: 2px;
}
.site-header.is-scrolled {
  background: rgba(8, 40, 32, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
}
.site-header .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 0.3rem 0 !important;
}
.site-header .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--accent-light);
  transition: width 0.3s var(--ease);
}
.site-header .nav-link:hover::after {
  width: 100%;
}
.navbar-toggler {
  border: none;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.toggler-line {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 120px;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__placeholder-img {
  border-radius: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 25, 20, 0.55) 0%,
    rgba(8, 25, 20, 0.75) 55%,
    rgba(8, 25, 20, 0.96) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.hero__title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.hero__title span {
  color: var(--accent-light);
  font-style: italic;
}
.hero__subtitle {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1.1rem;
}
.hero__desc {
  max-width: 520px;
  margin: 1.6rem auto 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hero__floating-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1080px;
  margin: 4rem auto 0;
  padding: 0 1.5rem;
}
.floating-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(228, 199, 103, 0.25);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  padding: 1.4rem 1rem;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  transition:
    transform 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.floating-card i {
  font-size: 1.4rem;
  color: var(--accent-light);
}
.floating-card span {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.4;
}
.floating-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-light);
}

.hero__scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
}
.hero__scroll-cue span {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--accent-light);
  border-radius: 2px;
  margin: 7px auto;
  animation: scrollcue 1.8s infinite;
}
@keyframes scrollcue {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  70% {
    transform: translateY(14px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .hero__floating-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about__image-wrap {
  position: relative;
}
.about__placeholder-img {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.about__frame {
  position: absolute;
  top: 22px;
  left: 22px;
  right: -22px;
  bottom: -22px;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about__stats {
  display: flex;
  gap: 2.2rem;
  margin-top: 2.4rem;
  flex-wrap: wrap;
}
.about__stat {
  display: flex;
  flex-direction: column;
  width: 100px;
  text-align: center;
}
.about__stat strong {
  font-family: auto;
  font-size: 3rem;
  color: var(--primary);
}
.about__stat span {
  font-size: 0.75rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

/* =========================================================
   WHY CANDEUR
   ========================================================= */
.why-candeur {
  background: var(--primary);
}
.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(228, 199, 103, 0.16);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.6rem;
  text-align: center;
  height: 100%;
  transition:
    transform 0.4s var(--ease),
    background 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.feature-card i {
  font-size: 1.8rem;
  color: var(--accent-light);
  margin-bottom: 1.1rem;
  display: block;
}
.feature-card h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
}
.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--accent-light);
}

/* =========================================================
   PROJECT HIGHLIGHTS
   ========================================================= */
.highlight-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 2rem 1rem;
  text-align: center;
  height: 100%;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    background 0.4s var(--ease);
}
.highlight-card i {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 0.9rem;
  display: block;
  transition: color 0.4s var(--ease);
}
.highlight-card span {
  font-size: 0.85rem;
  font-weight: 500;
}
.highlight-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-soft);
  background: #fff;
}
.highlight-card:hover i {
  color: var(--accent);
}

/* =========================================================
   MASTER PLAN
   ========================================================= */
.masterplan {
  position: relative;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(8, 30, 24, 0.86), rgba(8, 30, 24, 0.92)),
    radial-gradient(circle at 30% 20%, #123f31, #082014 70%);
  background-attachment: fixed;
}
.masterplan__placeholder {
  max-width: 820px;
  aspect-ratio: 16/9;
  margin: 2.6rem auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(228, 199, 103, 0.25);
}

/* =========================================================
   AMENITIES — glassmorphism
   ========================================================= */
.amenities {
  background: var(--bg-light);
}
.glass-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 30px rgba(14, 59, 46, 0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 2rem 1rem;
  text-align: center;
  height: 100%;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.glass-card i {
  font-size: 1.7rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}
.glass-card h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
}
.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

/* =========================================================
   HOMES
   ========================================================= */
.homes__placeholder-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* =========================================================
   LOCATION
   ========================================================= */
.location__map-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.location-card {
  background: #fff;
  border: 1px solid rgba(14, 59, 46, 0.08);
  border-radius: var(--radius-md);
  padding: 1.3rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease);
  height: 100%;
}
.location-card i {
  color: var(--accent);
  font-size: 1.15rem;
}
.location-card span {
  font-size: 0.9rem;
  font-weight: 500;
}
.location-card:hover {
  transform: translateX(6px);
  border-color: var(--accent);
}

/* =========================================================
   WHY KUKATPALLY
   ========================================================= */
.why-kukatpally {
  background: var(--primary-dark);
}
.info-card {
  padding: 1.8rem 1rem;
  text-align: center;
  height: 100%;
  border-left: 1px solid rgba(228, 199, 103, 0.18);
}
.info-card i {
  font-size: 1.5rem;
  color: var(--accent-light);
  margin-bottom: 0.9rem;
  display: block;
}
.info-card h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery__masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px;
  gap: 1rem;
  margin-top: 2.5rem;
}
.gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  grid-row: span 1;
}
.gallery__item--tall {
  grid-row: span 2;
}
.gallery__item--wide {
  grid-column: span 2;
}
.gallery__item .gallery__placeholder {
  transition: transform 0.5s var(--ease);
}
.gallery__item:hover .gallery__placeholder {
  transform: scale(1.06);
}
.gallerySwiper {
  margin-top: 2.5rem;
}
.gallerySwiper .swiper-slide {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.gallerySwiper .swiper-pagination-bullet-active {
  background: var(--accent);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 20, 16, 0.94);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.is-open {
  display: flex;
}
.lightbox__stage {
  width: min(900px, 90vw);
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 28px;
  color: #fff;
  font-size: 1.5rem;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 1.6rem;
  padding: 1rem;
}
.lightbox__nav--prev {
  left: 12px;
}
.lightbox__nav--next {
  right: 12px;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  background: var(--primary);
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(228, 199, 103, 0.16);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  max-width: 640px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}
.testimonial-card__stars {
  color: var(--accent-light);
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
}
.testimonial-card p {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
}
.testimonial-card__person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.6rem;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
}
.testimonial-card__person div {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-size: 0.82rem;
}
.testimonial-card__person span {
  color: rgba(255, 255, 255, 0.6);
}
.testimonialSwiper .swiper-pagination-bullet-active {
  background: var(--accent-light);
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  text-align: center;
  color: #fff;
}
.final-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 2.2rem;
}
.final-cta__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #071b15;
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 30px;
}
.brand-mark--footer {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.brand-mark--footer span {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  color: var(--accent-light);
  margin-top: 4px;
}
.site-footer h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.site-footer ul li {
  margin-bottom: 0.65rem;
  font-size: 0.88rem;
}
.site-footer ul li a:hover {
  color: var(--accent-light);
}
.footer__social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.3rem;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(228, 199, 103, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.footer__social a:hover {
  background: var(--accent);
  color: #12210f;
  border-color: var(--accent);
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 3rem;
  padding-top: 1.8rem;
  font-size: 0.8rem;
  text-align: center;
}

/* =========================================================
   FLOATING STICKY CTAs
   ========================================================= */
.floating-stack {
  position: fixed;
  right: 26px;
  bottom: 36px;
  z-index: 950;
  flex-direction: column;
  gap: 0.8rem;
}
.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease);
  position: relative;
}
.floating-btn:hover {
  transform: scale(1.08);
}
.floating-btn--enquire {
  background: var(--accent);
  color: #12210f;
  width: auto;
  padding: 0 1.3rem;
  border-radius: 30px;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.floating-btn--whatsapp {
  background: #25d366;
}
.floating-btn--call {
  background: var(--primary);
}

.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
}
.mobile-sticky-bar a,
.mobile-sticky-bar button {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.7rem 0;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--primary);
  border-right: 1px solid #eee;
}
.mobile-sticky-bar a:last-child,
.mobile-sticky-bar button:last-child {
  border-right: none;
}
.mobile-sticky-bar i {
  font-size: 1.05rem;
}
.mobile-sticky-bar button {
  background: var(--accent);
  color: #12210f;
}

/* =========================================================
   POPUP / MODAL
   ========================================================= */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 20, 16, 0.72);
  backdrop-filter: blur(4px);
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}
.popup-overlay.is-open {
  display: flex;
}
.popup {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.6rem;
  width: 100%;
  max-width: 460px;
  position: relative;
  box-shadow: var(--shadow-deep);
  max-height: 92vh;
  overflow-y: auto;
}
.popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.2rem;
  color: var(--text-soft);
}
.popup__header {
  text-align: center;
  margin-bottom: 1.6rem;
}
.popup__header h3 {
  font-size: 1.5rem;
}
.popup__sub {
  color: var(--text-soft);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}
.popup .form-control,
.popup .form-select {
  border-radius: 10px;
  border: 1px solid #e2e2e2;
}
.popup .form-control:focus,
.popup .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}
.popup .form-floating label {
  color: #999;
}
.popup__disclaimer {
  font-size: 0.72rem;
  color: #999;
  text-align: center;
  margin-top: 0.9rem;
}

.popup--thankyou {
  text-align: center;
  max-width: 400px;
}
.thankyou__icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.thankyou__icon i {
  color: var(--accent);
}
.popup--thankyou h3 {
  margin-bottom: 0.6rem;
}
.popup--thankyou p {
  color: var(--text-soft);
  margin-bottom: 1.6rem;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991px) {
  .gallery__masonry {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery__item--wide {
    grid-column: span 2;
  }
  section {
    padding: 60px 0;
  }
  .about__frame {
    display: none;
  }
}
@media (max-width: 767px) {
  body {
    padding-bottom: 64px;
  } /* room for mobile sticky bar */
  .floating-stack {
    display: none !important;
  }
  .site-header .navbar-collapse {
    background: var(--primary-dark);
    margin-top: 1rem;
    border-radius: 14px;
    padding: 1rem;
  }
}
.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

.navbar-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.site-header.scrolled .navbar-logo {
  height: 48px;
}

@media (max-width: 991px) {
  .navbar-logo {
    height: 50px;
  }
}

@media (max-width: 576px) {
  .navbar-logo {
    height: 42px;
  }
}
