:root {
  --green: #0b3b2e;
  --green-dark: #082a21;
  --gold: #d4a74e;
  --gold-soft: #e6c17a;
  --bg: #f7f7f7;
  --text: #2b2b2b;
  --muted: #6b7280;
  --white: #ffffff;

  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --ff-sans: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --ff-serif: "Playfair Display", Georgia, serif;

  --brand-green-dark: #0c2b18;
  /* Deep signature green from footer/header */
  --brand-gold: #c5a880;
  /* Elegance gold accents */
  --bg-cream: #f7f2e4;
  /* Soft matching cream body background */
  --border-subtle: rgba(12, 43, 24, 0.08);

  --primary: #117a65;
  --primary-dark: #0b4e41;
  --accent: #16a085;
  --accent-light: #eafaf1;
  --bg-light: #f4f7f6;
  --text-dark: #2c3e50;
  --border-color: #d1dedb;
  --overlay: rgba(11, 78, 65, 0.7);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.intro-sectionpro {
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  padding: 15px;
}

/* Target the parent container holding both sidebar and main content */
.products-designp {
  display: flex;
  flex-direction: column-reverse;
  /* Reverses order: main-content goes to top, sidebar goes to bottom */
  gap: 30px;
}

/* Restore the standard side-by-side view on desktop screens */
@media (min-width: 992px) {
  .products-designp {
    display: grid;
    grid-template-columns: 300px 1fr;
    /* Sidebar fixed, products expand */
    flex-direction: row;
  }

}

.text-green {
  color: var(--green);
}

.text-gold {
  color: var(--gold) !important;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-label.green {
  color: var(--green);
}

.section-heading {
  font-family: var(--ff-serif);
  font-weight: 700;
  color: #1a1a1a;
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 22px;
}

.section-text {
  color: #4a5361;
  font-size: 15px;
  margin-bottom: 14px;
}

/* =========================================================
   2. INTRO SECTION
   ========================================================= */
.intro-section {
  padding: 50px 0;
  background: #fff;
  position: relative;
}

.intro-image-wrap {
  position: relative;
  padding: 20px 30px 60px 20px;
}

.intro-frame {
  position: absolute;
  left: 0;
  top: 40px;
  width: 70%;
  height: 78%;
  background: transparent;
  border: 6px solid var(--green);
  border-radius: 6px;
  z-index: 0;
}

.intro-main-img {
  position: relative;
  z-index: 1;
  width: 88%;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.intro-sub-img {
  position: absolute;
  bottom: 0;
  left: 90px;
  width: 45%;
  border-radius: 6px;
  border: 6px solid #fff;
  box-shadow: var(--shadow-md);
  z-index: 2;
  object-fit: cover;
  aspect-ratio: 5/3;
}

.intro-badge {
  position: absolute;
  top: 44%;
  right: 0;
  transform: translateY(-50%);
  width: 130px;
  height: 150px;
  background: linear-gradient(160deg, var(--gold), #b98a35);
  color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  padding: 10px;
}

.badge-num {
  font-family: var(--ff-serif);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 10px;
  letter-spacing: 1.5px;
  margin-top: 6px;
  font-weight: 600;
}

.badge-icon {
  font-size: 16px;
  margin-top: 6px;
  opacity: 0.9;
}

/* Feature icons */
.feature-icons {
  margin-top: 20px !important;
}

.feature-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f4f2ec;
  color: var(--green);
  font-size: 22px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.feature-icon-circle:hover {
  transform: translateY(-4px);
  background: var(--gold);
  color: #fff;
}

.feature-icon-label {
  font-size: 12.5px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* =========================================================
   4. CORE STRENGTHS
   ========================================================= */
.strengths-section {
  padding: 40px 0 80px;
  background: #fff;
}

.strengths-section1 {
  padding: 40px 0 80px;
  background: #ebf2e9;
}

.strengths-wrap {
  border-radius: var(--radius-md);
}

.strength-card {
  background: var(--green);
  border-radius: 10px;
  padding: 22px 12px;
  text-align: center;
  color: #fff;
  height: 100%;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
  cursor: pointer;
}

.strength-card i {
  font-size: 30px;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.strength-card p {
  font-size: 12.5px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.strength-card:hover {
  transform: translateY(-6px);
  background: var(--green-dark);
  box-shadow: 0 20px 40px rgba(11, 59, 46, 0.35);
}

/* =========================================================
   5. STATISTICS SECTION
   ========================================================= */
.stats-section {
  position: relative;
  padding: 60px 0;
  background: url("../images/Hero/Main\ banner\ img.jpg") center/cover;
  color: #fff;
  overflow: hidden;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(11, 59, 46, 0.94),
      rgba(11, 59, 46, 0.85));
}

.stats-row {
  position: relative;
  z-index: 2;
}

.stat-item {
  padding: 20px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);

  /* Added these lines to ensure vertical stacking */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Ensure the paragraph wraps correctly */
.stat-item p {
  font-size: 16px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
  width: 100%;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item i {
  font-size: 34px;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.stat-num,
.stat-num-text {
  font-family: var(--ff-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 6px;
  line-height: 1.1;
}

/* =========================================================
   6. MISSION & VISION
   ========================================================= */
/* =========================================================
   6. MISSION & VISION FOOTER HYBRID BRIDGE
   ========================================================= */
.mv-footer-bridge {
  position: relative;
  width: 100%;
  min-height: 280px;
  /* Kept very compact vertically */
  overflow: hidden;
  padding: 30px 0 50px 0;
  /* Padding offsets to sync with white mask below */
}

/* Master background system stretching infinitely */
.mv-fb-bg-container {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mv-fb-half {
  flex: 1;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Color Balance overlays mapping from image_c2bec1.png */
.mv-fb-tint {
  position: absolute;
  inset: 0;
}

.tint-mission {
  background-color: rgba(13, 56, 41, 0.95);
}

.tint-vision {
  background-color: rgba(220, 163, 77, 0.95);
}

/* Grid Positioning Context layer */
.mv-fb-relative-wrapper {
  position: relative;
  z-index: 3;
}

/* Balanced Card paddings based on container margins */
.mv-fb-content-card {
  color: #ffffff;
  width: 100%;
}

.content-left {
  padding: 30px 45px 30px 0;
}

.content-right {
  padding: 30px 0 30px 45px;
}

/* Micro Badge styling */
.mv-meta-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.mv-badge-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.content-left .mv-badge-circle {
  color: #dca34d;
}

.content-right .mv-badge-circle {
  color: #ffffff;
}

.mv-badge-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  opacity: 0.85;
}

.mv-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.mv-description {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Read More Interactive elements */
.mv-readmore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.mv-arrow-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.mv-readmore-btn:hover .mv-arrow-circle {
  background-color: #ffffff;
  transform: translateX(5px);
}

.content-left .mv-readmore-btn:hover .mv-arrow-circle {
  color: #0d3829;
}

.content-right .mv-readmore-btn:hover .mv-arrow-circle {
  color: #dca34d;
}

/* Bottom White Mask System - Prevents gaps above the footer curve */
.mv-bottom-white-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25px;
  /* Creates an underlying white baseline for the wave to sit on top of */
  background-color: #ebf2e9;
  z-index: 2;
}

/* =========================================================
   RESPONSIVE LAYOUT FIXES
   ========================================================= */
@media (max-width: 767.98px) {
  .mv-footer-bridge {
    padding: 40px 0;
  }

  .mv-fb-bg-container {
    flex-direction: column;
  }

  .content-left,
  .content-right {
    padding: 30px 20px;
    border-radius: 16px;
    margin-bottom: 16px;
  }

  .content-left {
    background-color: #0d3829;
  }

  .content-right {
    background-color: #dca34d;
  }

  .mv-fb-bg-container,
  .mv-bottom-white-mask {
    display: none;
  }
}

/* =========================================================
   Responsive Overrides
   ========================================================= */

/* Large tablets / small laptops */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 60px;
  }

  .section-heading {
    font-size: 36px;
  }

  .intro-badge {
    width: 110px;
    height: 130px;
  }

  .badge-num {
    font-size: 28px;
  }

  .strengths-section {
    padding: 30px 0;
  }
}

/* Tablets */
@media (max-width: 991.98px) {
  .hero-sectionp {
    padding: 70px 0 120px;
    min-height: 460px;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-subtitle {
    font-size: 26px;
  }

  .intro-section {
    padding: 70px 0 60px;
  }

  .intro-image-wrap {
    margin-bottom: 40px;
  }

  .intro-sub-img {
    left: 60px;
    width: 50%;
  }

  .strengths-wrap {
    padding: 40px 20px;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .mv-card {
    min-height: auto;
  }

  .cta-section {
    text-align: center;
  }

  .cta-title {
    font-size: 26px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .hero-sectionp {
    padding: 60px 0 100px;
    min-height: 420px;
  }

  .hero-title {
    font-size: 40px;
    letter-spacing: 2px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-desc {
    font-size: 13px;
  }

  .hero-dots {
    grid-template-columns: repeat(4, 6px);
  }

  .scroll-indicator {
    bottom: -50px;
  }

  .section-heading {
    font-size: 28px;
  }

  .section-text {
    font-size: 14px;
  }

  .intro-image-wrap {
    padding: 10px 10px 40px;
  }

  .intro-main-img {
    width: 100%;
  }

  .intro-sub-img {
    left: 20px;
    width: 55%;
    bottom: -10px;
  }

  .intro-badge {
    width: 90px;
    height: 110px;
    right: 10px;
  }

  .badge-num {
    font-size: 24px;
  }

  .badge-text {
    font-size: 9px;
  }

  .highlights-bar {
    padding: 20px 10px;
  }

  .highlight-item i {
    font-size: 24px;
  }

  .highlight-item p {
    font-size: 11.5px;
  }

  .strengths-wrap {
    padding: 30px 15px;
  }

  .strength-card {
    padding: 18px 8px;
  }

  .strength-card i {
    font-size: 26px;
  }

  .strength-card p {
    font-size: 11.5px;
  }

  .stats-section {
    padding: 40px 0;
  }

  .stat-num,
  .stat-num-text {
    font-size: 28px;
  }

  .stat-item i {
    font-size: 28px;
  }
}

/* Small mobile */
@media (max-width: 479.98px) {
  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .section-heading {
    font-size: 24px;
  }

  .intro-sub-img {
    display: none;
  }

  .intro-badge {
    top: 30%;
  }
}

/* services  */
/* --- SITE ENVIRONMENT BACKGROUND --- */
.luxury-services-hub {
  background: #ebf2e9;
  font-family: var(--ff-sans);
  padding: 80px 0 100px;
  color: var(--text-dark);
}

/* --- DESKTOP PREMIUM CARDS STYLE --- */
.luxury-service-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  text-decoration: none !important;
  color: var(--text-dark) !important;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(12, 43, 24, 0.03);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
}

.card-image-canvas {
  position: relative;
  height: 220px;
  width: 100%;
  overflow: hidden;
  padding: 15px 15px 0 15px;
}

.card-image-canvas img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 60px 14px 60px 14px;
  /* Asymmetric mask style inspired by image_cf75e2.png */
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 0.6s ease;
}

.card-index-badge {
  position: absolute;
  top: 25px;
  left: 25px;
  font-family: var(--ff-serif);
  background: var(--white);
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 700;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.card-details-zone {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-division-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.luxury-service-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-description {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.card-action-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(12, 43, 24, 0.06);
  padding-top: 15px;
}

.action-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--green);
}

.action-arrow {
  font-size: 1rem;
  color: var(--green-dark);
  transform: translateX(-4px);
  opacity: 0.5;
  transition: all 0.3s ease;
}

/* DESKTOP HOVERS */
.luxury-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.luxury-service-card:hover .card-image-canvas img {
  transform: scale(1.03);
  border-radius: 14px 60px 14px 60px;
}

.luxury-service-card:hover h3 {
  color: var(--green);
}

.luxury-service-card:hover .action-arrow {
  opacity: 1;
  color: var(--gold);
  transform: translateX(0);
}

/* ============================================= */
/* --- CRITICAL RESPONSIVE MOBILE GRID OVERRIDES --- */
/* ============================================= */
@media (max-width: 767px) {
  .hub-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .hub-lead-text {
    font-size: 0.9rem;
  }

  /* Enforces 2 items per row architecture layout */
  .mobile-grid-wrapper .col-6 {
    width: 50% !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  /* Compact Mobile Card Adaptations */
  .luxury-service-card {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
  }

  .card-image-canvas {
    height: 110px;
    /* Reduced vertical footprint */
    padding: 8px 8px 0 8px;
  }

  .card-image-canvas img {
    border-radius: 30px 10px 30px 10px;
    /* Scaled down corner radius perfectly */
  }

  .card-index-badge {
    top: 14px;
    left: 14px;
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }

  .card-details-zone {
    padding: 12px;
  }

  .card-division-tag {
    font-size: 0.65rem;
    margin-bottom: 2px;
  }

  .luxury-service-card h3 {
    font-size: 0.95rem;
    /* Highly clean, micro-typographic setup */
    margin-bottom: 6px;
    font-weight: 600;
    line-height: 1.2;
  }

  /* Hide heavy description sentences on mobile screens to save layout balance */
  .card-description {
    display: none !important;
  }

  .card-action-footer {
    padding-top: 8px;
  }

  .action-label {
    font-size: 0.7rem;
  }

  .action-arrow {
    font-size: 0.85rem;
    opacity: 1;
    color: var(--gold);
    transform: none;
  }
}

/* interlocks page  */

/* --- Sidebar Specifications Panel --- */
.specs-sidebar {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(17, 122, 101, 0.08);
  border: 1px solid var(--border-color);
  height: fit-content;
}

@media (min-width: 992px) {
  .specs-sidebar {
    position: sticky;
    top: 100px;
    /* Safe placement offset under fixed header anchors */
  }
}

.specs-sidebar h1 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 10px;
  border-bottom: 3px solid var(--accent);
  padding-bottom: 10px;
}

.material-desc {
  font-style: italic;
  color: #556b66;
  margin-bottom: 20px;
  font-size: 14px;
}

.spec-group {
  margin-bottom: 20px;
}

.spec-group h3 {
  font-size: 15px;
  color: var(--primary-dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: var(--accent-light);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid #c2ebd5;
}

.feature-list,
.app-list {
  list-style: none;
}

.feature-list li,
.app-list li {
  font-size: 14px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 22px;
  color: #455a55;
}

.feature-list li::before,
.app-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* --- Main Content Area --- */
.main-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-title {
  font-size: 18px;
  color: var(--primary-dark);
  font-weight: 600;
}

/* Grid Selector for Paving Designs */
.design-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
  gap: 15px;
}

@media (min-width: 450px) {
  .design-grid {
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  }
}

.design-card {
  background: #fff;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.design-card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  border-radius: 6px;
  background: #eee;
}

.design-card span {
  font-weight: 600;
  font-size: 14px;
  color: var(--primary-dark);
}

.design-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(17, 122, 101, 0.12);
}

/* --- Pop-up Modal Panel System --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 30, 26, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 3000;
  /* Stacks completely above fixed header modules safely */
  padding: 15px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-wrapper {
  background: #fdfefe;
  width: 100%;
  max-width: 950px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  position: relative;
  transform: translateY(-30px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  max-height: 88vh;
  margin-top: 40px;
}

.modal-overlay.active .modal-wrapper {
  transform: translateY(0);
}

.modal-header {
  padding: 22px 60px 22px 24px;
  background: var(--primary);
  color: #fff;
}

.modal-header h2 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s;
  z-index: 3010;
}

.close-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
}

/* Premium Architecture Grid Configuration */
.showcase-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* Mobile First Constraints: Description sections load first onto order: 1 */
.details-section {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spotlight-section {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Desktop Media Queries restoration rule variables */
@media (min-width: 768px) {
  .showcase-container {
    grid-template-columns: 1.2fr 1fr;
  }

  .details-section {
    order: 2;
  }

  .spotlight-section {
    order: 1;
  }
}

.spotlight-wrapper {
  position: relative;
  width: 100%;
  height: 240px !important;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  background: #f4f6f5;
}

@media (min-width: 576px) {
  .spotlight-wrapper {
    height: 340px;
  }
}

.main-spotlight-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.spotlight-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(11, 65, 54, 0.98));
  color: #fff;
  padding: 24px 18px 14px 18px;
  font-weight: 600;
  font-size: 14px;
}

.thumbnail-strip {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.thumb-item {
  width: 70px;
  height: 52px;
  object-fit: contain;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  opacity: 0.55;
}

.thumb-item:hover {
  opacity: 0.9;
}

.thumb-item.active-thumb {
  border-color: var(--accent);
  opacity: 1;
  box-shadow: 0 4px 12px rgba(22, 160, 133, 0.25);
  transform: scale(1.02);
}

/* Premium Content Box Cards Styles */
.info-box-wrapper {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eef2f1;
  box-shadow: 0 4px 15px rgba(17, 122, 101, 0.03);
}

.info-box-wrapper h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.info-box-wrapper h3::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 14px;
  background: var(--accent);
  border-radius: 2px;
}

.highlight-desc p {
  font-size: 14px;
  color: #4a5d59;
  line-height: 1.6;
  margin: 0;
}

/* Technical Specification Lists and Parameter Grids */
.modal-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.modal-specs-table tr {
  border-bottom: 1px solid #f1f5f4;
}

.modal-specs-table tr:last-child {
  border-bottom: none;
}

.modal-specs-table td {
  padding: 10px 4px;
  font-size: 14px;
  color: #556b66;
}

.modal-specs-table td i {
  color: var(--accent);
  margin-right: 6px;
}

.modal-specs-table td.spec-val {
  font-weight: 600;
  color: var(--primary-dark);
  text-align: right;
}

/* Color Palette Badge Component Layout Rules */
.color-swatch-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(115px, 1fr));
  gap: 10px;
}

.color-swatch-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fdfefe;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #e8edea;
  font-size: 13px;
  font-weight: 600;
  color: #2c3e3a;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.color-dot {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* projects csss  */

.high-density-portfolio {
  padding: 50px 0;
  background: #ebf2e9;
}

/* --- HEADER STYLE ZONE --- */
.portfolio-main-header {
  max-width: 750px;
  margin: 0 auto 50px auto;
}

.portfolio-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.portfolio-title {
  font-family: var(--ff-serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--green-dark);
}

.portfolio-lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* --- DYNAMIC FILTER CONTROLS BAR --- */
.portfolio-filter-bar {
  margin-bottom: 50px;
}

.filter-btn {
  background: var(--white);
  border: 1px solid rgba(11, 59, 46, 0.08);
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--green-dark);
  border-radius: 30px;
  margin: 5px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--green);
  color: var(--white);
  border-color: var(--green);
  transform: translateY(-2px);
}

/* --- HIGH DENSITY MOSAIC CARD TILES --- */
.project-item {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.mosaic-tile-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
}

.tile-media-holder {
  position: relative;
  height: 200px;
  /* Highly optimized height to scale cleanly across 50+ items */
  width: 100%;
  overflow: hidden;
  background-color: #000;
}

.tile-media-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* INTERACTIVE HIDDEN OVERLAY COVER */
.tile-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 42, 33, 0.75);
  /* Brand Tint */
  opacity: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s ease;
}

.tile-counter-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  color: var(--white);
  padding: 4px 10px;
  font-size: 0.75rem;
  border-radius: 20px;
}

.tile-action-icon {
  font-size: 1.5rem;
  color: var(--gold);
  transform: scale(0.7);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* CARD DETAILS UNDERLAY TEXTS */
.tile-body-meta {
  padding: 20px;
  flex-grow: 1;
}

.tile-body-meta h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-dark);
  margin: 0 0 4px 0;
  line-height: 1.4;
}

.tile-body-meta p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold);
  font-weight: 500;
  margin: 0;
}

/* CARD HOVER ENHANCEMENTS */
.mosaic-tile-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.mosaic-tile-card:hover .tile-media-holder img {
  transform: scale(1.06);
}

.mosaic-tile-card:hover .tile-hover-overlay {
  opacity: 1;
}

.mosaic-tile-card:hover .tile-action-icon {
  transform: scale(1);
}

/* --- THE REALTIME CINEMATIC PORTAL WINDOW --- */
.high-density-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.high-density-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.hd-lightbox-blur-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(8, 2, 2, 0.97);
  backdrop-filter: blur(20px);
  z-index: 1;
}

.hd-close-trigger {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 3.5rem;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s ease;
}

.hd-close-trigger:hover {
  color: var(--gold);
}

/* Viewer Stage and navigation arrows */
.hd-lightbox-carousel-stage {
  position: relative;
  z-index: 5;
  max-width: 85%;
  max-height: 75vh;
  display: flex;
  align-items: center;
}

.hd-lightbox-carousel-stage img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s ease-in-out;
}

.hd-nav-trigger {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hd-nav-trigger:hover {
  background-color: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}

.hd-nav-trigger.left {
  left: -80px;
}

.hd-nav-trigger.right {
  right: -80px;
}

/* Lightbox Description layout texts overlay footer */
.hd-lightbox-meta {
  position: relative;
  z-index: 5;
  margin-top: 30px;
  color: #ffffff;
}

#hdTitleTarget {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
}

#hdCounterTarget {
  font-size: 0.85rem;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hidden-photo-manifest {
  display: none !important;
}

/* --- RESPONSIBILITY SCREEN COMPACTNESS --- */
@media (max-width: 1200px) {
  .hd-nav-trigger {
    position: static;
    margin: 0 15px;
  }

  .hd-lightbox-carousel-stage {
    max-width: 95%;
    justify-content: center;
  }

  .hd-lightbox-carousel-stage img {
    max-width: 75%;
  }
}

@media (max-width: 767px) {
  .portfolio-title {
    font-size: 2.2rem;
  }

  .hd-close-trigger {
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
  }

  .hd-lightbox-carousel-stage img {
    max-width: 100%;
  }

  .hd-nav-trigger {
    position: absolute;
    bottom: -80px;
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }

  .hd-nav-trigger.left {
    left: 20%;
  }

  .hd-nav-trigger.right {
    right: 20%;
  }

  .hd-lightbox-meta {
    margin-top: 90px;
  }
}

/* contact us  */
/* --- SECTION CONTAINER --- */
.premium-contact-section {
  background: #ebf2e9;
  font-family: var(--ff-sans);
  padding: 80px 0 120px;
  color: var(--text-dark);
}

/* --- BANNER HEADER STYLING --- */
.contact-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.contact-title {
  font-family: var(--ff-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--green-dark);
}

.contact-lead {
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
}

/* --- LEFT PANEL: DIRECT DIRECTORY CARD --- */
.comms-panel-card {
  background: var(--white);
  padding: 45px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11, 59, 46, 0.04);
}

.panel-subtitle {
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1.8rem;
}

.comms-stack {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.comms-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.comms-icon-wrap {
  width: 46px;
  height: 46px;
  background-color: rgba(11, 59, 46, 0.05);
  color: var(--green);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.comms-icon-wrap.waba {
  background-color: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
}

.comms-data h6 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin: 0 0 4px 0;
  font-weight: 600;
}

.comms-data p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
}

.comms-data p a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.comms-data p a:hover {
  color: var(--gold);
}

.comms-footer-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
  padding: 30px;
  border-radius: var(--radius-md);
}

.comms-footer-banner h5 {
  font-family: var(--ff-serif);
  color: var(--gold-soft);
  margin-bottom: 6px;
}

.comms-footer-banner p {
  font-size: 0.88rem;
  opacity: 0.85;
  line-height: 1.6;
}

/* --- SERVICES GAP FILLER MATRIX --- */
.contact-services-gap-filler {
  border-top: 1px solid rgba(11, 59, 46, 0.08);
  padding-top: 25px;
}

.filler-subtitle {
  color: var(--green-dark);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.filler-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.filler-pill {
  background-color: var(--bg-cream);
  border: 1px solid rgba(11, 59, 46, 0.04);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.filler-pill:hover {
  transform: translateY(-2px);
  background-color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

/* --- RIGHT PANEL: STACKED HOUSING CANVAS --- */
.office-hub-card {
  background-color: var(--green-dark);
  padding: 45px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.locations-vertical-stack {
  display: flex;
  flex-direction: column;
}

.stacked-office-block {
  width: 100%;
}

.location-divider-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(212, 167, 128, 0.2), transparent);
}

/* Location Badges */
.location-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background-color: rgba(212, 167, 78, 0.15);
  color: var(--gold-soft);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
}

.location-badge.secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.location-badge.nursery {
  background-color: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}

.address-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.maps-trigger-btn {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  border-bottom: 1px dashed var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.maps-trigger-btn:hover {
  color: var(--white);
  border-color: var(--white);
}

/* --- MOBILE & ALL-SCREEN EMBEDDED MAP CONTAINER FIXES --- */
.map-iframe-container {
  width: 100%;
  height: 200px;
  min-height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  background-color: rgba(255, 255, 255, 0.03);
  /* Fixes touch scrolling and drag conflicts on mobile devices */
  touch-action: pan-x pan-y;
  /* Forces hardware acceleration on iOS Safari & Android Chrome */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.map-iframe-container iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 100%;
  border: 0;
  display: block;
  pointer-events: auto;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 991px) {
  .premium-contact-section {
    padding: 50px 0 80px;
  }

  .contact-title {
    font-size: 2.3rem;
  }

  .comms-panel-card,
  .office-hub-card {
    padding: 28px 20px;
  }

  .panel-subtitle {
    font-size: 1.5rem;
  }

  /* Expands map viewports for touch targets on tablet & mobile */
  .map-iframe-container {
    height: 220px;
    min-height: 200px;
  }
}

@media (max-width: 575px) {
  .contact-title {
    font-size: 1.85rem;
  }

  .contact-lead {
    font-size: 0.95rem;
  }

  .filler-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .comms-stack {
    gap: 22px;
  }

  .comms-item {
    gap: 14px;
  }

  .comms-icon-wrap {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .map-iframe-container {
    height: 200px;
  }
}