:root {
  --primary-green: #72a243;
  --dark-green: #0c2b18;
  --text-dark: #111111;
  --text-muted: #555555;
  --dark-forest: #0c2b18;
  --mamootil-bg-light: #ebeeeb;
  --accent-gold: #c5a880;
  --light-bg-green: #d7f0e1;
  --glass-bg: rgba(12, 43, 24, 0.8);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none !important;
  transition: var(--nurs-transition-premium);
}

.cursor-pointer {
  cursor: pointer;
}

.fs-12 {
  font-size: 12px;
}

/* ==========================================================================
   2. TOP HEADER BANNER STYLESHEET
   ========================================================================== */
.top-header {
  height: 42px;
  background-color: var(--dark-green);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1040;
}

/* Interior Core Alignment Engine */
.top-header .container.header-inner-wrapper,
.top-header .header-inner-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.top-header .header-meta-item {
  display: flex;
  align-items: center;
  letter-spacing: 0.2px;
}

.top-header .header-action-suite {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-header .item-icon {
  font-size: 14px;
  margin-right: 8px;
  color: var(--primary-green);
  opacity: 0.9;
  transition: transform 0.2s ease;
}

.top-header .text-success-accent {
  color: #89c553 !important;
}

/* Links Routing & Hover Controls */
.top-header a,
.top-header .suite-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.top-header a:hover,
.top-header .suite-link:hover {
  color: #fff;
}

.top-header a:hover .item-icon,
.top-header .suite-link:hover .item-icon {
  transform: scale(1.1);
}

/* --- DOUBLE-LINE VOICE ROUTER DROPDOWN SYSTEM --- */
.top-header .phone-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.top-header .dropdown-arrow {
  font-size: 10px;
  opacity: 0.7;
  transition: transform 0.25s ease;
}

.top-header .phone-dropdown-wrapper:hover .dropdown-arrow {
  transform: rotate(-180deg);
}

.top-header .phone-flyout-card {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(12, 43, 24, 0.08);
  min-width: 200px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-header .phone-dropdown-wrapper:hover .phone-flyout-card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.top-header .flyout-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #333333;
  text-decoration: none;
  font-weight: 600;
  font-size: 12.5px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.top-header .flyout-line:hover {
  background-color: rgba(114, 162, 67, 0.08);
  color: var(--dark-green);
  padding-left: 18px;
}

/* --- SOCIAL MEDIA CHANNELS RACK DESIGN --- */
.top-header .header-social-separator {
  width: 1px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.15);
}

.top-header .header-social-rack {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-header .social-icon-link {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.top-header .social-icon-link.fb-hover:hover {
  color: #1877f2;
  transform: translateY(-2px);
}

.top-header .social-icon-link.ig-hover:hover {
  color: #f09433;
  transform: translateY(-2px);
}

.top-header .social-icon-link.wa-hover:hover {
  color: #25d366;
  transform: translateY(-2px);
}

/* ==========================================================================
   3. MAIN NAVBAR BASE RULES (DESKTOP)
   ========================================================================== */
.navbar {
  height: 90px;
  background: #ffffff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.02);
  padding: 0;
  z-index: 1030;

  /* STICKY TRANSITION CORRECTION ENGINE */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  transition: top 0.2s ease-in-out;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
  padding: 0 12px !important;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--primary-green);
}

.nav-link.active {
  color: var(--primary-green) !important;
  position: relative;
  font-weight: 600;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 12px;
  right: 12px;
  height: 2px;
  background-color: var(--primary-green);
}

/* --- Creative Desktop Dropdown Engine --- */
.navbar .dropdown-menu {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(12, 43, 24, 0.08);
  padding: 8px;
  min-width: 260px;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.98);
  transition: var(--transition-smooth);
}

.navbar .dropdown-item.show,
.navbar .dropdown:hover .dropdown-menu,
.navbar .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px) scale(1);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 11px;
  margin-left: 5px;
  transition: transform 0.3s ease;
  vertical-align: initial;
}

.navbar .dropdown:hover .dropdown-toggle::after {
  transform: rotate(-180deg);
  color: var(--primary-green);
}

.navbar .dropdown-item {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 10px 16px;
  border-radius: 8px;
  position: relative;
  background: transparent;
  transition: var(--transition-smooth);
}

.navbar .dropdown-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0.4);
  height: 60%;
  width: 3px;
  background-color: var(--primary-green);
  border-radius: 0 4px 4px 0;
  opacity: 0;
  transition: var(--transition-smooth);
}

.navbar .dropdown-item:hover {
  color: var(--dark-green);
  background-color: rgba(114, 162, 67, 0.08);
  padding-left: 22px;
}

.navbar .dropdown-item:hover::before {
  opacity: 1;
  transform: translateY(-50%) scaleY(1);
}

/* --- Brand Logo Graphics Structural Rules --- */
.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.brand-text-wrapper {
  line-height: 1.1;
}

.brand-main-title {
  font-weight: 800;
  font-size: 26px;
  color: #113821;
  letter-spacing: -0.5px;
  display: block;
}

.brand-subtitle-badge {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-green), #4a7325);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  display: inline-block;
  margin-top: 2px;
  box-shadow: 0 2px 4px rgba(114, 162, 67, 0.2);
}

/* --- Call To Action Control Triggers --- */
.nav-buttons-action-group {
  display: flex;
  align-items: center;
}

.btn-quote {
  color: #fff;
  background-color: #618e36;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  border: none;
  padding: 12px 24px;
  transition: opacity 0.2s;
}

.btn-quote:hover {
  background: #618e36;
  color: #e7b95c;
}

.btn-brochure {
  background: #113821;
  color: white;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  border: none;
  padding: 12px 24px;
  margin-left: 12px;
  transition: background-color 0.2s;
}

.btn-brochure:hover {
  background-color: #0c2b18;
  color: #34d399;
}

/* ==========================================================================
   4. MOBILE SCREEN RESPONSIVE RESTRUCTURE (Targets Viewports Under 992px)
   ========================================================================== */
@media (max-width: 991.98px) {
  .navbar {
    height: auto;
    top: 0 !important;
    /* Forces mobile to bind neatly to viewports */
  }

  .logo-img {
    height: 80px;
  }

  /* Solid Background Clean Card Design Box Injection */
  .navbar-collapse {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(12, 43, 24, 0.1);
    border: 1px solid rgba(114, 162, 67, 0.15);
    margin-top: 12px;
    padding: 20px;
  }

  /* Convert row link items into stacked visual columns */
  .navbar-nav {
    gap: 8px;
    margin-bottom: 20px;
  }

  .nav-link {
    width: 100%;
    padding: 12px 16px !important;
    border-radius: 8px;
    background-color: #f8faf7;
    justify-content: space-between;
  }

  /* Interactive mobile highlights */
  .nav-link:hover,
  .nav-link:focus {
    background-color: rgba(114, 162, 67, 0.08);
    color: var(--dark-green);
    padding-left: 20px !important;
  }

  /* Remove active underline variant on small screen alignments */
  .nav-link.active::after {
    display: none;
  }

  .nav-link.active {
    background-color: rgba(114, 162, 67, 0.12) !important;
  }

  /* Flat Clean Mobile Dropdown Panel */
  .navbar .dropdown-menu {
    position: relative;
    top: 0 !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none;
    background: #fdfdfd;
    border: 1px dashed rgba(114, 162, 67, 0.2);
    margin-top: 6px;
    padding: 6px;
    display: none;
  }

  .navbar .dropdown-menu.show {
    display: block;
  }

  .navbar .dropdown-toggle::after {
    transition: transform 0.2s ease;
  }

  .navbar .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(-180deg);
  }

  .navbar .dropdown-item {
    padding: 10px 14px;
    margin-bottom: 2px;
  }

  .navbar .dropdown-item:last-child {
    margin-bottom: 0;
  }

  /* Action Suite Stacked Adaptations */
  .nav-buttons-action-group {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .btn-quote,
  .btn-brochure {
    width: 100%;
    margin-left: 0 !important;
    text-align: center;
    justify-content: center;
    padding: 14px;
  }
}

/* --- HERO SLIDER & FEATURE BAR LAYOUT --- */
/* ==========================================================================
   1. HERO SLIDER CORE LAYOUT
   ========================================================================== */
.hero-section {
  position: relative;
  height: 750px;
  overflow: hidden;
  background-color: #000;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  transition: transform 8s ease;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding-bottom: 160px;
  /* Space adjusted to avoid overlap with split navigation */
}

/* ==========================================================================
   2. HERO TYPOGRAPHY & BUTTONS
   ========================================================================== */
.badge-nature {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero-desc {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
}

.btn-explore {
  background-color: #2ecc71;
  /* Fallback for var(--primary-green) */
  color: #ffffff;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-explore:hover {
  background-color: #27ae60;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
}

/* Navigation arrows override */
.hero-section .swiper-button-next,
.hero-section .swiper-button-prev {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transform: translateY(-40px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-section .swiper-button-next:after,
.hero-section .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.hero-section .swiper-button-next:hover,
.hero-section .swiper-button-prev:hover {
  background: #2ecc71;
  box-shadow: 0 0 15px rgba(46, 204, 113, 0.5);
}

/* ==========================================================================
   3. NEW DECOUPLED INDEPENDENT SPLIT BOTTOM NAVIGATION BAR
   ========================================================================== */
.feature-bar-integrated {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: linear-gradient(to top,
      rgba(10, 25, 16, 0.98) 0%,
      rgba(20, 35, 26, 0.85) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.navigation-split-tab {
  display: flex;
  align-items: center;
  padding: 30px 40px;
  text-decoration: none !important;
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Vertical divider line between the two main split portions */
.navigation-split-tab:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hover base animation */
.navigation-split-tab:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Specific colored focus indicator bars on hover */
.entry-commercial:hover {
  box-shadow: inset 0 -4px 0 0 #3498db;
  /* Blue accent for structural engineering theme */
}

.entry-nursery:hover {
  box-shadow: inset 0 -4px 0 0 #2ecc71;
  /* Green accent for flora/nursery theme */
}

.nav-icon-wrapper {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.4);
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.entry-commercial:hover .nav-icon-wrapper {
  color: #3498db;
  transform: scale(1.1);
}

.entry-nursery:hover .nav-icon-wrapper {
  color: #2ecc71;
  transform: scale(1.1);
}

.nav-tab-content {
  flex-grow: 1;
}

.nav-text-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #ffffff;
}

.nav-text-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.nav-arrow {
  color: rgba(255, 255, 255, 0.2);
  font-size: 14px;
  transition: all 0.3s ease;
}

.navigation-split-tab:hover .nav-arrow {
  color: #ffffff;
  transform: translateX(5px);
}

/* ==========================================================================
   4. SWIPER DOT BULLET PAGINATION (Positions dynamically above the custom bottom bar)
   ========================================================================== */
.hero-pagination {
  bottom: 135px !important;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 9;
}

.hero-pagination .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.35;
  width: 8px;
  height: 8px;
  margin: 0 5px !important;
  transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: #2ecc71 !important;
  opacity: 1;
  width: 24px;
  /* Creates an elegant capsule shape for the current active slide indicator */
  border-radius: 4px;
}

/* ==========================================================================
   5. RESPONSIVE MOBILE OPTIMIZATIONS (FIXED BLACK BARS)
   ========================================================================== */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 40px;
  }

  .navigation-split-tab {
    padding: 24px 20px;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    /* Force a solid fixed height on mobile instead of auto/min-height 
           so that Swiper child tracks can inherit 100% height accurately */
    height: 720px;
  }

  .hero-swiper,
  .hero-slide {
    height: 100% !important;
  }

  .hero-content {
    padding-top: 60px;
    /* Balanced padding to keep content centered between top navbar and bottom tabs */
    padding-bottom: 200px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.25;
  }

  .hero-desc {
    font-size: 14px;
  }

  /* Stacked layout adjustments for split bars on mobile screens */
  .navigation-split-tab:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-pagination {
    /* Pushes dots cleanly out of the way of stacked bottom buttons */
    bottom: 190px !important;
  }
}

/* ==========================================================================
   ABOUT US SECTION - COMPLETE STYLESYSTEM
   ========================================================================== */

/* --- SECTION CONTAINMENT & LAYOUT --- */
.about-section {
  padding: 50px 0;
  background-color: #ffffff;
  overflow: hidden;
  /* Safely anchors absolute layered visual offsets */
  position: relative;
}

.about-text-container {
  position: relative;
}

/* --- ARCHITECTURAL LAYERED OFFSET FRAMES (LEFT SIDE) --- */
.architectural-frame-wrapper {
  position: relative;
  padding: 40px 20px 40px 40px;
  /* Provides safe structural clearance for offset elements */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Base style for crisp responsive rendering of images inside frames */
.architectural-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Top-Left Minimalist Structural Background Block Accent */
.layer-accent-block {
  position: absolute;
  top: 0;
  left: 15px;
  width: 140px;
  height: 140px;
  background-color: rgba(114, 162, 67, 0.08);
  border-radius: 24px;
  z-index: 1;
}

/* Main Core Anchor Frame */
.layer-frame-main {
  position: relative;
  width: 85%;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(12, 43, 24, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Elevated Overlapping Detail Card Frame */
.layer-frame-overlap {
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 50%;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 3;
  box-shadow: 0 30px 60px rgba(12, 43, 24, 0.15);
  border: 6px solid #ffffff;
  /* Thick gallery borders to isolate layers dynamically */
}

/* Hover Micro-interactions */
.layer-frame-main:hover .architectural-img {
  transform: scale(1.04);
}

.layer-frame-overlap:hover .architectural-img {
  transform: scale(1.06);
}

/* Floating Clean Text Accent Tag on the overlapping card */
.floating-botanical-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(12, 43, 24, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tag-pulse {
  width: 6px;
  height: 6px;
  background-color: var(--primary-green);
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 0 0 rgba(114, 162, 67, 0.7);
  animation: tagPulseGlobe 2s infinite;
}

.tag-text {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

@keyframes tagPulseGlobe {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(114, 162, 67, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(114, 162, 67, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(114, 162, 67, 0);
  }
}

/* --- EDITORIAL TYPOGRAPHY & TEXT BLOCKS (RIGHT SIDE) --- */
.legacy-watermark-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}

.legacy-huge-number {
  font-size: 100px;
  font-weight: 900;
  line-height: 0.8;
  background: linear-gradient(180deg,
      rgba(114, 162, 67, 0.64) 0%,
      rgba(114, 162, 67, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Arial Black", Impact, sans-serif;
  margin-right: 15px;
}

.legacy-badge-content {
  border-left: 3px solid var(--primary-green);
  padding-left: 15px;
}

.legacy-tagline {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-green);
  margin: 0 0 2px 0;
}

.legacy-title-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark-green);
  margin: 0;
  letter-spacing: -0.5px;
}

.about-title {
  color: var(--dark-green);
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.about-title mark {
  background: transparent;
  color: var(--primary-green);
  padding: 0;
}

.about-desc-lead {
  font-size: 1.2rem;
  color: #475569;
  font-weight: 500;
  line-height: 1.65;
  font-family: "Rubik", sans-serif;
}

.about-desc-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 25px;
}

/* --- PREMIUM SPLIT-PANE STAT BOXES --- */
.premium-stat-box {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(12, 43, 24, 0.06);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(12, 43, 24, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.premium-stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(12, 43, 24, 0.07);
  border-color: rgba(114, 162, 67, 0.2);
}

/* Symmetrical container box for left icons */
.stat-icon-pane {
  width: 76px;
  height: 76px;
  min-width: 76px;
  /* Prevents the circular container box from skewing or compressing */
  background-color: rgba(114, 162, 67, 0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  transition: background-color 0.3s ease;
}

.premium-stat-box:hover .stat-icon-pane {
  background-color: rgba(114, 162, 67, 0.12);
}

/* Custom icon sizing constraints */
.stat-left-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

/* Text pane on the right side */
.stat-content-pane {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-pane-number {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark-green);
  line-height: 1.1;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.stat-pane-suffix {
  color: var(--primary-green);
  font-weight: 700;
  margin-left: 1px;
}

.stat-pane-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.read-more {
  color: var(--primary-green, #72a243);
  font-weight: bold;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* --- HIGH-END RESPONSIVE SYSTEM REFINEMENTS --- */
@media (max-width: 991px) {
  .about-section {
    padding: 20px 0;
  }



  .about-title {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .architectural-frame-wrapper {
    padding: 20px 10px;
  }

  .layer-frame-main {
    width: 100%;
    height: 340px;
  }

  /* Safely hides complex absolute overlapping layers on mobile to keep interfaces clean */
  .layer-frame-overlap,
  .layer-accent-block {
    display: none;
  }

  .about-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .premium-stat-box {
    padding: 16px;
  }

  .stat-icon-pane {
    width: 60px;
    height: 60px;
    min-width: 60px;
    margin-right: 14px;
  }

  .stat-left-icon {
    width: 36px;
    height: 36px;
  }

  .stat-pane-number {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 38px;
  }

  .hero-section {
    height: 680px;
  }

  .feature-tab {
    padding: 18px 14px;
  }

  .feature-text-title {
    font-size: 13px;
  }

  .navbar .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
  }

  .navbar .dropdown-menu.show {
    display: block;
  }

  .about-section {
    padding: 20px 0;
  }

  .about-title {
    font-size: 36px;
  }

  .bento-gallery-container {
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    height: auto;
    min-height: 620px;
  }

  .hero-content {
    padding-bottom: 240px;
  }

  .feature-bar-integrated {
    background: var(--dark-forest);
  }

  .feature-tab {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-right: none;
  }

  .item-tall-statement {
    height: 340px;
  }

  .stat-chip-card {
    padding: 20px;
  }

  .stat-chip-number {
    font-size: 28px;
  }
}

/* ==========================================================================
   INDUSTRIAL CAPABILITIES SECTION
   ========================================================================== */

.industrial-capabilities-section {
  padding: 50px 0;
  background-color: #ebf2e9;
}

/* --- CENTERED CHRONICLE WATERMARK HEADER --- */
.section-editorial-header {
  position: relative;
}

.capabilities-watermark-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -75%);
  font-size: 110px;
  font-weight: 900;
  letter-spacing: 8px;
  background: linear-gradient(180deg,
      rgba(114, 162, 67, 0.31) 0%,
      rgba(114, 162, 67, 0.02) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Arial Black", Impact, sans-serif;
  user-select: none;
  pointer-events: none;
  width: 100%;
  z-index: 1;
}

.capabilities-title-wrapper {
  position: relative;
  z-index: 2;
}

.capabilities-mini-tagline {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--primary-green);
  margin-bottom: 12px;
}

.capabilities-central-title {
  color: var(--dark-green);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  max-width: 800px;
  margin: 0 auto 20px auto;
  font-family: "Rubik", sans-serif;
}

.capabilities-central-title mark {
  background: transparent;
  color: var(--primary-green);
  padding: 0;
}

.header-accent-line {
  width: 60px;
  height: 3px;
  background-color: var(--primary-green);
  margin: 0 auto 24px auto;
  border-radius: 2px;
}

.capabilities-central-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted, #55625a);
  max-width: 820px;
  margin: 0 auto;
}

/* --- THE SWIPER FRAMEWORK CONTAINER PATCH --- */
.capabilitiesSwiper {
  padding: 20px 0px 0px 0px !important;
  margin-top: 20px;
}

/* --- CARD ENGINE (FIXED STYLING FRAMEWORK) --- */
.modern-industrial-card {
  position: relative;
  height: 400px;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(12, 43, 24, 0.03);
  border: 3px solid rgb(142, 197, 66);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.card-image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.ind-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card-static-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(12, 43, 24, 0) 0%,
      rgba(12, 43, 24, 0.45) 45%,
      rgba(12, 43, 24, 0.9) 100%);
  z-index: 2;
}

/* --- LABELS & BASE TYPOGRAPHY --- */
.card-static-content {
  position: relative;
  z-index: 3;
  width: 100%;
  transition:
    transform 0.4s ease,
    opacity 0.3s ease;
}

.focus-priority-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--primary-green);
  padding: 5px 12px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.support-tier-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 5px 12px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ind-display-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.25;
  text-shadow: 0 2px 4px rgba(12, 43, 24, 0.4);
  /* Added soft shadow depth to title text */
}

/* --- FLAT LUXURY SLIDE-OVER HOVER PANEL --- */
.card-hover-slide-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 43, 24, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 4;
  padding: 35px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  transform: translateY(105%);
  /* Pushed to 105% to prevent screen sub-pixel bleeding over titles */
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.4, 1);
}

.slide-panel-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.slide-panel-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.slide-panel-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 25px;
  margin-top: 0;
}

.slide-panel-action {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slide-panel-action i {
  font-size: 14px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

/* --- INTERACTIVE STATE CHOREOGRAPHY --- */
@media (hover: hover) {
  .modern-industrial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(114, 162, 67, 0.18);
    /* Clean brand-green soft hover glow */
  }

  .modern-industrial-card:hover .ind-bg-img {
    transform: scale(1.05);
  }

  .modern-industrial-card:hover .card-hover-slide-panel {
    transform: translateY(0);
  }

  .modern-industrial-card:hover .card-static-content {
    opacity: 0;
    transform: translateY(-10px);
  }

  .slide-panel-action:hover i {
    transform: translateX(4px);
  }
}

/* --- BOTTOM SLIDER NAVIGATION AREA --- */
.capabilities-slider-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.capabilities-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--dark-green);
  color: var(--dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
  user-select: none;
}

.capabilities-nav-btn:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: #ffffff;
}

.capabilities-view-all-btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 30px;
  background-color: var(--dark-green);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--dark-green);
}

.capabilities-view-all-btn:hover {
  background-color: transparent;
  color: var(--dark-green);
}

/* --- RESPONSIVE STRUCTURAL TUNING --- */
@media (max-width: 1199px) {
  .capabilities-watermark-text {
    font-size: 90px;
  }

  .capabilities-central-title {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .industrial-capabilities-section {
    padding: 40px 0;
  }


  .capabilities-watermark-text {
    display: none;
  }

  .capabilities-central-title {
    font-size: 32px;
  }

  /* LAYOUT: Keeps explicit uniform card heights */
  .modern-industrial-card {
    height: 440px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 25px;
  }

  /* Gradient overlay adjustments for mobile viewports */
  .card-static-overlay {
    display: block !important;
    background: linear-gradient(180deg,
        rgba(12, 43, 24, 0) 0%,
        rgba(12, 43, 24, 0.6) 40%,
        rgba(12, 43, 24, 0.95) 100%);
  }

  .card-static-content {
    transform: none !important;
    opacity: 1 !important;
    margin-bottom: 0;
  }

  .card-hover-slide-panel {
    position: relative;
    transform: translateY(0);
    height: auto;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 12px 0 0 0;
    z-index: 3;
  }

  .slide-panel-title {
    display: none;
  }

  /* CLAMPING: Limits mobile descriptions to 3 lines with dynamic ellipsis (...) */
  .slide-panel-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .capabilities-slider-footer {
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .capabilities-central-title {
    font-size: 24px;
  }

  .modern-industrial-card {
    height: 400px;
    padding: 20px;
  }

  .ind-display-title {
    font-size: 19px;
  }

  .slide-panel-desc {
    font-size: 13px;
    line-height: 1.5;
    -webkit-line-clamp: 3;
  }

  .capabilities-view-all-btn {
    padding: 11px 22px;
    font-size: 12px;
  }

  .capabilities-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
}

/* TOUCH DEVICES INTERACTIVE BRIDGE */
.modern-industrial-card.touch-active {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(12, 43, 24, 0.08);
}

.modern-industrial-card.touch-active .ind-bg-img {
  transform: scale(1.05);
}

.modern-industrial-card.touch-active .card-hover-slide-panel {
  transform: translateY(0);
}

.modern-industrial-card.touch-active .card-static-content {
  opacity: 0;
  transform: translateY(-10px);
}

/* Banner  */

/* ==========================================================================
   EDITORIAL BRAND FEATURE CARDS (CENTERED MOBILE VERTICAL STACK)
   ========================================================================== */

.editorial-features-section {
  padding: 50px 0 100px 0;
  /* Expanded bounding padding to support grid layouts */
  background-color: #ffffff;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  position: relative;
  overflow: hidden;
}

.features-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 50px;
}

.features-split-engine {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

/* --- LEFT COLUMN: BRAND ANCHOR HOOKS --- */
.features-anchor-panel {
  flex: 0 0 340px;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.tag-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.editorial-super-tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-green);
}

.editorial-animated-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
      rgba(114, 162, 67, 0.5) 0%,
      rgba(114, 162, 67, 0) 100%);
}

.editorial-main-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  color: #0c2b18;
  /* Rich brand dark green */
  letter-spacing: -1px;
  margin: 0 0 20px 0;
}

.serif-italic-accent {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--primary-green);
}

.editorial-side-caption {
  font-size: 15px;
  line-height: 1.65;
  color: #55625a;
  margin: 0;
}

/* --- RIGHT COLUMN: LUXURY GRID ENGINE --- */
.features-deck-panel {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 20px;
}

.feature-luxury-card {
  background: #f7faf6;
  /* Soft organic off-white matching image assets */
  border: 1px solid rgba(12, 43, 24, 0.04);
  border-radius: 24px;
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(12, 43, 24, 0.01);
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.4s ease;
}

/* Subtle, crisp interactive inner border */
.card-architectural-border {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 24px;
  z-index: 3;
  pointer-events: none;
  transition: border-color 0.4s ease;
}

/* Rhythmic architectural arrangement */
@media (min-width: 1301px) {
  .format-stagger-down {
    transform: translateY(40px);
  }
}

/* Dynamic radial background glow on card hover */
.card-interaction-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center,
      rgba(114, 162, 67, 0.07) 0%,
      rgba(255, 255, 255, 0) 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.feature-icon-frame {
  width: 52px;
  height: 52px;
  color: #3b453d;
  background: #ffffff;
  padding: 12px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 8px 20px rgba(12, 43, 24, 0.03);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.4s ease,
    background-color 0.4s ease,
    box-shadow 0.4s ease;
}

.feature-icon-frame svg {
  width: 100%;
  height: 100%;
}

.feature-text-bundle {
  position: relative;
  z-index: 2;
}

.feature-headline {
  font-size: 18px;
  font-weight: 700;
  color: #0c2b18;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.feature-paragraph {
  font-size: 14px;
  line-height: 1.6;
  color: #55625a;
  margin: 0;
}

/* --- SYSTEM INTERACTION CHOREOGRAPHY --- */
@media (hover: hover) {
  .feature-luxury-card:hover {
    background: #ffffff;
    box-shadow: 0 30px 60px rgba(12, 43, 24, 0.06);
  }

  .feature-luxury-card.format-stagger-up:hover {
    transform: translateY(-8px);
  }

  /* Safely handles staggering logic with micro hover additions */
  .feature-luxury-card.format-stagger-down:hover {
    transform: translateY(32px);
  }

  .feature-luxury-card:hover .card-interaction-glow {
    opacity: 1;
  }

  .feature-luxury-card:hover .card-architectural-border {
    border-color: rgba(114, 162, 67, 0.2);
  }

  .feature-luxury-card:hover .feature-icon-frame {
    color: #ffffff;
    background-color: var(--primary-green);
    box-shadow: 0 12px 24px rgba(114, 162, 67, 0.25);
    transform: scale(1.05);
  }
}

/* --- RESPONSIBLY RESCALED DEVICE VIEWPORTS --- */
@media (max-width: 1300px) {
  .editorial-features-section {
    padding: 80px 0;
  }

  .features-split-engine {
    gap: 40px;
  }

  .features-deck-panel {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding-top: 0;
  }

  .features-anchor-panel {
    flex: 0 0 280px;
  }

  .editorial-main-title {
    font-size: 36px;
  }

  .format-stagger-down {
    transform: none;
  }

  /* Disables staggered drops on double columns */
}

@media (max-width: 991px) {
  .features-split-engine {
    flex-direction: column;
    gap: 45px;
    align-items: center;
    text-align: center;
  }

  .features-anchor-panel {
    position: relative;
    top: 0;
    flex: 1 1 auto;
    max-width: 550px;
  }

  .tag-wrapper {
    justify-content: center;
  }

  .editorial-animated-line {
    display: none;
  }

  /* Clear out decorative line on mobile center alignment */
  .features-container {
    padding: 0 30px;
  }
}

@media (max-width: 767px) {

  /* 
       UPDATED VERTICAL STACK MODE:
       Forces cards to layout downward dynamically while centering everything symmetrically.
    */
  .editorial-features-section {
    padding: 60px 0;
  }

  .features-container {
    padding: 0 24px;
  }

  .editorial-main-title {
    font-size: 32px;
  }

  .editorial-side-caption {
    font-size: 14px;
    max-width: 420px;
    margin: 0 auto;
  }

  .features-deck-panel {
    display: flex;
    flex-direction: column;
    /* Arranges elements straight down */
    align-items: center;
    /* Keeps everything beautifully centered */
    width: 100%;
    gap: 20px;
    margin-top: 20px;
  }

  .feature-luxury-card {
    width: 100%;
    max-width: 400px;
    /* Limits excessive landscape stretching on phone views */
    text-align: center;
    padding: 35px 24px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(12, 43, 24, 0.03);
    border: 1px solid rgba(12, 43, 24, 0.06);
  }

  .feature-icon-frame {
    margin: 0 auto 24px auto;
    /* Perfectly centers icon frame top-middle */
    color: #ffffff;
    background-color: var(--primary-green);
    box-shadow: 0 8px 20px rgba(114, 162, 67, 0.2);
  }
}

/* --- ARROW & NAVIGATION FIXES --- */
.controls-deck-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.nav-deck-arrow {
  width: 50px;
  height: 50px;
  border: 2px solid var(--dark-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

/* Icon sizing for the large circles */
.nav-deck-arrow i {
  font-size: 16px;
  color: var(--dark-green);
  transition: 0.3s;
}

.nav-deck-arrow:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

.nav-deck-arrow:hover i {
  color: white;
}

/* --- VIEW ALL BUTTON FIXES --- */
.deck-view-all-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--dark-green);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
}

.btn-icon-circle {
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon sizing for the small button circle */
.btn-icon-circle i {
  font-size: 10px;
  color: var(--dark-green);
}

/* product designs section   */

/* ==========================================================================
   MODERN OVERHAULED SLATE GRID FILTER ARCHITECTURE
   ========================================================================== */
.design-lookbook-section {
  padding: 60px 0;
  background-color: #ebf2e9;
  overflow: visible !important;
}

.design-lookbook-section .row.align-items-start {
  align-items: flex-start !important;
}

.design-sticky-column-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  z-index: 90;
  overflow: visible !important;
}

/* --- LEFTSIDE MENU RACK SYSTEM --- */
.design-studio-left-canvas {
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(12, 43, 24, 0.03);
  border: 1px solid rgba(12, 43, 24, 0.02);
}

.design-studio-title-block {
  margin-bottom: 35px;
}

.design-title-backdrop-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--primary-green, #72a243);
  background: rgba(114, 162, 67, 0.08);
  display: inline-block;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.design-studio-main-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark-green, #0c2b18);
  margin: 0;
}

.design-serif-italic {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--primary-green, #72a243);
}

.design-title-break {
  display: block;
}

.design-studio-decorative-dot {
  width: 6px;
  height: 6px;
  background: var(--primary-green, #72a243);
  border-radius: 50%;
  margin: 15px auto 0 auto;
}

.design-studio-navigation-rack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.design-studio-nav-pill {
  border: none;
  background: #f4f7f5;
  display: flex;
  align-items: center;
  padding: 14px 20px;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  width: 100%;
}

.design-pill-index {
  font-size: 11px;
  font-weight: 700;
  color: #9cb0a3;
  margin-right: 10px;
}

.design-pill-title {
  font-size: 14px;
  font-weight: 700;
  color: #4f5f54;
  z-index: 3;
  transition: color 0.3s ease;
}

.design-pill-bg-blob {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-green, #0c2b18);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.4, 1);
  z-index: 1;
  border-radius: 50px;
}

.design-studio-nav-pill.active .design-pill-bg-blob {
  transform: scaleX(1);
}

.design-studio-nav-pill.active .design-pill-title {
  color: #ffffff;
}

/* --- ISOLATED ROW REPLACEMENT TO FORCE DISPLAY GRID --- */
.design-mobile-grid-container {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px;
}

.design-lookbook-grid-item {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

.design-lookbook-interactive-card {
  position: relative;
  background: transparent;
  width: 100%;
}

.design-lookbook-frame {
  width: 100%;
  height: 260px;
  border-radius: 18px 18px 32px 18px;
  overflow: hidden;
  position: relative;
  background: #0c2b18;
}

.design-lookbook-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fffcfc;
}

.design-lookbook-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 60%,
      rgba(0, 0, 0, 0.35) 100%);
  z-index: 2;
  pointer-events: none;
}

/* --- IN-IMAGE SWATCHES --- */
.design-color-swatch-dock {
  position: absolute;
  bottom: 12px;
  left: 14px;
  z-index: 10;
  display: flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 8px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.design-color-swatch-dock .design-swatch {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #ffffff;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.design-color-swatch-dock .design-swatch.active,
.design-color-swatch-dock .design-swatch:hover {
  transform: scale(1.2);
  box-shadow: 0 0 0 2px #72a243;
}

.design-color-grey {
  background-color: #a6a6a6;
}

.design-color-terracotta {
  background-color: #b34e36;
}

.design-color-mettalic {
  background-color: #1a1a1a;
}

.design-color-black {
  background-color: #000000;
}

.design-color-mwhite {
  background-color: #cbcacc;
}

.design-color-clear {
  background-color: #cec9bf;
}

.design-lookbook-overlap-box {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  margin: -25px 8px 0 8px;
  z-index: 5;
  border: 1px solid #edf2ef;
  box-shadow: 0 8px 25px rgba(12, 43, 24, 0.03);
}

.design-lookbook-micro-tag {
  font-size: 8.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: #72a243;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}

.design-lookbook-card-title {
  font-size: 15px;
  font-weight: 800;
  color: #0c2b18;
  margin-bottom: 4px;
  line-height: 1.2;
}

.design-lookbook-card-desc {
  font-size: 11.5px;
  line-height: 1.4;
  color: #63736a;
  margin: 0;
}

/* --- VIEW MORE LINK DESIGN OVERRIDES --- */
.design-viewmore-frame-accent {
  background: #0c2b18 !important;
}

.design-viewmore-icon {
  font-size: 28px;
  color: #72a243;
}

.design-viewmore-tag-text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9cb0a3;
  font-weight: 700;
}

.design-viewmore-box-override {
  background: #f4f7f5 !important;
  padding: 14px 10px !important;
}

.design-lookbook-grid-item.design-lookbook-hidden {
  display: none !important;
}

/* ==========================================================================
   STRICT DISCIPLINED RESPONSIVE LAYOUT MATRIX FOR MOBILE SCREEN
   ========================================================================== */
@media (max-width: 767px) {

  /* Destroys any parent inline block overrides and forces 2 items per row */
  .design-mobile-grid-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 0 4px !important;
  }

  .design-lookbook-frame {
    height: 145px !important;
    border-radius: 12px 12px 22px 12px !important;
  }

  .design-color-swatch-dock {
    bottom: 6px !important;
    left: 8px !important;
    padding: 3px 5px !important;
    gap: 4px !important;
  }

  .design-color-swatch-dock .design-swatch {
    width: 10px !important;
    height: 10px !important;
  }

  .design-lookbook-overlap-box {
    padding: 10px 8px !important;
    margin: -15px 4px 0 4px !important;
    border-radius: 10px !important;
  }

  .design-lookbook-card-title {
    font-size: 12px !important;
  }

  .design-lookbook-card-desc {
    font-size: 10px !important;
    line-height: 1.3 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .design-viewmore-icon {
    font-size: 22px !important;
  }

  .design-viewmore-tag-text {
    font-size: 8.5px !important;
  }
}

@media (max-width: 991px) {
  .design-sticky-column-wrapper {
    position: relative;
    top: 0;
    margin-bottom: 20px;
    width: 100%;
  }

  .design-studio-navigation-rack {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .design-studio-nav-pill {
    width: auto;
  }

  .design-mobile-grid-container {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* banner  */

/* Banner Container */
.stats-banner {
  width: 100%;
  background:
    linear-gradient(rgba(10, 25, 12, 0.85), rgba(10, 25, 12, 0.85)),
    url("./interlocking\ photos.png") center/cover no-repeat;
  border-radius: 4px;
  padding: 30px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  position: relative;
}

/* Individual Stat Item */
.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
  padding: 10px 0;
}

/* Vertical dividers between items */
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}

/* Icon Wrapper styling */
.icon-box {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(163, 230, 53, 0.2);
  border-radius: 8px;
  width: 54px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.icon-box svg {
  width: 28px;
  height: 28px;
  stroke: #a3e635;
  /* Bright accent green matching your image */
  fill: none;
  stroke-width: 1.5;
}

/* Text Wrapper styling */
.text-box {
  display: flex;
  flex-direction: column;
}

.counter-number {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

.stat-label {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 4px;
  font-weight: 400;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
  .stats-banner {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
  }

  .stat-item:nth-child(2)::after {
    display: none;
    /* Hide divider for grid rows */
  }
}

@media (max-width: 500px) {
  .stats-banner {
    grid-template-columns: 1fr;
    gap: 25px 0;
  }

  .stat-item::after {
    display: none;
    /* Hide all dividers on mobile layout */
  }

  .stat-item {
    justify-content: flex-start;
    padding-left: 15%;
  }
}

/* --- MOBILE POPUP SYSTEM --- */
@media (max-width: 991px) {

  /* 1. Turn the product showcase row into a clean popup container when filtering */
  .lookbook-showcase-row {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 15px;
  }

  /* 2. Style the visible item like an elevated floating popup card */
  .lookbook-grid-item:not(.lookbook-hidden) {
    animation: mobilePopupShow 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    position: relative;
    z-index: 99;
  }

  /* 3. Elevate card design for mobile popup clarity */
  .lookbook-grid-item:not(.lookbook-hidden) .lookbook-interactive-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(12, 43, 24, 0.15) !important;
    border: 2px solid var(--primary-green);
    overflow: hidden;
  }

  /* 4. Ensure the inner layout frames look sharp inside the popup view */
  .lookbook-grid-item:not(.lookbook-hidden) .lookbook-overlap-box {
    margin: 0;
    border-radius: 0 0 22px 22px;
    border: none;
    box-shadow: none;
    background: #ffffff;
  }

  /* Popup entry animation */
  @keyframes mobilePopupShow {
    0% {
      opacity: 0;
      transform: scale(0.9) translateY(30px);
    }

    100% {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }
}

/* works  */

.mamootil-seamless-section {
  padding: 50px 0;
  background-color: var(--mamootil-bg-light);
  position: relative;
  overflow: hidden;
}

.works-section-header-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 8px;
}

.works-section-main-heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .works-section-main-heading {
    font-size: 36px;
  }
}

/* --- SLIDER GENERAL --- */
.works-slider-window {
  overflow: hidden;
  width: 100%;
  border-radius: 24px;
  position: relative;
}

.works-slide-item {
  width: 100%;
  outline: none;
}

/* --- LEFT PANEL: GALLERY STRUCTURE --- */
.works-works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
}

/* --- MOBILE SPECIFIC FIXED SIZES --- */
@media (max-width: 639px) {
  .works-left-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    height: 150px;
    /* Forces fixed frame for stacked row */
  }

  .works-small-card {
    height: 150px !important;
  }

  .works-main-card {
    height: 270px !important;
    /* Fixed frame size for the large picture */
  }
}

/* --- DESKTOP SPECIFIC FIXED SIZES --- */
@media (min-width: 640px) {
  .works-works-grid {
    grid-template-columns: 1fr 1.2fr;
    height: 440px;
    /* Locked frame height for total gallery layout */
  }

  .works-left-stack {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 440px;
  }

  .works-small-card {
    height: 212px !important;
    /* Exact mathematical height (440 total - 16 gap) / 2 */
  }

  .works-main-card {
    height: 440px !important;
    /* Strict height matching container structural height */
  }
}

.works-work-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background-color: #e5e7eb;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
}

/* Absolute control rules over raw images */
.works-work-card img {
  width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
}

.works-work-card:hover {
  transform: translateY(-2px);
}

.works-view-all-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(27, 67, 50, 0.3),
      rgba(27, 67, 50, 0.7));
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

.works-view-all-btn {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin-bottom: 8px;
  transition: var(--transition);
}

.works-view-all-overlay:hover .works-view-all-btn {
  transform: scale(1.1);
  background: white;
  color: var(--primary-green);
}

.works-view-all-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
}

/* --- LOCATION BADGE --- */
.works-project-details-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.works-project-meta-top {
  display: flex;
  align-items: center;
  gap: 6px;
}

.works-project-meta-top i {
  font-size: 12px;
  color: var(--accent-gold);
}

.works-project-location-text {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
}

.works-project-title-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1.2;
}

/* --- TESTIMONIAL PANEL --- */
.works-testimonial-window {
  background: #ffffff;
  border-radius: 24px;
  box-shadow:
    0 20px 45px rgba(27, 67, 50, 0.03),
    0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(27, 67, 50, 0.07);
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex-grow: 1;
}

.works-testimonial-card-body {
  padding: 40px 28px 20px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .works-testimonial-card-body {
    padding: 56px 48px 20px 48px;
  }
}

.works-testimonial-card-body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 4px;
  background-color: var(--accent-gold);
  border-radius: 0 4px 4px 0;
}

.works-quote-geom {
  font-family: "Georgia", serif;
  font-size: 120px;
  line-height: 1;
  color: #72a24352;
  position: absolute;
  top: -5px;
  left: 16px;
  user-select: none;
  font-weight: 900;
  opacity: 0.7;
  pointer-events: none;
}

@media (min-width: 768px) {
  .works-quote-geom {
    font-size: 160px;
    left: 32px;
    top: 10px;
  }
}

.works-testimonial-slide-content {
  position: relative;
  z-index: 2;
}

.works-slide-subheading {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 12px;
}

.works-testimonial-text {
  font-size: 15px;
  line-height: 1.75;
  color: #374151;
  font-style: italic;
}

.works-testimonial-footer-meta {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.works-shield-badge {
  width: 48px;
  height: 48px;
  background: #f2f7f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1b4332;
}

.works-shield-badge i {
  font-size: 20px;
}

.works-trust-title {
  font-weight: 700;
  font-size: 14px;
  color: #111827;
}

.works-trust-subtitle {
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}

/* --- TRUST FEATURES SECTION --- */
.works-trust-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.works-trust-feature-card {
  background: #ffffff;
  padding: 15px 10px;
  border-radius: 12px;
  border: 1px solid #eee;
  text-align: center;
  transition: var(--transition);
}

.works-trust-feature-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

.works-trust-feature-card i {
  font-size: 24px;
  color: var(--accent-gold);
  margin-bottom: 8px;
  display: block;
}

.works-trust-feature-card h6 {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-green);
  margin: 0;
}

/* --- LOGO --- */
.works-brand-seal-badge {
  display: inline-flex;
  position: absolute;
  right: 32px;
  bottom: 24px;
  z-index: 5;
}

.works-logo-container {
  width: 52px;
  height: 52px;
  background-color: var(--primary-green);
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.works-logo-container i {
  font-size: 20px;
}

/* --- CONTROLS UI --- */
.works-slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

/* Swiper Pagination Styling override for lines */
.works-progress-container.swiper-pagination {
  position: static !important;
  width: auto !important;
  display: flex !important;
  gap: 6px;
  align-items: center;
}

.works-progress-container .swiper-pagination-bullet {
  height: 3px !important;
  width: 16px !important;
  background-color: #e5e7eb !important;
  border-radius: 2px !important;
  opacity: 1 !important;
  margin: 0 !important;
  transition: var(--transition) !important;
}

.works-progress-container .swiper-pagination-bullet-active {
  width: 36px !important;
  background-color: var(--primary-green) !important;
}

.works-nav-buttons {
  display: flex;
  gap: 8px;
}

.works-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background-color: white;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.works-nav-btn:hover {
  border-color: #618e36;
  background-color: #618e36;
}

.works-nav-btn:hover i {
  color: white;
}

.works-nav-btn i {
  font-size: 16px;
  color: var(--text-dark);
}

/* footer css  */

/* Structural Layout Styles */
.site-footer {
  background:
    radial-gradient(circle at 80% 20%,
      rgba(52, 211, 153, 0.15) 0%,
      transparent 50%),
    linear-gradient(135deg,
      rgba(6, 78, 59, 0.95) 0%,
      rgba(2, 44, 34, 0.98) 100%);
  color: #ffffff;
  position: relative;
  padding-top: 120px;

  /* Provides separation spacing clear of the bottom absolute bar */
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* Fluid clean color separation transition top strip */
.footer-wave .shape-fill {
  fill: #ebf2e9;
}

.logo-box {
  background: #ebf2e9;
  width: fit-content;
  padding: 12px 18px;
  border-radius: 6px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.logo-box img {
  max-width: 120px;
  height: auto;
}

.footer-brand h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #34d399;
  /* Smooth Emerald Highlight */
  margin-bottom: 16px;
  line-height: 1.2;
}

.footer-brand h2 span {
  color: #ffffff;
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.7;
  max-width: 320px;
}

.f-heading {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.f-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: #34d399;
}

.f-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.f-links li {
  margin-bottom: 14px;
}

.f-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
}

.f-links a i {
  font-size: 0.65rem;
  margin-right: 10px;
  color: #34d399;
}

.f-links a:hover {
  color: #34d399;
  transform: translateX(6px);
}

.c-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 22px;
}

.c-item i {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
  border: 1px solid rgba(52, 211, 153, 0.2);
}

.c-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.badge-direct {
  display: inline-block;
  font-size: 0.7rem;
  color: #34d399;
  background: rgba(52, 211, 153, 0.1);
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

/* Operations Lab Card Frame */
.operation-hours-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 16px;
  border-radius: 8px;
}

.hours-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hours-row i {
  color: #34d399;
  font-size: 1.1rem;
}

.hours-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
}

.hours-value {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  height: 110px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) invert(0.05);
  /* Keeps it looking subtle and high-end */
}

.btn-maps-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.btn-maps-action:hover {
  background: #34d399;
  color: #022c22;
  border-color: #34d399;
}

.social-row a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-right: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-row a:hover {
  background: #34d399;
  color: #022c22;
  transform: translateY(-2px);
}

/* Ground Floor Layout Attribution Bar */
.bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(2, 44, 34, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 18px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.designer-accent {
  color: #34d399;
  font-weight: 500;
}

/* icons link  */

/* ==========================================================================
   MODERN STICKY GLOBAL FLOATING CONNECTIONS MATRIX
   ========================================================================== */

/* --- CORE GLOBAL UTILITY FOR TOOLTIPS --- */
.anchor-tooltip {
  position: absolute;
  background: #0c2b18;
  color: #ffffff;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.4, 1);
  box-shadow: 0 8px 20px rgba(12, 43, 24, 0.15);
  letter-spacing: 0.5px;
}

/* --- LEFT SIDE: SOCIAL ANCHOR RACK --- */
.fixed-social-rack {
  position: fixed;
  left: 25px;
  bottom: 30%;

  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.social-anchor {
  width: 44px;
  height: 44px;
  background: rgb(235, 242, 233);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(12, 43, 24, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f5f54;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgb(12, 43, 24);
}

.social-anchor .anchor-tooltip {
  left: 55px;
  transform: translateX(-10px);
}

/* Hover Mechanics for Left Side */
.social-anchor:hover .anchor-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.social-anchor:hover {
  transform: scale(1.1) translateX(4px);
  color: #ffffff;
}

.fab-fb:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.fab-ig:hover {
  background: linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
  border-color: #dc2743;
}

.fab-yt:hover {
  background: #ff0000;
  border-color: #ff0000;
}

/* --- RIGHT SIDE: ACTION COMMUNICATION SUITE --- */
.fixed-communication-rack {
  position: fixed;
  right: 25px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 9999;
}

.comm-anchor {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(12, 43, 24, 0.16);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.comm-anchor .anchor-tooltip {
  right: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
}

.comm-anchor:hover .anchor-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.comm-anchor:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 16px 35px rgba(12, 43, 24, 0.25);
}

/* Color Brand Rules for Actions */
.action-call {
  background: var(--dark-green);
}

.action-wa {
  background: #25d366;
  /* Subtle organic radar ping wave effect */
  animation: waRadarPulse 2s infinite;
}

/* Gmail Brand Theme Color */
.action-email {
  background-color: #ea4335;
  /* Authentic Google Red */
}

/* Hover glow effect matching the theme */
.action-email:hover {
  box-shadow: 0 6px 20px rgba(234, 67, 53, 0.4);
  background-color: #d93025;
  /* Slightly darker shade on hover for depth */
}

/* --- TELEPHONE MENU DROPDOWN FLYOUT --- */
.comm-group-wrapper {
  position: relative;
}

.dual-phone-flyout {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: #ffffff;
  border: 1px solid rgba(12, 43, 24, 0.08);
  border-radius: 20px;
  padding: 10px;
  min-width: 240px;
  box-shadow: 0 15px 40px rgba(12, 43, 24, 0.15);
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.95);
  transform-origin: bottom right;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.4, 1);
  backdrop-filter: blur(10px);
}

/* Active State Triggered via JS toggle */
.comm-group-wrapper.flyout-open .dual-phone-flyout {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.phone-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #4f5f54;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.phone-line i {
  color: var(--primary-green);
  font-size: 15px;
}

.phone-line:hover {
  background: #f4f7f5;
  color: var(--dark-green);
  transform: translateX(-2px);
}

/* Animations */
@keyframes waRadarPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* --- RESPONSIVE OPTIMIZATION --- */
@media (max-width: 768px) {

  /* Relocate socials to clear real estate for fingers on mobile viewports */
  .fixed-social-rack {
    left: 15px;
    bottom: 20px;
  }

  .fixed-communication-rack {
    right: 15px;
    bottom: 20px;
  }

  .comm-anchor {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .social-anchor {
    width: 38px;
    height: 38px;
    font-size: 16px;
    border-radius: 10px;
  }

  .anchor-tooltip {
    display: none;
    /* Suppress labels on touch interfaces */
  }

  .dual-phone-flyout {
    min-width: 210px;
    bottom: 60px;
  }
}

/* ==========================================================================
   APPENDED MULTI-LINK & SOCIAL FLYOUT INTERACTION STYLES
   ========================================================================== */

/* Base styles for the new social menus */
.multi-link-group {
  position: relative;
}

/* Hide menus by default */
.dual-phone-flyout,
.social-flyout {
  display: none;
  position: absolute;
  bottom: 100%;
  /* Positions it directly above the icon */
  background: #ffffff;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  /* Enhanced to match your layout's smooth borders */
  border: 1px solid rgba(12, 43, 24, 0.08);
  /* Matches existing flyout borders */
  z-index: 9999;
  min-width: 180px;
  padding: 10px;
  gap: 4px;
}

/* Left side alignment for social flyouts */
.social-flyout {
  left: 0;
  bottom: 55px;
  /* Safely offsets it above the rack buttons */
  transform-origin: bottom left;
}

/* Right side alignment for call flyout */
.dual-phone-flyout {
  right: 0;
  margin-bottom: 10px;
}

/* Make them appear when active */
.multi-link-group.flyout-open .dual-phone-flyout,
.multi-link-group.flyout-open .social-flyout {
  display: flex;
  flex-direction: column;
}

/* Link items inside the popups */
.phone-line,
.flyout-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  text-decoration: none;
  color: #4f5f54;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.phone-line:hover,
.flyout-line:hover {
  background: #f4f7f5;
  color: #0c2b18;
  transform: translateX(2px);
}