/* ==========================================================================
   KARIM CONSTRUCTIONS - MODERN INDUSTRIAL DESIGN SYSTEM & STYLES
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand Palette - Luxury Gold Theme */
  --primary: #0a192f;
  --primary-dark: #060f1e;
  --primary-light: #132a4a;
  --primary-accent: #0066cc;

  /* Luxury Gold Brand Palette */
  --gold-primary: #D4AF37;
  --gold-light: #F5E5B8;
  --gold-champagne: #FDF4DC;
  --gold-bright: #FFE58F;
  --gold-amber: #C59A3F;
  --gold-dark: #8C5E13;
  --gold-deep: #5E3A08;
  --gold-hover: #AA771C;
  --gold-glow: rgba(212, 175, 55, 0.35);

  /* Color Aliases for 100% Backward Compatibility */
  --orange: #C59A3F;
  --orange-hover: #AA771C;
  --orange-light: #FFF8E7;
  --orange-glow: rgba(212, 175, 55, 0.35);

  /* Metallic Gold Gradient Tokens */
  --gold-gradient: linear-gradient(135deg, #F5E2B3 0%, #D4AF37 35%, #AA771C 70%, #F3E5AB 100%);
  --gold-btn-gradient: linear-gradient(135deg, #E6C575 0%, #C99B3B 50%, #9B7020 100%);
  --gold-btn-hover: linear-gradient(135deg, #F5D88C 0%, #D8AA45 50%, #AC7B24 100%);
  --gold-metallic-text: linear-gradient(135deg, #FFF0B3 0%, #F5CA68 40%, #C99B3B 75%, #976F1F 100%);

  /* Backgrounds & Neutrals */
  --bg-body: #ffffff;
  --bg-light: #f7f9fc;
  --bg-dark: #071322;
  --bg-dark-card: #0d2038;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  --border-color: #e2e8f0;
  --border-dark: rgba(255, 255, 255, 0.12);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10, 25, 47, 0.04);
  --shadow-md: 0 10px 30px rgba(10, 25, 47, 0.08);
  --shadow-lg: 0 20px 40px rgba(10, 25, 47, 0.12);
  --shadow-hover: 0 22px 45px rgba(10, 25, 47, 0.16);

  /* Layout */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==========================================================================
   LUXURY GOLDEN SCROLLBAR
   ========================================================================== */
/* Standard Firefox */
html,
body,
* {
  scrollbar-width: thin;
  scrollbar-color: #D4AF37 #081426;
}

/* WebKit / Chromium / Edge / Safari */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #081426;
  border-left: 1px solid rgba(212, 175, 55, 0.15);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #F5E2B3 0%, #D4AF37 35%, #C59A3F 70%, #8C5E13 100%);
  border-radius: 9999px;
  border: 2px solid #081426;
  box-shadow: inset 0 0 6px rgba(255, 229, 143, 0.4), 0 0 10px rgba(212, 175, 55, 0.35);
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #FFF4D0 0%, #FFE58F 30%, #D4AF37 70%, #AA771C 100%);
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.6), 0 0 14px rgba(212, 175, 55, 0.7);
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, #D4AF37 0%, #AA771C 50%, #5E3A08 100%);
}

::-webkit-scrollbar-corner {
  background: #081426;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-body);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-fluid {
  width: 100%;
  padding: 0 32px;
}

/* Typography & Utility Classes */
.text-orange,
.text-gold {
  color: #C59A3F !important;
  text-shadow: 0 1px 3px rgba(197, 154, 63, 0.25);
}

.text-orange-glow,
.text-gold-glow {
  color: #F5CA68 !important;
  text-shadow: 0 0 14px rgba(212, 175, 55, 0.65);
}

.text-primary {
  color: var(--primary-accent) !important;
}

.text-white {
  color: #ffffff !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-extrabold {
  font-weight: 800 !important;
}

.fw-black {
  font-weight: 900 !important;
}

.text-center {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #0066cc;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* ==========================================================================
   BUTTONS & CTAS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-orange,
.btn-gold {
  background: linear-gradient(135deg, #E6C575 0%, #C99B3B 48%, #9B7020 100%);
  color: #0A192F;
  font-weight: 800;
  border: 1px solid rgba(255, 235, 170, 0.65);
  box-shadow: 0 4px 16px rgba(201, 155, 59, 0.42), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-orange:hover,
.btn-gold:hover {
  background: linear-gradient(135deg, #F5D88C 0%, #D8AA45 48%, #AC7B24 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 155, 59, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.8);
  color: #060F1E;
}

.btn-navy {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(10, 25, 47, 0.25);
}

.btn-navy:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(10, 25, 47, 0.35);
  color: #ffffff;
}

.btn-white-glass {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.btn-white-glass:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  color: #C59A3F;
}

.btn-white-glass .play-icon {
  width: 26px;
  height: 26px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-left: 2px;
}

/* ==========================================================================
   HEADER & NAVBAR (IMAGE 1 MULTI-GABLE INDUSTRIAL ROOF DESIGN)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid #e5e7eb;
  border-radius: 0;
  height: 86px;
  display: flex;
  align-items: stretch;
  transition: 
    top 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

/* Floating Transparent White Rounded Glass Header on Scroll */
.site-header.scrolled {
  top: 14px;
  width: min(1380px, calc(100% - 36px));
  height: 74px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid #cbd5e1;
  box-shadow: 
    0 16px 40px -6px rgba(10, 25, 47, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.header-inner-wrap {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  transition: padding 0.35s ease;
}

.site-header.scrolled .header-inner-wrap {
  padding: 0 20px;
}

.site-header.scrolled .brand-logo {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
  align-self: center;
}

.site-header.scrolled .brand-logo .logo-default {
  display: block;
  height: 60px;
}

.site-header.scrolled .brand-logo .logo-scrolled {
  display: none !important;
}

.site-header.scrolled .nav-roof-container {
  padding-bottom: 10px;
}

.site-header.scrolled .phone-number {
  color: #0A192F;
  text-shadow: none;
}

.site-header.scrolled .phone-sub {
  color: #64748b;
}

.site-header.scrolled .phone-icon-circle {
  background: #0A192F;
  border: none;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(10, 25, 47, 0.15);
}

.site-header.scrolled .btn-orange-rect {
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.45), 0 0 12px rgba(201, 155, 59, 0.3);
  padding: 8px 18px;
}

.site-header.scrolled .mobile-nav-toggle {
  color: #0A192F;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
}

/* 1. Brand Logo on Left */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 2;
  padding: 2px 0;
}

.brand-logo .logo-default {
  display: block;
}

.brand-logo .logo-scrolled {
  display: none;
}

.header-logo-img {
  height: 76px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.footer-logo-img {
  height: 95px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  transition: transform 0.25s ease;
}

.brand-logo:hover .footer-logo-img {
  transform: scale(1.03);
}

.brand-logo:hover .header-logo-img {
  transform: scale(1.03);
}

/* 2. Center Clean Navigation Bar */
.nav-roof-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  max-width: 760px;
  margin: 0 16px;
  height: 100%;
}

.roof-svg-backdrop {
  display: none !important;
}

.roof-silhouette-svg {
  display: none !important;
}

.nav-roof-links {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-roof-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0F172A;
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  text-shadow: none;
  transition: color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

/* Top Straight Vertical Golden Indicator Line */
.nav-roof-link::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) scaleY(0);
  transform-origin: bottom center;
  width: 2.5px;
  height: 12px;
  background: linear-gradient(180deg, #FFF0B3 0%, #D4AF37 60%, #8C5E13 100%);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.9), 0 0 14px rgba(212, 175, 55, 0.5);
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.7));
}

/* Bottom Horizontal Golden Indicator Line */
.nav-roof-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 2.5px;
  background: linear-gradient(90deg, #F5E2B3 0%, #D4AF37 50%, #AA771C 100%);
  border-radius: 2px;
  box-shadow: 0 1px 6px rgba(212, 175, 55, 0.6);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

/* Hover State - Indicators Show Only on Cursor Hover */
.nav-roof-link:hover {
  color: #C59A3F;
  transform: translateY(-1px);
}

.nav-roof-link:hover::before {
  opacity: 1;
  transform: translateX(-50%) scaleY(1);
}

.nav-roof-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Active State */
.nav-roof-link.active {
  color: #0A192F;
  font-weight: 800;
  background: transparent !important;
  box-shadow: none !important;
  text-shadow: none;
}

/* ==========================================================================
   PRODUCTS MEGA MENU DROPDOWN (9 SHED SOLUTIONS WITH BLUEPRINTS)
   ========================================================================== */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-arrow {
  font-size: 0.68rem;
  margin-left: 5px;
  transition: transform 0.25s ease;
  opacity: 0.85;
}

.nav-item-dropdown:hover .nav-dropdown-arrow,
.nav-item-dropdown.is-open .nav-dropdown-arrow {
  transform: rotate(180deg);
  opacity: 1;
  color: #C59A3F;
}

/* Invisible Hover Buffer Bridge between link and dropdown */
.nav-item-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  pointer-events: auto;
}

/* Mega Dropdown Window Container (Clean White Theme) */
.nav-mega-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 820px;
  max-width: min(820px, calc(100vw - 28px));
  background: #ffffff !important;
  border-radius: 0px;
  box-shadow: 
    0 18px 45px rgba(10, 25, 47, 0.16),
    0 0 0 1px rgba(0, 0, 0, 0.05),
    0 4px 12px rgba(0, 0, 0, 0.04);
  border: 1.5px solid #cbd5e1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 
    opacity 0.24s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.24s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.24s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
  overflow: hidden;
}

/* Show on Hover & Focus */
.nav-item-dropdown:hover .nav-mega-dropdown,
.nav-item-dropdown.is-open .nav-mega-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Scrolled Header Adaptive Clean White Theme */
.site-header.scrolled .nav-mega-dropdown {
  top: calc(100% + 12px);
  background: #ffffff !important;
  border: 1.5px solid #cbd5e1;
  border-radius: 0px;
  box-shadow: 
    0 24px 55px rgba(0, 0, 0, 0.4),
    0 0 15px rgba(56, 189, 248, 0.22);
}

.mega-dropdown-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Mega Header Bar */
.mega-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.mega-header-info {
  display: flex;
  flex-direction: column;
}

.mega-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #FFF8E7;
  border: 1px solid #F5E2B3;
  color: #AA771C;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 0px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
  width: fit-content;
}

.mega-headline {
  font-size: 0.90rem;
  font-weight: 800;
  color: #0f172a;
  font-family: 'Outfit', sans-serif;
  margin: 0;
  letter-spacing: -0.2px;
}

.mega-catalog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0284c7;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 0px;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.mega-catalog-link:hover {
  background: linear-gradient(135deg, #E6C575 0%, #C99B3B 100%);
  border-color: #C99B3B;
  color: #0A192F;
  font-weight: 800;
  transform: translateX(2px);
  box-shadow: 0 3px 10px rgba(201, 155, 59, 0.35);
}

/* 12-Shed Grid Layout (Scrollable with Sleek Navy Blue Scrollbar) */
.mega-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 14px 18px 16px 18px;
  background: #ffffff;
  border-radius: 0px;
  max-height: min(425px, calc(80vh - 120px));
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #0A192F #f1f5f9;
}

/* Custom Luxury Navy Blue Scrollbar */
.mega-products-grid::-webkit-scrollbar {
  width: 7px;
}

.mega-products-grid::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 0px;
  margin: 6px 0;
}

.mega-products-grid::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0A192F 0%, #1e3a5f 50%, #0A192F 100%);
  border-radius: 0px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 2px 6px rgba(10, 25, 47, 0.35);
}

.mega-products-grid::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #0284c7 0%, #0A192F 100%);
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.45);
}

/* Individual Shed Card */
.mega-prod-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 0px;
  padding: 8px 8px 10px 8px;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.mega-prod-card:hover {
  background: #ffffff;
  border-color: #D4AF37;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.22), 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* Card Image Window (High Clarity, Larger Display) */
.mega-card-img-wrap {
  position: relative;
  width: 100%;
  height: 82px;
  background: #ffffff;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 7px;
  border: 1px solid #edf2f7;
}

.mega-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #ffffff;
  transition: transform 0.3s ease;
}

.mega-prod-card:hover .mega-card-img {
  transform: scale(1.06);
}

.mega-card-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 47, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.mega-prod-card:hover .mega-card-hover-overlay {
  opacity: 1;
}

.mega-zoom-tag {
  background: linear-gradient(135deg, #DFBA73 0%, #C59A3F 100%);
  color: #0A192F;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 0px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Card Meta Content */
.mega-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 100%;
}

.mega-card-cat {
  font-size: 0.62rem;
  font-weight: 700;
  color: #0284c7;
  text-transform: uppercase;
  letter-spacing: 0.35px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.mega-card-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  font-family: 'Outfit', sans-serif;
  line-height: 1.25;
  transition: color 0.18s ease;
}

.mega-prod-card:hover .mega-card-title {
  color: #C59A3F !important;
}

/* ==========================================================================
   MOBILE DRAWER SUBMENU ACCORDION
   ========================================================================== */
.mobile-nav-split-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-submenu-toggle {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.22s ease;
  flex-shrink: 0;
}

.mobile-submenu-toggle.active {
  transform: rotate(180deg);
  background: linear-gradient(135deg, #DFBA73 0%, #C59A3F 100%);
  border-color: #DFBA73;
  color: #0A192F;
}

.mobile-submenu-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0px;
  margin-top: 4px;
}

.mobile-submenu-container.open {
  max-height: 900px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-submenu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mobile-sub-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0px;
  padding: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-sub-card:hover {
  background: rgba(212, 175, 55, 0.18);
  border-color: #D4AF37;
  transform: translateY(-2px);
}

.mobile-sub-img-box {
  width: 100%;
  height: 52px;
  border-radius: 0px;
  overflow: hidden;
  background: #000;
  margin-bottom: 6px;
}

.mobile-sub-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-sub-details {
  display: flex;
  flex-direction: column;
}

.mobile-sub-name {
  font-size: 0.74rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.mobile-sub-cat {
  font-size: 0.62rem;
  color: #38bdf8;
}

.mobile-view-all-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  padding: 8px 12px;
  background: rgba(212, 175, 55, 0.18);
  border: 1px dashed rgba(212, 175, 55, 0.6);
  border-radius: 6px;
  color: #F5CA68;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
}

.mobile-view-all-link:hover {
  background: linear-gradient(135deg, #DFBA73 0%, #C59A3F 100%);
  color: #0A192F;
  border-style: solid;
}

/* 3. Header Right Actions (Contacts & Quote Button) */
.header-right-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  z-index: 2;
  padding: 10px 0;
}

.header-phone-box {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.phone-icon-circle {
  width: 42px;
  height: 42px;
  background: #0A192F;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(10, 25, 47, 0.15);
  transition: all 0.25s ease;
}

.header-phone-box:hover .phone-icon-circle {
  background: linear-gradient(135deg, #DFBA73 0%, #C59A3F 100%);
  color: #0A192F;
  transform: scale(1.08);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.45);
}

.phone-meta {
  display: flex;
  flex-direction: column;
}

.phone-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.22rem;
  font-weight: 900;
  color: #0A192F;
  line-height: 1.1;
  letter-spacing: -0.2px;
}

.phone-sub {
  font-size: 0.74rem;
  color: #64748b;
  font-weight: 600;
  line-height: 1.15;
}

/* Rectangular Gold Get A Quote Button (Premium Swatch Match) */
.btn-orange-rect,
.btn-gold-rect {
  background: linear-gradient(135deg, #E6C575 0%, #C99B3B 50%, #9B7020 100%);
  color: #0A192F;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 6px;
  border: 1px solid rgba(255, 235, 170, 0.65);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(201, 155, 59, 0.42), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.22s ease;
}

.btn-orange-rect:hover,
.btn-gold-rect:hover {
  background: linear-gradient(135deg, #F5D88C 0%, #D8AA45 50%, #AC7B24 100%);
  color: #060F1E;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 155, 59, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

/* Mobile Toggle & Drawer */
.mobile-nav-toggle {
  display: none;
  background: #0A192F;
  color: #ffffff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.mobile-nav-toggle:hover {
  background: var(--gold-amber);
}

.mobile-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: #0A192F;
  z-index: 1002;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-nav-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.drawer-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--gold-light);
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #cbd5e1;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(212, 175, 55, 0.15);
  color: #ffffff;
  border-left: 3px solid var(--gold-primary);
}

.drawer-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  transition: all 0.2s ease;
}

.drawer-phone-btn:hover {
  background: var(--gold-btn-gradient);
  color: #0A192F;
}

/* ==========================================================================
   HERO BANNER (ULTRA-CRISP VECTOR TYPOGRAPHY & 4K PANORAMIC BACKDROP)
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  background: #ffffff;
  padding-top: 86px;
  /* Exact height of fixed site-header */
  padding-bottom: 0;
  margin: 0;
  overflow: hidden;
  display: block;
}

.hero-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1920px;
  aspect-ratio: 2812 / 800;
  margin: 0 auto;
  line-height: 0;
  background: #0A192F;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.45s;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 3;
}

.hero-slide-media-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-slide-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  transform: scale(1.02);
  transition: transform 3s ease-out;
}

.hero-slide.active .hero-slide-bg-img {
  transform: scale(1);
}

.hero-slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
  filter: brightness(0.96) contrast(1.05);
}

.hero-panoramic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 5;
  line-height: normal;
  pointer-events: none;
}

/* Slide 1: Panoramic Image Overlay with Subtle Left Ambient Gradient */
.hero-image-overlay {
  background: linear-gradient(
    90deg,
    rgba(8, 20, 38, 0.72) 0%,
    rgba(8, 20, 38, 0.42) 42%,
    rgba(8, 20, 38, 0.10) 65%,
    transparent 100%
  );
}

/* Slide 2: Translucent Video Overlay (Video visible across entire backdrop behind text) */
.hero-video-overlay {
  background: linear-gradient(
    90deg,
    rgba(8, 20, 38, 0.72) 0%,
    rgba(8, 20, 38, 0.42) 42%,
    rgba(8, 20, 38, 0.10) 65%,
    transparent 100%
  );
}

.hero-panoramic-content {
  width: 100%;
  height: 100%;
  padding: 0 4.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Left Block (Vector-Sharp Typography & Badges) */
.hero-left-block {
  width: 48%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: auto;
}

.hero-slide.active .hero-left-block {
  animation: heroTextSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroTextSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pretitle Badge & 3D Typography */
.hero-pretitle-video,
.hero-left-dark .hero-pretitle-video {
  color: #F5CA68 !important;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(10, 25, 47, 0.85) 100%) !important;
  border: 1.5px solid rgba(212, 175, 55, 0.6) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.4) !important;
  padding: 4px 16px !important;
  border-radius: 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: fit-content !important;
  font-size: clamp(0.74rem, 0.92vw, 1.02rem) !important;
  font-weight: 800 !important;
  letter-spacing: 1.3px !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8) !important;
}

.hero-left-dark .hero-title-video {
  color: #ffffff;
  /* Multi-layered 3D Bevel & Drop Shadow for true architectural 3D depth */
  text-shadow: 
    0 1px 0 #d1d5db,
    0 2px 0 #9ca3af,
    0 3px 0 #4b5563,
    0 4px 1px rgba(0, 0, 0, 0.5),
    0 6px 14px rgba(0, 0, 0, 0.85),
    0 10px 24px rgba(0, 0, 0, 0.7);
  letter-spacing: -0.5px;
}

.hero-left-dark .hero-title-video .text-orange,
.hero-left-dark .hero-title-video .text-gold {
  color: #F5CA68 !important;
  text-shadow: 
    0 1px 0 #ffe898,
    0 2px 0 #d4af37,
    0 3px 0 #8c5e13,
    0 4px 1px rgba(0, 0, 0, 0.6),
    0 6px 16px rgba(212, 175, 55, 0.65),
    0 10px 24px rgba(0, 0, 0, 0.85);
}

.hero-left-dark .hero-title-video .text-white {
  color: #ffffff !important;
  text-shadow: 
    0 1px 0 #e2e8f0,
    0 2px 0 #94a3b8,
    0 3px 0 #475569,
    0 4px 1px rgba(0, 0, 0, 0.5),
    0 6px 14px rgba(0, 0, 0, 0.85);
}

.hero-left-dark .hero-shed-types-video {
  color: #f1f5f9;
}

.hero-left-dark .hero-shed-types-video span:not(.pipe) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: clamp(0.75rem, 0.9vw, 1.05rem);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-feat-badge-glass {
  background: linear-gradient(135deg, rgba(15, 30, 55, 0.85) 0%, rgba(8, 18, 35, 0.92) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  padding: 5px 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.25);
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feat-icon-glass {
  background: linear-gradient(135deg, #F5CA68 0%, #C99B3B 50%, #8C5E13 100%) !important;
  color: #0A192F !important;
  box-shadow: 0 3px 10px rgba(212, 175, 55, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.6) !important;
}

.hero-feat-badge-glass .feat-label strong {
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-feat-badge-glass .feat-label span {
  color: #cbd5e1 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.btn-hero-projects-glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.12) 100%) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.35) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.btn-hero-projects-glass:hover {
  background: #ffffff !important;
  color: #0A192F !important;
  box-shadow: 0 6px 22px rgba(255, 255, 255, 0.4) !important;
  text-shadow: none;
}

/* ==========================================================================
   SLIDE 3: CRANE ERECTION SHOWCASE (LEFT IMAGE & RIGHT CONTENT LAYOUT)
   ========================================================================== */
.hero-slide-bg-crane {
  object-position: left center !important;
}

.hero-crane-overlay {
  background: linear-gradient(
    270deg,
    rgba(8, 20, 38, 0.94) 0%,
    rgba(8, 20, 38, 0.80) 30%,
    rgba(8, 20, 38, 0.42) 46%,
    rgba(8, 20, 38, 0.08) 58%,
    transparent 70%
  );
}

.hero-content-right-align {
  justify-content: flex-end !important;
  padding-right: 2.0% !important;
  padding-left: 0 !important;
}

.hero-right-block {
  width: 44%;
  max-width: 610px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  pointer-events: auto;
  margin-left: auto;
  margin-right: 0;
}

.hero-slide.active .hero-right-block {
  animation: heroTextSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-right-block.hero-left-dark {
  /* Inherits glassmorphism typography and layout from .hero-left-dark */
}

.hero-pretitle {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.74rem, 0.92vw, 1.02rem);
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #1e3a5f;
  text-transform: uppercase;
  margin-bottom: 0.5vw;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.65rem, 2.95vw, 3.45rem);
  font-weight: 900;
  line-height: 1.08;
  color: #0A192F;
  letter-spacing: -0.5px;
  margin: 0 0 0.65vw 0;
  text-shadow: 0 2px 4px rgba(10, 25, 47, 0.18), 0 4px 10px rgba(10, 25, 47, 0.10);
}

.hero-title .text-orange,
.hero-title .text-gold {
  color: #C59A3F !important;
  text-shadow: 0 2px 8px rgba(197, 154, 63, 0.35);
}

.hero-title .text-navy {
  color: #0A192F !important;
}

.hero-shed-types {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4vw;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.76rem, 0.92vw, 1.08rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.0vw;
}

.hero-shed-types .pipe {
  color: #00509d;
  font-weight: 800;
  padding: 0 3px;
}

.hero-badges-row {
  display: flex;
  align-items: center;
  gap: 1.2vw;
  margin-bottom: 1.25vw;
  flex-wrap: wrap;
}

.hero-feat-badge {
  display: flex;
  align-items: center;
  gap: 0.55vw;
}

.hero-feat-badge .feat-icon-wrap {
  width: clamp(28px, 2.4vw, 38px);
  height: clamp(28px, 2.4vw, 38px);
  background: #0A192F;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.74rem, 0.88vw, 1.05rem);
  box-shadow: 0 4px 10px rgba(10, 25, 47, 0.22);
  flex-shrink: 0;
}

.hero-feat-badge .feat-label {
  display: flex;
  flex-direction: column;
  line-height: 1.14;
}

.hero-feat-badge .feat-label strong {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.76rem, 0.88vw, 1.0rem);
  font-weight: 800;
  color: #0A192F;
}

.hero-feat-badge .feat-label span {
  font-size: clamp(0.65rem, 0.74vw, 0.84rem);
  font-weight: 600;
  color: #475569;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 0.9vw;
  flex-wrap: wrap;
}

.btn-hero-quote {
  background: linear-gradient(135deg, #E6C575 0%, #C99B3B 50%, #9B7020 100%);
  color: #0A192F;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.82rem, 0.96vw, 1.08rem);
  font-weight: 800;
  padding: 0.62vw 1.55vw;
  border-radius: 6px;
  border: 1px solid rgba(255, 235, 170, 0.65);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.55vw;
  box-shadow: 0 4px 16px rgba(201, 155, 59, 0.42), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.22s ease;
  white-space: nowrap;
}

.btn-hero-quote:hover {
  background: linear-gradient(135deg, #F5D88C 0%, #D8AA45 50%, #AC7B24 100%);
  color: #060F1E;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 155, 59, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.btn-hero-projects {
  background: #ffffff;
  color: #0A192F;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.82rem, 0.96vw, 1.08rem);
  font-weight: 700;
  padding: 0.55vw 1.4vw;
  border-radius: 6px;
  border: 1.5px solid #cbd5e1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.65vw;
  box-shadow: 0 3px 10px rgba(10, 25, 47, 0.08);
  transition: all 0.22s ease;
  white-space: nowrap;
}

.btn-hero-projects:hover {
  border-color: #D4AF37;
  color: #C59A3F;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.25);
}

.btn-hero-projects .play-icon-wrap {
  width: clamp(20px, 1.6vw, 24px);
  height: clamp(20px, 1.6vw, 24px);
  background: #0A192F;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.52rem, 0.62vw, 0.72rem);
  padding-left: 2px;
  transition: all 0.2s ease;
}

.btn-hero-projects:hover .play-icon-wrap {
  background: linear-gradient(135deg, #F5CA68 0%, #C99B3B 100%);
  color: #0A192F;
}

@media (max-width: 991px) {
  .hero-section {
    padding-top: 75px;
    background: #08162b;
  }

  .hero-carousel-wrapper {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    background: #08162b;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .hero-slide-bg-img,
  .hero-slide-bg-crane,
  .hero-slide-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center !important;
    filter: brightness(0.6) contrast(1.15) !important;
  }

  .hero-panoramic-overlay,
  .hero-crane-overlay,
  .hero-video-overlay,
  .hero-image-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: linear-gradient(
      180deg, 
      rgba(8, 20, 38, 0.90) 0%, 
      rgba(8, 20, 38, 0.76) 50%, 
      rgba(6, 15, 29, 0.95) 100%
    ) !important;
    padding: 36px 0 68px;
    display: flex;
    align-items: center;
    pointer-events: auto;
  }

  .hero-panoramic-content,
  .hero-content-right-align {
    padding: 0 20px !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .hero-left-block,
  .hero-right-block {
    width: 100% !important;
    max-width: 580px !important;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: left;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero-pretitle {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #F5E2B3;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.45);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-flex;
    width: fit-content;
    margin-bottom: 12px;
  }

  .hero-title {
    font-size: 2.1rem;
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
  }

  .hero-title .text-navy {
    color: #ffffff !important;
  }

  .hero-title .text-orange {
    color: #F5CA68 !important;
    background: var(--gold-metallic-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.5));
  }

  .hero-shed-types {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
  }

  .hero-shed-types span:not(.pipe) {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    color: #f1f5f9;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
  }

  .hero-shed-types .pipe {
    display: none;
  }

  .hero-badges-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 22px;
  }

  .hero-feat-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(13, 23, 42, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 10px 6px;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  .hero-feat-badge .feat-icon-wrap {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    border: 1px solid rgba(56, 189, 248, 0.5);
    border-radius: 50%;
    color: #ffffff;
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(2, 132, 199, 0.4);
  }

  .hero-feat-badge .feat-label strong {
    font-size: 0.76rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
  }

  .hero-feat-badge .feat-label span {
    font-size: 0.68rem;
    color: #cbd5e1;
    line-height: 1.2;
  }

  .hero-cta-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .btn-hero-quote {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 800;
    padding: 14px 22px;
    border-radius: 12px;
    background: var(--gold-btn-gradient);
    color: #0A192F;
    box-shadow: 0 8px 22px rgba(201, 155, 59, 0.5);
  }

  .btn-hero-projects {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 13px 22px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    backdrop-filter: blur(8px);
  }

  .btn-hero-projects .play-icon-wrap {
    width: 24px;
    height: 24px;
    background: var(--gold-btn-gradient);
    color: #0A192F;
    font-size: 0.7rem;
  }
}

@media (max-width: 540px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-badges-row {
    gap: 6px;
  }

  .hero-feat-badge {
    padding: 8px 4px;
  }

  .hero-feat-badge .feat-label strong {
    font-size: 0.7rem;
  }

  .hero-feat-badge .feat-label span {
    font-size: 0.62rem;
  }
}

/* Accessibility utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
  padding: 90px 0;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.about-heading {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.stats-counter-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--border-color);
  margin-top: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.3rem;
  font-weight: 900;
  color: #005bb5;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
}

/* About Right Image Card */
.about-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-card:hover img {
  transform: scale(1.04);
}

.about-img-overlay-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 250px;
}

.about-img-overlay-badge h5 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.badge-orange-line {
  width: 36px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

/* ==========================================================================
/* ==========================================================================
   PRODUCTS & SOLUTIONS (DARK OBSIDIAN 3D & GLOWING AMBER NEON 4K)
   ========================================================================== */
.categories-section.amber-neon-section {
  padding: 100px 0 115px;
  background: #060c18;
  background-image:
    radial-gradient(circle at 50% 12%, rgba(212, 175, 55, 0.14) 0%, transparent 60%),
    radial-gradient(circle at 10% 90%, rgba(201, 155, 59, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 85%, rgba(212, 175, 55, 0.07) 0%, transparent 50%),
    linear-gradient(180deg, #050a14 0%, #091322 50%, #040810 100%);
  position: relative;
  overflow: hidden;
}

/* Background Ambient Neon Glow Elements */
.neon-ambient-glow-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.12) 0%, transparent 100%);
  pointer-events: none;
}

.neon-ambient-glow-center {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

.categories-header-wrap,
.categories-section .section-header-center {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 38px;
}

.categories-section .section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.3rem, 3.8vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
  text-align: left;
}

.categories-section .section-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.06rem, 1.2vw, 1.2rem);
  font-weight: 500;
  color: #e2e8f0;
  max-width: 700px;
  margin: 0 0 10px 0;
  line-height: 1.68;
  letter-spacing: 0.25px;
  text-align: left;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  -webkit-font-smoothing: antialiased;
}

.amber-badge-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #111a28 0%, #0a111a 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.65);
  border-radius: 50px;
  padding: 5px 18px;
  margin-bottom: 14px;
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.3),
    0 0 14px rgba(212, 175, 55, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
  transition: all 0.35s ease;
}

.amber-badge-header:hover {
  border-color: #D4AF37;
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.4),
    0 0 22px rgba(212, 175, 55, 0.45),
    inset 0 1px 1px rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.amber-badge-header .section-label {
  color: #F5E2B3;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.amber-badge-header .section-label i {
  color: #D4AF37;
  font-size: 0.88rem;
}

.amber-header-glow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F5CA68;
  box-shadow: 0 0 8px #F5CA68, 0 0 14px #D4AF37;
  animation: amberPulse 2s infinite alternate;
}

@keyframes amberPulse {
  0% {
    opacity: 0.55;
    transform: scale(0.85);
  }

  100% {
    opacity: 1;
    transform: scale(1.25);
  }
}

.categories-amber-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   AMBER SLAB CARD (3D OBSIDIAN FLOATING SLAB & AMBER NEON BACKLIGHT)
   ========================================================================== */
.amber-slab-card {
  position: relative;
  border-radius: 24px;
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

/* 3D Glowing Amber Backlight Layer (Matching Image 2) */
.amber-backlight-aura {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border-radius: 24px;
  background: rgba(212, 175, 55, 0.28);
  filter: blur(18px);
  opacity: 0.5;
  transition: all 0.45s ease;
  z-index: 1;
}

/* Side Neon Edge Accent Strips */
.amber-neon-side-strip {
  position: absolute;
  top: 15%;
  bottom: 15%;
  width: 4px;
  background: linear-gradient(180deg, transparent, #D4AF37, #FFF0B3, #D4AF37, transparent);
  border-radius: 4px;
  opacity: 0.7;
  transition: all 0.45s ease;
  z-index: 1;
}

.amber-neon-side-strip.left-strip {
  left: -2px;
  box-shadow: -4px 0 16px rgba(212, 175, 55, 0.75), -8px 0 25px rgba(170, 119, 28, 0.5);
}

.amber-neon-side-strip.right-strip {
  right: -2px;
  box-shadow: 4px 0 16px rgba(212, 175, 55, 0.75), 8px 0 25px rgba(170, 119, 28, 0.5);
}

.amber-slab-card:hover {
  transform: translateY(-12px) scale(1.02);
}

.amber-slab-card:hover .amber-backlight-aura {
  opacity: 1;
  filter: blur(28px);
  background: rgba(212, 175, 55, 0.55);
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
}

.amber-slab-card:hover .amber-neon-side-strip {
  opacity: 1;
  width: 5px;
}

.amber-slab-card:hover .amber-neon-side-strip.left-strip {
  box-shadow: -6px 0 25px rgba(212, 175, 55, 1), -12px 0 40px rgba(170, 119, 28, 0.8);
}

.amber-slab-card:hover .amber-neon-side-strip.right-strip {
  box-shadow: 6px 0 25px rgba(212, 175, 55, 1), 12px 0 40px rgba(170, 119, 28, 0.8);
}

/* Main 3D Obsidian Card Body */
.amber-card-body-wrapper {
  position: relative;
  z-index: 2;
  background: linear-gradient(175deg, #16202e 0%, #0d141e 50%, #080d15 100%);
  border-radius: 22px;
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.6),
    inset 0 1px 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 2px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.amber-slab-card:hover .amber-card-body-wrapper {
  border-color: #D4AF37;
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.75),
    0 0 20px rgba(212, 175, 55, 0.45),
    inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   PROMINENT 4K HIGH-DEFINITION SHED IMAGE STAGE (CRYSTAL CLEAR)
   ========================================================================== */
.amber-photo-stage {
  position: relative;
  height: 235px;
  width: 100%;
  overflow: hidden;
  background: #060c16;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  box-sizing: border-box;
}

.amber-photo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background-color: #060c16;
  transition: transform 0.65s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.4s ease;
}

.amber-slab-card:hover .amber-photo-img {
  transform: scale(1.04);
  filter: brightness(1.06) contrast(1.05);
}

.amber-photo-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(8, 13, 21, 0.1) 0%, transparent 45%, rgba(13, 20, 30, 0.95) 100%);
  pointer-events: none;
}

/* Laser Scan Sweep Beam across Image on Hover */
.amber-photo-laser-sweep {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.45), transparent);
  transform: skewX(-25deg);
  pointer-events: none;
}

.amber-slab-card:hover .amber-photo-laser-sweep {
  animation: amberLaserSweep 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes amberLaserSweep {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

/* Floating Series Badge - Hidden as requested */
.amber-series-badge,
.card-series-tag {
  display: none !important;
}

/* Floating Tool Icon Bubble */
.amber-floating-icon {
  position: absolute;
  bottom: 12px;
  right: 14px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #DFBA73 0%, #C59A3F 100%);
  border: 2.5px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A192F;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  z-index: 4;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.amber-slab-card:hover .amber-floating-icon {
  transform: scale(1.15) rotate(8deg);
  background: linear-gradient(135deg, #F5D88C 0%, #D8AA45 100%);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

/* ==========================================================================
   CARD TYPOGRAPHY & CONTENT
   ========================================================================== */
.amber-card-content {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.amber-badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: center;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #F5CA68;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.amber-badge-chip i {
  color: #D4AF37;
  font-size: 0.72rem;
}

.amber-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  transition: color 0.3s ease;
}

.amber-slab-card:hover .amber-card-title {
  color: #F5CA68;
}

.amber-card-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.86rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 22px;
  flex-grow: 1;
  font-weight: 400;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

/* ==========================================================================
   AMBER NEON ACTION BUTTON
   ========================================================================== */
.btn-amber-neon {
  position: relative;
  background: linear-gradient(135deg, #0d1624 0%, #152234 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.55);
  border-radius: 10px;
  padding: 11px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.4),
    0 0 10px rgba(212, 175, 55, 0.15);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

.btn-amber-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #ffffff;
  text-transform: uppercase;
}

.btn-amber-arrow {
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5CA68;
  font-size: 0.75rem;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn-amber-neon:hover {
  background: linear-gradient(135deg, #E6C575 0%, #C99B3B 100%);
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(201, 155, 59, 0.5),
    0 0 20px rgba(212, 175, 55, 0.6);
}

.btn-amber-neon:hover .btn-amber-arrow {
  transform: translateX(4px);
  background: #ffffff;
  color: #0A192F;
}

/* ==========================================================================
   4. WHY CHOOSE KARIM CONSTRUCTIONS (3D ICE-BLUE ROUNDED SHOWCASE BOX)
   ========================================================================== */
.why-us-section.why-us-white-container-section {
  position: relative;
  padding: 85px 0 95px;
  background: #ffffff;
  overflow: hidden;
}

/* 3D Elevated Ice-Blue Container Box with Smooth Rounded Border */
.why-us-3d-white-box {
  position: relative;
  background: linear-gradient(180deg, #ebf3ff 0%, #edf4ff 100%);
  border-radius: 36px;
  border: 2px solid #d0e2ff;
  padding: 52px 36px 48px;
  box-shadow: 
    0 24px 50px -10px rgba(56, 115, 195, 0.12),
    0 10px 24px -5px rgba(10, 25, 47, 0.05),
    inset 0 1px 2px #ffffff;
  transition: all 0.35s ease;
}

.why-us-3d-white-box:hover {
  border-color: #bad6ff;
  box-shadow: 
    0 30px 60px -10px rgba(56, 115, 195, 0.18),
    0 14px 28px -5px rgba(10, 25, 47, 0.08),
    inset 0 1px 2px #ffffff;
}

/* Header Section inside 3D Rounded Box */
.why-us-header.arch-header-center {
  text-align: center;
  margin-bottom: 44px;
}

.arch-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 50px;
  padding: 6px 18px;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.15);
}

.arch-badge-pill .section-label {
  color: #B8860B;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.arch-led-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #D4AF37;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.9);
  animation: archLedPulse 2s infinite alternate;
}

@keyframes archLedPulse {
  0% {
    opacity: 0.5;
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.why-us-title {
  color: #0a192f;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.4vw, 2.65rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}

.why-us-title .text-orange,
.why-us-title .text-gold {
  color: #C59A3F;
  text-shadow: none;
}

.arch-section-subtitle {
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}

/* ==========================================================================
   ARCHITECTURAL GEOMETRIC GRID & 7 CARDS INSIDE WHITE BOX
   ========================================================================== */
.arch-geometric-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr) 1.35fr;
  gap: 16px;
  align-items: stretch;
}

.arch-panel-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.arch-panel-card:hover {
  transform: translateY(-8px) scale(1.025);
  z-index: 5;
}

/* Material Type A: Deep Slate Charcoal */
.arch-panel-card.panel-slate-dark {
  background: linear-gradient(165deg, #1e293b 0%, #0f172a 100%);
  border: 1.5px solid rgba(203, 213, 225, 0.16);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.25);
  color: #f8fafc;
}

.arch-panel-card.panel-slate-dark:hover {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.35), 0 0 20px rgba(212, 175, 55, 0.2);
}

.arch-panel-card.panel-slate-dark .arch-card-title {
  color: #ffffff;
}

.arch-panel-card.panel-slate-dark .arch-card-desc {
  color: #cbd5e1;
}

/* Material Type B: Warm Sandstone / Taupe Limestone */
.arch-panel-card.panel-taupe-stone {
  background: linear-gradient(165deg, #ded6cb 0%, #c4b6a4 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 10px 24px rgba(100, 80, 50, 0.2);
  color: #0f172a;
}

.arch-panel-card.panel-taupe-stone:hover {
  border-color: #C59A3F;
  box-shadow: 0 18px 36px rgba(100, 80, 50, 0.3), 0 0 20px rgba(197, 154, 63, 0.2);
}

.arch-panel-card.panel-taupe-stone .arch-card-title {
  color: #0a192f;
}

.arch-panel-card.panel-taupe-stone .arch-card-desc {
  color: #334155;
  font-weight: 500;
}

.arch-panel-card.panel-taupe-stone .arch-step-num {
  color: #475569;
}

.arch-panel-card.panel-taupe-stone .arch-icon-socket {
  background: #0f172a;
  color: #fde68a;
  border-color: #d4af37;
}

/* Material Type C: Fluted Ribbed Wood */
.arch-panel-card.panel-fluted-wood {
  background:
    linear-gradient(rgba(10, 20, 36, 0.78), rgba(6, 14, 26, 0.88)),
    repeating-linear-gradient(90deg, #9a7246 0px, #9a7246 6px, #442a12 6px, #442a12 12px);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.arch-panel-card.panel-fluted-wood:hover {
  border-color: #D4AF37;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45), 0 0 20px rgba(212, 175, 55, 0.25);
}

.arch-panel-card.panel-fluted-wood .arch-card-title {
  color: #ffffff;
}

.arch-panel-card.panel-fluted-wood .arch-card-desc {
  color: #cbd5e1;
}

/* Warm Golden LED Seam Channel Trim */
.arch-led-seam-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #F5CA68, #fef08a, #F5CA68);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.7), 0 0 20px rgba(212, 175, 55, 0.4);
  transition: box-shadow 0.35s ease;
}

.arch-panel-card:hover .arch-led-seam-top {
  box-shadow: 0 0 18px rgba(212, 175, 55, 1), 0 0 35px rgba(212, 175, 55, 0.8);
}

.arch-led-seam-diag {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, transparent 50%, rgba(212, 175, 55, 0.3) 50%, rgba(212, 175, 55, 0.8) 100%);
  pointer-events: none;
}

/* Card Inner Architecture */
.arch-card-inner {
  padding: 22px 16px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.arch-card-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 14px;
}

.arch-icon-socket {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #38bdf8;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4), 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.35s ease;
}

.arch-panel-card:hover .arch-icon-socket {
  background: linear-gradient(135deg, #DFBA73 0%, #C59A3F 100%);
  color: #0A192F;
  border-color: #F5E2B3;
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.6);
}

.arch-step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1px;
  opacity: 0.45;
}

.arch-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.arch-panel-card:hover .arch-card-title {
  color: #F5CA68;
}

.arch-card-desc {
  font-size: 0.76rem;
  line-height: 1.5;
  opacity: 0.85;
  margin-bottom: 14px;
  flex-grow: 1;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.arch-bottom-led-line {
  width: 22px;
  height: 2px;
  background: #D4AF37;
  border-radius: 2px;
  transition: width 0.35s ease, box-shadow 0.35s ease;
}

.arch-panel-card:hover .arch-bottom-led-line {
  width: 100%;
  box-shadow: 0 0 8px #D4AF37;
}

/* ==========================================================================
   GRAND ARCHITECTURAL SLOGAN MONUMENT (RIGHT FEATURE)
   ========================================================================== */
.arch-slogan-monument {
  position: relative;
  background: linear-gradient(145deg, #152338 0%, #0b1524 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  border-radius: 18px;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.35),
    inset 0 0 25px rgba(212, 175, 55, 0.15);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s ease;
}

.arch-slogan-monument:hover {
  transform: translateY(-6px);
  border-color: #D4AF37;
  box-shadow:
    0 22px 45px rgba(0, 0, 0, 0.45),
    0 0 30px rgba(212, 175, 55, 0.35);
}

/* Left Vertical LED Seam */
.monument-led-seam-left {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, #F5CA68 0%, #fef08a 50%, #C59A3F 100%);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.85);
}

.monument-wood-flutes {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  background: repeating-linear-gradient(45deg,
      #825c34 0px,
      #825c34 4px,
      #301c0c 4px,
      #301c0c 8px);
  opacity: 0.4;
  border-radius: 50%;
  pointer-events: none;
}

.monument-content {
  position: relative;
  z-index: 2;
}

.monument-badge {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #F5CA68;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.monument-quote {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.monument-line {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  line-height: 1.25;
}

.monument-line.line-1 {
  color: #f8fafc;
}

.monument-line.line-2 .neon-orange-text {
  color: #C59A3F;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.6);
}

.monument-line.line-3,
.monument-line.line-4 {
  color: #cbd5e1;
}

.monument-brass-accent {
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, #F5CA68, #C59A3F);
  border-radius: 2px;
  margin-top: 14px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

  /* ==========================================================================
   5. OUR PROCESS SECTION (3D LIGHT NAVY ROUNDED SHOWCASE BOX)
   ========================================================================== */
  .process-section {
    padding: 70px 0 85px;
    background: #ffffff;
    position: relative;
  }

  /* 3D Elevated Light Navy Rounded Container Box */
  .process-3d-navy-box {
    position: relative;
    background: linear-gradient(145deg, #ebf4fe 0%, #dbeafe 50%, #e8f3fe 100%);
    border-radius: 36px;
    border: 2px solid #cde1f8;
    padding: 50px 40px 48px;
    box-shadow: 
      0 24px 50px -10px rgba(10, 37, 64, 0.12),
      0 10px 24px -5px rgba(0, 0, 0, 0.05),
      inset 0 1px 2px #ffffff;
    transition: all 0.4s ease;
  }

  .process-3d-navy-box:hover {
    border-color: #bad6ff;
    box-shadow: 
      0 30px 60px -10px rgba(10, 37, 64, 0.16),
      0 14px 28px -5px rgba(0, 0, 0, 0.08),
      inset 0 1px 2px #ffffff;
  }

  .process-grid-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 40px;
    align-items: center;
  }

  .process-timeline-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: 36px;
  }

  .process-step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
  }

  /* 3D Architectural Wood Block Step Card */
  .step-card-box.step-wood-card,
  .step-card-box {
    position: relative;
    background:
      linear-gradient(150deg, rgba(20, 14, 8, 0.45) 0%, rgba(10, 6, 3, 0.75) 100%),
      url('../images/process-wood-texture.png') center / cover no-repeat;
    border: 1.5px solid rgba(212, 175, 55, 0.45);
    border-radius: 20px;
    padding: 18px 14px 16px;
    width: 100%;
    max-width: 125px;
    box-shadow: 
      0 12px 28px -4px rgba(0, 0, 0, 0.45),
      0 4px 10px rgba(0, 0, 0, 0.2),
      inset 0 1px 1px rgba(255, 230, 180, 0.45),
      inset 0 -2px 6px rgba(0, 0, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
  }

  .process-step-node:hover .step-card-box {
    transform: translateY(-8px) scale(1.05);
    border-color: #D4AF37;
    box-shadow: 
      0 20px 38px -6px rgba(0, 0, 0, 0.6),
      0 0 25px rgba(212, 175, 55, 0.45),
      inset 0 1px 2px rgba(255, 240, 200, 0.8);
  }

  /* Top Warm Golden Seam */
  .step-wood-glow-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F5CA68, #fef08a, #F5CA68);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    opacity: 0.85;
    transition: opacity 0.35s ease, box-shadow 0.35s ease;
  }

  .process-step-node:hover .step-wood-glow-top {
    opacity: 1;
    box-shadow: 0 0 16px rgba(212, 175, 55, 1), 0 0 24px rgba(212, 175, 55, 0.8);
  }

  .step-wood-bevel-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
  }

  .step-number-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    padding: 3px 12px;
    border-radius: 20px;
    color: #ffffff;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  .step-number-tag.blue {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    border: 1px solid rgba(56, 189, 248, 0.6);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.45);
  }

  .step-number-tag.orange {
    background: linear-gradient(135deg, #DFBA73 0%, #C59A3F 100%);
    color: #0A192F;
    font-weight: 900;
    border: 1px solid rgba(255, 235, 170, 0.7);
    box-shadow: 0 4px 12px rgba(201, 155, 59, 0.45);
  }

  .process-step-node:hover .step-number-tag {
    transform: scale(1.1);
  }

  .step-icon-inner {
    font-size: 1.55rem;
    color: #ffffff;
    margin-bottom: 6px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.8));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease, filter 0.3s ease;
  }

  .process-step-node:hover .step-icon-inner {
    color: #F5CA68;
    transform: scale(1.18) rotate(6deg);
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.9));
  }

  .step-title-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.84rem;
    font-weight: 800;
    color: #0a192f;
    margin-top: 10px;
    line-height: 1.35;
    text-align: center;
    transition: color 0.3s ease;
    white-space: normal;
  }

  .process-step-node:hover .step-title-text {
    color: #C59A3F;
  }

  .process-arrow-divider {
    color: #C59A3F;
    font-size: 1.2rem;
    padding: 0 2px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(197, 154, 63, 0.25));
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .process-step-node:hover + .process-arrow-divider {
    color: #F5CA68;
    transform: translateX(4px);
  }

  /* ==========================================================================
     AUTOMATIC CONTINUOUS MOTION ANIMATIONS (STEP CARDS & ARROWS)
     ========================================================================== */
  
  /* Continuous Wave Floating Motion for 5 Cards */
  @keyframes processCardAutoFloat {
    0% {
      transform: translateY(0px);
      border-color: rgba(212, 175, 55, 0.45);
      box-shadow: 
        0 12px 28px -4px rgba(0, 0, 0, 0.45),
        0 4px 10px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 230, 180, 0.45);
    }
    50% {
      transform: translateY(-9px);
      border-color: #D4AF37;
      box-shadow: 
        0 20px 38px -6px rgba(0, 0, 0, 0.55),
        0 0 20px rgba(212, 175, 55, 0.45),
        inset 0 1px 2px rgba(255, 240, 200, 0.7);
    }
    100% {
      transform: translateY(0px);
      border-color: rgba(212, 175, 55, 0.45);
      box-shadow: 
        0 12px 28px -4px rgba(0, 0, 0, 0.45),
        0 4px 10px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 230, 180, 0.45);
    }
  }

  /* Staggered Floating Wave Motion on each step */
  .process-step-node:nth-of-type(1) .step-card-box {
    animation: processCardAutoFloat 4s ease-in-out 0s infinite;
  }
  .process-step-node:nth-of-type(2) .step-card-box {
    animation: processCardAutoFloat 4s ease-in-out 0.8s infinite;
  }
  .process-step-node:nth-of-type(3) .step-card-box {
    animation: processCardAutoFloat 4s ease-in-out 1.6s infinite;
  }
  .process-step-node:nth-of-type(4) .step-card-box {
    animation: processCardAutoFloat 4s ease-in-out 2.4s infinite;
  }
  .process-step-node:nth-of-type(5) .step-card-box {
    animation: processCardAutoFloat 4s ease-in-out 3.2s infinite;
  }

  /* When hovered, pause auto motion & apply prioritized interactive lift */
  .process-step-node:hover .step-card-box {
    animation-play-state: paused;
    transform: translateY(-12px) scale(1.06);
    border-color: #D4AF37;
    box-shadow: 
      0 24px 44px -6px rgba(0, 0, 0, 0.65),
      0 0 28px rgba(212, 175, 55, 0.55),
      inset 0 1px 2px rgba(255, 240, 200, 0.9);
  }

  /* Continuous Subtle Pulse on Icons */
  @keyframes iconAutoGlow {
    0%, 100% {
      transform: scale(1);
      filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.8));
    }
    50% {
      transform: scale(1.1);
      filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.85));
      color: #F5CA68;
    }
  }

  .process-step-node:nth-of-type(1) .step-icon-inner {
    animation: iconAutoGlow 4s ease-in-out 0s infinite;
  }
  .process-step-node:nth-of-type(2) .step-icon-inner {
    animation: iconAutoGlow 4s ease-in-out 0.8s infinite;
  }
  .process-step-node:nth-of-type(3) .step-icon-inner {
    animation: iconAutoGlow 4s ease-in-out 1.6s infinite;
  }
  .process-step-node:nth-of-type(4) .step-icon-inner {
    animation: iconAutoGlow 4s ease-in-out 2.4s infinite;
  }
  .process-step-node:nth-of-type(5) .step-icon-inner {
    animation: iconAutoGlow 4s ease-in-out 3.2s infinite;
  }

  /* Continuous Flowing Pulse on Step Arrow Dividers (01 -> 02 -> 03 -> 04 -> 05) */
  @keyframes arrowAutoFlow {
    0% {
      opacity: 0.45;
      transform: translateX(-3px);
      color: #AA771C;
      filter: drop-shadow(0 2px 4px rgba(170, 119, 28, 0.2));
    }
    50% {
      opacity: 1;
      transform: translateX(4px);
      color: #F5CA68;
      filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.8));
    }
    100% {
      opacity: 0.45;
      transform: translateX(-3px);
      color: #AA771C;
      filter: drop-shadow(0 2px 4px rgba(170, 119, 28, 0.2));
    }
  }

  .process-arrow-divider:nth-of-type(1) {
    animation: arrowAutoFlow 2.4s ease-in-out 0.4s infinite;
  }
  .process-arrow-divider:nth-of-type(2) {
    animation: arrowAutoFlow 2.4s ease-in-out 1.0s infinite;
  }
  .process-arrow-divider:nth-of-type(3) {
    animation: arrowAutoFlow 2.4s ease-in-out 1.6s infinite;
  }
  .process-arrow-divider:nth-of-type(4) {
    animation: arrowAutoFlow 2.4s ease-in-out 2.2s infinite;
  }

  /* Process Image Right */
  .process-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }

  .process-image-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .process-image-card:hover img {
    transform: scale(1.04);
  }

  .process-img-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }

  .process-img-badge h5 {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 6px;
  }

  /* ==========================================================================
   FREQUENTLY ASKED QUESTIONS (FAQ) - HD CRANE & STEEL BRIDGE BACKGROUND
   ========================================================================== */
  .faq-section {
    position: relative;
    padding: 105px 0 115px;
    background: 
      linear-gradient(180deg, rgba(7, 15, 29, 0.88) 0%, rgba(5, 12, 23, 0.92) 50%, rgba(3, 8, 17, 0.96) 100%),
      url('../images/faq-steel-bridge-bg.jpg') center center / cover no-repeat fixed;
    color: #ffffff;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  }

  .faq-bg-ambient-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 15% 30%, rgba(2, 132, 199, 0.16) 0%, transparent 50%),
      radial-gradient(circle at 85% 70%, rgba(212, 175, 55, 0.14) 0%, transparent 45%),
      radial-gradient(circle at 50% 10%, rgba(201, 155, 59, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
  }

  /* Center Header */
  .faq-header-center {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .faq-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.55rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  }

  .text-orange-glow {
    color: #F5CA68;
    background: var(--gold-metallic-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.4));
  }

  .faq-section-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.02rem;
    color: #cbd5e1;
    line-height: 1.65;
    max-width: 680px;
  }

  /* Main Grid (Accordion & Showcase on Left, Support Card on Right) */
  .faq-grid-layout {
    display: grid;
    grid-template-columns: 1.45fr 0.75fr;
    gap: 32px;
    align-items: start;
  }

  .faq-left-column-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* 2-Column Accordion Layout */
  .faq-accordion-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
  }

  .faq-accordion-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  /* Landscape Showcase Border Box below FAQ items */
  .faq-landscape-showcase-box {
    position: relative;
    border-radius: 20px;
    border: 1.5px solid rgba(212, 175, 55, 0.45);
    background: rgba(13, 23, 42, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    box-shadow: 
      0 16px 36px -6px rgba(0, 0, 0, 0.65),
      0 0 24px rgba(212, 175, 55, 0.15),
      inset 0 1px 2px rgba(255, 240, 200, 0.3);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
  }

  .faq-landscape-showcase-box:hover {
    transform: translateY(-4px);
    border-color: #D4AF37;
    box-shadow: 
      0 24px 50px -8px rgba(0, 0, 0, 0.8),
      0 0 35px rgba(212, 175, 55, 0.3),
      inset 0 1px 2px rgba(255, 245, 210, 0.5);
  }

  .faq-landscape-img-wrap {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
  }

  .faq-landscape-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .faq-landscape-showcase-box:hover .faq-landscape-img {
    transform: scale(1.05);
  }

  .faq-landscape-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      180deg, 
      rgba(7, 15, 29, 0.2) 0%, 
      rgba(6, 14, 28, 0.65) 50%, 
      rgba(4, 9, 18, 0.94) 100%
    );
    pointer-events: none;
  }

  .faq-landscape-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: auto;
    z-index: 2;
  }

  .faq-landscape-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
  }

  .faq-landscape-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #F5E2B3;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }

  .faq-landscape-pulse-dot {
    width: 7px;
    height: 7px;
    background: #D4AF37;
    border-radius: 50%;
    box-shadow: 0 0 8px #D4AF37;
    animation: statusPulse 2s infinite ease-in-out;
  }

  .faq-landscape-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(13, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #f8fafc;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
  }

  .faq-landscape-bottom-bar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
  }

  .faq-landscape-info {
    flex: 1;
  }

  .faq-landscape-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 3px;
    letter-spacing: -0.2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  }

  .faq-landscape-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    color: #cbd5e1;
    line-height: 1.45;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
  }

  .faq-landscape-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--gold-btn-gradient);
    color: #0A192F;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    padding: 9px 16px;
    border-radius: 10px;
    text-decoration: none;
    flex-shrink: 0;
    border: 1px solid rgba(255, 235, 170, 0.5);
    box-shadow: 0 4px 16px rgba(201, 155, 59, 0.45);
    transition: all 0.3s ease;
  }

  .faq-landscape-cta-btn:hover {
    background: var(--gold-btn-hover);
    color: #0A192F;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(201, 155, 59, 0.6), 0 0 14px rgba(212, 175, 55, 0.4);
  }

  /* Individual Separate FAQ Card */
  .faq-item {
    background: rgba(13, 23, 42, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
      0 10px 28px -4px rgba(0, 0, 0, 0.5),
      inset 0 1px 1px rgba(255, 255, 255, 0.12);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  }

  .faq-item:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.45);
    background: rgba(16, 28, 52, 0.88);
    box-shadow: 
      0 16px 36px -6px rgba(0, 0, 0, 0.65),
      0 0 18px rgba(212, 175, 55, 0.18),
      inset 0 1px 1px rgba(255, 240, 200, 0.2);
  }

  .faq-item.active {
    border-color: #D4AF37;
    background: linear-gradient(155deg, rgba(20, 36, 64, 0.94) 0%, rgba(12, 22, 40, 0.96) 100%);
    box-shadow: 
      0 20px 42px -6px rgba(0, 0, 0, 0.7),
      0 0 24px rgba(212, 175, 55, 0.28),
      inset 0 1px 2px rgba(255, 235, 180, 0.4);
  }

  .faq-question-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
  }

  .faq-q-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
  }

  .faq-num-pill {
    font-family: 'Outfit', sans-serif;
    font-size: 0.76rem;
    font-weight: 900;
    color: #F5E2B3;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .faq-item.active .faq-num-pill {
    background: var(--gold-btn-gradient);
    border-color: #D4AF37;
    color: #0A192F;
    box-shadow: 0 0 10px rgba(201, 155, 59, 0.4);
  }

  .faq-q-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.96rem;
    font-weight: 700;
    color: #f8fafc;
    line-height: 1.4;
    transition: color 0.3s ease;
  }

  .faq-item:hover .faq-q-text,
  .faq-item.active .faq-q-text {
    color: #ffffff;
  }

  .faq-plus-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    color: #cbd5e1;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
  }

  .faq-item:hover .faq-plus-icon {
    border-color: rgba(212, 175, 55, 0.6);
    color: #F5E2B3;
    background: rgba(212, 175, 55, 0.15);
  }

  .faq-item.active .faq-plus-icon {
    background: var(--gold-btn-gradient);
    border-color: #D4AF37;
    color: #0A192F;
    transform: rotate(45deg);
    box-shadow: 0 0 14px rgba(201, 155, 59, 0.6);
  }

  .faq-answer-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 20px;
  }

  .faq-answer-inner {
    padding-top: 4px;
    padding-bottom: 20px;
    position: relative;
  }

  .faq-answer-border-accent {
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.4) 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    margin-bottom: 14px;
  }

  .faq-answer-inner p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.90rem;
    color: #cbd5e1;
    line-height: 1.68;
    margin: 0;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
  }

  /* ==========================================================================
     RIGHT SIDE "STILL HAVE QUESTIONS?" CARD
     ========================================================================== */
  .faq-help-card {
    position: relative;
    background: linear-gradient(165deg, rgba(16, 29, 53, 0.92) 0%, rgba(9, 17, 32, 0.97) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1.5px solid rgba(212, 175, 55, 0.38);
    box-shadow: 
      0 24px 50px -8px rgba(0, 0, 0, 0.7),
      0 0 30px rgba(212, 175, 55, 0.15),
      inset 0 1px 2px rgba(255, 240, 200, 0.3);
    padding: 36px 28px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  }

  .faq-help-card:hover {
    transform: translateY(-4px);
    border-color: #D4AF37;
    box-shadow: 
      0 30px 60px -8px rgba(0, 0, 0, 0.8),
      0 0 40px rgba(212, 175, 55, 0.25),
      inset 0 1px 2px rgba(255, 245, 210, 0.5);
  }

  .faq-help-card-glow {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 140px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  .faq-help-status-badge {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ade80;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
  }

  .faq-status-pulse-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
    animation: statusPulse 2s infinite ease-in-out;
  }

  @keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.8); }
  }

  .faq-bulb-icon-wrap {
    position: relative;
    z-index: 2;
    margin-bottom: 18px;
  }

  .faq-bulb-halo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: haloPulse 3s infinite ease-in-out;
  }

  @keyframes haloPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.25); opacity: 1; }
  }

  .faq-bulb-icon {
    position: relative;
    z-index: 2;
    width: 68px;
    height: 68px;
    background: var(--gold-btn-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #0A192F;
    box-shadow: 
      0 10px 24px rgba(201, 155, 59, 0.45),
      0 0 20px rgba(212, 175, 55, 0.35),
      inset 0 1px 2px rgba(255, 230, 180, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .faq-help-card:hover .faq-bulb-icon {
    transform: scale(1.08) rotate(6deg);
  }

  .faq-help-title {
    position: relative;
    z-index: 2;
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
  }

  .faq-help-desc {
    position: relative;
    z-index: 2;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 22px;
  }

  .faq-help-actions {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 11px;
  }

  .btn-faq-help-quote {
    width: 100%;
    background: var(--gold-btn-gradient);
    color: #0A192F;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    padding: 14px 22px;
    border-radius: 12px;
    border: 1px solid rgba(255, 235, 170, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(201, 155, 59, 0.45);
    transition: all 0.3s ease;
  }

  .btn-faq-help-quote:hover {
    background: var(--gold-btn-hover);
    color: #0A192F;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(201, 155, 59, 0.6), 0 0 16px rgba(212, 175, 55, 0.4);
    border-color: rgba(255, 245, 200, 0.8);
  }

  .faq-direct-call-pill {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 11px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: left;
  }

  .faq-direct-call-pill:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
  }

  .faq-call-pill-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    background: rgba(2, 132, 199, 0.2);
    border: 1px solid rgba(56, 189, 248, 0.4);
    color: #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 0 10px rgba(2, 132, 199, 0.3);
  }

  .faq-call-pill-info {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
  }

  .faq-call-sub {
    font-size: 0.72rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }

  .faq-call-number {
    font-family: 'Outfit', sans-serif;
    font-size: 0.94rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.4px;
  }

  .faq-whatsapp-quick-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 16px;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.35);
    border-radius: 12px;
    color: #25d366;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.86rem;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .faq-whatsapp-quick-btn i {
    font-size: 1.15rem;
  }

  .faq-whatsapp-quick-btn:hover {
    background: #25d366;
    color: #ffffff;
    border-color: #25d366;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
  }

  .faq-help-footer-note {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #94a3b8;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
  }

  /* ==========================================================================
     FAQ CLIENT TESTIMONIALS (3 ANIMATED LUXURY CARDS)
     ========================================================================== */
  .faq-testimonials-section {
    padding: 85px 0 70px;
    background: #060f1e;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .faq-testi-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(2, 132, 199, 0.08) 0%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
    pointer-events: none;
    z-index: 1;
  }

  .faq-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 45px;
  }

  .faq-testi-card {
    background: linear-gradient(145deg, #0b192e 0%, #081426 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.09);
    border-top: 7px solid #0284c7;
    border-radius: 20px;
    padding: 34px 28px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 35px -5px rgba(0, 0, 0, 0.45);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    transform: translateZ(0);
  }

  /* Shimmer Light Reflection Animation */
  .faq-testi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transform: skewX(-25deg);
    transition: left 0.85s ease-in-out;
    pointer-events: none;
    z-index: 3;
  }

  .faq-testi-card:hover::before {
    left: 170%;
  }

  .faq-testi-card:hover {
    transform: translateY(-10px) scale(1.018);
  }

  .faq-testi-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
  }

  .faq-testi-quote-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .faq-testi-card:hover .faq-testi-quote-icon {
    transform: scale(1.18) rotate(-8deg);
  }

  .faq-testi-rating {
    display: flex;
    gap: 4px;
    font-size: 0.95rem;
    color: #f59e0b;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
  }

  .faq-testi-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 7px;
    margin-bottom: 18px;
  }

  .faq-testi-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.93rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 26px;
    font-style: normal;
    flex-grow: 1;
  }

  .faq-testi-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .faq-testi-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  .faq-testi-card:hover .faq-testi-avatar {
    transform: scale(1.1);
  }

  .faq-testi-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
  }

  .faq-author-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.25;
  }

  .faq-author-role {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.80rem;
    color: #94a3b8;
    line-height: 1.3;
  }

  .faq-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: #10b981;
    margin-top: 4px;
    letter-spacing: 0.3px;
  }

  /* ================== Card 1: Sapphire Blue ================== */
  .faq-testi-blue {
    border-top-color: #0284c7;
  }
  .faq-testi-blue:hover {
    border-color: rgba(2, 132, 199, 0.6);
    border-top-color: #0284c7;
    box-shadow: 0 24px 50px -10px rgba(2, 132, 199, 0.35), 0 0 0 1px rgba(2, 132, 199, 0.3);
  }
  .faq-testi-blue .faq-testi-quote-icon {
    background: rgba(2, 132, 199, 0.15);
    border: 1.5px solid rgba(2, 132, 199, 0.35);
    color: #38bdf8;
  }
  .faq-testi-blue .faq-testi-tag {
    background: rgba(2, 132, 199, 0.15);
    border: 1px solid rgba(2, 132, 199, 0.3);
    color: #7dd3fc;
  }
  .faq-avatar-blue {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #ffffff;
    border: 2px solid #38bdf8;
    box-shadow: 0 0 14px rgba(2, 132, 199, 0.4);
  }

  /* ================== Card 2: Imperial Gold ================== */
  .faq-testi-gold {
    border-top-color: #d97706;
  }
  .faq-testi-gold:hover {
    border-color: rgba(217, 119, 6, 0.6);
    border-top-color: #d97706;
    box-shadow: 0 24px 50px -10px rgba(217, 119, 6, 0.35), 0 0 0 1px rgba(217, 119, 6, 0.3);
  }
  .faq-testi-gold .faq-testi-quote-icon {
    background: rgba(217, 119, 6, 0.15);
    border: 1.5px solid rgba(217, 119, 6, 0.35);
    color: #fbbf24;
  }
  .faq-testi-gold .faq-testi-tag {
    background: rgba(217, 119, 6, 0.15);
    border: 1px solid rgba(217, 119, 6, 0.3);
    color: #fde68a;
  }
  .faq-avatar-gold {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: #ffffff;
    border: 2px solid #fbbf24;
    box-shadow: 0 0 14px rgba(217, 119, 6, 0.4);
  }

  /* ================== Card 3: Emerald Green ================== */
  .faq-testi-green {
    border-top-color: #10b981;
  }
  .faq-testi-green:hover {
    border-color: rgba(16, 185, 129, 0.6);
    border-top-color: #10b981;
    box-shadow: 0 24px 50px -10px rgba(16, 185, 129, 0.35), 0 0 0 1px rgba(16, 185, 129, 0.3);
  }
  .faq-testi-green .faq-testi-quote-icon {
    background: rgba(16, 185, 129, 0.15);
    border: 1.5px solid rgba(16, 185, 129, 0.35);
    color: #34d399;
  }
  .faq-testi-green .faq-testi-tag {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #a7f3d0;
  }
  .faq-avatar-green {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    color: #ffffff;
    border: 2px solid #34d399;
    box-shadow: 0 0 14px rgba(16, 185, 129, 0.4);
  }

  /* Responsive */
  @media (max-width: 992px) {
    .faq-testimonials-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 680px) {
    .faq-testimonials-grid {
      grid-template-columns: 1fr;
    }
    .faq-testi-card {
      padding: 26px 20px 22px;
    }
  }

  /* ==========================================================================
   CONNECT WITH US / CTA BANNER
   ========================================================================== */
  .cta-banner-section {
    padding: 40px 0 90px;
    width: 100%;
    overflow: hidden;
  }

  .cta-banner-card {
    background: linear-gradient(135deg, #edf4ff 0%, #e2eeff 100%);
    border: 1.5px solid #d0e2ff;
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 0.8fr 1.6fr 0.9fr;
    gap: 30px;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
  }

  .cta-support-avatar-col {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .cta-support-avatar-wrap {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 5px solid #ffffff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
    flex-shrink: 0;
  }

  .cta-support-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .cta-center-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .cta-tagline-label {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #0066cc;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: inline-block;
  }

  .cta-headline {
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 10px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .cta-subtext,
  .cta-body-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 22px;
    line-height: 1.55;
  }

  .cta-contact-pills-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    width: 100%;
  }

  .contact-pill-item,
  .cta-contact-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 9px 18px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0eeff;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
    transition: var(--transition);
    max-width: 100%;
  }

  .contact-pill-item:hover,
  .cta-contact-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 102, 204, 0.15);
    border-color: #93c5fd;
  }

  .contact-pill-icon,
  .pill-icon-box {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    flex-shrink: 0;
  }

  .contact-pill-info,
  .pill-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
    overflow: hidden;
  }

  .pill-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .pill-val {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--primary);
    word-break: break-word;
    overflow-wrap: anywhere;
    line-height: 1.25;
  }

  .cta-action-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  .cta-guarantee-note {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  /* Right mini warehouse & speech bubble */
  .cta-right-graphic-col {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cta-speech-bubble {
    background: #dbeafe;
    color: #1e40af;
    padding: 10px 16px;
    border-radius: 16px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  }

  .cta-speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: #dbeafe transparent;
    display: block;
    width: 0;
  }

  .cta-mini-img-wrap {
    width: 180px;
    transition: transform 0.4s ease;
  }

  .cta-mini-img-wrap:hover {
    transform: translateY(-6px) scale(1.05);
  }

  /* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
  /* ==========================================================================
   PREMIUM INDUSTRIAL FOOTER SECTION
   ========================================================================== */
  .site-footer {
    background: radial-gradient(circle at 50% 0%, #0c213d 0%, #06111f 100%);
    color: #cbd5e1;
    position: relative;
    padding-top: 0;
    overflow: hidden;
  }

  .footer-top-accent-bar {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #D4AF37 25%, #FFF0B3 50%, #D4AF37 75%, transparent 100%);
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.6);
  }

  /* 1. Pre-Footer Quick Connect Strip (Compact) */
  .footer-contact-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 22px 0 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .contact-strip-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 11px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .contact-strip-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  }

  .contact-strip-card.highlight-card {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.35);
  }

  .contact-strip-card.highlight-card:hover {
    background: rgba(212, 175, 55, 0.16);
    border-color: #D4AF37;
    box-shadow: 0 6px 20px rgba(201, 155, 59, 0.25);
  }

  .strip-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .strip-icon-box.orange-box {
    background: var(--gold-btn-gradient);
    color: #0A192F;
    box-shadow: 0 3px 10px rgba(201, 155, 59, 0.4);
  }

  .contact-strip-card:hover .strip-icon-box {
    transform: scale(1.06);
    color: #F5CA68;
  }

  .contact-strip-card:hover .strip-icon-box.orange-box {
    color: #0A192F;
  }

  .strip-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .strip-label {
    font-size: 0.66rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 1px;
  }

  .strip-val {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
  }

  .strip-val:hover {
    color: #F5CA68;
  }

  /* 2. Main Footer Grid (Compact & Balanced) */
  .footer-main-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.1fr 1.2fr;
    gap: 30px;
    padding: 26px 0 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* Brand Column */
  .footer-col-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-brand-logo-card {
    display: inline-block;
    background: transparent;
    padding: 0;
    margin-left: 0;
    box-shadow: none;
    max-width: 270px;
    transition: transform 0.25s ease;
  }

  .footer-brand-logo-card:hover {
    transform: translateY(-2px) scale(1.02);
  }

  .footer-brand-logo-card .footer-logo-img {
    height: auto;
    max-height: 100px;
    width: 100%;
    max-width: 270px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 6px 18px rgba(0, 102, 204, 0.35)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.75));
  }

  .footer-brand-desc {
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.5;
  }

  .footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
  }

  .trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #38bdf8;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 5px;
  }

  .trust-pill i {
    color: #D4AF37;
  }

  /* Heading with Accent Line */
  .footer-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.0rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .heading-line {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--gold-btn-gradient);
    border-radius: 2px;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
  }

  /* Menu Lists */
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .footer-menu li a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: #94a3b8;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .footer-menu li a i {
    font-size: 0.6rem;
    color: #D4AF37;
    opacity: 0.7;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .footer-menu li a:hover {
    color: #ffffff;
    transform: translateX(3px);
  }

  .footer-menu li a:hover i {
    opacity: 1;
    transform: translateX(2px);
  }

  /* Column 4 (Actions & Socials) */
  .footer-col-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-cta-text {
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.4;
    margin: 0;
  }

  .btn-footer-quote {
    background: var(--gold-btn-gradient);
    color: #0A192F;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.84rem;
    font-weight: 800;
    padding: 9px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 3px 12px rgba(201, 155, 59, 0.35);
    transition: all 0.22s ease;
    width: 100%;
  }

  .btn-footer-quote:hover {
    background: var(--gold-btn-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(201, 155, 59, 0.5);
  }

  .footer-social-section {
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .social-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }

  .footer-social-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    box-shadow:
      0 4px 10px rgba(0, 0, 0, 0.35),
      inset 0 1.5px 2px rgba(255, 255, 255, 0.5),
      inset 0 -2px 3px rgba(0, 0, 0, 0.3);
  }

  .social-btn i {
    color: #ffffff !important;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
  }

  .social-btn:hover {
    color: #ffffff !important;
    transform: translateY(-4px) scale(1.15);
  }

  .social-btn:hover i {
    transform: scale(1.1);
  }

  /* 3D Phone Icon - Crystal Ocean Blue */
  .social-btn.phone-btn {
    background: linear-gradient(135deg, #38bdf8 0%, #0284c7 50%, #0369a1 100%);
    box-shadow:
      0 4px 12px rgba(2, 132, 199, 0.5),
      inset 0 1.5px 2px rgba(255, 255, 255, 0.6),
      inset 0 -2px 3px rgba(0, 0, 0, 0.3);
  }
  .social-btn.phone-btn:hover {
    background: linear-gradient(135deg, #60a5fa 0%, #0284c7 50%, #025287 100%);
    box-shadow:
      0 7px 18px rgba(2, 132, 199, 0.75),
      inset 0 1.5px 2px rgba(255, 255, 255, 0.75),
      0 0 14px rgba(56, 189, 248, 0.6);
  }

  /* 3D WhatsApp Icon - Vivid WhatsApp Green */
  .social-btn.whatsapp-btn {
    background: linear-gradient(135deg, #4ade80 0%, #25D366 50%, #128C7E 100%);
    box-shadow:
      0 4px 12px rgba(37, 211, 102, 0.5),
      inset 0 1.5px 2px rgba(255, 255, 255, 0.6),
      inset 0 -2px 3px rgba(0, 0, 0, 0.3);
  }
  .social-btn.whatsapp-btn:hover {
    background: linear-gradient(135deg, #86efac 0%, #25D366 50%, #0e7265 100%);
    box-shadow:
      0 7px 18px rgba(37, 211, 102, 0.75),
      inset 0 1.5px 2px rgba(255, 255, 255, 0.75),
      0 0 14px rgba(74, 222, 128, 0.6);
  }

  /* 3D LinkedIn Icon - Classic LinkedIn Blue */
  .social-btn.linkedin-btn {
    background: linear-gradient(135deg, #38bdf8 0%, #0A66C2 50%, #004182 100%);
    box-shadow:
      0 4px 12px rgba(10, 102, 194, 0.5),
      inset 0 1.5px 2px rgba(255, 255, 255, 0.6),
      inset 0 -2px 3px rgba(0, 0, 0, 0.3);
  }
  .social-btn.linkedin-btn:hover {
    background: linear-gradient(135deg, #7dd3fc 0%, #0A66C2 50%, #003366 100%);
    box-shadow:
      0 7px 18px rgba(10, 102, 194, 0.75),
      inset 0 1.5px 2px rgba(255, 255, 255, 0.75),
      0 0 14px rgba(56, 189, 248, 0.6);
  }

  /* 3D Facebook Icon - Royal Facebook Blue */
  .social-btn.facebook-btn {
    background: linear-gradient(135deg, #60a5fa 0%, #1877F2 50%, #0d5bbd 100%);
    box-shadow:
      0 4px 12px rgba(24, 119, 242, 0.5),
      inset 0 1.5px 2px rgba(255, 255, 255, 0.6),
      inset 0 -2px 3px rgba(0, 0, 0, 0.3);
  }
  .social-btn.facebook-btn:hover {
    background: linear-gradient(135deg, #93c5fd 0%, #1877F2 50%, #094796 100%);
    box-shadow:
      0 7px 18px rgba(24, 119, 242, 0.75),
      inset 0 1.5px 2px rgba(255, 255, 255, 0.75),
      0 0 14px rgba(96, 165, 250, 0.6);
  }

  /* 3D Instagram Icon - Iconic Sunset Gradient */
  .social-btn.instagram-btn {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow:
      0 4px 12px rgba(214, 36, 159, 0.5),
      inset 0 1.5px 2px rgba(255, 255, 255, 0.6),
      inset 0 -2px 3px rgba(0, 0, 0, 0.3);
  }
  .social-btn.instagram-btn:hover {
    background: radial-gradient(circle at 30% 107%, #fff3b0 0%, #ff8073 45%, #e032ab 65%, #3b6ef6 95%);
    box-shadow:
      0 7px 18px rgba(214, 36, 159, 0.75),
      inset 0 1.5px 2px rgba(255, 255, 255, 0.75),
      0 0 14px rgba(220, 39, 67, 0.6);
  }

  /* 3D YouTube Icon - Glossy YouTube Crimson */
  .social-btn.youtube-btn {
    background: linear-gradient(135deg, #ff4d4d 0%, #FF0000 50%, #b30000 100%);
    box-shadow:
      0 4px 12px rgba(255, 0, 0, 0.5),
      inset 0 1.5px 2px rgba(255, 255, 255, 0.6),
      inset 0 -2px 3px rgba(0, 0, 0, 0.3);
  }
  .social-btn.youtube-btn:hover {
    background: linear-gradient(135deg, #ff6666 0%, #FF0000 50%, #8b0000 100%);
    box-shadow:
      0 7px 18px rgba(255, 0, 0, 0.75),
      inset 0 1.5px 2px rgba(255, 255, 255, 0.75),
      0 0 14px rgba(255, 77, 77, 0.6);
  }

  /* 3. Footer Bottom Bar (Compact) */
  .footer-bottom-bar {
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #64748b;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-bottom-bar strong {
    color: #cbd5e1;
  }

  .motto-tag {
    color: #94a3b8;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .bottom-link {
    color: #94a3b8;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
  }

  .bottom-link:hover {
    color: #D4AF37;
    transform: translateY(-1px);
  }

  @media (max-width: 1024px) {
    .footer-contact-strip {
      grid-template-columns: repeat(2, 1fr);
    }

    .footer-main-grid {
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
  }

  @media (max-width: 640px) {
    .footer-contact-strip {
      grid-template-columns: 1fr;
      padding: 18px 0;
    }

    .footer-main-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      padding: 22px 0;
    }

    .footer-bottom-bar {
      flex-direction: column;
      text-align: center;
      justify-content: center;
    }
  }

  /* Floating Back To Top Button */
  .back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
  }

  .back-to-top-btn:hover {
    background: var(--orange);
    color: #ffffff;
    transform: translateY(-4px);
  }

  /* ==========================================================================
   QUOTE MODAL
   ========================================================================== */
  /* ==========================================================================
     QUOTE MODAL - LUXURY HIGH-TECH INDUSTRIAL DESIGN
     ========================================================================== */
  .modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 12, 22, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
    padding: 20px;
  }

  .modal-backdrop.open {
    opacity: 1;
    visibility: visible;
  }

  .modal-card.modal-luxury-card {
    background: radial-gradient(circle at 50% 0%, #112239 0%, #081322 65%, #050c17 100%);
    width: 100%;
    max-width: 560px;
    border-radius: 20px;
    padding: 34px 36px 30px;
    box-shadow: 
      0 25px 65px rgba(0, 0, 0, 0.75),
      0 0 35px rgba(212, 175, 55, 0.15),
      inset 0 1px 1px rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(212, 175, 55, 0.45);
    position: relative;
    transform: translateY(25px) scale(0.94);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
  }

  .modal-backdrop.open .modal-card.modal-luxury-card {
    transform: translateY(0) scale(1);
  }

  /* Glowing Top Laser Strip */
  .modal-laser-top-strip {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #D4AF37 20%, #FFE58F 50%, #D4AF37 80%, transparent);
    box-shadow: 0 0 14px rgba(212, 175, 55, 0.8);
  }

  /* Close Button */
  .modal-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 10;
  }

  .modal-close-btn:hover {
    background: #ef4444;
    border-color: #ef4444;
    color: #ffffff;
    transform: rotate(90deg);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
  }

  /* Modal Header */
  .modal-header-wrapper {
    text-align: center;
    margin-bottom: 24px;
  }

  .modal-gold-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #F5CA68;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
  }

  .modal-gold-chip i {
    color: #D4AF37;
  }

  .modal-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.7rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 6px 0;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }

  .modal-sub-desc {
    font-size: 0.86rem;
    color: #94a3b8;
    margin: 0 auto;
    line-height: 1.5;
    max-width: 440px;
  }

  /* Form Layout */
  .modal-luxury-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .form-grid-modal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .form-group-modal {
    display: flex;
    flex-direction: column;
  }

  .form-label-modal {
    font-size: 0.8rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 6px;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .form-label-modal .req-star {
    color: #F5CA68;
  }

  /* Input with Icon Container */
  .input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
  }

  .input-with-icon .input-icon {
    position: absolute;
    left: 14px;
    color: #C59A3F;
    font-size: 0.88rem;
    pointer-events: none;
    transition: color 0.2s ease, transform 0.2s ease;
    z-index: 2;
  }

  .modal-input,
  .modal-select {
    width: 100%;
    background: rgba(13, 24, 42, 0.85);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 11px 14px 11px 40px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.25s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  .modal-input::placeholder {
    color: #64748b;
    font-size: 0.84rem;
  }

  .modal-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23C59A3F' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    cursor: pointer;
  }

  .modal-select option {
    background: #0d1e34;
    color: #ffffff;
    padding: 10px;
  }

  .modal-input:focus,
  .modal-select:focus {
    outline: none;
    background: rgba(18, 32, 54, 0.95);
    border-color: #D4AF37;
    box-shadow: 
      0 0 0 3.5px rgba(212, 175, 55, 0.2),
      0 4px 12px rgba(0, 0, 0, 0.35);
  }

  .input-with-icon:focus-within .input-icon {
    color: #FFE58F;
    transform: scale(1.1);
  }

  /* Submit Button */
  .btn-modal-submit {
    position: relative;
    background: linear-gradient(135deg, #FFE58F 0%, #D4AF37 50%, #996B10 100%);
    border: none;
    border-radius: 12px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #0A192F;
    text-transform: uppercase;
    box-shadow: 
      0 6px 20px rgba(212, 175, 55, 0.35),
      inset 0 1px 1px #ffffff;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 4px;
    overflow: hidden;
  }

  .btn-modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 
      0 10px 28px rgba(212, 175, 55, 0.55),
      0 0 15px rgba(255, 229, 143, 0.4);
    background: linear-gradient(135deg, #FFF0B8 0%, #E0BF4D 50%, #B38018 100%);
  }

  .btn-modal-arrow {
    width: 24px;
    height: 24px;
    background: rgba(10, 25, 47, 0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: transform 0.25s ease;
  }

  .btn-modal-submit:hover .btn-modal-arrow {
    transform: translateX(4px);
    background: rgba(10, 25, 47, 0.25);
  }

  /* Trust Badges Strip */
  .modal-trust-strip {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
    gap: 8px;
  }

  .trust-badge-item {
    font-size: 0.74rem;
    color: #94a3b8;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }

  .trust-badge-item i {
    font-size: 0.72rem;
  }

  @media (max-width: 600px) {
    .modal-card.modal-luxury-card {
      padding: 26px 20px 22px;
      border-radius: 16px;
    }
    .form-grid-modal {
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .modal-main-title {
      font-size: 1.45rem;
    }
    .modal-trust-strip {
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }
  }

  /* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
  @media (max-width: 1200px) {
    .hero-headline {
      font-size: 2.8rem;
    }

    .categories-grid,
    .categories-amber-grid,
    .categories-quilted-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .why-us-grid,
    .arch-geometric-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .why-slogan-card,
    .arch-slogan-monument {
      grid-column: span 3;
      text-align: center;
    }

    .footer-top-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 1080px) {
    .site-header {
      height: 72px;
      padding: 0;
    }

    .nav-roof-container {
      display: none;
    }

    .mobile-nav-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }

  @media (max-width: 992px) {
    .hero-section {
      padding-top: 72px;
    }

    .about-grid,
    .process-grid-layout,
    .faq-grid-layout {
      grid-template-columns: 1fr;
    }

    .cta-banner-section {
      padding: 30px 0 60px;
    }

    .cta-banner-card {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 32px 20px;
      gap: 20px;
      border-radius: 20px;
      width: 100%;
      box-sizing: border-box;
    }

    .cta-support-avatar-col {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
    }

    .cta-support-avatar-wrap {
      width: 140px;
      height: 140px;
      margin: 0 auto 6px;
    }

    .cta-center-content {
      align-items: center;
      text-align: center;
      width: 100%;
      min-width: 0;
    }

    .cta-tagline-label {
      text-align: center;
      font-size: 0.76rem;
      letter-spacing: 1.5px;
    }

    .cta-headline {
      font-size: clamp(1.4rem, 5.2vw, 1.85rem);
      text-align: center;
      line-height: 1.25;
      margin-bottom: 10px;
      word-break: break-word;
      overflow-wrap: break-word;
    }

    .cta-subtext,
    .cta-body-text {
      text-align: center;
      font-size: 0.9rem;
      margin-bottom: 20px;
      line-height: 1.5;
    }

    .cta-contact-pills-row {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: center;
      width: 100%;
      max-width: 360px;
      margin: 0 auto 20px;
      gap: 10px;
    }

    .contact-pill-item,
    .cta-contact-pill {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      padding: 10px 14px;
      gap: 12px;
      border-radius: 14px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      text-align: left;
    }

    .contact-pill-info,
    .pill-meta {
      flex: 1;
      min-width: 0;
      overflow: hidden;
      text-align: left;
    }

    .pill-val {
      font-size: clamp(0.75rem, 3.4vw, 0.88rem);
      word-break: break-all;
      overflow-wrap: anywhere;
      line-height: 1.25;
      white-space: normal;
    }

    .cta-right-graphic-col {
      display: none;
    }

    .cta-action-col {
      width: 100%;
      max-width: 360px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .cta-action-col .btn,
    .cta-center-content .btn {
      width: 100% !important;
      max-width: 100%;
      justify-content: center;
    }
  }

  @media (max-width: 768px) {
    .site-header.scrolled {
      top: 8px;
      width: calc(100% - 16px);
      height: 64px;
      border-radius: 14px;
    }

    .site-header.scrolled .brand-logo {
      padding: 0;
      background: transparent;
      border: none;
      box-shadow: none;
    }

    .site-header.scrolled .brand-logo .logo-default {
      display: block;
      height: 46px;
    }

    .site-header.scrolled .brand-logo .logo-scrolled {
      display: none !important;
    }

    .hero-banner-img {
      height: auto;
      width: 100%;
      object-fit: contain;
    }

    .header-phone-box {
      display: none;
    }

    /* Process Section Mobile Styles (Vertical Steps & Fixed Image) */
    .process-3d-navy-box {
      padding: 30px 16px 28px;
      border-radius: 24px;
      overflow: hidden;
      width: 100%;
    }

    .process-grid-layout {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .process-timeline-track {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 8px;
      margin-top: 22px;
    }

    .process-step-node {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      gap: 14px;
      width: 100%;
      background: #ffffff;
      border: 1.5px solid #d0e2ff;
      border-radius: 16px;
      padding: 10px 16px;
      box-shadow: 0 4px 14px rgba(10, 37, 64, 0.06);
      text-align: left;
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .process-step-node:hover {
      transform: translateX(4px);
      border-color: #D4AF37;
      box-shadow: 0 6px 18px rgba(212, 175, 55, 0.25);
    }

    .process-step-node .step-card-box {
      width: 52px;
      height: 52px;
      min-width: 52px;
      max-width: 52px;
      border-radius: 12px;
      padding: 0;
      margin: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      animation: none !important;
      transform: none !important;
      position: relative;
    }

    .process-step-node .step-wood-glow-top {
      display: none;
    }

    .process-step-node .step-number-tag {
      position: absolute;
      top: -5px;
      right: -5px;
      font-size: 0.65rem;
      padding: 2px 6px;
      margin-bottom: 0;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
      z-index: 5;
    }

    .process-step-node .step-icon-inner {
      font-size: 1.3rem;
      margin-bottom: 0;
      animation: none !important;
    }

    .process-step-node .step-title-text {
      margin-top: 0;
      text-align: left;
      font-size: 0.94rem;
      font-weight: 800;
      color: #0a192f;
      line-height: 1.35;
      flex: 1;
    }

    .process-arrow-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      padding: 0;
      font-size: 0.92rem;
      color: #D4AF37;
      transform: rotate(90deg);
      animation: none !important;
    }

    /* Process Image Card on Mobile */
    .process-image-card {
      width: 100%;
      max-width: 100%;
      border-radius: 18px;
      overflow: hidden;
      margin-top: 10px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }

    .process-image-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      display: block;
    }

    .process-img-badge {
      top: 12px;
      left: 12px;
      padding: 10px 14px;
      border-radius: 10px;
    }

    .process-img-badge h5 {
      font-size: 0.85rem;
      line-height: 1.25;
      margin-bottom: 4px;
    }

    .categories-grid,
    .categories-amber-grid,
    .categories-quilted-grid {
      grid-template-columns: 1fr;
      max-width: 440px;
      margin: 0 auto;
    }

    .why-us-grid,
    .arch-geometric-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .why-slogan-card,
    .arch-slogan-monument {
      grid-column: span 2;
    }

    .faq-columns-wrap,
    .faq-accordion-container {
      grid-template-columns: 1fr;
    }

    .stats-counter-strip {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .footer-top-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .footer-bottom-bar {
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }
  }

  @media (max-width: 540px) {
    .why-us-grid,
    .arch-geometric-grid {
      grid-template-columns: 1fr;
    }

    .why-slogan-card,
    .arch-slogan-monument {
      grid-column: span 1;
    }
  }

  @media (max-width: 576px) {
    .container {
      padding-left: 14px;
      padding-right: 14px;
      box-sizing: border-box;
    }

    .cta-banner-section {
      padding: 24px 0 50px;
    }

    .cta-banner-card {
      padding: 24px 14px 20px;
      border-radius: 18px;
    }

    .cta-support-avatar-wrap {
      width: 120px;
      height: 120px;
      border-width: 3.5px;
    }

    .cta-headline {
      font-size: 1.45rem;
      line-height: 1.25;
    }

    .cta-subtext,
    .cta-body-text {
      font-size: 0.85rem;
      margin-bottom: 16px;
    }

    .contact-pill-item,
    .cta-contact-pill {
      padding: 9px 12px;
      gap: 10px;
      border-radius: 12px;
    }

    .pill-val {
      font-size: 0.8rem;
    }

    .back-to-top-btn {
      bottom: 14px;
      right: 14px;
      width: 40px;
      height: 40px;
      font-size: 0.9rem;
    }
  }


/* ==========================================================================
   DEDICATED SUBPAGE DESIGN SYSTEM (ABOUT, WHY US, PROCESS, FAQ, CONTACT, PRODUCTS)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. PAGE HERO BANNER (CINEMATIC EXCAVATOR & SKY CONSTRUCTION BANNER)
   -------------------------------------------------------------------------- */
.page-hero-banner {
  position: relative;
  padding: 155px 0 75px;
  background: 
    linear-gradient(180deg, rgba(2, 132, 199, 0.08) 0%, transparent 35%, rgba(255, 255, 255, 0.55) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.18) 45%, transparent 100%),
    url('../images/page-hero-excavator-bg.jpg') no-repeat right 30%;
  background-size: cover;
  border-bottom: 2px solid rgba(226, 232, 240, 0.9);
  overflow: hidden;
  text-align: center;
}

.page-hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 45% 50%, rgba(255, 255, 255, 0.45) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 3D Floating Breadcrumb Pill */
.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1.5px solid #cbd5e1;
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
  font-size: 0.88rem;
  color: #334155;
  box-shadow: 
    0 6px 18px rgba(10, 25, 47, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.04),
    inset 0 1px 1px #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.page-breadcrumb a {
  color: #0284c7;
  font-weight: 700;
  transition: var(--transition);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.page-breadcrumb a:hover {
  color: #D4AF37;
}

.breadcrumb-separator {
  color: #94a3b8;
  font-size: 0.72rem;
}

.breadcrumb-current {
  color: #0a192f;
  font-weight: 800;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* 3D Amber Header Badge */
.amber-badge-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ffffff 0%, #fffdf5 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  border-radius: 50px;
  padding: 6px 20px;
  margin-bottom: 16px;
  box-shadow: 
    0 6px 18px rgba(212, 175, 55, 0.14),
    0 1px 3px rgba(0, 0, 0, 0.04),
    inset 0 1px 1px #ffffff;
  transition: all 0.35s ease;
}

.amber-badge-header:hover {
  border-color: #D4AF37;
  box-shadow: 
    0 8px 24px rgba(212, 175, 55, 0.22),
    inset 0 1px 1px #ffffff;
  transform: translateY(-2px);
}

.amber-badge-header .badge-text-core,
.amber-badge-header .section-label {
  color: #AA771C;
  font-family: 'Outfit', sans-serif;
  font-size: 0.80rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.badge-3d-icon {
  color: #D4AF37;
  font-size: 0.92rem;
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.badge-dot-lead,
.badge-dot-trail {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #D4AF37;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.8);
}

/* 3D Designer Heading with High-Impact Layered Shadow */
.page-hero-title {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.35rem, 4.4vw, 3.45rem);
  font-weight: 900;
  line-height: 1.18;
  color: #0A192F;
  margin-bottom: 20px;
  letter-spacing: -0.6px;
  text-shadow: 
    0 1px 0 #ffffff,
    0 2px 4px rgba(255, 255, 255, 0.9),
    2px 4px 14px rgba(10, 25, 47, 0.22);
  transition: text-shadow 0.3s ease;
}

/* Distinct 3D Bevel Neon Glow for Key Highlighted Heading Terms */
.text-orange-glow,
.page-hero-title .text-orange-glow,
.page-hero-title .text-orange {
  display: inline-block;
  color: #D4AF37;
  font-weight: 900;
  background: var(--gold-metallic-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.45));
  letter-spacing: -0.4px;
}

/* 3D Embossed Subtitle with Crisp Contrast & Soft Depth Shadow */
.page-hero-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.12rem;
  color: #0f172a;
  font-weight: 700;
  max-width: 800px;
  line-height: 1.75;
  margin: 0 auto;
  text-shadow: 
    0 1px 0 #ffffff,
    0 2px 10px rgba(255, 255, 255, 0.95);
}

/* ==========================================================================
   DEDICATED CONTACT HERO BANNER (CINEMATIC SKY & CHARACTER GUIDE)
   ========================================================================== */
.contact-hero-banner {
  position: relative;
  padding: 130px 0 45px;
  background: url('../images/page-hero-excavator-bg.jpg') no-repeat right center;
  background-size: cover;
  border-bottom: 2px solid rgba(226, 232, 240, 0.15);
  overflow: hidden;
  text-align: left;
}

.contact-hero-dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    270deg,
    rgba(6, 15, 30, 0.95) 0%,
    rgba(6, 15, 30, 0.85) 38%,
    rgba(6, 15, 30, 0.35) 65%,
    rgba(6, 15, 30, 0.08) 85%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Architectural Watermark across the dark background */
.contact-hero-watermark {
  position: absolute;
  top: 75px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 7.5vw, 6.2rem);
  font-weight: 900;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.04);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  text-transform: uppercase;
  user-select: none;
}

/* 2-Column Grid Stage - Shifted Closer to Content */
.contact-hero-grid-stage {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 16px;
  align-items: center;
  position: relative;
  z-index: 4;
  max-width: 1240px;
  margin: 0 auto;
}

/* Left Technical Consultant Character Stage - Shifted further right */
.contact-hero-character-col {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  padding-right: 0;
  transform: translateX(145px);
}

.contact-character-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.character-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.28) 0%, rgba(56, 189, 248, 0.20) 45%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(28px);
  z-index: 1;
}

.contact-character-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.5));
  animation: characterFloat 4s ease-in-out infinite;
  transition: transform 0.3s ease;
  transform-origin: bottom center;
}

@keyframes characterFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.character-status-pill {
  position: absolute;
  bottom: 8px;
  background: rgba(10, 25, 47, 0.92);
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  backdrop-filter: blur(10px);
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 12px rgba(212, 175, 55, 0.35);
  z-index: 3;
}

.status-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e, 0 0 16px #22c55e;
  animation: pulseDot 1.6s infinite;
}

@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.character-status-pill .status-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #F5E2B3;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

/* Right Content Column */
.contact-hero-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.contact-hero-text-col .page-breadcrumb {
  margin-bottom: 14px;
  background: rgba(10, 25, 47, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 14px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.contact-hero-text-col .page-breadcrumb a,
.contact-hero-text-col .page-breadcrumb span {
  color: #f1f5f9;
}

.contact-hero-title {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 900;
  line-height: 1.18;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.6px;
  text-shadow: 
    0 1px 0 #d1d5db,
    0 2px 0 #9ca3af,
    0 3px 0 #4b5563,
    0 4px 1px rgba(0, 0, 0, 0.5),
    0 6px 14px rgba(0, 0, 0, 0.85);
}

/* Stylish 3D Text Effect */
.text-orange-3d-glow {
  display: inline-block;
  color: #F5CA68;
  font-weight: 900;
  background: var(--gold-metallic-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 14px rgba(212, 175, 55, 0.6));
  letter-spacing: -0.4px;
}

.contact-hero-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.08rem;
  color: #cbd5e1;
  font-weight: 600;
  max-width: 680px;
  line-height: 1.7;
  margin: 0 0 20px 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
}

/* Highlights Pill Row */
.contact-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-hero-chip.hero-feat-badge-glass {
  background: rgba(10, 25, 47, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  padding: 6px 14px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.contact-hero-chip:hover {
  border-color: #D4AF37;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.contact-hero-chip .feat-label strong {
  color: #ffffff;
  font-size: 0.86rem;
}

.contact-hero-chip .feat-label span {
  color: #94a3b8;
  font-size: 0.75rem;
}

@media (max-width: 991px) {
  .contact-hero-banner {
    padding: 130px 0 50px;
    text-align: center;
  }

  .contact-hero-grid-stage {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-hero-character-col {
    order: 2;
    transform: none;
    justify-content: center;
  }

  .contact-hero-text-col {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding-left: 0;
    align-items: center;
    text-align: center;
    order: 1;
  }

  .contact-hero-subtitle {
    margin: 0 auto 20px;
  }

  .contact-hero-highlights {
    justify-content: center;
  }

  .contact-character-img {
    max-height: 280px;
    max-width: 220px;
  }
}

@media (max-width: 576px) {
  .contact-hero-title {
    font-size: 1.85rem;
  }

  .contact-hero-subtitle {
    font-size: 0.95rem;
  }

  .contact-hero-watermark {
    font-size: 2.2rem;
    top: 90px;
  }
}


/* --------------------------------------------------------------------------
   2. ABOUT US PAGE COMPONENTS
   -------------------------------------------------------------------------- */
.about-story-section {
  padding: 90px 0 60px;
  background-color: var(--bg-body);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.about-lead-paragraph {
  font-size: 1.18rem;
  color: var(--primary);
  line-height: 1.75;
  margin-bottom: 18px;
  font-weight: 500;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.about-body-paragraph {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

/* Sleek Brushed Steel Highlights Showcase (Replaces Wooden Planks) */
.steel-highlights-list,
.wooden-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.steel-highlight-card,
.wooden-highlight-card {
  position: relative;
  background: linear-gradient(rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.22)), url('../images/grey-steel-texture.jpg') no-repeat center center;
  background-size: cover;
  border: 1.5px solid #cbd5e1;
  border-radius: 14px;
  padding: 18px 24px 18px 22px;
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 
    0 8px 24px -4px rgba(10, 25, 47, 0.10),
    0 2px 6px rgba(0, 0, 0, 0.04),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  overflow: hidden;
}

.steel-highlight-card::before,
.wooden-highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-btn-gradient);
  border-radius: 4px 0 0 4px;
}

.steel-highlight-card:hover,
.wooden-highlight-card:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: #D4AF37;
  box-shadow: 
    0 14px 30px -4px rgba(10, 25, 47, 0.16),
    0 0 16px rgba(212, 175, 55, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.steel-check-badge,
.wooden-check-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-btn-gradient);
  color: #0A192F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(201, 155, 59, 0.4);
  flex-shrink: 0;
  border: 2px solid #ffffff;
}

.steel-info,
.wooden-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.steel-title,
.wooden-title {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.06rem;
  font-weight: 900;
  color: #000000;
  letter-spacing: -0.2px;
  margin-bottom: 2px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
}

.steel-desc,
.wooden-desc {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  color: #000000;
  font-weight: 700;
  line-height: 1.45;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
}

@media (max-width: 640px) {
  .steel-highlight-card,
  .wooden-highlight-card {
    padding: 16px 18px 16px 18px;
    gap: 12px;
    min-height: 78px;
    border-radius: 12px;
  }

  .steel-title,
  .wooden-title {
    font-size: 0.96rem;
  }

  .steel-desc,
  .wooden-desc {
    font-size: 0.82rem;
  }

  .steel-check-badge,
  .wooden-check-badge {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }
}

/* About Milestone Card */
.about-milestone-card {
  position: relative;
  background: linear-gradient(145deg, #0f233d 0%, #081628 100%);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 20px;
  padding: 36px 30px;
  box-shadow: 0 20px 45px rgba(10, 25, 47, 0.35);
  overflow: hidden;
}

.milestone-card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.milestone-header {
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
}

.milestone-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #D4AF37;
  margin-bottom: 6px;
}

.milestone-header h3 {
  font-size: 1.55rem;
  color: #ffffff;
  font-weight: 700;
}

.milestone-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.milestone-node {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
}

.milestone-year-badge {
  flex-shrink: 0;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 6px 14px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
}

.milestone-year-badge.highlight {
  background: var(--gold-btn-gradient);
  border-color: #D4AF37;
  color: #0A192F;
  box-shadow: 0 4px 15px rgba(201, 155, 59, 0.4);
}

.milestone-details h4 {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.milestone-details p {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.45;
  margin: 0;
}
/* Mission / Vision Cards - Dynamic Hover Color Transitions */
.mission-vision-section {
  padding: 80px 0;
  background: #f1f5f9;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.mission-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 10px 30px rgba(10, 25, 47, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Base Elements inside Mission Card */
.mission-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}

.mission-card-icon.icon-red {
  background: rgba(225, 29, 72, 0.1);
  color: #e11d48;
}

.mission-card-icon.icon-purple {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.mission-card-icon.icon-navy {
  background: rgba(2, 132, 199, 0.1);
  color: #0284c7;
}

.mission-pill {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #64748b;
  margin-bottom: 8px;
  transition: color 0.35s ease;
}

.mission-title {
  font-size: 1.45rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 800;
  transition: all 0.35s ease;
}

.mission-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
  transition: color 0.35s ease;
}

.mission-points {
  list-style: none;
  padding: 0;
  margin: auto 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
  transition: border-color 0.35s ease;
}

.mission-points li {
  font-size: 0.88rem;
  color: var(--text-main);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.35s ease;
}

.mission-points li i {
  color: #D4AF37;
  transition: all 0.35s ease;
}

/* =========================================================================
   1. CARD 1 HOVER ANIMATION: VIBRANT RED
   ========================================================================= */
.mission-card.card-theme-red:hover {
  background: linear-gradient(145deg, #e11d48 0%, #be123c 60%, #9f1239 100%);
  border-color: #f43f5e;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 55px rgba(225, 29, 72, 0.42);
}

.mission-card.card-theme-red:hover .mission-card-icon {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.mission-card.card-theme-red:hover .mission-pill {
  color: #fed7aa;
}

.mission-card.card-theme-red:hover .mission-title {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.mission-card.card-theme-red:hover .mission-desc {
  color: #ffe4e6;
}

.mission-card.card-theme-red:hover .mission-points {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.mission-card.card-theme-red:hover .mission-points li {
  color: #ffffff;
}

.mission-card.card-theme-red:hover .mission-points li i {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  padding: 3px;
  font-size: 0.72rem;
}

/* =========================================================================
   2. CARD 2 HOVER ANIMATION: ROYAL PURPLE
   ========================================================================= */
.mission-card.card-theme-purple:hover {
  background: linear-gradient(145deg, #8b5cf6 0%, #7c3aed 50%, #5b21b6 100%);
  border-color: #a78bfa;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 55px rgba(124, 58, 237, 0.45);
}

.mission-card.card-theme-purple:hover .mission-card-icon {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.mission-card.card-theme-purple:hover .mission-pill {
  color: #e9d5ff;
}

.mission-card.card-theme-purple:hover .mission-title {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.mission-card.card-theme-purple:hover .mission-desc {
  color: #f3e8ff;
}

.mission-card.card-theme-purple:hover .mission-points {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.mission-card.card-theme-purple:hover .mission-points li {
  color: #ffffff;
}

.mission-card.card-theme-purple:hover .mission-points li i {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  padding: 3px;
  font-size: 0.72rem;
}

/* =========================================================================
   3. CARD 3 HOVER ANIMATION: NAVY BLUE LIGHT
   ========================================================================= */
.mission-card.card-theme-navylight:hover {
  background: linear-gradient(145deg, #0284c7 0%, #0369a1 50%, #075985 100%);
  border-color: #38bdf8;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 55px rgba(2, 132, 199, 0.45);
}

.mission-card.card-theme-navylight:hover .mission-card-icon {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.mission-card.card-theme-navylight:hover .mission-pill {
  color: #bae6fd;
}

.mission-card.card-theme-navylight:hover .mission-title {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.mission-card.card-theme-navylight:hover .mission-desc {
  color: #e0f2fe;
}

.mission-card.card-theme-navylight:hover .mission-points {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.mission-card.card-theme-navylight:hover .mission-points li {
  color: #ffffff;
}

.mission-card.card-theme-navylight:hover .mission-points li i {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  padding: 3px;
  font-size: 0.72rem;
}

/* Plant Infrastructure Box */
.plant-capabilities-section {
  padding: 80px 0;
  background: #071322;
}

.plant-capabilities-box {
  background: linear-gradient(135deg, #0d2139 0%, #061120 100%);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 24px;
  padding: 50px 45px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.plant-grid-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 45px;
  align-items: center;
}

.plant-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 30px;
}

.plant-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.plant-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.plant-feat-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #D4AF37;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.plant-feat-item h5 {
  font-size: 0.98rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.plant-feat-item p {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.45;
  margin: 0;
}

.plant-img-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(56, 189, 248, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.plant-img-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.plant-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(10, 25, 47, 0.88);
  border: 1px solid #D4AF37;
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: 12px;
  text-align: center;
}

.plant-badge h5 {
  font-size: 1.15rem;
  color: #F5CA68;
  font-weight: 800;
  margin: 0 0 2px;
}

.plant-badge span {
  font-size: 0.8rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Stats Counter Strip Section */
.stats-counter-strip-section {
  padding: 65px 0;
  background: #ffffff;
}

.stats-counter-strip-section .stats-counter-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .stats-counter-strip-section .stats-counter-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .stats-counter-strip-section {
    padding: 35px 0;
  }

  .stats-counter-strip-section .stats-counter-strip {
    grid-template-columns: 1fr !important;
    gap: 16px;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
  }

  .stat-counter-card {
    padding: 24px 18px 22px !important;
    border-radius: 18px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .stat-counter-card .stat-number {
    font-size: 2.5rem !important;
  }

  .stat-counter-card .stat-label {
    font-size: 1.15rem !important;
  }

  .stat-counter-card .stat-desc {
    font-size: 0.9rem !important;
    max-width: 320px;
  }
}

.stat-counter-card {
  position: relative;
  background: linear-gradient(155deg, #e0f2fe 0%, #bae6fd 50%, #7dd3fc 100%);
  border: 1.5px solid #38bdf8;
  border-top: 3.5px solid #0284c7;
  border-radius: 20px;
  padding: 34px 22px 28px;
  text-align: center;
  box-shadow: 
    0 14px 35px -5px rgba(2, 132, 199, 0.22),
    0 4px 12px rgba(56, 189, 248, 0.15),
    inset 0 1.5px 2px rgba(255, 255, 255, 0.95),
    inset 0 -1.5px 2px rgba(2, 132, 199, 0.15);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 3D Top Sky Glow Seam */
.stat-counter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #38bdf8, #0284c7, #38bdf8);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.9);
}

.stat-counter-card:hover {
  background: linear-gradient(155deg, #0284c7 0%, #0369a1 50%, #075985 100%);
  border-color: #7dd3fc;
  box-shadow: 
    0 22px 50px -5px rgba(2, 132, 199, 0.45),
    0 0 30px rgba(56, 189, 248, 0.4),
    inset 0 1.5px 2px rgba(255, 255, 255, 0.4);
  transform: translateY(-8px) scale(1.025);
}

.stat-counter-card .stat-number-wrap {
  margin-bottom: 8px;
}

.stat-counter-card .stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.75rem;
  font-weight: 900;
  color: #0369a1;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 50%, #075985 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
}

.stat-counter-card:hover .stat-number {
  background: var(--gold-btn-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.6));
}

.stat-counter-card .stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0c4a6e;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
  line-height: 1.25;
  transition: color 0.3s ease;
}

.stat-counter-card:hover .stat-label {
  color: #ffffff;
}

.stat-counter-card .stat-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.86rem;
  color: #075985;
  line-height: 1.45;
  margin: 0;
  font-weight: 600;
  transition: color 0.3s ease;
}

.stat-counter-card:hover .stat-desc {
  color: #e0f2fe;
}


/* --------------------------------------------------------------------------
   3. WHY CHOOSE US PAGE COMPONENTS
   -------------------------------------------------------------------------- */
.why-core-pillars-section {
  padding: 85px 0 60px;
  background-color: var(--bg-body);
}

.why-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.pillar-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-top: 7px solid #0284c7;
  border-radius: 20px;
  padding: 34px 26px 28px;
  box-shadow: 0 10px 30px -4px rgba(10, 25, 47, 0.07);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

/* Shimmer Light Reflection Animation */
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: skewX(-25deg);
  transition: left 0.85s ease-in-out;
  pointer-events: none;
  z-index: 3;
}

.pillar-card:hover::before {
  left: 170%;
}

.pillar-card:hover {
  transform: translateY(-10px) scale(1.015);
}

.pillar-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.35s ease;
  flex-shrink: 0;
}

.pillar-card:hover .pillar-icon-box {
  transform: scale(1.18) rotate(8deg);
}

.pillar-num-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  margin-bottom: 10px;
  text-transform: uppercase;
  display: inline-block;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.pillar-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0A192F;
  margin-bottom: 12px;
  line-height: 1.3;
}

.pillar-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.68;
  margin-bottom: 24px;
}

.pillar-footer-spec {
  margin-top: auto;
  border-top: none;
  padding: 11px 15px;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.pillar-footer-spec i {
  font-size: 1.05rem;
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pillar-card:hover .pillar-footer-spec i {
  transform: scale(1.25) rotate(-6deg);
}

/* ==========================================================================
   6 PILLAR THEMES (VIBRANT PALETTES + THICK TOP BORDER + GLOW ANIMATION)
   ========================================================================== */

/* 1. Sapphire Blue Pillar (Durability) */
.pillar-card-blue,
.why-pillars-grid > .pillar-card:nth-child(1) {
  border-top: 7px solid #0284c7;
}
.pillar-card-blue:hover,
.why-pillars-grid > .pillar-card:nth-child(1):hover {
  border-color: #0284c7;
  border-top-color: #0284c7;
  box-shadow: 0 24px 50px -10px rgba(2, 132, 199, 0.32), 0 0 0 1.5px rgba(2, 132, 199, 0.45);
}
.pillar-card-blue .pillar-icon-box,
.why-pillars-grid > .pillar-card:nth-child(1) .pillar-icon-box {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  border: 1.5px solid #7dd3fc;
  color: #0284c7;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.28);
}
.pillar-card-blue .pillar-num-tag,
.why-pillars-grid > .pillar-card:nth-child(1) .pillar-num-tag {
  color: #0369a1;
  background: rgba(2, 132, 199, 0.12);
}
.pillar-card-blue .pillar-footer-spec,
.why-pillars-grid > .pillar-card:nth-child(1) .pillar-footer-spec {
  color: #0284c7;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.18);
}

/* 2. Emerald Green Pillar (Customization) */
.pillar-card-green,
.why-pillars-grid > .pillar-card:nth-child(2) {
  border-top: 7px solid #10b981;
}
.pillar-card-green:hover,
.why-pillars-grid > .pillar-card:nth-child(2):hover {
  border-color: #10b981;
  border-top-color: #10b981;
  box-shadow: 0 24px 50px -10px rgba(16, 185, 129, 0.32), 0 0 0 1.5px rgba(16, 185, 129, 0.45);
}
.pillar-card-green .pillar-icon-box,
.why-pillars-grid > .pillar-card:nth-child(2) .pillar-icon-box {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  border: 1.5px solid #86efac;
  color: #059669;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.28);
}
.pillar-card-green .pillar-num-tag,
.why-pillars-grid > .pillar-card:nth-child(2) .pillar-num-tag {
  color: #047857;
  background: rgba(16, 185, 129, 0.12);
}
.pillar-card-green .pillar-footer-spec,
.why-pillars-grid > .pillar-card:nth-child(2) .pillar-footer-spec {
  color: #059669;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.18);
}

/* 3. Imperial Gold / Amber Pillar (Cost Efficiency) */
.pillar-card-gold,
.why-pillars-grid > .pillar-card:nth-child(3) {
  border-top: 7px solid #d97706;
}
.pillar-card-gold:hover,
.why-pillars-grid > .pillar-card:nth-child(3):hover {
  border-color: #d97706;
  border-top-color: #d97706;
  box-shadow: 0 24px 50px -10px rgba(217, 119, 6, 0.35), 0 0 0 1.5px rgba(217, 119, 6, 0.45);
}
.pillar-card-gold .pillar-icon-box,
.why-pillars-grid > .pillar-card:nth-child(3) .pillar-icon-box {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1.5px solid #fcd34d;
  color: #b45309;
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.28);
}
.pillar-card-gold .pillar-num-tag,
.why-pillars-grid > .pillar-card:nth-child(3) .pillar-num-tag {
  color: #b45309;
  background: rgba(217, 119, 6, 0.13);
}
.pillar-card-gold .pillar-footer-spec,
.why-pillars-grid > .pillar-card:nth-child(3) .pillar-footer-spec {
  color: #b45309;
  background: rgba(217, 119, 6, 0.09);
  border: 1px solid rgba(217, 119, 6, 0.20);
}

/* 4. Royal Purple Pillar (Fabrication) */
.pillar-card-purple,
.why-pillars-grid > .pillar-card:nth-child(4) {
  border-top: 7px solid #8b5cf6;
}
.pillar-card-purple:hover,
.why-pillars-grid > .pillar-card:nth-child(4):hover {
  border-color: #8b5cf6;
  border-top-color: #8b5cf6;
  box-shadow: 0 24px 50px -10px rgba(139, 92, 246, 0.32), 0 0 0 1.5px rgba(139, 92, 246, 0.45);
}
.pillar-card-purple .pillar-icon-box,
.why-pillars-grid > .pillar-card:nth-child(4) .pillar-icon-box {
  background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
  border: 1.5px solid #c084fc;
  color: #7c3aed;
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.28);
}
.pillar-card-purple .pillar-num-tag,
.why-pillars-grid > .pillar-card:nth-child(4) .pillar-num-tag {
  color: #6d28d9;
  background: rgba(139, 92, 246, 0.12);
}
.pillar-card-purple .pillar-footer-spec,
.why-pillars-grid > .pillar-card:nth-child(4) .pillar-footer-spec {
  color: #7c3aed;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.18);
}

/* 5. Flame Orange Pillar (Timelines) */
.pillar-card-orange,
.why-pillars-grid > .pillar-card:nth-child(5) {
  border-top: 7px solid #f97316;
}
.pillar-card-orange:hover,
.why-pillars-grid > .pillar-card:nth-child(5):hover {
  border-color: #f97316;
  border-top-color: #f97316;
  box-shadow: 0 24px 50px -10px rgba(249, 115, 22, 0.35), 0 0 0 1.5px rgba(249, 115, 22, 0.45);
}
.pillar-card-orange .pillar-icon-box,
.why-pillars-grid > .pillar-card:nth-child(5) .pillar-icon-box {
  background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
  border: 1.5px solid #fdba74;
  color: #ea580c;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.28);
}
.pillar-card-orange .pillar-num-tag,
.why-pillars-grid > .pillar-card:nth-child(5) .pillar-num-tag {
  color: #c2410c;
  background: rgba(249, 115, 22, 0.13);
}
.pillar-card-orange .pillar-footer-spec,
.why-pillars-grid > .pillar-card:nth-child(5) .pillar-footer-spec {
  color: #ea580c;
  background: rgba(249, 115, 22, 0.09);
  border: 1px solid rgba(249, 115, 22, 0.20);
}

/* 6. Cyan Azure Pillar (Support) */
.pillar-card-cyan,
.why-pillars-grid > .pillar-card:nth-child(6) {
  border-top: 7px solid #06b6d4;
}
.pillar-card-cyan:hover,
.why-pillars-grid > .pillar-card:nth-child(6):hover {
  border-color: #06b6d4;
  border-top-color: #06b6d4;
  box-shadow: 0 24px 50px -10px rgba(6, 182, 212, 0.32), 0 0 0 1.5px rgba(6, 182, 212, 0.45);
}
.pillar-card-cyan .pillar-icon-box,
.why-pillars-grid > .pillar-card:nth-child(6) .pillar-icon-box {
  background: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%);
  border: 1.5px solid #67e8f9;
  color: #0891b2;
  box-shadow: 0 6px 16px rgba(6, 182, 212, 0.28);
}
.pillar-card-cyan .pillar-num-tag,
.why-pillars-grid > .pillar-card:nth-child(6) .pillar-num-tag {
  color: #0e7490;
  background: rgba(6, 182, 212, 0.12);
}
.pillar-card-cyan .pillar-footer-spec,
.why-pillars-grid > .pillar-card:nth-child(6) .pillar-footer-spec {
  color: #0891b2;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.18);
}

/* Comparison Matrix Table */
.comparison-matrix-section {
  padding: 85px 0;
  background: #081628;
}

.table-scroll-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px dashed rgba(212, 175, 55, 0.5);
  border-radius: 30px;
  padding: 10px 22px;
  margin: 28px auto 0;
  max-width: fit-content;
  color: #F5CA68;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
  animation: pulseHint 2.4s infinite ease-in-out;
}

.table-scroll-hint i {
  font-size: 1.05rem;
  color: #F5CA68;
  animation: slideArrows 1.6s infinite ease-in-out;
}

@keyframes slideArrows {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

@keyframes pulseHint {
  0%, 100% { opacity: 0.92; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

.comparison-table-wrap {
  margin-top: 35px;
  background: #0f233d;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  scrollbar-width: thin;
  scrollbar-color: #D4AF37 #081628;
}

.comparison-table-wrap::-webkit-scrollbar {
  height: 8px;
}

.comparison-table-wrap::-webkit-scrollbar-track {
  background: #081628;
  border-radius: 10px;
}

.comparison-table-wrap::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #D4AF37, #F5CA68);
  border-radius: 10px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th {
  padding: 22px 26px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.comparison-table th.feature-col {
  width: 30%;
  background: #0b1a2d;
}

.comparison-table th.brand-col {
  width: 40%;
  background: rgba(212, 175, 55, 0.15);
  border-left: 2px solid #D4AF37;
  border-right: 2px solid #D4AF37;
}

.comparison-table th.competitor-col {
  width: 30%;
  background: #081628;
  color: #94a3b8;
}

.brand-badge-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #F5CA68;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.comparison-table td {
  padding: 20px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  vertical-align: middle;
}

.param-title strong {
  display: block;
  font-size: 0.98rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.param-title span {
  font-size: 0.8rem;
  color: #94a3b8;
}

.brand-val {
  background: rgba(212, 175, 55, 0.05);
  border-left: 2px solid #D4AF37;
  border-right: 2px solid #D4AF37;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
}

.brand-val i {
  color: #10b981;
  margin-right: 8px;
  font-size: 1rem;
}

.competitor-val {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.5;
}

.competitor-val i {
  color: #ef4444;
  margin-right: 8px;
  font-size: 1rem;
}

.comparison-cards-mobile-view {
  display: none;
}

/* ==========================================================================
   COMPARISON MATRIX MOBILE CARDS (ZERO HORIZONTAL SCROLL)
   ========================================================================== */
.compare-mobile-card {
  background: linear-gradient(145deg, #0d1e35 0%, #081426 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-top: 4.5px solid #D4AF37;
  border-radius: 18px;
  padding: 22px 18px 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compare-mobile-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(212, 175, 55, 0.3);
}

.compare-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-card-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.08) 100%);
  border: 1.5px solid #D4AF37;
  color: #F5CA68;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-card-title-wrap {
  flex-grow: 1;
}

.compare-param-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 2px 0;
  line-height: 1.3;
}

.compare-param-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  color: #94a3b8;
  display: block;
}

.compare-brand-box {
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 1.5px solid rgba(16, 185, 129, 0.35);
  border-radius: 13px;
  padding: 14px 15px;
  margin-bottom: 12px;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.10);
}

.compare-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}

.compare-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: #F5CA68;
  letter-spacing: 0.5px;
}

.compare-status-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 0.70rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.compare-status-badge.badge-green {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.compare-status-badge.badge-red {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.compare-brand-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.compare-brand-text i {
  color: #10b981;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.compare-competitor-box {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.22);
  border-radius: 12px;
  padding: 12px 14px;
}

.compare-competitor-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #94a3b8;
}

.compare-competitor-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.84rem;
  color: #cbd5e1;
  line-height: 1.45;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.compare-competitor-text i {
  color: #ef4444;
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   4. PROCESS PAGE COMPONENTS
   -------------------------------------------------------------------------- */
.process-deepdive-section {
  padding: 85px 0 60px;
  background-color: #ffffff !important;
  background: #ffffff !important;
}

.process-deepdive-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.process-phase-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  position: relative;
  background-color: #ffffff;
  background-image: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.78) 50%, rgba(255, 252, 245, 0.84) 100%),
    url('../images/white-gold-marble-card.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1.5px solid rgba(212, 175, 55, 0.55);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 
    0 16px 40px -6px rgba(10, 25, 47, 0.12),
    0 4px 16px rgba(212, 175, 55, 0.16),
    inset 0 1px 2px #ffffff;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateZ(0);
}

.process-phase-card:hover {
  transform: translateY(-8px) scale(1.012);
  border-color: #D4AF37;
  box-shadow: 
    0 24px 55px rgba(10, 25, 47, 0.18),
    0 0 30px rgba(212, 175, 55, 0.38),
    inset 0 1px 2px #ffffff;
}

.phase-number-monument {
  position: relative;
  background-image: 
    linear-gradient(145deg, rgba(255, 255, 255, 0.78) 0%, rgba(248, 245, 236, 0.88) 100%),
    url('../images/white-gold-marble-card.png');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 18px;
  border-right: 1.5px solid rgba(212, 175, 55, 0.45);
  box-shadow: 
    inset -4px 0 10px rgba(212, 175, 55, 0.12),
    inset 0 1px 2px rgba(255, 255, 255, 0.9);
}

.phase-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  color: #0A192F;
  text-shadow: 
    0 1px 0 #ffffff,
    0 2px 0 rgba(212, 175, 55, 0.4),
    0 4px 12px rgba(10, 25, 47, 0.22);
}

.phase-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 5px 15px;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

.phase-badge.blue {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border: 1px solid rgba(56, 189, 248, 0.6);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.phase-badge.orange {
  background: var(--gold-btn-gradient);
  color: #0A192F;
  border: 1px solid rgba(212, 175, 55, 0.8);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.phase-content-body {
  padding: 30px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.phase-header-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.phase-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  box-shadow: 
    0 8px 20px rgba(10, 25, 47, 0.18),
    0 2px 6px rgba(0, 0, 0, 0.12),
    inset 0 1.5px 2px rgba(255, 255, 255, 0.6);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
}

.phase-icon-circle.blue {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
}

.phase-icon-circle.orange {
  background: var(--gold-btn-gradient);
  color: #0A192F;
}

.phase-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.48rem;
  font-weight: 900;
  color: #0A192F;
  margin-bottom: 4px;
  letter-spacing: -0.3px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

.phase-duration {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.84rem;
  color: #AA771C;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.92);
  padding: 4px 12px;
  border-radius: 8px;
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15), inset 0 1px 1px #ffffff;
}

.phase-duration i {
  color: #D4AF37;
}

.phase-description {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.98rem;
  color: #1e293b;
  line-height: 1.72;
  margin-bottom: 20px;
  font-weight: 600;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.phase-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.deliv-tag {
  background: rgba(10, 25, 47, 0.92);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(8px);
  padding: 7px 16px;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 
    0 4px 14px rgba(10, 25, 47, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
}

.deliv-tag:hover {
  background: rgba(15, 34, 64, 0.98);
  border-color: #D4AF37;
  color: #F5E2B3;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

.deliv-tag i {
  color: #F5CA68;
  font-size: 0.82rem;
}

@media (max-width: 820px) {
  .process-phase-card {
    grid-template-columns: 1fr;
  }

  .phase-number-monument {
    border-right: none;
    border-bottom: 1.5px solid rgba(212, 175, 55, 0.35);
    padding: 20px;
    flex-direction: row;
    gap: 16px;
  }

  .phase-num {
    margin-bottom: 0;
    font-size: 2.6rem;
  }

  .phase-content-body {
    padding: 24px 20px;
  }

  .phase-title {
    font-size: 1.25rem;
  }
}

/* Parallel Advantage Card */
.process-advantage-section {
  padding: 70px 0;
  background: #071322;
}

.process-advantage-card {
  background: linear-gradient(135deg, #0d2139 0%, #061120 100%);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 22px;
  padding: 45px 40px;
  text-align: center;
}

.advantage-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto 35px;
  line-height: 1.7;
}

.parallel-tracks-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.parallel-track {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 26px 22px;
  text-align: left;
}

.parallel-track.highlight {
  background: rgba(212, 175, 55, 0.1);
  border-color: #D4AF37;
}

.track-badge {
  font-size: 0.75rem;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.track-badge.orange {
  color: #D4AF37;
}

.parallel-track h4 {
  font-size: 1.12rem;
  color: #ffffff;
  margin-bottom: 6px;
}

.parallel-track p {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.45;
  margin: 0;
}

.track-divider-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.15);
  border: 2px solid #D4AF37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4AF37;
  font-size: 1.3rem;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}


/* --------------------------------------------------------------------------
   5. CONTACT PAGE COMPONENTS
   -------------------------------------------------------------------------- */
.contact-main-section {
  padding: 85px 0 70px;
  background-color: var(--bg-body);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
}

.contact-info-desc {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 30px;
}

.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ==========================================================================
   5. LUXURY GOLD MARBLE CONTACT SECTION & UNIQUE INTERACTIVE FORM
   ========================================================================== */
.luxury-gold-contact-section {
  position: relative;
  padding: 85px 0 90px;
  background: 
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
    linear-gradient(160deg, #070b12 0%, #0a0f18 50%, #04070d 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.20);
  border-bottom: 1px solid rgba(212, 175, 55, 0.20);
  overflow: hidden;
}

/* Texture Overlay with the Liquid Gold Marble Image */
.luxury-marble-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/luxury-gold-marble-bg.jpg');
  background-size: cover;
  background-position: center center;
  opacity: 0.10;
  mix-blend-mode: luminosity;
  pointer-events: none;
  z-index: 1;
}

.text-gold-3d-glow {
  display: inline;
  color: #D4AF37;
  font-weight: 900;
  background: var(--gold-metallic-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 12px rgba(212, 175, 55, 0.5));
}

.luxury-gold-contact-section .section-title {
  font-size: clamp(1.85rem, 5vw, 2.7rem);
  line-height: 1.22;
  margin-bottom: 12px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.luxury-gold-contact-section .contact-info-desc {
  color: #cbd5e1 !important;
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 24px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.text-gold {
  color: #F5CA68 !important;
}

.text-emerald {
  color: #34d399 !important;
}

/* Left Column: Luxury Contact Cards Stack (3D White Carrara Marble Theme) */
.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.luxury-contact-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #ffffff;
  background-image: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.84) 50%, rgba(248, 248, 248, 0.90) 100%),
    url('../images/white-carrara-marble.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 
    0 12px 30px -4px rgba(0, 0, 0, 0.35),
    0 4px 14px rgba(212, 175, 55, 0.15),
    inset 0 1.5px 2px #ffffff,
    inset 0 -2px 4px rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  overflow: hidden;
  transform: translateZ(0);
}

.luxury-contact-card:hover {
  background-image: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 50%, rgba(255, 252, 245, 0.95) 100%),
    url('../images/white-carrara-marble.png');
  border-color: #D4AF37;
  transform: translateX(8px) translateY(-2px);
  box-shadow: 
    0 18px 45px rgba(0, 0, 0, 0.45),
    0 0 25px rgba(212, 175, 55, 0.35),
    inset 0 1.5px 2px #ffffff;
}

.luxury-contact-card.non-clickable:hover {
  transform: translateY(-2px);
}

.luxury-card-glow {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.luxury-card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 
    0 6px 18px rgba(10, 25, 47, 0.22),
    0 2px 6px rgba(0, 0, 0, 0.12),
    inset 0 1.5px 2px rgba(255, 255, 255, 0.6);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease;
}

.luxury-contact-card:hover .luxury-card-icon-wrap {
  transform: scale(1.10) rotate(-4deg);
}

.luxury-card-icon-wrap.icon-cyan {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
}

.luxury-card-icon-wrap.icon-gold {
  background: var(--gold-btn-gradient);
  color: #0A192F;
}

.luxury-card-icon-wrap.icon-green {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #ffffff;
}

.luxury-card-icon-wrap.icon-navy {
  background: linear-gradient(135deg, #0A192F 0%, #1e293b 100%);
  color: #38bdf8;
}

.contact-card-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.luxury-card-tag {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #475569;
  text-transform: uppercase;
  margin-bottom: 2px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.luxury-card-val {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.92rem, 3.4vw, 1.20rem);
  font-weight: 900;
  color: #0A192F;
  margin-bottom: 2px;
  letter-spacing: -0.2px;
  text-shadow: 0 1px 0 #ffffff, 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: color 0.2s ease;
  word-break: break-all;
  overflow-wrap: anywhere;
  line-height: 1.25;
}

.luxury-contact-card:hover .luxury-card-val {
  color: #AA771C;
}

.luxury-card-status {
  font-size: 0.80rem;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
  flex-wrap: wrap;
}

.luxury-card-status i {
  color: #C59A3F;
}

.luxury-card-status.text-emerald {
  color: #059669 !important;
  font-weight: 700;
}

.status-live-dot.mini {
  width: 8px;
  height: 8px;
  display: inline-block;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}

.luxury-card-arrow {
  margin-left: auto;
  color: #0A192F;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.45);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.luxury-contact-card:hover .luxury-card-arrow {
  background: var(--gold-btn-gradient);
  color: #0A192F;
  border-color: #D4AF37;
  transform: translateX(4px) scale(1.05);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

/* Right Column: Unique Interactive Quote Console (3D White Luxury Marble & Metallic Gold) */
.luxury-form-card {
  position: relative;
  background-color: #ffffff;
  background-image: 
    linear-gradient(155deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.90) 50%, rgba(245, 248, 252, 0.93) 100%),
    url('../images/white-carrara-marble.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid #D4AF37;
  border-top: 2.5px solid #FFE58F;
  border-bottom: 4px solid #754b08;
  border-radius: 26px;
  padding: 38px 32px 34px;
  box-shadow: 
    0 35px 80px -10px rgba(0, 0, 0, 0.65),
    0 15px 35px rgba(0, 0, 0, 0.30),
    0 0 45px rgba(212, 175, 55, 0.28),
    inset 0 2.5px 4px #ffffff,
    inset 0 -3.5px 7px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateZ(0);
}

.luxury-form-card:hover {
  border-color: #F5CA68;
  border-bottom-color: #633f06;
  box-shadow: 
    0 45px 95px -10px rgba(0, 0, 0, 0.75),
    0 20px 45px rgba(0, 0, 0, 0.35),
    0 0 60px rgba(212, 175, 55, 0.40),
    inset 0 2.5px 4px #ffffff;
}

/* 3D Gold Metallic Top Trim */
.luxury-card-gold-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #8C5E13 0%, #E6C575 25%, #FFF4D0 50%, #D4AF37 75%, #8C5E13 100%);
  box-shadow: 0 3px 12px rgba(212, 175, 55, 0.7);
  z-index: 5;
}

.form-ambient-gold-glow {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.32) 0%, transparent 70%);
  pointer-events: none;
}

/* ==========================================================================
   FLOATING CRYSTAL ICE-BLUE BUBBLES ANIMATION (FORM CARD)
   ========================================================================== */
.golden-bubbles-wrap,
.crystal-bubbles-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  border-radius: 26px;
}

.gold-bubble,
.crystal-bubble {
  position: absolute;
  bottom: -60px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, 
    rgba(255, 255, 255, 0.98) 0%, 
    rgba(235, 245, 255, 0.90) 25%, 
    rgba(205, 230, 255, 0.70) 50%, 
    rgba(165, 210, 255, 0.45) 75%, 
    rgba(120, 185, 255, 0.15) 100%);
  border: 1.5px solid rgba(180, 220, 255, 0.85);
  box-shadow: 
    inset 2px 2px 6px rgba(255, 255, 255, 0.95),
    inset -3px -3px 8px rgba(96, 165, 250, 0.30),
    0 0 16px rgba(186, 220, 255, 0.65),
    0 0 28px rgba(147, 197, 253, 0.35);
  animation: floatCrystalBubbleRise linear infinite;
  pointer-events: none;
  transform-origin: center center;
  will-change: transform, opacity;
}

/* Sparkling white light glint reflection on bubble */
.gold-bubble::after,
.crystal-bubble::after {
  content: '';
  position: absolute;
  top: 18%;
  left: 22%;
  width: 25%;
  height: 25%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0 5px rgba(255, 255, 255, 1);
  filter: blur(0.3px);
}

@keyframes floatCrystalBubbleRise {
  0% {
    transform: translate3d(0, 0, 0) scale(0.4);
    opacity: 0;
  }
  10% {
    opacity: 0.92;
    transform: translate3d(8px, -90px, 0) scale(0.8);
  }
  28% {
    transform: translate3d(-14px, -270px, 0) scale(1.05);
  }
  50% {
    opacity: 0.88;
    transform: translate3d(16px, -480px, 0) scale(1);
  }
  72% {
    transform: translate3d(-12px, -680px, 0) scale(0.95);
  }
  90% {
    opacity: 0.45;
    transform: translate3d(8px, -860px, 0) scale(0.85);
  }
  100% {
    transform: translate3d(0, -1000px, 0) scale(0.7);
    opacity: 0;
  }
}

/* Staggered static pre-rendered bubbles */
.bubble-1  { left: 6%;  width: 22px; height: 22px; animation-duration: 9.5s; animation-delay: 0s;   }
.bubble-2  { left: 18%; width: 14px; height: 14px; animation-duration: 7.2s; animation-delay: 1.8s; }
.bubble-3  { left: 32%; width: 34px; height: 34px; animation-duration: 11.5s;animation-delay: 3.2s; }
.bubble-4  { left: 48%; width: 18px; height: 18px; animation-duration: 8.5s; animation-delay: 0.5s; }
.bubble-5  { left: 62%; width: 28px; height: 28px; animation-duration: 10.2s;animation-delay: 2.5s; }
.bubble-6  { left: 78%; width: 16px; height: 16px; animation-duration: 7.8s; animation-delay: 4.2s; }
.bubble-7  { left: 88%; width: 26px; height: 26px; animation-duration: 11s;  animation-delay: 1.2s; }
.bubble-8  { left: 12%; width: 12px; height: 12px; animation-duration: 6.8s; animation-delay: 5.5s; }
.bubble-9  { left: 26%; width: 24px; height: 24px; animation-duration: 9.8s; animation-delay: 6.8s; }
.bubble-10 { left: 42%; width: 38px; height: 38px; animation-duration: 13s;  animation-delay: 2s;   }
.bubble-11 { left: 56%; width: 15px; height: 15px; animation-duration: 8.2s; animation-delay: 7.5s; }
.bubble-12 { left: 72%; width: 30px; height: 30px; animation-duration: 10.5s;animation-delay: 5s;   }
.bubble-13 { left: 84%; width: 20px; height: 20px; animation-duration: 8.8s; animation-delay: 8.5s; }
.bubble-14 { left: 94%; width: 14px; height: 14px; animation-duration: 7.4s; animation-delay: 6.2s; }
.bubble-15 { left: 50%; width: 22px; height: 22px; animation-duration: 9.2s; animation-delay: 4s;   }

/* Form Elements Z-Index Elevation */
.luxury-form-header,
.luxury-quote-form,
.form-quick-shed-selector,
.form-row,
.form-group,
.btn-luxury-gold-submit,
.luxury-form-trust-footer {
  position: relative;
  z-index: 2;
}

.luxury-form-header {
  margin-bottom: 20px;
}

.vip-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.luxury-vip-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(180deg, #FFF9EB 0%, #FDF4DC 40%, #F5E5B8 100%);
  border: 1.5px solid #C59A3F;
  border-bottom: 2.5px solid #8C5E13;
  color: #7A4E08;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.66rem, 2.5vw, 0.72rem);
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 3px 8px rgba(140, 94, 19, 0.18), inset 0 1px 1px #ffffff;
  white-space: nowrap;
}

.vip-guarantee-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1.5px solid #22c55e;
  border-bottom: 2.5px solid #15803d;
  color: #166534;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.66rem, 2.5vw, 0.70rem);
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 3px 8px rgba(22, 163, 74, 0.15), inset 0 1px 1px #ffffff;
  white-space: nowrap;
}

.luxury-form-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.35rem, 4.5vw, 1.75rem);
  font-weight: 900;
  color: #071322;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
  line-height: 1.25;
  text-shadow: 0 1px 0 #ffffff, 0 2px 4px rgba(0, 0, 0, 0.10);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.luxury-form-sub {
  font-size: clamp(0.82rem, 2.8vw, 0.90rem);
  color: #475569;
  margin: 0;
  line-height: 1.5;
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* 3D Carved Tray for Structure Category Selector */
.form-quick-shed-selector {
  margin-bottom: 18px;
  background: linear-gradient(180deg, #e4eaf2 0%, #f1f5f9 30%, #f8fafc 100%);
  border: 1.5px solid #cbd5e1;
  border-top: 2.5px solid #94a3b8;
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 
    inset 0 3px 6px rgba(10, 25, 47, 0.12),
    inset 0 1px 2px rgba(10, 25, 47, 0.18),
    0 1.5px 0 #ffffff;
}

.quick-sel-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: #071322;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 0 #ffffff;
}

.quick-shed-chips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

/* 3D Tactile Push Buttons (Keycaps) */
.shed-chip-btn {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 40%, #e8edf4 100%);
  border: 1.5px solid #cbd5e1;
  border-bottom: 3.5px solid #94a3b8;
  color: #1e293b;
  padding: 8px 8px;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  white-space: normal;
  line-height: 1.25;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.10), inset 0 1.5px 1px #ffffff;
  transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(0);
}

.shed-chip-btn:hover {
  background: linear-gradient(180deg, #ffffff 0%, #fffbeb 40%, #fef3c7 100%);
  border-color: #D4AF37;
  border-bottom: 3.5px solid #AA771C;
  color: #7A4E08;
  transform: translateY(-2px);
  box-shadow: 0 7px 16px rgba(212, 175, 55, 0.30), inset 0 1.5px 1px #ffffff;
}

.shed-chip-btn.active {
  background: linear-gradient(180deg, #FFF6D6 0%, #F5CA68 30%, #D4AF37 70%, #AA771C 100%);
  border: 1.5px solid #AA771C;
  border-bottom: 3.5px solid #5E3A08;
  color: #071322;
  font-weight: 800;
  transform: translateY(1.5px);
  box-shadow: 0 3px 12px rgba(212, 175, 55, 0.50), inset 0 1.5px 2px #ffffff;
}

.luxury-quote-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 12px;
}

.luxury-quote-form .form-group {
  margin-bottom: 12px;
}

.luxury-quote-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: #071322;
  margin-bottom: 5px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.label-with-quick-chips {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
  flex-wrap: wrap;
  gap: 6px;
}

.label-with-quick-chips label {
  margin-bottom: 0;
}

.quick-area-chips {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

/* 3D Mini Area Tags */
.quick-area-tag {
  font-size: 0.68rem;
  font-weight: 800;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  border: 1px solid #cbd5e1;
  border-bottom: 2.5px solid #94a3b8;
  color: #475569;
  padding: 2px 8px;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), inset 0 1px 0 #ffffff;
  transition: all 0.15s ease;
  transform: translateY(0);
}

.quick-area-tag:hover {
  background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
  border-color: #D4AF37;
  border-bottom-color: #AA771C;
  color: #7A4E08;
  transform: translateY(-1px);
}

.quick-area-tag.active {
  background: linear-gradient(180deg, #FFF0B3 0%, #D4AF37 100%);
  color: #071322;
  border-color: #AA771C;
  border-bottom: 2.5px solid #5E3A08;
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.45), inset 0 1px 1px #ffffff;
}

.luxury-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.luxury-input-icon {
  position: absolute;
  left: 14px;
  color: #AA771C;
  font-size: 0.95rem;
  z-index: 2;
  filter: drop-shadow(0 1px 0 #ffffff);
}

.luxury-input-icon.textarea-icon {
  top: 14px;
}

/* 3D Sunken/Engraved Input Fields */
.luxury-form-input {
  width: 100%;
  background: linear-gradient(180deg, #e5ebf2 0%, #f1f5f9 22%, #ffffff 100%);
  border: 1.5px solid #c0ccdc;
  border-top: 2.5px solid #94a3b8;
  border-radius: 12px;
  padding: 12px 14px 12px 42px;
  color: #071322;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: inherit;
  box-shadow: 
    inset 0 3px 6px rgba(10, 25, 47, 0.12),
    inset 0 1px 2px rgba(10, 25, 47, 0.18),
    0 1.5px 0 #ffffff;
  transition: all 0.25s ease;
}

.luxury-form-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.luxury-form-input:focus {
  outline: none;
  border-color: #D4AF37;
  border-top-color: #D4AF37;
  background: #ffffff;
  box-shadow: 
    0 0 0 3.5px rgba(212, 175, 55, 0.35),
    inset 0 2px 4px rgba(10, 25, 47, 0.05),
    0 6px 18px rgba(212, 175, 55, 0.35);
}

.luxury-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23AA771C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 15px;
  cursor: pointer;
}

.luxury-form-select option {
  background: #ffffff;
  color: #071322;
  font-weight: 700;
}

.luxury-form-textarea {
  resize: vertical;
  min-height: 85px;
}

/* 3D Metallic Heavy Gold Push-Button */
.btn-luxury-gold-submit {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFF6D6 0%, #F5CA68 22%, #D4AF37 60%, #9B7020 100%);
  color: #071220;
  border: 1.5px solid #D4AF37;
  border-top: 2px solid #ffffff;
  border-bottom: 5px solid #5E3A08;
  padding: 16px 24px;
  border-radius: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 
    0 14px 30px rgba(201, 155, 59, 0.50),
    0 5px 0 #4a2e05,
    inset 0 1.5px 2px rgba(255, 255, 255, 0.90);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 8px;
  transform: translateY(0);
}

.btn-shimmer-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-25deg);
  animation: goldShimmer 3.5s infinite;
}

@keyframes goldShimmer {
  0% { left: -100%; }
  35%, 100% { left: 180%; }
}

.btn-luxury-gold-submit:hover {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFE58F 25%, #E6C575 65%, #AA771C 100%);
  transform: translateY(-2px);
  border-bottom: 7px solid #5E3A08;
  box-shadow: 
    0 18px 40px rgba(201, 155, 59, 0.65),
    0 6px 0 #4a2e05,
    inset 0 2px 3px rgba(255, 255, 255, 1);
}

.btn-luxury-gold-submit:active {
  transform: translateY(3px);
  border-bottom: 2px solid #5E3A08;
  box-shadow: 
    0 4px 12px rgba(201, 155, 59, 0.35),
    0 1px 0 #4a2e05,
    inset 0 2px 4px rgba(0, 0, 0, 0.25);
}

.btn-luxury-gold-submit .btn-icon {
  transition: transform 0.25s ease;
}

.btn-luxury-gold-submit:hover .btn-icon {
  transform: translateX(5px);
}

.luxury-form-trust-footer {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 0.82rem;
  color: #475569;
  font-weight: 700;
  border-top: 1.5px solid rgba(212, 175, 55, 0.35);
  padding-top: 14px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-item i {
  color: #AA771C;
  filter: drop-shadow(0 1px 0 #ffffff);
}

@media (max-width: 991px) {
  .quick-shed-chips-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .luxury-quote-form .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .luxury-form-card {
    padding: 20px 14px;
    border-radius: 18px;
  }

  .quick-shed-chips-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 7px;
  }

  .shed-chip-btn {
    padding: 8px 6px;
    font-size: 0.76rem;
  }

  .luxury-form-trust-footer {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
    font-size: 0.76rem;
  }
}

/* Pan India Section */
.pan-india-section {
  padding: 60px 0 80px;
  background-color: var(--bg-body);
}

.pan-india-card {
  background: linear-gradient(135deg, #0a192f 0%, #06101d 100%);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 20px;
  padding: 45px 40px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(10, 25, 47, 0.15);
}

.pan-india-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 780px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.pan-india-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.pan-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 30px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}


/* --------------------------------------------------------------------------
   6. PRODUCTS & SHEDS CATALOG PAGE COMPONENTS
   -------------------------------------------------------------------------- */
.product-catalog-section {
  padding: 85px 0 60px;
  background-color: var(--bg-body);
}

.product-catalog-stack {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 45px;
}

.product-showcase-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 10px 30px rgba(10, 25, 47, 0.05);
  transition: var(--transition);
}

.product-showcase-card:hover {
  border-color: #D4AF37;
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.15);
  transform: translateY(-4px);
}

.product-card-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.reverse-layout .product-card-grid {
  grid-template-columns: 1.15fr 1fr;
}

.reverse-layout .product-img-col {
  order: 2;
}

.reverse-layout .product-info-col {
  order: 1;
}

.product-main-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(10, 25, 47, 0.12);
  border: 1px solid #e2e8f0;
}

.product-main-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.product-showcase-card:hover .product-main-img {
  transform: scale(1.04);
}

.product-img-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10, 25, 47, 0.88);
  border: 1px solid rgba(56, 189, 248, 0.3);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #38bdf8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-category-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #D4AF37;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-title {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.product-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.product-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 24px;
}

.spec-item {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.spec-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}

.product-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-product-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
  padding: 12px 20px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
  transition: var(--transition);
}

.btn-product-call:hover {
  border-color: #D4AF37;
  color: #0A192F;
  background: var(--gold-light);
}


/* --------------------------------------------------------------------------
   7. RESPONSIVE BREAKPOINTS FOR ALL SUBPAGES
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .page-hero-banner {
    padding: 130px 0 50px;
  }

  .page-hero-title {
    font-size: 2.2rem;
  }

  .about-story-grid,
  .plant-grid-layout,
  .contact-main-grid,
  .product-card-grid,
  .reverse-layout .product-card-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .reverse-layout .product-img-col {
    order: 1;
  }

  .reverse-layout .product-info-col {
    order: 2;
  }

  .mission-vision-grid,
  .why-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-counter-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .parallel-tracks-row {
    grid-template-columns: 1fr;
  }

  .track-divider-icon {
    margin: 0 auto;
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .page-hero-title {
    font-size: 1.85rem;
  }

  .page-hero-subtitle {
    font-size: 0.98rem;
  }

  .mission-vision-grid,
  .why-pillars-grid,
  .stats-counter-strip,
  .plant-features-grid,
  .contact-quote-form .form-row,
  .product-specs-grid {
    grid-template-columns: 1fr;
  }

  .process-phase-card {
    grid-template-columns: 1fr;
  }

  .phase-number-monument {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: row;
    gap: 16px;
    padding: 14px 20px;
  }

  .phase-num {
    font-size: 2.2rem;
    margin-bottom: 0;
  }

  .phase-content-body {
    padding: 20px;
  }

  .plant-capabilities-box,
  .contact-form-card,
  .product-showcase-card {
    padding: 26px 20px;
  }

  .table-scroll-hint {
    display: none !important;
  }

  .desktop-only {
    display: none !important;
  }

  .comparison-cards-mobile-view {
    display: flex !important;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
    width: 100%;
  }

  .product-actions-row {
    flex-direction: column;
    align-items: stretch;
  }

  .product-actions-row .btn,
  .btn-product-call {
    width: 100%;
    justify-content: center;
  }

  /* Luxury Contact Cards Mobile Styles */
  .luxury-gold-contact-section {
    padding: 55px 0 65px;
  }

  .luxury-gold-contact-section .section-title {
    font-size: 1.85rem;
  }

  .luxury-contact-card {
    padding: 13px 15px;
    gap: 12px;
    border-radius: 14px;
  }

  .luxury-card-icon-wrap {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
    border-radius: 11px;
    flex-shrink: 0;
  }

  .luxury-card-arrow {
    width: 28px;
    height: 28px;
    font-size: 0.72rem;
    flex-shrink: 0;
  }

  .luxury-card-tag {
    font-size: 0.65rem;
    letter-spacing: 0.5px;
  }

  .luxury-card-val {
    font-size: 0.95rem;
  }

  .luxury-card-status {
    font-size: 0.74rem;
  }

  .luxury-form-card {
    padding: 20px 14px 20px;
    border-radius: 18px;
  }

  .luxury-form-title {
    font-size: 1.45rem;
  }

  .quick-shed-chips-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .page-hero-title {
    font-size: 1.6rem;
  }

  .table-scroll-hint {
    display: none !important;
  }

  .desktop-only {
    display: none !important;
  }

  .compare-mobile-card {
    padding: 18px 15px 16px;
    border-radius: 15px;
  }

  .luxury-gold-contact-section .section-title {
    font-size: 1.65rem;
  }

  .luxury-contact-card {
    padding: 11px 13px;
    gap: 10px;
  }

  .luxury-card-icon-wrap {
    width: 38px;
    height: 38px;
    font-size: 1.0rem;
    border-radius: 9px;
  }

  .luxury-card-arrow {
    display: none;
  }

  .luxury-card-val {
    font-size: 0.88rem;
  }

  .luxury-form-card {
    padding: 16px 12px 18px;
    border-radius: 16px;
  }

  .luxury-form-title {
    font-size: 1.32rem;
  }

  .luxury-form-sub {
    font-size: 0.80rem;
  }

  .form-quick-shed-selector {
    padding: 10px 8px 10px;
  }

  .quick-shed-chips-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px;
  }

  .shed-chip-btn {
    padding: 7px 4px;
    font-size: 0.74rem;
  }

  .btn-luxury-gold-submit {
    padding: 13px 14px;
    font-size: 0.90rem;
  }
}


/* ==========================================================================
   PRODUCT PAGE - COMPACT 3D CARDS, LIVE FILTERS & ARCHITECTURAL QUICKVIEW
   ========================================================================== */

/* Compact Subhero */
.page-hero-banner.compact-hero {
  padding: 165px 0 60px;
}

/* Category Filter Pills Bar */
.product-filter-pills-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
  width: 100%;
}

.prod-filter-btn {
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid #cbd5e1;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 20px;
  border-radius: 30px;
  color: #1e293b;
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(10, 25, 47, 0.08);
  transition: var(--transition);
}

.prod-filter-btn:hover {
  background: #ffffff;
  border-color: #D4AF37;
  color: #AA771C;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.25);
}

.prod-filter-btn.active {
  background: var(--gold-btn-gradient);
  border-color: #D4AF37;
  color: #0A192F;
  box-shadow: 0 6px 18px rgba(201, 155, 59, 0.45);
}

/* Products Compact Grid Section */
.products-grid-section {
  padding: 65px 0 50px;
  background-color: var(--bg-body);
}

.products-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* 3D Product Compact Card */
.product-compact-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10, 25, 47, 0.05);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.product-compact-card:hover {
  transform: translateY(-6px);
  border-color: #D4AF37;
  box-shadow: 0 18px 45px rgba(212, 175, 55, 0.18);
}

/* Card Diagram Window */
.card-diagram-window {
  position: relative;
  background: #061120;
  height: 240px;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  box-sizing: border-box;
}

.card-diagram-thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background-color: #061120;
  display: block;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.product-compact-card:hover .card-diagram-thumb {
  transform: scale(1.03);
}

.diagram-window-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 25, 47, 0.65);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-compact-card:hover .diagram-window-overlay {
  opacity: 1;
}

.btn-quick-zoom {
  background: var(--gold-btn-gradient);
  color: #0A192F;
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 0.82rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(201, 155, 59, 0.45);
  transform: translateY(10px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.product-compact-card:hover .btn-quick-zoom {
  transform: translateY(0);
}

.card-series-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10, 25, 47, 0.88);
  border: 1px solid rgba(212, 175, 55, 0.6);
  color: #F5CA68;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 15px;
  font-family: 'Outfit', sans-serif;
  z-index: 2;
  backdrop-filter: blur(6px);
}

.card-cat-pill-row {
  margin-bottom: 8px;
}

.card-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(2, 132, 199, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.45);
  color: #0284c7;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
}

.card-cat-pill i {
  color: #D4AF37;
  font-size: 0.75rem;
}

/* Card Body */
.card-compact-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-header-meta {
  margin-bottom: 12px;
}

.card-product-title {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 3px;
}

.card-product-sub {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

/* USP Micro Tags */
.card-usp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.usp-micro-tag {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 4px 9px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.usp-micro-tag i {
  color: #D4AF37;
  font-size: 0.72rem;
}

/* Specs Minibar */
.card-specs-minibar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 18px;
  margin-top: auto;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}

.mini-spec-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.mini-spec-lbl {
  font-size: 0.68rem;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.mini-spec-val {
  font-size: 0.82rem;
  font-weight: 800;
  color: #0A192F;
  line-height: 1.35;
  word-break: break-word;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card Actions Bar */
.card-actions-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-card-specs {
  flex: 1;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-card-specs:hover {
  background: #ffffff;
  border-color: #D4AF37;
  color: #AA771C;
}

.btn-card-quote {
  flex: 1.2;
  background: var(--gold-btn-gradient);
  color: #0A192F;
  border: none;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(201, 155, 59, 0.35);
  transition: var(--transition);
}

.btn-card-quote:hover {
  background: var(--gold-btn-hover);
  transform: translateY(-2px);
}

.btn-card-wa {
  width: 36px;
  height: 36px;
  background: #25d366;
  color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.btn-card-wa:hover {
  background: #1ebc59;
  transform: translateY(-2px);
}

/* Comparative Technical Matrix Table */
.products-table-section {
  padding: 75px 0;
  background: #081628;
}

.product-matrix-table-wrap {
  margin-top: 36px;
  background: #0f233d;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 18px;
  overflow-x: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.product-matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 900px;
}

.product-matrix-table th {
  padding: 18px 20px;
  background: #0b1a2d;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.product-matrix-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  vertical-align: middle;
}

.tbl-name-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tbl-icon-circle {
  width: 38px;
  height: 38px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #D4AF37;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.tbl-name-cell strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
}

.tbl-name-cell span {
  font-size: 0.75rem;
  color: #F5CA68;
  font-weight: 700;
}

.tbl-cat-pill {
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.tbl-spec-text {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
}

.tbl-desc-text {
  color: #94a3b8;
  font-size: 0.82rem;
  line-height: 1.45;
  max-width: 260px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.tbl-usp-pill {
  font-size: 0.8rem;
  color: #cbd5e1;
  font-weight: 600;
  white-space: nowrap;
}

.btn-tbl-quote {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid #D4AF37;
  color: #F5CA68;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-tbl-quote:hover {
  background: var(--gold-btn-gradient);
  color: #0A192F;
}

/* 13-Component Anatomy Compact Grid Section */
.anatomy-guide-section {
  padding: 85px 0 75px;
  background-color: #ffffff;
}

.anatomy-compact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 38px;
}

.anatomy-mini-card {
  position: relative;
  background: linear-gradient(150deg, #ffffff 0%, #fffdf8 55%, #fffbf2 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.40);
  border-radius: 16px;
  padding: 22px 20px 24px;
  box-shadow: 
    inset 0 0 20px rgba(212, 175, 55, 0.12),
    inset 0 1.5px 2px #ffffff,
    0 6px 18px rgba(212, 175, 55, 0.10),
    0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateZ(0);
}

.anatomy-mini-card:hover {
  background: linear-gradient(150deg, #ffffff 0%, #fffef8 40%, #fff6e0 100%);
  border-color: #D4AF37;
  transform: translateY(-4px);
  box-shadow: 
    inset 0 0 26px rgba(212, 175, 55, 0.22),
    inset 0 1.5px 2px #ffffff,
    0 14px 32px rgba(212, 175, 55, 0.24),
    0 4px 10px rgba(0, 0, 0, 0.05);
}

.mini-card-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #FFF8E7 0%, #FDF1D3 45%, #F5DE9F 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.55);
  border-bottom: 2.5px solid #AA771C;
  color: #7A4E08;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.22rem;
  margin-bottom: 14px;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.22), inset 0 1px 1px #ffffff;
  transition: transform 0.3s ease;
}

.anatomy-mini-card:hover .mini-card-icon {
  transform: scale(1.08) rotate(4deg);
  border-color: #AA771C;
}

.anatomy-mini-card h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: #050b14 !important;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
  line-height: 1.3;
}

.anatomy-mini-card p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.55;
  margin: 0;
  letter-spacing: 0.1px;
  text-align: left;
}

.cta-body-text {
  font-size: 0.96rem;
  color: #475569;
  line-height: 1.68;
  margin-bottom: 20px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

/* Interactive Quick-View Modal */
.diagram-quickview-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 13, 26, 0.92);
  backdrop-filter: blur(10px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.diagram-quickview-modal.open {
  display: flex;
}

.quickview-modal-dialog {
  position: relative;
  max-width: 1050px;
  width: 100%;
  max-height: 90vh;
  background: #0a192f;
  border: 2px solid #D4AF37;
  border-radius: 20px;
  overflow-y: auto;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.25);
}

.quickview-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.quickview-close-btn:hover {
  background: var(--gold-btn-gradient);
  color: #0A192F;
  border-color: #D4AF37;
}

.quickview-grid-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.quickview-diagram-pane {
  background: #061120;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.quickview-pane-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.qv-badge {
  background: var(--gold-btn-gradient);
  color: #0A192F;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 12px;
}

.qv-title {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
}

.quickview-img-box {
  background: #030812;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.25);
  margin-bottom: 10px;
}

.quickview-img-box img {
  width: 100%;
  height: auto;
  display: block;
}

.quickview-zoom-hint {
  font-size: 0.75rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.quickview-details-pane {
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.qv-cat-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: #D4AF37;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.qv-prod-heading {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.qv-headline-text {
  font-size: 0.88rem;
  color: #38bdf8;
  font-weight: 600;
  margin-bottom: 12px;
}

.qv-desc-text {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 16px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.qv-usp-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.qv-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.qv-chip i {
  color: #D4AF37;
}

.qv-specs-card {
  background: #0f233d;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.qv-specs-card h5 {
  font-size: 0.82rem;
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.qv-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.qv-spec-item {
  display: flex;
  flex-direction: column;
}

.qv-spec-lbl {
  font-size: 0.68rem;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 700;
}

.qv-spec-val {
  font-size: 0.82rem;
  color: #ffffff;
  font-weight: 600;
}

.qv-actions-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.btn-qv-call {
  width: 44px;
  height: 44px;
  background: #ffffff;
  color: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.btn-qv-call:hover {
  background: var(--gold-light);
  color: #0A192F;
}

.btn-qv-wa {
  width: 44px;
  height: 44px;
  background: #25d366;
  color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition);
}

.btn-qv-wa:hover {
  background: #1ebc59;
}

/* Responsive Media Queries */
@media (max-width: 1050px) {
  .products-compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .anatomy-compact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .quickview-grid-layout {
    grid-template-columns: 1fr;
  }

  .quickview-diagram-pane {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 680px) {
  .products-compact-grid {
    grid-template-columns: 1fr;
  }

  .anatomy-compact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .product-filter-pills-bar {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
    flex-wrap: nowrap;
  }

  .prod-filter-btn {
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .anatomy-compact-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .anatomy-mini-card {
    padding: 18px 16px;
  }
}

/* ==========================================================================
   ENQUIRY / CONSULTATION MODAL (WHITE MARBLE LUXURY THEME)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 9, 17, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px;
}

.modal-backdrop.active,
.modal-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  background-color: #ffffff;
  background-image: 
    linear-gradient(155deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.90) 50%, rgba(245, 248, 252, 0.93) 100%),
    url('../images/white-carrara-marble.png');
  background-size: cover;
  background-position: center;
  border: 2px solid #D4AF37;
  border-top: 2.5px solid #FFE58F;
  border-bottom: 4px solid #754b08;
  border-radius: 24px;
  padding: 36px 30px;
  box-shadow: 
    0 40px 90px rgba(0, 0, 0, 0.70),
    0 15px 40px rgba(0, 0, 0, 0.35),
    0 0 45px rgba(212, 175, 55, 0.30),
    inset 0 2.5px 4px #ffffff,
    inset 0 -3.5px 7px rgba(0, 0, 0, 0.08);
  transform: scale(0.94) translateY(20px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active .modal-card,
.modal-backdrop.show .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  border: 1.5px solid #cbd5e1;
  border-bottom: 3px solid #94a3b8;
  color: #071322;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: linear-gradient(180deg, #FFF0B3 0%, #D4AF37 100%);
  border-color: #AA771C;
  border-bottom-color: #5E3A08;
  color: #071322;
  transform: rotate(90deg) scale(1.05);
}

.modal-card .form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: #071322;
  margin-bottom: 6px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.modal-card .form-input,
.modal-card .form-select {
  width: 100%;
  background: linear-gradient(180deg, #e5ebf2 0%, #f1f5f9 22%, #ffffff 100%);
  border: 1.5px solid #c0ccdc;
  border-top: 2.5px solid #94a3b8;
  border-radius: 12px;
  padding: 12px 14px;
  color: #071322;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: inherit;
  box-shadow: 
    inset 0 3px 6px rgba(10, 25, 47, 0.12),
    inset 0 1px 2px rgba(10, 25, 47, 0.18),
    0 1.5px 0 #ffffff;
  transition: all 0.25s ease;
  margin-bottom: 14px;
}

.modal-card .form-input:focus,
.modal-card .form-select:focus {
  outline: none;
  border-color: #D4AF37;
  border-top-color: #D4AF37;
  background: #ffffff;
  box-shadow: 
    0 0 0 3.5px rgba(212, 175, 55, 0.35),
    inset 0 2px 4px rgba(10, 25, 47, 0.05),
    0 6px 18px rgba(212, 175, 55, 0.35);
}

