@charset "UTF-8";
/* =======================================================
   SITE (merged + safely scoped)
   - Global components shared across pages
   - Page-specific blocks are namespaced under page classes
   - Compatible with site.js modules (IDs/classes aligned)
======================================================= */
/* Tokens */
:root {
  --bg: #141e31;
  /* global default background */
  --bg-soft: #121212;
  --text: #f2f2f2;
  --muted: #9a9a9a;
  --accent: #d84a63;
  /* rose/pink */
  --glass: rgba(0, 0, 0, 0.45);
}

/* এটা সরিয়ে দিন:
body { overflow-x: hidden; }
*/

@supports (overflow: clip) {
  body { overflow-x: clip; }
}
@supports not (overflow: clip) {
  html, body { overflow-x: hidden; }
}

html { scrollbar-gutter: stable both-edges; }

/* Base */
html, body {
  height: 100%;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Mobile adjustment: allow overflow on mobile */
@media (max-width: 768px) {
    body {
        overflow-x: visible;
    }
}

*, *::before, *::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

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

/* --------------------------------
   Navbar (shared)
--------------------------------- */
.custom-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  padding-block: 0.8rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color .35s ease, padding-block .35s ease, backdrop-filter .35s ease;
}

/* Brand (smoothly collapses on scroll) */
.custom-nav .brand {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.12em;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 240px;
  overflow: hidden;
  transition: max-width .35s ease, opacity .3s ease, transform .35s ease;
  will-change: max-width, opacity, transform;
}
.custom-nav.navbar-scrolled .brand {
  max-width: 0;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  visibility: hidden;
}

/* Optional: nicer background when scrolled */
.custom-nav.navbar-scrolled {
  padding-block: 0.6rem;
  /* background: rgba(0,0,0,0.85); */
  /* backdrop-filter: saturate(120%) blur(4px); */
  transition: background-color .35s ease, padding-block .35s ease, backdrop-filter .35s ease;
}

/* Search */
.search-pill {
  background: #1b1b1b;
  border: none;
  color: #ddd;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  transition: all 0.3s ease;
}
.search-pill::placeholder { color: #7e7e7e; }

/* Menu toggle + close buttons */
.menu-toggle,
.menu-close {
    background: transparent;
    border: 0;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .25rem .5rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-weight: bold;
    font-size: 24px;
}
.menu-toggle:hover,
.menu-close:hover { opacity: 0.85; }
.menu-close[hidden],
.menu-toggle[hidden] { display: none !important; }

/* Label visibility: mobile = bars only; desktop = text + bars */
/* Label/Bars visibility */
.menu-toggle .label { display: none; }         /* Mobile: hide text */
.menu-toggle .bars  { display: inline-block; } /* Mobile: show bars */

@media (min-width: 768px) {
  .menu-toggle .label { display: inline; margin-right: .5rem; } /* Desktop: show text */
  .menu-toggle .bars  { display: none; }                         /* Desktop: hide bars */
}

/* Hamburger bars */
.menu-toggle .bars,
#menuToggle .bars {
  position: relative;
  width: 18px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .menu-toggle .bars { margin-left: 0.5rem; }
}
.menu-toggle .bars::before,
.menu-toggle .bars::after,
#menuToggle .bars::before,
#menuToggle .bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}
.menu-toggle .bars::before { top: -6px; }
.menu-toggle .bars::after { top: 6px; }
.menu-toggle.active .bars {
  background: transparent;
}
.menu-toggle.active .bars::before {
  transform: rotate(45deg);
  top: 0;
}
.menu-toggle.active .bars::after {
  transform: rotate(-45deg);
  top: 0;
}

/* --------------------------------
   Overlay Menu
--------------------------------- */
#menuOverlay {
  position: fixed;
  inset: 0;
  z-index: 1400;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility 0s .28s;
}
#menuOverlay.open,
#menuOverlay[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .28s ease, visibility 0s 0s;
}

/* Drawer panel */
#menuOverlay .overlay-inner {
  position: absolute;
  right: 0; top: 0;
  height: 100%;
  width: min(420px, 92vw);
  background: #0a1428;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 20px 16px;
  box-shadow: -24px 0 48px rgba(0,0,0,.35);
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.22,.75,.25,1);
}
#menuOverlay.open .overlay-inner,
#menuOverlay[aria-hidden="false"] .overlay-inner {
  transform: translateX(0);
}

/* Overlay menu links */
#menuOverlay .overlay-menu { list-style: none; margin: 12px 0 0; padding: 0; }
#menuOverlay .overlay-menu li {
  margin: 6px 0;
  opacity: 0;
  transform: translateY(6px);
  transition: transform .35s ease, opacity .3s ease;
}
#menuOverlay.open .overlay-menu li,
#menuOverlay[aria-hidden="false"] .overlay-menu li { opacity: 1; transform: translateY(0); }
#menuOverlay .overlay-menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 12px 12px;
  border-radius: 12px;
  transition: background-color .2s ease, transform .1s ease;
}
#menuOverlay .overlay-menu a:hover { background: rgba(255,255,255,.08); }
#menuOverlay .overlay-menu a.active { background: rgba(255,255,255,.14); }

/* Close inside overlay */
#menuOverlay .overlay-close {
  position: absolute;
  top: 10px; right: 10px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  width: 40px; height: 40px;
  border-radius: 10px;
  cursor: pointer;
}
#menuOverlay .overlay-close:hover { background: rgba(255,255,255,.08); }

/* --------------------------------
   Navbar scroll shrink/hide
--------------------------------- */
/* Hide main nav links on scroll (keep search + toggle visible). Brand is animated, not display:none */
.custom-nav.navbar-scrolled .navbar-nav,
.custom-nav.navbar-scrolled .extra-links { display: none; }

/* Keep search + menu visible */
.custom-nav.navbar-scrolled .menu-toggle,
.custom-nav.navbar-scrolled .search-pill { display: inline-flex; }

/* Optional: add smooth transition for mobile paddings */
@media(max-width:768px){
  .custom-nav { padding-block: 0.6rem; }
  .custom-nav.navbar-scrolled { padding-block: 0.5rem; }
}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  .custom-nav,
  .custom-nav .brand,
  #menuOverlay,
  #menuOverlay .overlay-inner,
  #menuOverlay .overlay-menu li,
  .menu-toggle .bars,
  .menu-toggle .bars::before,
  .menu-toggle .bars::after {
    transition: none !important;
  }
}
/* --------------------------------
   Typo helpers (shared)
--------------------------------- */
.eyebrow {
    letter-spacing: 0.25em;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: bold;
}

.display-headline {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
}

.subline {
  margin-top: 1rem;
  font-weight: 500;
  color: #d8d8d8;
  letter-spacing: 0.06em;
}

.muted {
  color: var(--muted);
}

.divider-v {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.18);
  margin: 0 0.8rem;
}

/* --------------------------------
   Hero / Carousel (home or landing)
   Also compatible with JS: #nextPreview, #railProgress
--------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.carousel, .carousel-item {
  height: 100vh;
}

.carousel-item > img {
  width: 100%;
  height: 100%;
  filter: brightness(0.78);
}

.hero .carousel-caption {
  text-align: left;
  left: 6vw;
  right: auto;
  bottom: auto;
  top: 22vh;
  width: min(900px, 70vw);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 9%) 30%, #00000021 50%, rgb(0 0 0 / 9%) 70%, rgba(0, 0, 0, 0) 100%);
}

.next-preview, #nextPreview {
  position: absolute;
  right: 2vw;
  top: 9vh;
  width: min(24vw, 420px);
  height: 72vh;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.35);
  background: #111 center/cover no-repeat;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 992px) {
  .next-preview, #nextPreview {
    display: none;
  }
  .hero {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    }

  .hero .carousel-caption {
    left: 5vw;
    top: 26vh;
    width: 86vw;
  }

  .carousel, .carousel-item {
    height: 65vh;
    }
}
.hero-nav {
  position: absolute;
  right: 3.2vw;
  bottom: 5vh;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: linear-gradient(45deg, #000000, #00000033);
  border-radius: 50px;
}

.btn-round {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(216, 74, 99, 0.18);
  border: 1px solid rgba(216, 74, 99, 0.5);
  color: #fff;
  display: grid;
  place-items: center;
  transition: 0.25s;
}

.btn-round:hover {
  background: var(--accent);
}

.left-rail {
  position: absolute;
  left: 1.2rem;
  top: 100px;
  bottom: 110px;
  width: 34px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.rail-line {
  position: relative;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.18);
  margin: 0 auto;
}

.rail-progress, #railProgress {
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 0%;
  background: var(--accent);
  transition: height 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.rail-labels {
  position: absolute;
  left: 10px;
  top: -28px;
  bottom: -28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #bfbfbf;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}

.rail-labels span:first-child {
  transform: translateY(-2px);
}

.rail-labels span:last-child {
  transform: translateY(2px);
}
.section-land {
  position: relative;
  min-height: 60vh; /* smaller height for mobile */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #141e31;
}

.land-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.land-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.land-content {
  width: 100%;
  max-width: 600px; /* normal width */
  background: linear-gradient(180deg, rgb(0 0 0 / 27%), rgb(0 0 0 / 25%));
  padding: 1.5rem 2rem;
  text-align: center;
  border-radius: 8px;
}

.land-eyebrow {
  color: #b9b9b9;
  letter-spacing: 0.35em;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.land-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.land-desc {
  color: #d3d3d3;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.btn-corner {
  display: inline-block;
  color: #fff;
  margin-top: 1rem;
  padding: 0.75rem 1.4rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  transition: 0.3s ease;
}

.btn-corner:hover {
  background: rgba(6,11,21,0.25);
  color: #f5f5f5;
}

/* Responsive tweaks for very small screens */
@media (max-width: 480px) {
  .section-land {
    min-height: 50vh;
  }
  .land-title {
    font-size: 1.8rem;
  }
  .land-desc {
    font-size: 0.9rem;
  }
}

/* --------------------------------
   PASSION SECTION (shared)
--------------------------------- */
.section-passion {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
}

.passion-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.82);
}

.passion-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 clamp(16px,6vw,80px);
}

.passion-copy {
  max-width: 720px;
  background: var(--glass);
  padding: clamp(18px, 2.6vw, 26px) clamp(20px, 3vw, 32px);
  border-left: 3px solid var(--accent);
}

.passion-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: clamp(1.8rem, 4.6vw, 3.6rem);
  margin: 0 0 0.8rem;
}

.passion-sub {
  color: #e6e6e6;
  max-width: 56ch;
}

/* --------------------------------
   LAUNCHES GRID (shared)
--------------------------------- */
.section-launches {
  padding: 3rem 0 0;
  position: relative;
}

.heading-block {
  position: relative;
}

.bg-word {
  position: absolute;
  inset: 0;
  top: -36px;
  font-size: clamp(3rem, 22vw, 220px);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: #1b2a573b;
  letter-spacing: 0.02em;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: -1;
}

.with-lines {
  position: relative;
  display: inline-block;
  color: #cfcfcf;
}

.with-lines::before, .with-lines::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 10px;
}

.project-card {
  display: block;
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.25s;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.pc-img {
  aspect-ratio: 16/11;
  overflow: hidden;
}

.pc-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}

.project-card:hover .pc-img img {
  transform: scale(1.05);
}

.pc-meta {
  padding: 1.2rem 1.2rem 1.3rem;
  background: #172541;
}

.pc-meta .loc {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: #b9b9b9;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.pc-meta .name {
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
}

/* --------------------------------
   ABOUT + STAT (shared block)
--------------------------------- */
.section-about {
  padding: 3rem 0;
  position: relative;
}

.about-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.8vw, 2.6rem);
  margin-bottom: 1rem;
}

.about-photo {
  /* width: 50%; */
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-card {
  position: absolute;
  left: 8%;
  bottom: -6%;
  background: var(--accent);
  color: #fff;
  padding: clamp(14px, 2.4vw, 26px) clamp(18px, 3.2vw, 30px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.stat-card .big {
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 0.9;
}

.stat-card .small {
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  margin-top: 0.6rem;
}

@media (max-width: 992px) {
  .stat-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 1rem;
    display: inline-block;
  }
}
/* --------------------------------
   Scroll ring (shared) — supports #scrollRing and .scroll-ring
--------------------------------- */
#scrollRing, .scroll-ring {
  position: fixed;
  right: 10px;
  bottom: 60px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) 0%, rgba(255, 255, 255, 0.12) 0%);
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  z-index: 1200;
  cursor: pointer;
}

#scrollRing::before, .scroll-ring::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #0f0f0f;
}

#ringValue, .scroll-ring span {
  position: relative;
  z-index: 2;
  font-size: 0.9rem;
}

#scrollRing:hover, .scroll-ring:hover {
  filter: brightness(1.06);
}

/* --------------------------------
   Reveal on scroll (shared)
--------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* --------------------------------
   Footer (shared)
--------------------------------- */
.footer-section {
  background-color: #141e31;
  color: #fff;
  padding: 50px 0 20px;
  border-top: 5px solid #ff007f;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 100px;
  height: auto;
}

.footer-logo p {
  font-size: 0.8rem;
  margin-top: 10px;
  color: #aaa;
}

.footer-column h5 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-column h5::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #ff007f;
  margin-top: 5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-column ul li a:hover {
  color: #fff;
}

.footer-column p {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.footer-column p:hover {
  color: #fff;
  cursor: pointer;
}

.footer-bottom a {
  color: #ff007f;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* =======================================================
   PAGE: ABOUT (scoped)
======================================================= */
.page-about {
  --about-bg: #141e31;
  --about-panel: #151517;
  --about-text: #e9e9e9;
  --about-muted: #bdbdbd;
  --about-line: #2a2a2e;
  --about-accent: #ff007f;
  --about-container: 1200px;
  --about-shadow: 0 20px 60px rgba(0,0,0,.45);
  background: var(--about-bg);
  color: var(--about-text);
  font-family: "Karla", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.75;
}

.page-about .about-hero {
  position: relative;
  min-height: 80dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.page-about .about-hero__bg {
  position: absolute;
  inset: 0;
  filter: saturate(0.95) contrast(1.05);
}


.page-about .about-hero__content {
  position: relative;
  text-align: center;
  background: radial-gradient(#00000091, transparent);
}

.page-about .about-hero__eyebrow {
  color: #f2f2f2;
  opacity: 0.85;
  letter-spacing: 0.25em;
  font-family: "Josefin Sans", sans-serif;
  font-size: 25px;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.page-about .about-hero__eyebrow span {
  display: inline-block;
  width: 64px;
  height: 2px;
  background: var(--about-accent);
  opacity: 0.8;
}

.page-about .about-hero__title {
  margin: 0;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: clamp(42px, 8.5vw, 120px);
  color: #fff;
}

.page-about .about-story {
  position: relative;
  margin-top: -120px;
  padding-bottom: 80px;
}

.page-about .about-story__card {
  background: linear-gradient(180deg, rgba(10, 10, 33, 0.98), rgba(0, 0, 0, 0.98));
  border: 1px solid var(--about-line);
  border-radius: 14px;
  box-shadow: var(--about-shadow);
  padding: clamp(22px, 5vw, 48px);
}

.page-about .about-story__card p {
  color: var(--about-muted);
  font-size: 1.05rem;
  margin: 0 0 1.1rem;
}

.page-about .about-story__tagline {
  margin-top: 22px;
  display: grid;
  place-items: center;
  text-align: center;
}

.page-about .about-story__tagline span {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: "Josefin Sans", sans-serif;
  position: relative;
  padding: 10px 16px;
}

.page-about .about-story__tagline span::before,
.page-about .about-story__tagline span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 120px;
  height: 2px;
  background: var(--about-accent);
}

.page-about .about-story__tagline span::before {
  right: 100%;
  margin-right: 18px;
}

.page-about .about-story__tagline span::after {
  left: 100%;
  margin-left: 18px;
}

.page-about .about-chairman {
    position: relative;
    padding: clamp(50px, 10vw, 0px) 0;
    overflow: hidden;
}

.page-about .about-chairman__watermark {
  position: absolute;
  inset-inline: 50% auto;
  transform: translateX(-50%);
  top: 16px;
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(120px, 18vw, 240px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  opacity: 0.05;
  white-space: nowrap;
  pointer-events: none;
}

.page-about .about-chairman__grid {
  display: grid;
  gap: clamp(24px, 4vw, 56px);
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
}

.page-about .about-chairman__photo {
  margin: 0;
  background: #071023;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--about-line);
  box-shadow: var(--about-shadow);
}

.page-about .about-chairman__photo img {
  aspect-ratio: 3/4;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
}

.page-about .about-chairman__name {
  margin: 0 0 0.25rem;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.02em;
  font-size: clamp(22px, 2.2vw, 38px);
  font-weight: 600;
}

.page-about .about-chairman__role {
  color: var(--about-muted);
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.page-about .about-chairman__quote {
  position: relative;
  margin: 0;
  padding: 12px 0 12px 36px;
  color: #d7d7d7;
  font-style: italic;
  font-size: 1.05rem;
}

.page-about .about-chairman__quote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -8px;
  color: var(--about-accent);
  font-size: 46px;
  line-height: 1;
}

.page-about .about-chairman__quote::after {
  content: "”";
  color: var(--about-accent);
  margin-left: 6px;
}

@media (max-width: 980px) {
  .page-about .about-story {
    margin-top: -80px;
  }

  .page-about .about-chairman__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .page-about .about-story__tagline span::before,
.page-about .about-story__tagline span::after {
    width: 64px;
  }
}
/* =======================================================
   PAGE: CONTACT (scoped)
======================================================= */
.page-contact {
  --contact-bg: #141e31;
  --contact-panel: #172541;
  --contact-text: #e9e9e9;
  --contact-muted: #bdbdbd;
  --contact-line: #2a2a2e;
  --contact-accent: #ff007f;
  --contact-container: 1200px;
  --contact-shadow: 0 20px 60px rgba(0,0,0,.45);
  margin: 0;
  background: var(--contact-bg);
  color: var(--contact-text);
  font-family: "Karla", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.75;
}

.page-contact .contact-container {
  width: min(var(--contact-container), 92%);
  margin-inline: auto;
}

.page-contact *, .page-contact *::before, .page-contact *::after {
  box-sizing: border-box;
}

.page-contact img {
  max-width: 100%;
  display: block;
}

.page-contact a {
  color: var(--contact-accent);
  text-decoration: none;
}

.contact-visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Hero */
.page-contact .contact-hero {
  position: relative;
  min-height: 62dvh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.page-contact .contact-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 400px at -10% -20%, rgba(255, 255, 255, 0.06), transparent 60%), radial-gradient(1200px 400px at 110% 120%, rgba(255, 255, 255, 0.06), transparent 60%), linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
  pointer-events: none;
}

.page-contact .contact-hero__eyebrow {
  color: #f2f2f2;
  opacity: 0.9;
  letter-spacing: 0.25em;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.9rem;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.page-contact .contact-hero__eyebrow span {
  width: 80px;
  height: 2px;
  background: var(--contact-accent);
  display: inline-block;
}

.page-contact .contact-hero__title {
  margin: 0;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: clamp(42px,8vw,110px);
  color: #fff;
}

/* Info + map */
.page-contact .contact-primary {
  padding: clamp(28px, 6vw, 64px) 0;
}

.page-contact .contact-primary__grid {
  display: grid;
  gap: clamp(22px, 3vw, 46px);
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.page-contact .contact-card {
  background: var(--contact-panel);
  border: 1px solid var(--contact-line);
  border-radius: 14px;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: var(--contact-shadow);
}

.page-contact .contact-info__title {
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(18px, 2.2vw, 24px);
  margin: 0 0 8px;
}

.page-contact .contact-info__item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  margin-top: 14px;
}

.page-contact .contact-info__icon {
  font-size: 20px;
  line-height: 1.2;
}

.page-contact .contact-info__text {
  color: var(--contact-muted);
}

.page-contact .contact-map {
  aspect-ratio: 16/9;
  width: 100%;
  border: 1px solid var(--contact-line);
  border-radius: 12px;
  overflow: hidden;
  background: #0f0f12;
  box-shadow: var(--contact-shadow);
}

.page-contact .contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.05) saturate(0.9);
}

/* Offices */
.page-contact .contact-offices {
  position: relative;
  padding: clamp(50px, 7vw, 0px) 0;
}

.page-contact .contact-offices__wm {
  position: absolute;
  inset-inline: 50% auto;
  transform: translateX(-50%);
  top: -10px;
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(110px, 18vw, 220px);
  color: #fff;
  opacity: 0.035;
  font-weight: 700;
  letter-spacing: 0.08em;
  pointer-events: none;
  white-space: nowrap;
}

.page-contact .contact-offices__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.page-contact .contact-office {
  border: 1px solid var(--contact-line);
  border-radius: 12px;
  padding: clamp(18px, 2.6vw, 26px);
  background: #121214;
}

.page-contact .contact-office--highlight {
  background: #05050f;
  box-shadow: var(--contact-shadow);
}

.page-contact .contact-office__title {
  font-family: "Josefin Sans", sans-serif;
  margin: 0 0 10px;
  font-size: clamp(18px, 2.2vw, 24px);
}

.page-contact .contact-office__row {
  color: var(--contact-muted);
  margin: 8px 0;
}

/* Form */
.page-contact .contact-form {
  padding: clamp(36px, 8vw, 96px) 0 100px;
  border-top: 1px solid var(--contact-line);
}

.page-contact .contact-form__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #f2f2f2;
  opacity: 0.9;
  letter-spacing: 0.25em;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.9rem;
}

.page-contact .contact-form__eyebrow span {
  width: 80px;
  height: 2px;
  background: var(--contact-accent);
  display: inline-block;
}

.page-contact .contact-form__title {
  margin: 8px 0 28px;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  font-size: clamp(36px, 6vw, 72px);
}

.page-contact .contact-form__grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(2, 1fr);
}

.page-contact .contact-field {
  position: relative;
}

.page-contact .contact-field--full {
  grid-column: 1/-1;
}

.page-contact .contact-field input,
.page-contact .contact-field textarea {
  width: 100%;
  padding: 14px 0 12px;
  color: var(--contact-text);
  background: transparent;
  border: 0;
  outline: 0;
  border-bottom: 1px solid #2a2a2e;
  font: inherit;
  font-size: 1rem;
}

.page-contact .contact-field input::-moz-placeholder, .page-contact .contact-field textarea::-moz-placeholder {
  color: #a7a9a9;
}

.page-contact .contact-field input:-ms-input-placeholder, .page-contact .contact-field textarea:-ms-input-placeholder {
  color: #a7a9a9;
}

.page-contact .contact-field input::placeholder,
.page-contact .contact-field textarea::placeholder {
  color: #a7a9a9;
}

.page-contact .contact-field input:focus,
.page-contact .contact-field textarea:focus {
  border-bottom-color: var(--contact-accent);
  box-shadow: 0 6px 0 -4px rgba(216, 91, 118, 0.25);
}

.page-contact .contact-form__actions {
  grid-column: 1/-1;
  display: grid;
  place-items: center;
  position: relative;
  margin-top: 10px;
}

.page-contact .contact-btn {
  background: #222227;
  color: #fff;
  border: 1px solid var(--contact-line);
  border-radius: 6px;
  padding: 16px 28px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

.page-contact .contact-btn:hover {
  transform: translateY(-1px);
  background: #2a2a30;
  border-color: #3a3a40;
}

.page-contact .contact-btn:active {
  transform: translateY(0);
}

.page-contact .contact-btn__decor {
  position: absolute;
  width: 36px;
  height: 24px;
  bottom: -16px;
  background: var(--contact-accent);
  -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.page-contact .contact-btn__decor--left {
  left: 34%;
  transform: translateX(-50%);
}

.page-contact .contact-btn__decor--right {
  right: 34%;
  transform: translateX(50%) scaleX(-1);
}

/* Contact responsive */
@media (max-width: 1100px) {
  .page-contact .contact-primary__grid {
    grid-template-columns: 1fr;
  }

  .page-contact .contact-map {
    min-height: 360px;
  }
}
@media (max-width: 900px) {
  .page-contact .contact-offices__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .page-contact .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .page-contact .contact-btn__decor--left {
    left: 28%;
  }

  .page-contact .contact-btn__decor--right {
    right: 28%;
  }
}
/* =======================================================
   PAGE: PROJECTS (scoped)
======================================================= */
.page-project {
  --project-bg: #141e31;
  --project-panel: #151517;
  --project-text: #e9e9e9;
  --project-muted: #bdbdbd;
  --project-line: #2a2a2e;
  --project-accent: #ff007f;
  --project-container: 1280px;
  --project-shadow: 0 22px 60px rgba(0,0,0,.45);
  margin: 0;
  background: var(--project-bg);
  color: var(--project-text);
  font-family: "Karla", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.7;
}

.page-project *, .page-project *::before, .page-project *::after {
  box-sizing: border-box;
}

.page-project img {
  max-width: 100%;
  display: block;
}

.page-project a {
  color: inherit;
  text-decoration: none;
}

.project-container {
  width: min(var(--project-container), 92%);
  margin-inline: auto;
}

/* Hero */
.page-project .project-hero {
  position: relative;
  min-height: 46dvh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.page-project .project-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(1000px 400px at -10% -20%, rgba(255, 255, 255, 0.06), transparent 60%), radial-gradient(1000px 400px at 110% 120%, rgba(255, 255, 255, 0.06), transparent 60%), linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.6));
}

.page-project .project-hero__content {
  position: relative;
}

.page-project .project-hero__eyebrow {
  color: #f2f2f2;
  opacity: 0.9;
  letter-spacing: 0.25em;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.page-project .project-hero__eyebrow span {
  width: 80px;
  height: 2px;
  background: var(--project-accent);
  display: inline-block;
}

.page-project .project-hero__title {
  margin: 0;
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: clamp(42px, 7.5vw, 100px);
}

/* Filter tabs (CSS-only) */
.page-project .project-catalog {
  padding: clamp(50px, 6vw, 0px) 0 35px;
}

.project-filter__radio {
  position: absolute;
  left: -9999px;
}

.page-project .project-filter {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 56px);
  align-items: center;
  margin: 10px 0 32px;
  flex-wrap: wrap;
}

.page-project .project-filter__tab {
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: #cfcfd3;
  cursor: pointer;
  position: relative;
  padding: 10px 2px;
  transition: color 0.2s ease;
}

.page-project .project-filter__tab:hover {
  color: #fff;
}

#pf-all:checked ~ .project-filter label[for=pf-all],
#pf-ongoing:checked ~ .project-filter label[for=pf-ongoing],
#pf-upcoming:checked ~ .project-filter label[for=pf-upcoming],
#pf-completed:checked ~ .project-filter label[for=pf-completed] {
  color: #fff;
}

#pf-all:checked ~ .project-filter label[for=pf-all]::after,
#pf-ongoing:checked ~ .project-filter label[for=pf-ongoing]::after,
#pf-upcoming:checked ~ .project-filter label[for=pf-upcoming]::after,
#pf-completed:checked ~ .project-filter label[for=pf-completed]::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 88px;
  max-width: 100%;
  height: 3px;
  background: var(--project-accent);
  border-radius: 3px;
}

/* Filter logic */
#pf-ongoing:checked ~ .project-grid .project-card:not([data-status*=ongoing]) {
  display: none;
}

#pf-upcoming:checked ~ .project-grid .project-card:not([data-status*=upcoming]) {
  display: none;
}

#pf-completed:checked ~ .project-grid .project-card:not([data-status*=completed]) {
  display: none;
}

/* Grid + cards */
.page-project .project-grid {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-project .project-card {
  background: #071023;
  border: 1px solid var(--project-line);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}

.page-project .project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--project-shadow);
}

.page-project .project-card__link {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  outline: none;
}

.page-project .project-card__link:focus-visible {
  box-shadow: 0 0 0 3px rgba(216, 91, 118, 0.45);
}

.page-project .project-card__media {
  position: relative;
  overflow: hidden;
  background: #071023;
}

.page-project .project-card__media img {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 0.35s ease;
}

.page-project .project-card:hover .project-card__media img {
  transform: scale(1.035);
}

.page-project .project-card__meta {
  background: #172541;
  padding: 18px 18px 22px;
  border-top: 1px solid var(--project-line);
}

.page-project .project-card__status {
  color: #bcbcc2;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.8rem;
  margin-bottom: 6px;
}

.page-project .project-card[data-status=ongoing] .project-card__status {
  color: var(--project-accent);
}

.page-project .project-card[data-status=upcoming] .project-card__status {
  color: #f0c46d;
}

.page-project .project-card__title {
  margin: 0;
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.25;
}

@media (max-width: 1100px) {
  .page-project .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-project .project-card__media img {
    height: 300px;
  }
}
@media (max-width: 640px) {
  .page-project .project-grid {
    grid-template-columns: 1fr;
  }

  .page-project .project-card__media img {
    height: 260px;
  }
}
/* =======================================================
   PAGE: PROJECT DETAILS (scoped)
======================================================= */
.page-project-details {
  --pd-bg: #141e31;
  --pd-panel: #172541;
  --pd-text: #e9e9e9;
  --pd-muted: #bdbdbd;
  --pd-line: #2a2a2e;
  --pd-accent: #ff007f;
  --pd-container: 1240px;
  --pd-shadow: 0 22px 60px rgba(0,0,0,.45);
  margin: 0;
  background: var(--pd-bg);
  color: var(--pd-text);
  font-family: "Karla", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.7;
}

.page-project-details *, .page-project-details *::before, .page-project-details *::after {
  box-sizing: border-box;
}

.page-project-details img {
  max-width: 100%;
  display: block;
}

.project-details-container {
  width: min(var(--pd-container), 92%);
  margin-inline: auto;
}

/* Hero */
.page-project-details .project-details-hero {
  position: relative;
  min-height: 86dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  background: var(--pd-bg);
}

.page-project-details .project-details-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.4));
}

.page-project-details .project-details-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--project-hero, none) center/cover no-repeat;
  filter: saturate(0.95) contrast(1.05);
  transform: scale(1.02);
}

.page-project-details .project-details-hero__content {
  position: relative;
  z-index: 1;
}

.page-project-details .project-details-hero__location {
  margin: 0 0 8px;
  color: #f0f0f2;
  opacity: 0.95;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(.72rem, 1.2vw, .95rem);
}

.page-project-details .project-details-hero__title {
  margin: 0;
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: clamp(40px, 7.5vw, 88px);
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
}

.page-project-details .project-details-hero__line {
  display: inline-block;
  width: 86px;
  height: 2px;
  background: var(--pd-accent);
}

/* Stats */
.page-project-details .project-details-stats {
  position: relative;
  margin-top: -54px;
  padding-bottom: 22px;
  z-index: 2;
}

.page-project-details .project-details-stats__grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(6, 1fr);
  background: var(--pd-panel);
  border: 1px solid var(--pd-line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--pd-shadow);
}

.page-project-details .project-details-stats__grids {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  background: var(--pd-panel);
  border: 1px solid var(--pd-line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--pd-shadow);
}

.page-project-details .project-details-stat {
  padding: 18px 22px;
  border-right: 1px solid var(--pd-line);
}

.page-project-details .project-details-stat:last-child {
  border-right: 0;
}

.page-project-details .project-details-stat__label {
  color: #d9d9dd;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: none;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.95rem;
}

.page-project-details .project-details-stat__value {
  color: var(--pd-text);
  margin-top: 6px;
  font-size: 1rem;
}

@media (max-width: 1100px) {
  .page-project-details .project-details-stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 680px) {
  .page-project-details .project-details-stats__grid {
    grid-template-columns: 1fr;
  }

  .page-project-details .project-details-stat {
    border-right: 0;
    border-bottom: 1px solid var(--pd-line);
  }

  .page-project-details .project-details-stat:last-child {
    border-bottom: 0;
  }
}
/* Gallery */
.page-project-details .project-details-gallery {
  padding: clamp(28px, 6vw, 64px) 0;
}

.page-project-details .project-details-grid {
  display: grid;
  gap: clamp(12px, 2vw, 18px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-project-details .project-details-thumb {
  display: block;
  border: 1px solid var(--pd-line);
  border-radius: 10px;
  overflow: hidden;
  background: #0f0f12;
  cursor: zoom-in;
}

.page-project-details .project-details-thumb img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s ease;
}

.page-project-details .project-details-thumb:hover img {
  transform: scale(1.035);
}

@media (max-width: 1100px) {
  .page-project-details .project-details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-project-details .project-details-thumb img {
    height: 300px;
  }
}
@media (max-width: 640px) {
  .page-project-details .project-details-grid {
    grid-template-columns: 1fr;
  }

  .page-project-details .project-details-thumb img {
    height: 260px;
  }
}
/* Lightbox hidden state */
.page-project-details .project-details-lightbox[hidden] {
  display: none;
}

/* Base */
.page-project-details .project-details-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1050;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.page-project-details .project-details-lightbox.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Backdrop with blur */
.page-project-details .project-details-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 11, 21, 0.9);
  backdrop-filter: blur(6px);
}

/* Stage */
.page-project-details .project-details-lightbox__stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(10px, 3vw, 26px);
}

/* Figure */
.page-project-details .project-details-lightbox__figure {
  margin: 0;
  max-width: 86vw;
  max-height: 86vh;
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: end;
}

/* Image */
.page-project-details .project-details-lightbox__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  background: #141e31;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}

/* Counter */
.page-project-details .project-details-lightbox__counter {
  margin-top: 8px;
  text-align: right;
  font-size: 0.9rem;
  color: #e6e6e6;
  text-shadow: 0 1px 0 rgba(0,0,0,0.4);
}

/* Buttons */
.page-project-details .project-details-lightbox__close,
.page-project-details .project-details-lightbox__nav {
  position: absolute;
  border: none;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}

.page-project-details .project-details-lightbox__close:hover,
.page-project-details .project-details-lightbox__nav:hover {
  background: rgba(255,255,255,0.2);
}

.page-project-details .project-details-lightbox__close {
  top: 14px;
  right: 18px;
  width: 42px;
  height: 42px;
  font-size: 24px;
  border-radius: 50%;
}

.page-project-details .project-details-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  font-size: 26px;
  border-radius: 50%;
}

.page-project-details .project-details-lightbox__nav--prev {
  left: clamp(8px, 2vw, 20px);
}
.page-project-details .project-details-lightbox__nav--next {
  right: clamp(8px, 2vw, 20px);
}


/* Features & amenities */
.page-project-details .project-details-features {
  position: relative;
  padding: clamp(36px, 8vw, 96px) 0 120px;
}

.page-project-details .project-details-features__wm {
  position: absolute;
  inset-inline: 50% auto;
  transform: translateX(-50%);
  top: -10px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(110px, 18vw, 230px);
  letter-spacing: 0.08em;
  color: #fff;
  opacity: 0.035;
  white-space: nowrap;
  pointer-events: none;
}

.page-project-details .project-details-features__title {
  margin: 0 0 26px;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  font-size: clamp(32px, 6vw, 56px);
}

.page-project-details .project-details-features__grid {
  /* display: grid; */
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.page-project-details .project-details-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-project-details .project-details-chip {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  background: #18181c;
  border: 1px solid var(--pd-line);
  color: #e1e1e3;
  padding: 10px 14px;
  border-radius: 6px;
}

@media (max-width: 900px) {
  .page-project-details .project-details-features__grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-project-details .project-details-thumb img {
    transition: none;
  }
}

/* Description Section */
.page-project-details .project-details-description {
  position: relative;
  padding: clamp(36px, 8vw, 96px) 0 120px;
}

.page-project-details .project-details-description__wm {
  position: absolute;
  inset-inline: 50% auto;
  transform: translateX(-50%);
  top: -10px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(100px, 16vw, 200px);
  letter-spacing: 0.08em;
  color: #fff;
  opacity: 0.035;
  white-space: nowrap;
  pointer-events: none;
}

.page-project-details .project-details-description__title {
  margin: 0 0 26px;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  font-size: clamp(32px, 6vw, 56px);
}

.page-project-details .project-details-description__grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}

.page-project-details .project-details-description__item {
  background: #172541;
  border: 1px solid var(--pd-line);
  border-radius: 8px;
  padding: 20px;
  color: #e1e1e3;
}

.page-project-details .project-details-description__subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

@media (max-width: 900px) {
  .page-project-details .project-details-description__grid {
    grid-template-columns: 1fr;
  }
}

/* =======================================================
   Contact CTA (Home module)
======================================================= */
.contact-cta {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 48vh;
  padding: clamp(60px, 12vh, 140px) 0;
  text-align: center;
  color: #fff;
  background: radial-gradient(1200px 400px at -10% -20%, rgba(255, 255, 255, 0.06), transparent 60%), radial-gradient(1200px 400px at 110% 120%, rgba(255, 255, 255, 0.06), transparent 60%), var(--bg, #141e31);
  overflow: hidden;
}

.contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(110deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 44px);
  opacity: 0.12;
  pointer-events: none;
  mix-blend-mode: screen;
}

.contact-cta__watermark {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: clamp(3.2rem, 14vw, 10rem);
  color: rgba(255, 255, 255, 0.08);
  line-height: 0.9;
  z-index: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.contact-cta__content {
  position: relative;
  z-index: 1;
}

.contact-cta__hotline {
  font-size: clamp(1.6rem, 4.8vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0 0 0.75rem;
}

.contact-cta__btn {
  display: inline-block;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 0.65rem 1.8rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  transition: all 0.25s ease;
}

.contact-cta__btn:hover {
  background-color: #fff;
  color: #141e31 !important;
}

.contact-cta--compact {
  min-height: 38vh;
  padding: clamp(40px, 10vh, 80px) 0;
}

@media (max-width: 576px) {
  .contact-cta {
    min-height: 42vh;
  }
}
/* Footer grid refinements (drop-in) */
.footer-section {
  background-color: #141e31;
  color: #fff;
  padding: 0;
  border-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  /* background: rgba(0, 0, 0, 0.08); */
}

.footer-cell {
  padding: clamp(22px, 3vw, 38px);
}

.footer-cell:first-child {
  border-left: 0;
}

.footer-column h5 {
  margin-bottom: 16px;
}

.footer-column h5::after {
  background-color: #ff007f;
}

.footer-brand .footer-logo img {
  max-width: 120px;
}

.footer-brand .footer-logo p {
  margin-top: 8px;
  color: #bfbfbf;
  font-size: 0.9rem;
}

.footer-column .key {
  display: inline-block;
  width: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #ff9bb7;
}

.footer-bottom {
  background: #141e31;
  color: #fff;
  padding: 18px 0 28px;
  font-size: 0.85rem;
  text-align: center;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-cell:nth-child(3) {
    border-left: 0;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-cell {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-cell:first-child {
    border-top: 0;
  }
}
/* =======================================================
   Unified Container System + Guards
   (ensures same design in Blade as in static HTML)
======================================================= */
/* Global fallback if page wrapper not present */
:root {
  --site-container: 1200px;
}

/* Page wrappers may set their own target width (used by mappers below) */
.page-about {
  --page-container: 1200px;
}

.page-contact {
  --page-container: 1200px;
}

.page-project {
  --page-container: 1280px;
}

.page-project-details {
  --page-container: 1240px;
}

/* Reusable container helper (use anywhere) */
.site-container {
  width: min(var(--page-container, var(--site-container, 1200px)), 92%);
  margin-inline: auto;
}

/* Map existing per-page containers to unified behavior */
.about-container,
.contact-container,
.project-container,
.project-details-container {
  width: min(var(--page-container, var(--site-container, 1200px)), 92%);
  margin-left: auto;
  margin-right: auto;
}

/* Optional quick size overrides */
.site-container--sm {
  --page-container: 960px;
}

.site-container--md {
  --page-container: 1200px;
}

.site-container--lg {
  --page-container: 1280px;
}

.site-container--xl {
  --page-container: 1440px;
}

/* Full-bleed utility for edge-to-edge backgrounds */
.u-bleed {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}

.u-gutter {
  padding-left: clamp(16px, 4vw, 40px);
  padding-right: clamp(16px, 4vw, 40px);
}

/* Neutralize Bootstrap container when it wraps a page wrapper by mistake */
.page-about > .container,
.page-contact > .container,
.page-project > .container,
.page-project-details > .container {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* map */
/* ===== Project Details — Map Section ===== */
.page-project-details .project-details-map{
  position: relative;
  background: var(--pd-bg, #141e31);
  border-top: 1px solid var(--pd-line, #2a2a2e);
}

.page-project-details .project-details-map__header{
  position: relative;
  text-align: center;
  padding: clamp(40px, 10vh, 100px) 0 22px;
  overflow: hidden;
}

/* Watermark like in the reference */
.page-project-details .project-details-map__header::before{
  content: "MAP";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: .06em;
  font-size: clamp(64px, 22vw, 220px);
  color: rgba(255,255,255,.05);
  user-select: none; pointer-events: none;
}

.page-project-details .map-eyebrow{
  display: inline-block;
  color: #f2f2f2;
  opacity: .9;
  letter-spacing: .25em;
  font-family: "Josefin Sans", sans-serif;
  font-size: .9rem;
  margin-bottom: 10px;
  position: relative;
}
.page-project-details .map-eyebrow::before,
.page-project-details .map-eyebrow::after{
  content:"";
  display:inline-block;
  vertical-align:middle;
  width: 70px; height: 2px;
  background: var(--pd-accent, #ff007f);
  margin: 0 12px;
  opacity: .7;
}

.page-project-details .map-address{
  margin: 6px 0 0;
  color: #fff;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  letter-spacing: .04em;
  line-height: 1.1;
  font-size: clamp(1.4rem, 4.2vw, 3rem);
}

.page-project-details .map-frame{
  position: relative;
  width: 100%;
  height: clamp(360px, 60vh, 640px);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: #0f0f12;
  box-shadow: 0 8px 40px rgba(0,0,0,.25) inset;
  overflow: hidden;
}
.page-project-details .map-frame iframe{
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.1) contrast(1.05) saturate(.95);
}

/* Or add class="u-uncontainer" to wrapper if needed */
.u-uncontainer > .container,
.u-uncontainer > .container-sm,
.u-uncontainer > .container-md,
.u-uncontainer > .container-lg,
.u-uncontainer > .container-xl,
.u-uncontainer > .container-xxl {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Global overflow guard */
@supports (overflow: clip) {
  html, body { overflow-x: clip; }      /* was only body */
}
@supports not (overflow: clip) {
  html, body { overflow-x: hidden; }
}

/* REMOVE this — it re-enables horizontal scroll on phones */
/*
@media (max-width: 768px) {
  body { overflow-x: visible; }
}
*/

/* Optional: extra safety when overlays/menus are open */
body.menu-open { overflow: hidden; }

/* Optional: hero/carousel bleed guard */
#heroCarousel,
#heroCarousel .carousel-inner { overflow: hidden; }

/* Keep */
html { scrollbar-gutter: stable both-edges; }
*, *::before, *::after { box-sizing: border-box; }

/* Good to have for images/videos */
img, video { max-width: 100%; height: auto; display: block; }


/* call button */

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* WhatsApp Button - Left Side */
.whatsapp-btn {
    position: fixed;
    bottom: 50px;
    left: 20px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 34px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: float 3s infinite ease-in-out;
    transition: transform 0.3s ease;
    z-index: 999;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Call Button - Right Side */
.call-btn-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    animation: float 3s infinite ease-in-out;
    z-index: 999;
}

.call-btn-text {
    background-color: #4A4A4A;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-btn-icon {
    width: 50px;
    height: 50px;
    background-color: #00C853;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 24px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.call-btn-icon:hover {
    transform: scale(1.1);
}

/* Show "Call Us Now" text when hovering over the call icon */
.call-btn-container:hover .call-btn-text {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
