/* ==========================================================================
   COMPONENTS CSS - LIGHT & NAVY MODERN DESIGN (EXACT MATCH FOR REFERENCE DESIGN)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. NAVBAR / HEADER
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   1. NAVBAR / HEADER (DARK LUXURY GOLD THEME)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #070B12;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: all var(--transition-normal);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 52px;
}

.brand-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #E2E8F0;
  position: relative;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #D4AF37;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #D4AF37;
  border-radius: 2px;
}

/* Nav Dropdown */
.nav-dropdown-wrapper {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 280px;
  background: #0F172A;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: 100;
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  color: #E2E8F0;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--transition-fast);
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.dropdown-item.gold-link:hover { color: #D4AF37; }
.dropdown-item.emerald-link:hover { color: #34D399; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-header-quote {
  background: #D4AF37;
  color: #070B12;
  border: none;
  padding: 0.65rem 1.4rem;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.btn-header-quote:hover {
  background: #E5BE4A;
  transform: translateY(-2px);
}

.icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.icon-btn:hover {
  border-color: #D4AF37;
  color: #D4AF37;
  transform: translateY(-2px);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #D4AF37;
  color: #070B12;
  font-size: 0.7rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle {
  background: transparent;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   2. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section-light {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  padding: 4rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-text-col {
  max-width: 600px;
}

.hero-headline-light {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 900;
  color: #0F294A;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.hero-subtext-light {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero-actions-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-navy-solid {
  background: #0F294A;
  color: #FFFFFF;
  padding: 0.85rem 1.85rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  box-shadow: 0 6px 16px rgba(15, 41, 74, 0.2);
}

.btn-navy-solid:hover {
  background: #163863;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(15, 41, 74, 0.28);
}

.btn-navy-outline {
  background: #FFFFFF;
  color: #0F294A;
  border: 1.5px solid #0F294A;
  padding: 0.85rem 1.85rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.btn-navy-outline:hover {
  background: #F1F5F9;
  transform: translateY(-2px);
}

/* Right Hero Showcase Box */
.hero-visual-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(15, 41, 74, 0.08);
  overflow: hidden;
  padding: 1.25rem;
}

.hero-shop-popover-box {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 0.75rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.popover-shop-chip {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.popover-shop-chip:hover {
  border-color: #0F294A;
  background: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.popover-chip-title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: #0F294A;
}

.hero-main-graphic {
  width: 100%;
  height: 340px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   3. WELCOME SECTION
   -------------------------------------------------------------------------- */
.welcome-section-light {
  padding: 4rem 0;
  background: #FFFFFF;
  border-bottom: 1px solid #F1F5F9;
}

.welcome-card-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.welcome-icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(15, 41, 74, 0.08);
  border: 1px solid rgba(15, 41, 74, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0F294A;
}

.welcome-tag {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: #64748B;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.welcome-title-text {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: #0F294A;
  margin-bottom: 0.75rem;
}

.welcome-desc-text {
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   4. EXPLORE OUR SHOPS SECTION
   -------------------------------------------------------------------------- */
.explore-shops-section {
  padding: 5rem 0;
  background: #F8FAFC;
}

.section-title-lined {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: #0F294A;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.section-title-lined::before,
.section-title-lined::after {
  content: '';
  height: 1.5px;
  width: 80px;
  background: #CBD5E1;
}

.shops-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.shop-card-light {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: 0 10px 30px rgba(15, 41, 74, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

.shop-card-light:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(15, 41, 74, 0.08);
}

.shop-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.shop-card-header img {
  height: 38px;
  width: auto;
}

.shop-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #0F294A;
}

.shop-card-sub {
  color: #64748B;
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.shop-card-body-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.75rem;
}

.shop-visual-box {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #E2E8F0;
}

.shop-bullets-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.shop-bullet-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
}

.btn-visit-navy {
  background: #0F294A;
  color: #FFFFFF;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  align-self: flex-start;
  transition: all var(--transition-fast);
}

.btn-visit-navy:hover {
  background: #163863;
}

.btn-visit-green {
  background: #10B981;
  color: #FFFFFF;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  align-self: flex-start;
  transition: all var(--transition-fast);
}

.btn-visit-green:hover {
  background: #059669;
}

/* --------------------------------------------------------------------------
   5. FEATURED PRODUCTS SECTION
   -------------------------------------------------------------------------- */
.featured-products-section {
  padding: 5rem 0;
  background: #FFFFFF;
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

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

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

.product-card-light {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card-light:hover {
  border-color: #0F294A;
  box-shadow: 0 10px 25px rgba(15, 41, 74, 0.08);
  transform: translateY(-3px);
}

.product-img-box {
  height: 140px;
  background: #F8FAFC;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  overflow: hidden;
  padding: 0.5rem;
}

.product-img-box img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.product-title-light {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F294A;
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.product-desc-light {
  font-size: 0.78rem;
  color: #64748B;
  margin-bottom: 0.85rem;
  line-height: 1.4;
}

.btn-view-details {
  background: #F1F5F9;
  color: #0F294A;
  border: 1px solid #CBD5E1;
  padding: 0.45rem 0.85rem;
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  width: 100%;
  transition: all var(--transition-fast);
}

.btn-view-details:hover {
  background: #0F294A;
  color: #FFFFFF;
  border-color: #0F294A;
}

/* --------------------------------------------------------------------------
   6. TWO COLUMN FEATURES SECTION
   -------------------------------------------------------------------------- */
.two-col-features-section {
  padding: 5rem 0;
  background: #F8FAFC;
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.feature-box-light {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 2.25rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.feature-title-light {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #0F294A;
  margin-bottom: 0.75rem;
}

.feature-title-light.green {
  color: #059669;
}

.feature-desc-light {
  color: #64748B;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.feature-graphic-box {
  height: 180px;
  background: #F1F5F9;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   7. WHY CHOOSE ND INTERNATIONAL
   -------------------------------------------------------------------------- */
.why-choose-section-light {
  padding: 5rem 0;
  background: #FFFFFF;
}

.why-grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

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

@media (max-width: 640px) {
  .why-grid-6 { grid-template-columns: repeat(2, 1fr); }
}

.why-card-light {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 6px 16px rgba(15, 41, 74, 0.03);
  transition: all var(--transition-fast);
}

.why-card-light:hover {
  transform: translateY(-4px);
  border-color: #0F294A;
  box-shadow: 0 12px 25px rgba(15, 41, 74, 0.08);
}

.why-icon-bubble-light {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  color: #0F294A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  font-size: 1.35rem;
}

.why-title-light {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F294A;
  margin-bottom: 0.35rem;
}

.why-sub-light {
  font-size: 0.78rem;
  color: #64748B;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   8. INDUSTRIES AND SPACES WE SERVE
   -------------------------------------------------------------------------- */
.industries-section-light {
  padding: 5rem 0;
  background: #F8FAFC;
}

.industries-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.industry-box-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.industry-box-header-navy {
  background: #0F294A;
  color: #FFFFFF;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  text-align: center;
}

.industry-box-header-green {
  background: #059669;
  color: #FFFFFF;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  text-align: center;
}

.industry-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding: 2rem 1.5rem;
}

.industry-item-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}

/* --------------------------------------------------------------------------
   9. OUR PRODUCTS AND SERVICES (PROJECTS SHOWCASE)
   -------------------------------------------------------------------------- */
.projects-section-light {
  padding: 5rem 0;
  background: #FFFFFF;
}

.projects-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .projects-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

.project-card-light {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  transition: all var(--transition-fast);
}

.project-card-light:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 41, 74, 0.08);
}

.project-img-holder {
  height: 160px;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.project-card-content {
  padding: 1.15rem;
}

.project-card-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F294A;
  margin-bottom: 0.35rem;
}

.project-card-desc {
  font-size: 0.82rem;
  color: #64748B;
  margin-bottom: 1rem;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   10. GROWING BEYOND & TESTIMONIALS
   -------------------------------------------------------------------------- */
.growing-testimonials-section {
  padding: 5rem 0;
  background: #F8FAFC;
}

.growing-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.growing-column {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.growing-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #0F294A;
  margin-bottom: 0.75rem;
}

.growing-desc {
  color: #64748B;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.testimonial-card-light {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-card-light:last-child {
  margin-bottom: 0;
}

.testimonial-quote {
  font-size: 0.88rem;
  color: #334155;
  font-style: italic;
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0F294A;
  font-size: 0.85rem;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #0F294A;
}

.author-role {
  font-size: 0.75rem;
  color: #64748B;
}

/* --------------------------------------------------------------------------
   11. LET'S GROW TOGETHER BANNER
   -------------------------------------------------------------------------- */
.lets-grow-banner-section {
  padding: 2.5rem 0;
  background: #F8FAFC;
}

.lets-grow-card {
  background: #0F294A;
  border-radius: 16px;
  padding: 2.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
  box-shadow: 0 15px 35px rgba(15, 41, 74, 0.2);
}

.lets-grow-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lets-grow-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.lets-grow-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.lets-grow-sub {
  font-size: 0.9rem;
  opacity: 0.85;
}

.btn-partner-white {
  background: #FFFFFF;
  color: #0F294A;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-partner-white:hover {
  background: #F1F5F9;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   12. CALL TO ACTION BANNER (LOOKING FOR RIGHT SOLUTION)
   -------------------------------------------------------------------------- */
.cta-banner-navy {
  background: #071933;
  padding: 4.5rem 0;
  color: #FFFFFF;
  text-align: center;
}

.cta-title-white {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.cta-sub-gray {
  color: #94A3B8;
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
}

.cta-buttons-trio {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-cta-quote {
  background: #FFFFFF;
  color: #071933;
  padding: 0.85rem 1.85rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.btn-cta-quote:hover {
  background: #F1F5F9;
  transform: translateY(-2px);
}

.btn-cta-call {
  background: #0F294A;
  color: #FFFFFF;
  border: 1px solid #1E3A8A;
  padding: 0.85rem 1.85rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.btn-cta-call:hover {
  background: #163863;
  transform: translateY(-2px);
}

.btn-cta-whatsapp {
  background: #10B981;
  color: #FFFFFF;
  padding: 0.85rem 1.85rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.btn-cta-whatsapp:hover {
  background: #059669;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */
.site-footer-navy {
  background: #040A14;
  padding: 4.5rem 0 2rem 0;
  color: #94A3B8;
  border-top: 1px solid #0F213D;
}

.footer-grid-4 {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

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

.footer-logo-img {
  height: 52px;
  margin-bottom: 1rem;
}

.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 320px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.footer-links-list li {
  margin-bottom: 0.65rem;
}

.footer-links-list a {
  color: #94A3B8;
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.footer-links-list a:hover {
  color: #FFFFFF;
}

.footer-bottom-bar {
  border-top: 1px solid #0F213D;
  padding-top: 1.75rem;
  text-align: center;
  font-size: 0.82rem;
  color: #64748B;
}

/* --------------------------------------------------------------------------
   14. PROJECTS AND INSTALLATIONS PAGE STYLES (EXACT MATCH FOR REFERENCE DESIGN)
   -------------------------------------------------------------------------- */
.projects-hero-light {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  padding: 3.5rem 0 3rem 0;
}

.projects-hero-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 3rem !important;
  align-items: center !important;
}

.projects-headline-light {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 900;
  color: #0F294A;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.projects-subtext-light {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-visual-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(15, 41, 74, 0.06);
  position: relative;
}

.hero-shop-popover-box {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.popover-shop-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0F294A;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all var(--transition-fast);
}

.popover-shop-chip:hover {
  border-color: #0F294A;
  transform: translateY(-2px);
}

.projects-filter-bar {
  padding: 1.5rem 0;
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  margin-bottom: 3rem;
}

.projects-filter-flex {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.85rem !important;
  flex-wrap: wrap !important;
}

.project-filter-chip {
  padding: 0.65rem 1.5rem !important;
  border-radius: 6px !important;
  background: #FFFFFF !important;
  border: 1px solid #CBD5E1 !important;
  color: #334155 !important;
  font-family: var(--font-heading) !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all var(--transition-fast) !important;
}

.project-filter-chip:hover,
.project-filter-chip.active {
  background: #0F294A !important;
  color: #FFFFFF !important;
  border-color: #0F294A !important;
  box-shadow: 0 4px 12px rgba(15, 41, 74, 0.2) !important;
}

.featured-project-section {
  padding: 1rem 0 4rem 0;
}

.featured-project-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 41, 74, 0.05);
  overflow: hidden;
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  gap: 2.5rem !important;
  padding: 2rem !important;
}

.featured-project-img-box {
  width: 100%;
  max-width: 440px;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1.5rem !important;
}

.featured-project-img-box img {
  max-height: 280px !important;
  max-width: 100% !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}

.recent-projects-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.75rem !important;
}

.project-item-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 41, 74, 0.04);
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  transition: all var(--transition-fast);
}

.project-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(15, 41, 74, 0.08);
  border-color: #0F294A;
}

.project-item-thumb {
  height: 200px !important;
  background: #F8FAFC !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1.25rem !important;
  border-bottom: 1px solid #E2E8F0 !important;
}

.project-item-thumb img {
  max-height: 170px !important;
  max-width: 100% !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}

.project-gallery-row {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 1.25rem !important;
  margin-bottom: 2rem !important;
}

.project-gallery-thumb {
  height: 170px !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  border: 1px solid #E2E8F0 !important;
  background: #F8FAFC !important;
  cursor: pointer !important;
  box-shadow: 0 4px 12px rgba(15, 41, 74, 0.05) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.project-gallery-thumb:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 24px rgba(15, 41, 74, 0.12) !important;
}

.project-gallery-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* ==========================================================================
   MOBILE & MULTI-DEVICE RESPONSIVE BREAKPOINTS (ALL DEVICES)
   ========================================================================== */

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #0F294A;
  padding: 6px;
  cursor: pointer;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: #FFFFFF;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 30px rgba(0,0,0,0.15);
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
  z-index: 3100;
  overflow-y: auto;
}

.mobile-nav-overlay.active .mobile-nav-drawer {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #E2E8F0;
  margin-bottom: 1.5rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #1E293B;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  display: block;
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: #F1F5F9;
  color: #0F294A;
}

@media (max-width: 992px) {
  .nav-menu {
    display: none !important;
  }
  .btn-header-quote {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center;
  }
  .hero-subtext-light {
    margin: 0 auto 2rem auto !important;
  }
  .hero-actions-row {
    justify-content: center !important;
  }

  .two-col-grid {
    grid-template-columns: 1fr !important;
  }

  .feature-box-light {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .industries-dual-grid {
    grid-template-columns: 1fr !important;
  }

  .growing-testimonials-grid {
    grid-template-columns: 1fr !important;
  }

  .lets-grow-card {
    flex-direction: column !important;
    text-align: center !important;
    gap: 1.5rem !important;
  }

  .projects-hero-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .recent-projects-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .featured-project-card {
    grid-template-columns: 1fr !important;
  }
  .featured-project-img-box {
    max-width: 100% !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 768px) {
  .projects-grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .project-gallery-row {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .industry-items-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .hero-headline-light {
    font-size: 2.1rem !important;
  }
  .section-title {
    font-size: 1.85rem !important;
  }
}

/* Standard Desktop Grid Base Classes */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 4rem;
  align-items: center;
}

.featured-project-card {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 3rem;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(15, 41, 74, 0.06);
  align-items: center;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-divisions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.services-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  position: relative;
}

.services-industries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-location-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 2.5rem;
  align-items: stretch;
}

.footer-grid-4 {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center;
  }
  .shops-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .about-divisions-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .about-mission-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem !important;
  }
  .about-story-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .services-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
  .services-steps-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
  }
  .services-industries-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .featured-project-card {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 1.25rem !important;
  }
  .recent-projects-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .process-steps-row {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .project-gallery-row {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .contact-main-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .contact-location-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .footer-grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
  }
}

@media (max-width: 768px) {
  .welcome-card-box {
    flex-direction: column !important;
    text-align: center !important;
    padding: 1.75rem 1.25rem !important;
    gap: 1.25rem !important;
  }
  .welcome-icon-circle {
    margin: 0 auto !important;
  }
  .welcome-title-text {
    font-size: 1.75rem !important;
    word-break: break-word !important;
  }
  .shop-card-light {
    padding: 1.5rem 1.25rem !important;
  }
  .shop-card-title {
    font-size: 1.35rem !important;
    word-break: break-word !important;
  }
  .shop-card-body-layout {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .btn-visit-navy, .btn-visit-green {
    align-self: stretch !important;
    width: 100% !important;
    text-align: center !important;
  }
  .about-values-grid {
    grid-template-columns: 1fr !important;
  }
  .services-cards-grid {
    grid-template-columns: 1fr !important;
  }
  .services-steps-grid {
    grid-template-columns: 1fr !important;
  }
  .form-row-2col {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
}

@media (max-width: 576px) {
  .featured-products-grid {
    grid-template-columns: 1fr !important;
  }
  .recent-projects-grid {
    grid-template-columns: 1fr !important;
  }
  .process-steps-row {
    grid-template-columns: 1fr !important;
  }
  .project-gallery-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .footer-grid-4 {
    grid-template-columns: 1fr !important;
  }
  .section-title-lined {
    font-size: 1.65rem !important;
  }
}

/* ==========================================================================
   HOMEPAGE REFERENCE DESIGN STYLES (MATCHING REFERENCE MOCKUP 100%)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. HERO SHOWCASE SECTION (USING USER hero.png BACKGROUND & MINIMAL TEXT)
   -------------------------------------------------------------------------- */
.hero-showcase-section {
  position: relative;
  width: 100%;
  min-height: 640px;
  background: #070B12 url('../assets/images/hero.png') center center / cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  padding: 4rem 0 5rem 0;
}

.hero-showcase-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
  align-items: center;
}

.hero-side-block {
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-left-side {
  padding-left: 0.5rem;
}

.hero-right-side {
  margin-left: auto;
  padding-right: 0.5rem;
}

.hero-tag-gold {
  color: #D4AF37;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-heading);
  margin-bottom: 0.85rem;
}

.hero-tag-pe .pe-heading {
  color: #D4AF37;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  font-family: var(--font-heading);
  display: block;
}

.hero-tag-pe .pe-sub {
  color: #94A3B8;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
  margin-bottom: 0.85rem;
}

.hero-bold-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.text-gold-accent {
  color: #D4AF37 !important;
}

.hero-minimal-desc {
  font-size: 1.05rem;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 390px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85);
}

.btn-hero-solid-gold {
  background: #D4AF37;
  color: #070B12;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
  text-decoration: none;
}

.btn-hero-solid-gold:hover {
  background: #E5BE4A;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.45);
}

.btn-hero-outline-gold {
  background: rgba(10, 14, 23, 0.75);
  color: #FFFFFF;
  border: 1.5px solid #D4AF37;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-hero-outline-gold:hover {
  background: #D4AF37;
  color: #070B12;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .hero-showcase-section {
    min-height: auto;
    padding: 3rem 0 3.5rem 0;
  }
  .hero-showcase-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-side-block {
    max-width: 100%;
  }
  .hero-right-side {
    margin-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .hero-bold-title {
    font-size: 2.3rem;
  }
}

/* --------------------------------------------------------------------------
   2. WHO WE ARE SECTION
   -------------------------------------------------------------------------- */
.who-we-are-section {
  background: #FFFFFF;
  padding: 5.5rem 0 5rem 0;
}

.who-we-are-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.section-tag-gold {
  color: #B45309;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
}

.who-main-headline {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 900;
  color: #0F294A;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.who-main-desc {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 560px;
}

.who-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.who-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.25rem 0.65rem;
  box-shadow: 0 4px 12px rgba(15, 41, 74, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.who-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(15, 41, 74, 0.08);
  border-color: #CBD5E1;
}

.who-icon-wrapper {
  color: #0F294A;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
}

.who-feature-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0F294A;
  line-height: 1.3;
  font-family: var(--font-heading);
}

.btn-who-navy {
  background: #0F294A;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(15, 41, 74, 0.18);
}

.btn-who-navy:hover {
  background: #163863;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 41, 74, 0.25);
}

.factory-card-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 41, 74, 0.16);
  border: 1px solid #E2E8F0;
  background: #0F172A;
}

.factory-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* --------------------------------------------------------------------------
   3. OUR SOLUTIONS SECTION
   -------------------------------------------------------------------------- */
.our-solutions-section {
  background: #FAFCFE;
  padding: 5rem 0 5.5rem 0;
  border-top: 1px solid #EEF2F6;
}

.solutions-header-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.header-line-gold {
  height: 1.5px;
  width: 70px;
  background: linear-gradient(90deg, transparent, #D4AF37);
}

.header-line-gold:last-child {
  background: linear-gradient(90deg, #D4AF37, transparent);
}

.solutions-title-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: #B45309;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.solutions-dual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 1200px) and (min-width: 993px) {
  .solutions-dual-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }
  .solutions-dual-grid .solution-box-card:last-child {
    grid-column: span 2;
    max-width: 620px;
    margin: 0 auto;
    width: 100%;
  }
}

.solution-box-card {
  background: #F1F5F9;
  border-radius: 18px;
  padding: 2.25rem 1.75rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
  align-items: center;
  box-shadow: 0 4px 20px rgba(15, 41, 74, 0.04);
  border: 1px solid #E2E8F0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.solution-box-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(15, 41, 74, 0.09);
}

.solution-brand-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.solution-brand-title.navy {
  color: #0F294A;
}

.solution-brand-title.gold {
  color: #B45309;
}

.solution-brand-title.emerald {
  color: #047857;
}

.solution-category-sub {
  font-size: 0.92rem;
  font-weight: 600;
  color: #64748B;
  margin-bottom: 1.5rem;
}

.solution-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.solution-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1E293B;
}

.check-circle-gold {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid #D4AF37;
  color: #B45309;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-solution-navy {
  background: #0F294A;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-solution-navy:hover {
  background: #163863;
  transform: translateY(-2px);
}

.btn-solution-gold {
  background: #D4AF37;
  color: #070B12;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-solution-gold:hover {
  background: #E5BE4A;
  transform: translateY(-2px);
}

.btn-solution-emerald {
  background: #047857;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-solution-emerald:hover {
  background: #065f46;
  transform: translateY(-2px);
}

.solution-card-right {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.solution-product-img {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.08));
}

/* --------------------------------------------------------------------------
   4. VALUE HIGHLIGHTS BANNER
   -------------------------------------------------------------------------- */
.value-highlights-section {
  background: #061120;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.value-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-highlight-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.value-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-item-text h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.2;
}

.value-item-text p {
  font-size: 0.95rem;
  color: #94A3B8;
  margin: 0;
  line-height: 1.2;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   5. BLUEPRINT CALL TO ACTION (CTA) SECTION
   -------------------------------------------------------------------------- */
.blueprint-cta-section {
  background: radial-gradient(circle at 10% 20%, rgba(21, 40, 70, 0.4) 0%, transparent 60%),
              radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
              #07111E;
  padding: 4.5rem 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.blueprint-cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.blueprint-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 0;
}

.text-gold-bright {
  color: #E5A93C;
}

.blueprint-cta-middle {
  flex: 1;
  max-width: 480px;
  padding-left: 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.blueprint-cta-middle p {
  font-size: 1.05rem;
  color: #CBD5E1;
  line-height: 1.6;
  margin: 0;
}

.btn-cta-gold-block {
  background: #E5A93C;
  color: #060B13;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  padding: 0.95rem 2.4rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(229, 169, 60, 0.35);
}

.btn-cta-gold-block:hover {
  background: #F4BA4E;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(229, 169, 60, 0.45);
}

/* --------------------------------------------------------------------------
   COMPREHENSIVE RESPONSIVE MEDIA QUERIES FOR ALL SCREENS & DEVICES
   -------------------------------------------------------------------------- */

/* Tablet & Smaller Laptops (<= 992px) */
@media (max-width: 992px) {
  .hero-showcase-section {
    min-height: auto;
    padding: 2.5rem 0 3rem 0;
    background: #070B12;
  }
  .hero-showcase-container {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    padding: 0 1.25rem;
  }
  .hero-side-block {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
    padding: 2.25rem 1.75rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }
  .hero-left-side {
    background: linear-gradient(180deg, rgba(7, 11, 18, 0.35) 0%, rgba(7, 11, 18, 0.62) 100%),
                url('../assets/images/hero_left_mobile.png') center center / cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin: 0;
    padding: 2.25rem 1.75rem;
  }
  .hero-right-side {
    background: linear-gradient(180deg, rgba(7, 11, 18, 0.35) 0%, rgba(7, 11, 18, 0.62) 100%),
                url('../assets/images/hero_right_mobile.png') center center / cover no-repeat;
    border: 1px solid rgba(212, 175, 55, 0.35);
    margin: 0;
    padding: 2.25rem 1.75rem;
  }
  .hero-bold-title {
    font-size: 2.4rem;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.95);
  }
  .hero-tag-gold,
  .hero-tag-pe {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  }
  .hero-minimal-desc {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
    font-weight: 500;
  }
  .btn-hero-solid-gold,
  .btn-hero-outline-gold {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .who-we-are-section {
    padding: 4rem 0 3.5rem 0;
  }
  .who-we-are-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .who-main-headline {
    font-size: 2.3rem;
  }

  .our-solutions-section {
    padding: 4rem 0;
  }
  .solutions-dual-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .value-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .blueprint-cta-section {
    padding: 3.5rem 0;
  }
  .blueprint-cta-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
  }
  .blueprint-cta-middle {
    padding-left: 0;
    border-left: none;
    max-width: 100%;
  }
  .btn-cta-gold-block {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
}

/* Mobile Devices & Phablets (<= 768px) */
@media (max-width: 768px) {
  .hero-showcase-section {
    padding: 1.5rem 0 2rem 0;
  }
  .hero-showcase-container {
    gap: 1.25rem;
    padding: 0 1rem;
  }
  .hero-side-block {
    padding: 1.85rem 1.25rem;
    border-radius: 14px;
  }
  .hero-left-side {
    background: linear-gradient(180deg, rgba(7, 11, 18, 0.3) 0%, rgba(7, 11, 18, 0.58) 100%),
                url('../assets/images/hero_left_mobile.png') center center / cover no-repeat;
    padding: 1.85rem 1.25rem;
  }
  .hero-right-side {
    background: linear-gradient(180deg, rgba(7, 11, 18, 0.3) 0%, rgba(7, 11, 18, 0.58) 100%),
                url('../assets/images/hero_right_mobile.png') center center / cover no-repeat;
    padding: 1.85rem 1.25rem;
  }
  .hero-bold-title {
    font-size: 2rem;
    line-height: 1.15;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.95);
  }
  .hero-minimal-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
  }
  .btn-hero-solid-gold,
  .btn-hero-outline-gold {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    min-height: 48px;
    font-size: 0.95rem;
  }

  .who-main-headline {
    font-size: 2rem;
    line-height: 1.2;
  }
  .who-main-desc {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
  }
  .who-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  .who-feature-card {
    padding: 1rem 0.5rem;
  }
  .btn-who-navy {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .factory-img {
    height: 250px;
  }

  .solutions-header-centered {
    margin-bottom: 2.5rem;
    gap: 1rem;
  }
  .header-line-gold {
    width: 40px;
  }
  .solutions-title-text {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }
  .solution-box-card {
    grid-template-columns: 1fr;
    padding: 1.75rem 1.25rem;
    gap: 1.5rem;
  }
  .solution-card-right {
    order: -1;
  }
  .solution-product-img {
    max-height: 170px;
  }
  .solution-brand-title {
    font-size: 1.35rem;
  }
  .btn-solution-navy,
  .btn-solution-gold,
  .btn-solution-emerald {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .value-highlights-section {
    padding: 2rem 0;
  }
  .value-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .value-highlight-item {
    justify-content: flex-start;
    gap: 0.85rem;
  }
  .value-item-text h4 {
    font-size: 1rem;
  }
  .value-item-text p {
    font-size: 0.82rem;
  }

  .blueprint-title {
    font-size: 1.85rem;
    line-height: 1.2;
  }
  .blueprint-cta-middle p {
    font-size: 0.95rem;
  }
}

/* Small Mobile Phones (<= 480px) */
@media (max-width: 480px) {
  .hero-bold-title {
    font-size: 1.85rem;
  }
  .hero-tag-gold {
    font-size: 0.85rem;
  }
  .hero-tag-pe .pe-heading {
    font-size: 0.9rem;
  }
  .who-main-headline {
    font-size: 1.75rem;
  }
  .who-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .who-feature-text {
    font-size: 0.75rem;
  }
  .factory-img {
    height: 200px;
  }
  .value-highlights-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .blueprint-title {
    font-size: 1.6rem;
  }
}


