/* =========================================
   GREENSCAPE SINGLE PROJECT PAGE STYLES (GREEN MEADOWS)
   CSS Prefix: gsprj_*
========================================= */

:root {
  --gsprj-primary-blue: #006CB7;
  --gsprj-cyan-blue: #00AEEF;
  --gsprj-dark-navy: #002E6E;
  --gsprj-deep-navy: #001A3F;
  --gsprj-green-accent: #1B7538;
  --gsprj-green-dark: #135227;
  --gsprj-green-light: #289A4B;
  --gsprj-gold-accent: #E5B326;
  --gsprj-white: #FFFFFF;
  --gsprj-bg-light: #F4F7FA;
  --gsprj-bg-alt: #EBF2F8;
  --gsprj-text-dark: #1A2738;
  --gsprj-text-muted: #5A6D82;
  --gsprj-border-light: #DCE5EE;
  --gsprj-shadow-sm: 0 4px 15px rgba(0, 46, 110, 0.06);
  --gsprj-shadow-md: 0 8px 30px rgba(0, 46, 110, 0.12);
  --gsprj-shadow-lg: 0 15px 45px rgba(0, 46, 110, 0.18);
  --gsprj-radius-sm: 8px;
  --gsprj-radius-md: 14px;
  --gsprj-radius-lg: 20px;
  --gsprj-font-head: "Playfair Display", Georgia, serif;
  --gsprj-font-body: "Bai Jamjuree", sans-serif;
}

/* =========================================
   COMMON BUTTONS & UTILITIES
========================================= */
.gsprj_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--gsprj-font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.gsprj_btn_primary {
  background: linear-gradient(135deg, var(--gsprj-primary-blue) 0%, var(--gsprj-dark-navy) 100%);
  color: var(--gsprj-white);
  box-shadow: 0 6px 20px rgba(0, 108, 183, 0.35);
}

.gsprj_btn_primary:hover {
  background: linear-gradient(135deg, var(--gsprj-green-accent) 0%, var(--gsprj-green-dark) 100%);
  color: var(--gsprj-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(27, 117, 56, 0.4);
}

.gsprj_btn_outline {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gsprj-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.gsprj_btn_outline:hover {
  background: var(--gsprj-white);
  color: var(--gsprj-dark-navy);
  border-color: var(--gsprj-white);
  transform: translateY(-3px);
}

.gsprj_btn_gold {
  background: linear-gradient(135deg, #E5B326 0%, #D49B11 100%);
  color: var(--gsprj-deep-navy);
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(229, 179, 38, 0.4);
}

.gsprj_btn_gold:hover {
  background: linear-gradient(135deg, #F5C63B 0%, #E5B326 100%);
  color: var(--gsprj-deep-navy);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(229, 179, 38, 0.55);
}

.gsprj_btn.full_width {
  width: 100%;
}

.gsprj_section_header {
  margin-bottom: 45px;
}

.gsprj_section_header.center {
  text-align: center;
}

.gsprj_section_subtitle {
  display: inline-block;
  font-family: var(--gsprj-font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gsprj-green-accent);
  margin-bottom: 10px;
}

.gsprj_section_header.white_text .gsprj_section_subtitle {
  color: var(--gsprj-cyan-blue);
}

.gsprj_section_title {
  font-family: var(--gsprj-font-head);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 600;
  color: var(--gsprj-dark-navy);
  line-height: 1.2;
  margin-bottom: 15px;
}

.gsprj_section_header.white_text .gsprj_section_title {
  color: var(--gsprj-white);
}

.gsprj_section_desc {
  font-family: var(--gsprj-font-body);
  font-size: 16px;
  color: var(--gsprj-text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.gsprj_section_header.white_text .gsprj_section_desc {
  color: rgba(255, 255, 255, 0.8);
}

.gsprj_title_line {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--gsprj-primary-blue), var(--gsprj-green-accent));
  border-radius: 2px;
  margin: 15px auto 0 auto;
}

.gsprj_badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 30px;
  text-transform: uppercase;
}

.gsprj_badge_green {
  background: rgba(27, 117, 56, 0.15);
  color: var(--gsprj-green-accent);
  border: 1px solid rgba(27, 117, 56, 0.3);
}

.gsprj_badge_gold {
  background: rgba(229, 179, 38, 0.2);
  color: #B88500;
  border: 1px solid rgba(229, 179, 38, 0.4);
}

/* =========================================
   1. SUB-NAV / BREADCRUMB STRIP (gsprj_nav)
========================================= */
.gsprj_nav {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 84px;
  z-index: 900;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.header-is-hidden .gsprj_nav {
  top: 0;
}

.gsprj_nav_container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.gsprj_nav_home_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0F172A;
  font-size: 15px;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  background: transparent;
  transition: all 0.25s ease;
}

.gsprj_nav_home_btn:hover,
.gsprj_nav_home_btn.active {
  color: #ffffff !important;
  background: #0066CC !important;
  transform: translateY(-1px);
}

.gsprj_nav_links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  flex-wrap: nowrap;
}

.gsprj_nav_divider {
  width: 1px;
  height: 20px;
  background: #e2e8f0;
  display: inline-block;
  user-select: none;
}

.gsprj_nav_links a.gsprj_nav_link {
  color: #0F172A;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.25s ease;
  white-space: nowrap;
  background: transparent;
}

.gsprj_nav_links a.gsprj_nav_link i {
  color: #0F172A;
  font-size: 14px;
  transition: transform 0.25s ease, color 0.25s ease;
}

/* Mouseover & Active Highlight: Curved Blue Background Patch with White Icon & Text */
.gsprj_nav_links a.gsprj_nav_link:hover,
.gsprj_nav_links a.gsprj_nav_link.active {
  color: #ffffff !important;
  background: #0066CC !important;
}

.gsprj_nav_links a.gsprj_nav_link:hover i,
.gsprj_nav_links a.gsprj_nav_link.active i {
  color: #ffffff !important;
}

.gsprj_nav_links a.gsprj_nav_link:hover i {
  transform: translateY(-1px);
}

.gsprj_nav_links a.gsprj_nav_link.active {
  font-weight: 600;
}

/* =========================================
   2. HERO BANNER SECTION (gsprj_hero)
========================================= */
.gsprj_hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 130px);
  min-height: 520px;
  overflow: hidden;
  background: var(--gsprj-deep-navy);
}

.gsprj_hero_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gsprj_hero_bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}



/* =========================================
   3. ABOUT & OVERVIEW SECTION (gsprj_about)
========================================= */
.gsprj_about {
  padding: 30px 0;
  background: var(--gsprj-white);
}

.gsprj_about_container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.gsprj_about_grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
}

.gsprj_about_heading {
  font-family: var(--gsprj-font-head);
  font-size: 28px;
  font-weight: 600;
  color: var(--gsprj-dark-navy);
  margin-bottom: 20px;
  line-height: 1.35;
}

.gsprj_about_paragraph {
  font-family: var(--gsprj-font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--gsprj-text-muted);
  margin-bottom: 18px;
}

/* RIGHT STACK (LOGO -> APPROVALS -> ADDRESS) - CONTAINER-LESS & CENTER ALIGNED */
.gsprj_about_right_stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  padding: 10px 0;
}

.gsprj_overview_logo_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.gsprj_overview_logo_wrap img {
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.gsprj_about_approvals_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.approval_tags {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.approval_tags .tag {
  font-size: 15px;
  color: #0F172A;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
}

.approval_tags .tag i {
  color: #0066CC;
  font-size: 16px;
}

.gsprj_overview_address_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.gsprj_overview_address_wrap p {
  font-size: 15px;
  color: #334155;
  margin-bottom: 4px;
  line-height: 1.5;
  text-align: center;
}

.gsprj_overview_address_wrap p strong {
  color: #0F172A;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gsprj_overview_address_wrap p strong i {
  color: #0066CC;
}

.gsprj_overview_address_wrap .location_link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #0066CC;
  text-decoration: none;
  transition: color 0.2s ease;
}

.gsprj_overview_address_wrap .location_link:hover {
  color: #004C99;
  text-decoration: underline;
}

/* =========================================
   4. AMENITIES & HIGHLIGHTS (gsprj_amenities)
========================================= */
.gsprj_amenities {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--gsprj-deep-navy) 0%, var(--gsprj-dark-navy) 100%);
  position: relative;
}

.gsprj_amenities_container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.gsprj_amenities_heading,
.gsprj_section_heading {
  font-family: var(--gsprj-font-head);
  font-size: 28px;
  font-weight: 600;
  color: var(--gsprj-dark-navy, #002B66);
  margin-bottom: 30px;
  line-height: 1.35;
}

.gsprj_amenities_heading,
.gsprj_section_heading.white_text {
  color: #ffffff;
}



.gsprj_highlights_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .gsprj_highlights_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gsprj_highlights_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

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

.gsprj_highlight_card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--gsprj-radius-md, 8px);
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  transition: all 0.3s ease;
}

.gsprj_highlight_card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.gsprj_highlight_card .card_icon {
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 0;
}

.gsprj_highlight_card .card_icon i {
  color: #ffffff !important;
}

.gsprj_highlight_card h3 {
  font-family: var(--gsprj-font-body);
  font-size: 16.5px;
  font-weight: 600;
  color: #ffffff !important;
  margin: 0;
  line-height: 1.35;
}



/* =========================================
   6. MASTER PLAN SECTION (gsprj_masterplan)
========================================= */
.gsprj_masterplan {
  padding: 50px 0;
  background: var(--gsprj-white);
}

.gsprj_masterplan_container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.gsprj_masterplan_wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.gsprj_masterplan_img_box {
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
  overflow: hidden;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gsprj_masterplan_img_box img {
  width: 100%;
  max-height: 440px;
  object-fit: contain;
  border: none;
  box-shadow: none;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gsprj_masterplan_img_box img:hover {
  transform: scale(1.02);
}

.gsprj_masterplan_sidebar {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gsprj_plan_info_card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 24px;
}

.gsprj_plan_info_card h3 {
  font-family: var(--gsprj-font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--gsprj-dark-navy);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gsprj_plan_info_card h3 i {
  color: #0066CC;
}

.gsprj_plan_info_card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gsprj_plan_info_card ul li {
  font-size: 14.5px;
  color: var(--gsprj-text-dark);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.gsprj_plan_info_card ul li i {
  color: #0066CC;
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* =========================================
   6.5 SPECIFICATIONS SECTION (gsprj_specs)
========================================= */
.gsprj_specs {
  padding: 50px 0;
  background: var(--gsprj-white, #ffffff);
}

.gsprj_specs_container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.gsprj_specs_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.gsprj_spec_card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--gsprj-radius-md, 8px);
  padding: 20px;
  transition: all 0.25s ease;
}

.gsprj_spec_card:hover {
  background: #ffffff;
  border-color: #0066CC;
  box-shadow: 0 10px 25px rgba(0, 102, 204, 0.08);
  transform: translateY(-2px);
}

.gsprj_spec_header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.gsprj_spec_icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(0, 102, 204, 0.1);
  color: #0066CC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.gsprj_spec_header h4 {
  font-family: var(--gsprj-font-head);
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
}

.gsprj_spec_card p {
  font-family: var(--gsprj-font-body);
  font-size: 13.5px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.gsprj_brands_box {
  background: linear-gradient(135deg, #001A3F 0%, #002E6E 100%);
  border-radius: 10px;
  padding: 24px 30px;
  color: #ffffff;
  text-align: center;
}

.gsprj_brands_title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #00AEEF;
  margin-bottom: 14px;
}

.gsprj_brands_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
}

.gsprj_brand_tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

/* =========================================
   7. LOCATION CONNECTIVITY (gsprj_location)
========================================= */
.gsprj_location {
  padding: 30px 0;
  background: linear-gradient(135deg, var(--gsprj-deep-navy) 0%, var(--gsprj-dark-navy) 100%);
}

.gsprj_location_container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.gsprj_location_wrapper {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: stretch;
}

.gsprj_location_matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--gsprj-radius-md, 8px);
  overflow: hidden;
  background: transparent;
}

.gsprj_matrix_card {
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  transition: all 0.25s ease;
  cursor: default;
}

.gsprj_matrix_card:hover {
  background: #ffffff !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gsprj_matrix_card .card_icon {
  font-size: 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease;
}

.gsprj_matrix_card .card_icon i {
  color: #ffffff !important;
  transition: color 0.25s ease;
}

.gsprj_matrix_card:hover .card_icon i {
  color: #0066CC !important;
}

.gsprj_matrix_card h4 {
  font-family: var(--gsprj-font-body);
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  transition: color 0.25s ease;
}

.gsprj_matrix_card:hover h4 {
  color: #0F172A !important;
}

.gsprj_matrix_card .time_badge {
  background: rgba(0, 163, 224, 0.25);
  border: 1px solid #00A3E0;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.gsprj_matrix_card:hover .time_badge {
  background: #0066CC !important;
  border-color: #0066CC !important;
  color: #ffffff !important;
}

.gsprj_location_map_box {
  border-radius: var(--gsprj-radius-md, 8px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  height: 100%;
  min-height: 480px;
}

.gsprj_location_map_box iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
}

/* =========================================
   8. PROJECT GALLERY (gsprj_gallery)
========================================= */
.gsprj_gallery {
  padding: 30px 0;
  background: var(--gsprj-bg-light);
}

.gsprj_gallery_container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.gsprj_gallery_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.gsprj_gallery_item {
  position: relative;
  border-radius: var(--gsprj-radius-md);
  overflow: hidden;
  height: 240px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.gsprj_gallery_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gsprj_gallery_item:hover img {
  transform: scale(1.06);
}

/* GALLERY LIGHTBOX MODAL */
.gsprj_lightbox_overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 26, 63, 0.95);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  animation: gsprjFadeIn 0.3s ease;
}

@keyframes gsprjFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.gsprj_lightbox_content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gsprj_lightbox_img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  user-select: none;
}

.gsprj_lightbox_nav_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
}

.gsprj_lightbox_nav_btn:hover {
  background: var(--gsprj-primary-blue, #0066CC);
  border-color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.gsprj_lightbox_nav_btn.prev {
  left: -70px;
}

.gsprj_lightbox_nav_btn.next {
  right: -70px;
}

.gsprj_lightbox_close {
  position: absolute;
  top: 25px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 20;
}

.gsprj_lightbox_close:hover {
  background: #ff4757;
  border-color: #ff4757;
  transform: scale(1.1);
}

.gsprj_lightbox_counter {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--gsprj-font-body);
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .gsprj_lightbox_nav_btn.prev {
    left: 10px;
  }
  .gsprj_lightbox_nav_btn.next {
    right: 10px;
  }
  .gsprj_lightbox_close {
    top: 15px;
    right: 15px;
  }
}

/* =========================================
   9. PROJECT VIDEO SECTION (gsprj_video)
========================================= */
.gsprj_video {
  padding: 30px 0;
  background: var(--gsprj-deep-navy);
}

.gsprj_video_container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.gsprj_video_player_box {
  position: relative;
  border-radius: var(--gsprj-radius-lg);
  overflow: hidden;
  box-shadow: var(--gsprj-shadow-lg);
  aspect-ratio: 16 / 9;
  background: #000;
}

.gsprj_video_poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.gsprj_video_poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gsprj_video_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 26, 63, 0.45);
  z-index: 3;
}

.gsprj_play_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 76px;
  height: 76px;
  background: var(--gsprj-green-accent, #1B7538);
  color: var(--gsprj-white);
  border: none;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 15px rgba(27, 117, 56, 0.35);
  transition: all 0.35s ease;
}

.gsprj_play_btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--gsprj-green-light, #239045);
  box-shadow: 0 0 0 25px rgba(27, 117, 56, 0.45);
}

.gsprj_play_btn i {
  margin-left: 4px;
}

.gsprj_video_info {
  position: absolute;
  bottom: 25px;
  left: 30px;
  z-index: 5;
  color: var(--gsprj-white);
}

.gsprj_video_info h3 {
  font-family: var(--gsprj-font-body);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.gsprj_video_info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* VIDEO COMING SOON TOAST NOTIFICATION */
.gsprj_video_toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999999;
  background: linear-gradient(135deg, rgba(0, 26, 63, 0.95) 0%, rgba(0, 43, 102, 0.95) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 163, 224, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45), 0 0 20px rgba(0, 163, 224, 0.2);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  max-width: 420px;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.gsprj_video_toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.gsprj_video_toast.hide {
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  pointer-events: none;
}

.gsprj_video_toast .toast_icon {
  width: 42px;
  height: 42px;
  background: var(--gsprj-green-accent, #1B7538);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(27, 117, 56, 0.4);
}

.gsprj_video_toast .toast_text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gsprj_video_toast .toast_text strong {
  font-family: var(--gsprj-font-body);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.gsprj_video_toast .toast_text span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.35;
}

.gsprj_video_toast .toast_close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  transition: color 0.2s ease;
}

.gsprj_video_toast .toast_close:hover {
  color: #ffffff;
}



/* =========================================
   RESPONSIVE DESIGN SYSTEM FOR ALL DEVICES
========================================= */

/* 1. TABLET BREAKPOINT (max-width: 1024px) */
@media (max-width: 1024px) {
  .gsprj_about_grid,
  .gsprj_masterplan_wrapper,
  .gsprj_location_wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gsprj_location_matrix {
    grid-template-columns: repeat(2, 1fr);
  }

  .gsprj_location_map_box {
    height: 380px;
    min-height: 380px;
  }

  .gsprj_highlights_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gsprj_amenities_grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .gsprj_about_card_secondary {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    margin-top: 20px;
  }

  .gsprj_highlight_card.feature_wide {
    grid-column: span 1;
  }
}

/* 2. MOBILE LANDSCAPE & TABLET (max-width: 768px) */
@media (max-width: 768px) {
  /* Subnav Horizontal Scroll Bar */
  /* Subnav Icons Only on Mobile */
  .gsprj_nav {
    top: 70px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    position: sticky;
    z-index: 900;
    width: 100%;
  }

  .gsprj_nav_container {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 50px;
    box-sizing: border-box;
  }

  .gsprj_nav_links {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    margin: 0;
    padding: 0;
  }

  .gsprj_nav_links a span {
    display: none;
  }

  .gsprj_nav_home_btn,
  .gsprj_nav_links a {
    width: 32px;
    height: 32px;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: transparent;
    color: #0F172A;
    transition: all 0.2s ease;
    flex-shrink: 0;
  }

  .gsprj_nav_home_btn i,
  .gsprj_nav_links a i {
    font-size: 16px;
    margin: 0 !important;
    display: block;
    line-height: 1;
    color: #0F172A;
    transition: color 0.2s ease;
  }

  .gsprj_nav_home_btn:hover,
  .gsprj_nav_links a:hover,
  .gsprj_nav_home_btn.active,
  .gsprj_nav_links a.active {
    color: #ffffff !important;
    background: #0066CC !important;
    transform: translateY(-1px);
  }

  .gsprj_nav_home_btn:hover i,
  .gsprj_nav_links a:hover i,
  .gsprj_nav_home_btn.active i,
  .gsprj_nav_links a.active i {
    color: #ffffff !important;
  }

  .gsprj_nav_divider {
    display: none;
  }

  /* Hero Section */
  .gsprj_hero {
    height: auto;
    min-height: auto;
    width: 100%;
  }

  .gsprj_hero_bg {
    position: relative;
    width: 100%;
    height: auto;
  }

  .gsprj_hero_bg img {
    height: auto;
    width: 100%;
    object-fit: contain;
    display: block;
  }

  /* Section Headings */
  .gsprj_section_heading {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .gsprj_section_heading::after {
    width: 45px;
    height: 3px;
  }

  /* About / Overview Section */
  .gsprj_about {
    padding: 35px 0;
  }

  .gsprj_about_container {
    padding: 0 16px;
  }

  .gsprj_about_grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .gsprj_about_right_stack {
    order: 1;
    width: 100%;
    gap: 20px;
    padding: 0;
  }

  .gsprj_about_text_box {
    order: 2;
    width: 100%;
  }

  .gsprj_about_heading {
    font-size: 24px;
    margin-bottom: 14px;
    text-align: center;
  }

  .gsprj_about_paragraph {
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 14px;
  }

  /* Section Headings */
  .gsprj_amenities_heading,
  .gsprj_section_heading {
    font-size: 20px;
    white-space: nowrap;
    margin-bottom: 20px;
  }

  .gsprj_amenities_heading::after,
  .gsprj_section_heading::after {
    width: 40px;
    height: 3px;
  }

  /* Amenities & Highlights Grid (2 in a row on mobile) */
  .gsprj_amenities {
    padding: 35px 0;
  }

  .gsprj_amenities_container {
    padding: 0 16px;
  }

  .gsprj_highlights_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gsprj_highlight_card {
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 6px;
  }

  .gsprj_highlight_card .card_icon {
    font-size: 22px;
  }

  .gsprj_highlight_card h3 {
    font-size: 13px;
    margin: 0;
    line-height: 1.3;
  }

  /* Master Plan */
  .gsprj_masterplan {
    padding: 35px 0;
  }

  .gsprj_masterplan_container {
    padding: 0 16px;
  }

  .gsprj_masterplan_img_box {
    max-height: 280px;
  }

  /* Specifications */
  .gsprj_specs {
    padding: 35px 0;
  }

  .gsprj_specs_container {
    padding: 0 16px;
  }

  .gsprj_specs_grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gsprj_brands_box {
    padding: 20px 16px;
  }

  /* Location Highlights */
  .gsprj_location {
    padding: 40px 0;
  }

  .gsprj_location_container {
    padding: 0 16px;
  }

  .gsprj_location_matrix {
    grid-template-columns: repeat(2, 1fr);
  }

  .gsprj_matrix_card {
    padding: 12px 8px;
  }

  .gsprj_matrix_card .card_icon {
    font-size: 18px;
  }

  .gsprj_matrix_card h4 {
    font-size: 12.5px;
  }

  .gsprj_matrix_card .time_badge {
    font-size: 9.5px;
    padding: 2px 6px;
  }

  .gsprj_location_map_box {
    height: 300px;
    min-height: 280px;
  }

  /* Gallery Grid */
  .gsprj_gallery {
    padding: 40px 0;
  }

  .gsprj_gallery_container {
    padding: 0 16px;
  }

  .gsprj_gallery_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gsprj_gallery_item {
    height: 160px;
  }

  /* Video Tour */
  .gsprj_video {
    padding: 25px 0;
  }

  .gsprj_video_container {
    padding: 0 16px;
  }

  .gsprj_play_btn {
    top: 40%;
    width: 50px;
    height: 50px;
    font-size: 18px;
    box-shadow: 0 0 0 8px rgba(27, 117, 56, 0.35);
  }

  .gsprj_play_btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
  }

  .gsprj_video_info {
    bottom: 10px;
    left: 12px;
    right: 12px;
  }

  .gsprj_video_info h3 {
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.25;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  }

  .gsprj_video_info p {
    font-size: 11px;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  }

  /* Toast Notification */
  .gsprj_video_toast {
    bottom: 20px;
    right: 16px;
    left: 16px;
    max-width: calc(100% - 32px);
    padding: 12px 16px;
    gap: 12px;
  }

  .gsprj_video_toast .toast_icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .gsprj_video_toast .toast_text strong {
    font-size: 14px;
  }

  .gsprj_video_toast .toast_text span {
    font-size: 12px;
  }
}

/* 3. SMALL MOBILE PHONES (max-width: 420px) */
@media (max-width: 420px) {
  .gsprj_amenities_heading,
  .gsprj_section_heading {
    font-size: 19px;
    white-space: nowrap;
  }

  .gsprj_about_heading {
    font-size: 20px;
  }

  .gsprj_gallery_grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gsprj_gallery_item {
    height: 190px;
  }
}
