/* ==========================================================================
   Illusion Imaging - Corporate Luxury Design System & Stylesheet
   Solar Energy Systems & Medical Equipment Import, Supply & Service
   Aesthetic: High-End Modern Corporate with Royal Luxury Accents
   ========================================================================== */

/* --- CSS Variables & Royal Design Tokens --- */
:root {
  /* Royal Brand Colors */
  --royal-navy: #060e1d;
  --royal-sapphire: #0a1b38;
  --royal-blue: #0f3460;
  
  /* Imperial Gold Palette (Royal Accent) */
  --royal-gold: #d4af37;
  --royal-gold-light: #fef08a;
  --royal-gold-bright: #fbbf24;
  --royal-gold-dark: #a16207;
  --royal-gold-gradient: linear-gradient(135deg, #fef08a 0%, #eab308 50%, #ca8a04 100%);
  --royal-gold-metallic: linear-gradient(135deg, #fbf2c4 0%, #d4af37 50%, #aa7c11 100%);
  --royal-gold-border: rgba(212, 175, 55, 0.35);
  --royal-gold-glow: rgba(212, 175, 55, 0.25);

  /* Solar Energy Colors */
  --solar-amber: #f59e0b;
  --solar-amber-dark: #d97706;
  --solar-amber-light: #fef3c7;
  --solar-glow: rgba(245, 158, 11, 0.22);
  --solar-green: #10b981;

  /* Medical Healthcare Colors */
  --med-cyan: #0284c7;
  --med-cyan-light: #38bdf8;
  --med-teal: #0d9488;
  --med-teal-light: #ccfbf1;
  --med-blue: #2563eb;
  --med-blue-light: #eff6ff;

  /* Neutral Surface Palette */
  --bg-main: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-subtle: #f3f6fa;
  --bg-dark: #040813;
  --bg-dark-card: #0b1426;
  
  /* Text & Border Colors */
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  --border-light: #e2e8f0;
  --border-subtle: #cbd5e1;
  --border-dark: #1e293b;

  /* Shadows & Elevation */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 14px 32px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.16), 0 8px 20px rgba(0, 0, 0, 0.08);
  --shadow-royal-gold: 0 8px 28px rgba(212, 175, 55, 0.28);
  --shadow-glow-cyan: 0 0 25px rgba(2, 132, 199, 0.35);

  /* Typography Pairing: Royal Serif + High-Tech Sans + Crisp Body */
  --font-royal: 'Cinzel', Georgia, serif;
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Transitions & Radii */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-pill: 9999px;

  /* Container */
  --container-max: 1240px;
}

/* --- Base Reset & Box Sizing --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* --- Container & Layout Helpers --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-py {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.section-py-sm {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

/* --- Top Utility Bar with Royal Gold Accents --- */
.top-bar {
  background-color: var(--bg-dark);
  color: #94a3b8;
  font-size: 0.825rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  z-index: 1002;
}

.top-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--royal-gold), transparent);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-info-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-info-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #cbd5e1;
}

.top-info-item svg {
  color: var(--royal-gold);
  width: 15px;
  height: 15px;
}

.top-info-item a:hover {
  color: var(--royal-gold-light);
  text-decoration: underline;
}

.top-social-list {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.top-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  transition: var(--transition-fast);
}

.top-social-link:hover {
  background: var(--royal-gold-gradient);
  color: #060e1d;
  border-color: var(--royal-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px var(--royal-gold-glow);
}

/* --- Main Navigation Header with Glassmorphism --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(6, 14, 29, 0.08);
  background-color: rgba(255, 255, 255, 0.98);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 82px;
}

/* Brand Logo Treatment with Royal Elegance */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.header-brand-img {
  height: 62px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-normal);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.brand-logo:hover .header-brand-img {
  transform: scale(1.03);
}

.footer-brand-card {
  background: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.footer-brand-img {
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}

.drawer-brand-card {
  background: #ffffff;
  padding: 5px 12px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.drawer-brand-img {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.logo-symbol {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--transition-bounce), filter var(--transition-normal);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
}

.brand-logo:hover .logo-symbol {
  transform: scale(1.06) rotate(2deg);
  filter: drop-shadow(0 6px 16px rgba(212, 175, 55, 0.45));
}

.logo-symbol img,
.logo-symbol svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-main-title {
  font-family: var(--font-royal);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--royal-navy);
  line-height: 1.15;
}

.logo-main-title span {
  background: var(--royal-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-subtitle {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--royal-gold-dark);
  line-height: 1.2;
}

/* Desktop Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.5rem 0.25rem;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--royal-gold-gradient);
  border-radius: 2px;
  transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--royal-navy);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

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

.header-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.48rem 0.95rem;
  background-color: var(--bg-surface-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--royal-navy);
  transition: var(--transition-fast);
}

.header-phone-pill:hover {
  background-color: #f1f5f9;
  border-color: var(--royal-gold);
  color: var(--royal-gold-dark);
}

.header-phone-pill svg {
  color: var(--royal-gold-dark);
}

/* Mobile Hamburger Toggle */
.menu-toggle {
  display: none;
  background: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--royal-navy);
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 360px;
  height: 100vh;
  background-color: var(--bg-surface);
  z-index: 1100;
  box-shadow: var(--shadow-xl);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 14, 29, 0.65);
  backdrop-filter: blur(5px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}

.drawer-close {
  background: var(--bg-surface-subtle);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.drawer-close:hover {
  background: #fee2e2;
  color: #dc2626;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.drawer-link {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-fast);
}

.drawer-link:hover, .drawer-link.active {
  background-color: rgba(212, 175, 55, 0.12);
  color: var(--royal-gold-dark);
}

.drawer-contact {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.drawer-contact p {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* --- Buttons & UI Components --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1.65rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-sm {
  padding: 0.5rem 1.05rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.95rem 2.25rem;
  font-size: 1.025rem;
}

/* Royal Gold Signature Button */
.btn-solar, .btn-royal {
  background: var(--royal-gold-gradient);
  color: #060e1d;
  font-weight: 800;
  box-shadow: 0 4px 16px var(--royal-gold-glow);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-solar:hover, .btn-royal:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.45);
  filter: brightness(1.05);
}

/* Deep Navy Primary Button */
.btn-primary {
  background: linear-gradient(135deg, var(--royal-sapphire) 0%, var(--royal-blue) 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(10, 27, 56, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #040914 0%, var(--royal-sapphire) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 27, 56, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--royal-navy);
  border: 1.5px solid var(--border-subtle);
}

.btn-outline:hover {
  border-color: var(--royal-gold);
  color: var(--royal-gold-dark);
  background-color: rgba(212, 175, 55, 0.08);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--royal-navy);
  border-color: #ffffff;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-pill);
}

.badge-solar {
  background-color: rgba(212, 175, 55, 0.15);
  color: #a16207;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.badge-medical {
  background-color: var(--med-blue-light);
  color: var(--med-blue);
  border: 1px solid rgba(37, 99, 235, 0.25);
}

.badge-corporate {
  background-color: #f1f5f9;
  color: var(--royal-navy);
  border: 1px solid var(--border-light);
}

/* --- Section Headers with Royal Typography --- */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.75rem;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.section-tag {
  font-family: var(--font-royal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--royal-gold-dark);
  margin-bottom: 0.85rem;
}

.section-tag::before, .section-tag::after {
  content: '◆';
  font-size: 0.55rem;
  color: var(--royal-gold);
}

.section-tag.solar {
  color: var(--royal-gold-dark);
}

.section-title {
  font-family: var(--font-royal);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--royal-navy);
  line-height: 1.28;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.68;
}

/* --- Hero Section (Page 1) with Royal Elegance --- */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, #0d2146 0%, #060e1d 55%, #020710 100%);
  color: #fff;
  padding: 3.25rem 0 4.5rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* --- Modern Hero Showcase Section --- */
.hero-section.hero-modern-showcase,
.hero-section.hero-banner-only {
  padding: 2.25rem 1.5rem 2.5rem;
  background: radial-gradient(circle at 50% 20%, #f8fafc 0%, #edf2f7 65%, #e2e8f0 100%);
  border-bottom: 1px solid var(--border-light);
  overflow: visible;
}

.hero-showcase-container,
.hero-banner-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-frame-card {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #040d1e;
  border: 1.5px solid rgba(212, 175, 55, 0.38);
  box-shadow: 
    0 25px 60px -15px rgba(6, 14, 29, 0.36),
    0 12px 28px -6px rgba(0, 0, 0, 0.22),
    0 0 35px rgba(212, 175, 55, 0.18);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  line-height: 0;
}

.hero-frame-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.75);
  box-shadow: 
    0 32px 75px -15px rgba(6, 14, 29, 0.48),
    0 16px 36px -6px rgba(0, 0, 0, 0.28),
    0 0 50px rgba(212, 175, 55, 0.32);
}

.hero-showcase-image,
.hero-banner-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 22px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.65;
}

.hero-glow-1 {
  position: absolute;
  top: -15%;
  left: 5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-glow-2 {
  position: absolute;
  bottom: -20%;
  right: 5%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 0);
  background-size: 32px 32px;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-lead-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(10px);
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-pill);
  font-size: 0.825rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 1.6rem;
}

.hero-lead-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--royal-gold);
  box-shadow: 0 0 10px var(--royal-gold);
}

.hero-headline {
  font-family: var(--font-royal);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero-headline .solar-text {
  background: var(--royal-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-headline .medical-text {
  background: linear-gradient(135deg, #7dd3fc 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 620px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-highlights {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-highlight-item {
  display: flex;
  flex-direction: column;
}

.hero-highlight-number {
  font-family: var(--font-royal);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--royal-gold-light);
}

.hero-highlight-label {
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero Right: Dual Visual Card */
.hero-visual-card {
  position: relative;
  background: rgba(10, 24, 50, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), inset 0 0 20px rgba(212, 175, 55, 0.05);
}

.dual-pillar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-top-intro {
  max-width: 960px;
  margin: 0 auto 1.85rem;
}

.hero-headline-centered {
  font-size: 2.35rem;
  line-height: 1.25;
  margin-inline: auto;
  margin-bottom: 1.15rem;
}

.hero-description-centered {
  margin-inline: auto;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #cbd5e1;
  max-width: 760px;
  margin-bottom: 1.65rem;
}

.hero-cta-centered {
  justify-content: center;
  margin-bottom: 0;
}

/* --- Grand Panoramic Billboard Showcase --- */
.hero-billboard-showcase {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.hero-billboard-frame {
  background: rgba(10, 24, 50, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.55), 0 0 45px rgba(212, 175, 55, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hero-billboard-frame:hover {
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.65), 0 0 55px rgba(212, 175, 55, 0.28);
}

.billboard-top-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.4rem;
  background: rgba(6, 14, 29, 0.9);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  gap: 1rem;
  flex-wrap: wrap;
}

.status-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.window-dot.red { background-color: #ef4444; }
.window-dot.yellow { background-color: #f59e0b; }
.window-dot.green { background-color: #10b981; }

.billboard-tag {
  margin-left: 0.5rem;
  font-family: var(--font-royal);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--royal-gold-light);
  text-transform: uppercase;
}

.status-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.billboard-verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.billboard-zoom-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212, 175, 55, 0.15);
  color: var(--royal-gold-light);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.billboard-zoom-btn:hover {
  background: var(--royal-gold-gradient);
  color: var(--royal-navy);
  transform: translateY(-1px);
}

.billboard-image-wrap {
  position: relative;
  cursor: pointer;
  background: #020710;
  line-height: 0;
  overflow: hidden;
}

.hero-billboard-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.billboard-image-wrap:hover .hero-billboard-img {
  transform: scale(1.015);
}

.billboard-hover-glass {
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 29, 0.55);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.billboard-image-wrap:hover .billboard-hover-glass {
  opacity: 1;
}

.hover-glass-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.75rem;
  background: rgba(6, 14, 29, 0.88);
  border: 1px solid var(--royal-gold-bright);
  border-radius: var(--radius-pill);
  color: var(--royal-gold-light);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--royal-gold-glow);
  transform: translateY(8px);
  transition: transform var(--transition-normal);
}

.billboard-image-wrap:hover .hover-glass-content {
  transform: translateY(0);
}

.billboard-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 1.4rem;
  background: rgba(6, 14, 29, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.billboard-footer-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.billboard-footer-item svg {
  color: var(--royal-gold);
  flex-shrink: 0;
}

.billboard-footer-item a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.billboard-footer-item a:hover {
  color: var(--royal-gold-bright);
  text-decoration: underline;
}

/* Highlights Grid Under Banner */
.hero-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 0;
  border-top: none;
}

.hero-highlight-card {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  background: rgba(10, 24, 50, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.4rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.hero-highlight-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.5);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gold-icon-bg {
  background: rgba(212, 175, 55, 0.15);
  color: var(--royal-gold-bright);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Lightbox Modal for Banner */
.banner-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.banner-lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.banner-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 7, 16, 0.88);
  backdrop-filter: blur(12px);
}

.banner-lightbox-container {
  position: relative;
  z-index: 2;
  background: #060e1d;
  border: 1px solid var(--royal-gold-border);
  border-radius: var(--radius-xl);
  max-width: 1280px;
  width: 100%;
  max-height: 94vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), 0 0 50px rgba(212, 175, 55, 0.25);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.banner-lightbox-modal.active .banner-lightbox-container {
  transform: scale(1);
}

.banner-lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: #040813;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  color: #fff;
  gap: 1rem;
}

.banner-lightbox-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-royal);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--royal-gold-light);
  letter-spacing: 0.05em;
}

.banner-lightbox-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.banner-modal-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212, 175, 55, 0.15);
  color: var(--royal-gold-light);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.banner-modal-action-btn:hover {
  background: var(--royal-gold-gradient);
  color: var(--royal-navy);
}

.banner-lightbox-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.banner-lightbox-close:hover {
  background: #ef4444;
  border-color: #ef4444;
  transform: rotate(90deg);
}

.banner-lightbox-body {
  padding: 1rem;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #020710;
}

.banner-lightbox-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.banner-lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0.85rem 1.5rem;
  background: #040813;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: #94a3b8;
  flex-wrap: wrap;
  gap: 1rem;
}

.banner-lightbox-footer a {
  color: #38bdf8;
  text-decoration: none;
}

.banner-lightbox-footer a:hover {
  text-decoration: underline;
}

.pillar-title {
  font-family: var(--font-royal);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--royal-gold-light);
  line-height: 1.25;
}

.pillar-badge {
  font-size: 0.72rem;
  background: rgba(212, 175, 55, 0.15);
  color: var(--royal-gold-bright);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.28rem 0.75rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.dual-pillar-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pillar-box {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-normal);
}

.pillar-box:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.07);
}

.pillar-box.solar-box {
  border-left: 4px solid var(--royal-gold);
}

.pillar-box.medical-box {
  border-left: 4px solid var(--med-cyan);
}

.pillar-box-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.5rem;
}

.pillar-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.solar-icon-bg {
  background: rgba(212, 175, 55, 0.18);
  color: var(--royal-gold);
}

.medical-icon-bg {
  background: rgba(2, 132, 199, 0.18);
  color: var(--med-cyan-light);
}

.pillar-box h4 {
  font-family: var(--font-royal);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.pillar-box p {
  font-size: 0.885rem;
  color: #94a3b8;
  line-height: 1.55;
}

.hero-verified-card {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  font-size: 0.825rem;
  color: #cbd5e1;
}

.hero-verified-card svg {
  color: var(--royal-gold);
  flex-shrink: 0;
}

/* --- Dual Business Spotlight Grid --- */
.dual-spotlight-section {
  background-color: var(--bg-surface);
}

.dual-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.business-spotlight-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.business-spotlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.spotlight-card-solar {
  border-top: 5px solid var(--royal-gold);
}

.spotlight-card-medical {
  border-top: 5px solid var(--med-cyan);
}

.spotlight-header {
  padding: 2.25rem 2.25rem 1.5rem;
}

.spotlight-icon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.spotlight-big-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotlight-title {
  font-family: var(--font-royal);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--royal-navy);
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}

.spotlight-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.spotlight-body {
  padding: 0 2.25rem 2.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.spotlight-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.5rem 0 2rem;
}

.feature-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.925rem;
  color: var(--text-main);
}

.feature-check-item svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.feature-check-solar svg {
  color: var(--royal-gold-dark);
}

.feature-check-medical svg {
  color: var(--med-cyan);
}

/* --- Services Grid Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.service-card.solar-theme:hover {
  border-color: var(--royal-gold);
  box-shadow: 0 8px 24px var(--royal-gold-glow);
}

.service-card.medical-theme:hover {
  border-color: var(--med-cyan);
  box-shadow: 0 8px 24px var(--shadow-glow-cyan);
}

.service-card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.service-card-title {
  font-family: var(--font-royal);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--royal-navy);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.service-card-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.62;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-card-list {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-light);
}

.service-card-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card-list li::before {
  content: '◆';
  color: var(--med-cyan);
  font-size: 0.65rem;
}

.service-card.solar-theme .service-card-list li::before {
  color: var(--royal-gold-dark);
}

/* --- Product Cards & Showcase Grid --- */
.product-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 2.75rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-pill);
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  background: var(--bg-surface-subtle);
  color: var(--text-main);
  border-color: var(--royal-gold);
}

.filter-btn.active {
  background: var(--royal-navy);
  color: #fff;
  border-color: var(--royal-gold);
  box-shadow: 0 4px 14px var(--royal-gold-glow);
}

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

.product-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--royal-gold-border);
}

.product-img-wrapper {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.product-img-wrapper svg {
  width: 100px;
  height: 100px;
  opacity: 0.9;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrapper svg {
  transform: scale(1.08);
}

.product-category-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
}

.product-status-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(6, 14, 29, 0.85);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.product-card-body {
  padding: 1.65rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-title {
  font-family: var(--font-royal);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--royal-navy);
  margin-bottom: 0.6rem;
  line-height: 1.38;
}

.product-desc {
  font-size: 0.885rem;
  color: var(--text-muted);
  line-height: 1.58;
  margin-bottom: 1.35rem;
  flex-grow: 1;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.product-view-btn {
  background: var(--bg-surface-subtle);
  color: var(--royal-navy);
  border: 1px solid var(--border-light);
  padding: 0.52rem 1.15rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.product-view-btn:hover {
  background: var(--royal-navy);
  color: var(--royal-gold-light);
  border-color: var(--royal-gold);
}

/* --- Global Modern Slim Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(6, 14, 29, 0.04);
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 9999px;
  border: 2px solid #f8fafc;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--royal-gold);
}

* {
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 rgba(6, 14, 29, 0.04);
}

/* --- Product Details Modal --- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 19, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  max-width: 680px;
  width: 100%;
  max-height: 88vh;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--royal-gold-border);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden; /* Scrollbar stays INSIDE, not touching card boundaries */
  display: flex;
  flex-direction: column;
}

.modal-backdrop.open .modal-card {
  transform: translateY(0);
}

/* Close button cleanly positioned with ample clearance */
.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  width: 38px;
  height: 38px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  background: rgba(6, 14, 29, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  transition: background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  z-index: 30;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  line-height: 1;
}

.modal-close-btn svg {
  width: 16px;
  height: 16px;
  display: block;
  stroke: #ffffff;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: 50% 50%;
}

.modal-close-btn:hover {
  background: #dc2626;
  border-color: #dc2626;
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.45);
}

.modal-close-btn:hover svg {
  transform: rotate(90deg);
}

/* Inset Sleek Scroll Area */
.modal-scroll-body {
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  padding-right: 4px;
}

/* Inset Custom Scrollbar for Modal */
.modal-scroll-body::-webkit-scrollbar {
  width: 7px;
}

.modal-scroll-body::-webkit-scrollbar-track {
  background: transparent;
  margin: 12px 0;
}

.modal-scroll-body::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.45);
  border-radius: 10px;
}

.modal-scroll-body::-webkit-scrollbar-thumb:hover {
  background: var(--royal-gold);
}

.modal-banner {
  height: 200px;
  background: linear-gradient(135deg, #060e1d 0%, #0a1b38 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-bottom: 2px solid var(--royal-gold);
  position: relative;
}

.modal-banner svg {
  width: 90px;
  height: 90px;
  color: var(--royal-gold);
}

.modal-content-inner {
  padding: 2.25rem;
}

.modal-category-chip {
  margin-bottom: 0.75rem;
}

.modal-title {
  font-family: var(--font-royal);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--royal-navy);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.modal-overview {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.modal-specs-title {
  font-family: var(--font-royal);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--royal-navy);
  margin-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.modal-specs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.modal-spec-item {
  background: var(--bg-surface-subtle);
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-size: 0.85rem;
}

.modal-spec-label {
  font-weight: 700;
  color: var(--text-muted);
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.modal-spec-value {
  color: var(--text-main);
  font-weight: 600;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

/* --- Trust / Verified Badges Section --- */
.trust-strip {
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 2.25rem 0;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--bg-surface-subtle);
  border: 1px solid var(--royal-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-gold-dark);
  box-shadow: var(--shadow-xs);
  flex-shrink: 0;
}

.trust-title {
  font-family: var(--font-royal);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--royal-navy);
  line-height: 1.3;
}

.trust-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* --- About Page Specifics --- */
.about-hero {
  background: radial-gradient(circle at 50% 50%, #0d2146 0%, #060e1d 80%, #03070f 100%);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.about-company-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.about-text-col p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.company-fact-list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.company-fact-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  box-shadow: var(--shadow-xs);
  border-left: 3px solid var(--royal-gold);
}

.company-fact-title {
  font-family: var(--font-royal);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--royal-gold-dark);
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.company-fact-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--royal-navy);
  line-height: 1.4;
}

.about-card-display {
  background: linear-gradient(135deg, #060e1d 0%, #0f2347 100%);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  color: #fff;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--royal-gold-border);
  position: relative;
  overflow: hidden;
}

.about-card-display::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.about-card-display h3 {
  font-family: var(--font-royal);
  letter-spacing: 0.03em;
}

.about-card-logo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.about-card-meta {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.about-card-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-card-meta-item svg {
  color: var(--royal-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Service Workflow */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  text-align: center;
  position: relative;
  transition: var(--transition-normal);
}

.process-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--royal-gold);
}

.process-number {
  font-family: var(--font-royal);
  width: 48px;
  height: 48px;
  background: var(--royal-gold-gradient);
  color: #060e1d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 14px var(--royal-gold-glow);
}

.process-title {
  font-family: var(--font-royal);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--royal-navy);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

.process-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.58;
}

/* --- Contact Section & Form (Page 3 & Footer) --- */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.contact-info-panel {
  background: var(--royal-navy);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.25rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--royal-gold-border);
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-panel-title {
  font-family: var(--font-royal);
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #fff;
  letter-spacing: 0.02em;
}

.contact-panel-desc {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--royal-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-gold-bright);
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 0.2rem;
}

.contact-detail-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.45;
}

.contact-detail-text a:hover {
  color: var(--royal-gold-light);
  text-decoration: underline;
}

.contact-panel-socials {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 0.75rem;
}

.contact-social-icons {
  display: flex;
  gap: 0.75rem;
}

.contact-social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.contact-social-btn:hover {
  background: var(--royal-gold-gradient);
  color: #060e1d;
  border-color: var(--royal-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px var(--royal-gold-glow);
}

/* Contact Form Card */
.contact-form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  box-shadow: var(--shadow-md);
}

.form-header-box {
  margin-bottom: 1.75rem;
}

.form-title {
  font-family: var(--font-royal);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--royal-navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.form-subtitle {
  font-size: 0.925rem;
  color: var(--text-muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  min-width: 0;
}

.form-label {
  font-size: 0.885rem;
  font-weight: 700;
  color: var(--royal-navy);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  line-height: 1.35;
}

.form-label .required {
  color: #dc2626;
  font-weight: bold;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  background-color: var(--bg-surface);
  color: var(--text-main);
  transition: var(--transition-fast);
  font-size: 0.925rem;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b45309' stroke-width='2' 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 1rem center;
  background-size: 16px;
  padding-right: 2.75rem;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--royal-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
  background-color: #fff;
}

/* --- Luxury Custom Select Dropdown Component --- */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.real-select-hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

.custom-select-trigger {
  width: 100%;
  padding: 0.85rem 1rem;
  background-color: var(--bg-surface);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}

.custom-select-trigger:hover {
  border-color: var(--royal-gold);
  background-color: #fafbfc;
}

.custom-select-wrapper.open .custom-select-trigger {
  border-color: var(--royal-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
  background-color: #ffffff;
}

.custom-select-selected {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--royal-navy);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select-arrow {
  color: var(--royal-gold-dark);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.custom-select-wrapper.open .custom-select-arrow {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid var(--royal-gold-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 36px rgba(6, 14, 29, 0.16);
  z-index: 100;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-select-wrapper.open .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.custom-option:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateX(3px);
}

.custom-option.selected {
  background: rgba(212, 175, 55, 0.16);
  border: 1px solid var(--royal-gold-border);
}

.opt-icon {
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(212, 175, 55, 0.12);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.opt-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.opt-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--royal-navy);
  line-height: 1.3;
}

.opt-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.25;
}

.opt-check {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--royal-gold-dark);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.custom-option.selected .opt-check {
  opacity: 1;
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
}

.form-helper {
  font-size: 0.775rem;
  color: var(--text-muted);
}

/* Location Card / Map Preview */
.location-map-card {
  margin-top: 3.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.location-map-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-map-title {
  font-family: var(--font-royal);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--royal-navy);
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
}

.location-badge-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.location-map-visual {
  background: radial-gradient(circle at center, #0d2146 0%, #060e1d 100%);
  padding: 2.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  border-left: 1px solid rgba(212, 175, 55, 0.2);
}

.location-pin-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 2px solid var(--royal-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-gold-bright);
  margin-bottom: 1rem;
  animation: pulse-pin 2s infinite;
}

@keyframes pulse-pin {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 16px rgba(212, 175, 55, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* --- Call to Action Banner --- */
.cta-banner-section {
  background: radial-gradient(circle at 90% 10%, #0d2146 0%, #060e1d 75%, #020710 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 3.75rem 3.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--royal-gold-border);
}

.cta-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at right, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.cta-banner-text {
  max-width: 680px;
}

.cta-banner-title {
  font-family: var(--font-royal);
  font-size: 2.15rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  color: #fff;
  letter-spacing: 0.01em;
}

.cta-banner-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.65;
}

.cta-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Toast Notification --- */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  background: var(--bg-dark-card);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1.1rem 1.35rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  border-left: 4px solid var(--royal-gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 320px;
  max-width: 450px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  color: var(--royal-gold);
  flex-shrink: 0;
}

.toast-message {
  font-size: 0.92rem;
  line-height: 1.45;
}

.toast-close {
  margin-left: auto;
  background: none;
  color: var(--text-light);
  cursor: pointer;
}

/* --- Footer with Royal Sophistication --- */
.site-footer {
  background-color: var(--bg-dark);
  color: #94a3b8;
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1.2rem;
  margin-bottom: 1.5rem;
  color: #94a3b8;
}

.footer-col-title {
  font-family: var(--font-royal);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.4rem;
  position: relative;
  letter-spacing: 0.05em;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--royal-gold);
  border-radius: 2px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.footer-links-list a {
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--royal-gold-light);
  transform: translateX(3px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.885rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
}

.footer-contact-item svg {
  color: var(--royal-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-social-row {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-social-btn:hover {
  background: var(--royal-gold-gradient);
  color: #060e1d;
  border-color: var(--royal-gold);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.825rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-badges {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--royal-gold-light);
}

/* Scroll To Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--royal-navy);
  color: var(--royal-gold);
  border: 1.5px solid var(--royal-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-normal);
  z-index: 900;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--royal-gold-gradient);
  color: #060e1d;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--royal-gold-glow);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1080px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual-card {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  .dual-card-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .about-company-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .location-map-card {
    grid-template-columns: 1fr;
  }
  .contact-layout-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-section.hero-modern-showcase,
  .hero-section.hero-banner-only {
    padding: 1.25rem 1rem 1.75rem;
  }
  .hero-frame-card {
    border-radius: 18px;
    border-width: 1px;
    box-shadow: 
      0 16px 36px -10px rgba(6, 14, 29, 0.35),
      0 0 25px rgba(212, 175, 55, 0.15);
  }
  .hero-showcase-image,
  .hero-banner-image {
    border-radius: 17px;
  }
  .top-bar {
    display: none;
  }
  .nav-menu, .nav-actions .header-phone-pill {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav-container {
    height: 70px;
  }
  .hero-headline {
    font-size: 2.15rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.9rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    padding: 1.75rem;
  }
  .company-fact-list {
    grid-template-columns: 1fr;
  }
  .modal-specs-list {
    grid-template-columns: 1fr;
  }
  .cta-banner-section {
    padding: 2.5rem 1.5rem;
  }
  .cta-banner-title {
    font-size: 1.65rem;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-section.hero-modern-showcase,
  .hero-section.hero-banner-only {
    padding: 0.85rem 0.65rem 1.25rem;
  }
  .hero-frame-card {
    border-radius: 14px;
    box-shadow: 
      0 12px 26px -8px rgba(6, 14, 29, 0.3),
      0 0 18px rgba(212, 175, 55, 0.12);
  }
  .hero-showcase-image,
  .hero-banner-image {
    border-radius: 13px;
  }
  .hero-headline {
    font-size: 1.85rem;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .hero-highlights {
    flex-direction: column;
    gap: 1rem;
  }
  .modal-actions {
    flex-direction: column;
  }
  .modal-actions .btn {
    width: 100%;
  }
  .hero-highlights-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .hero-headline-centered {
    font-size: 1.75rem;
  }
  .billboard-top-status {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
  }
  .billboard-footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
  }
  .billboard-footer-item {
    font-size: 0.8rem;
  }
}

@media (max-width: 991px) {
  .hero-highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Instant SPA Navigation Progress Bar --- */
.spa-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #0284c7, #f59e0b, #10b981);
  box-shadow: 0 0 10px rgba(2, 132, 199, 0.6), 0 0 5px rgba(245, 158, 11, 0.4);
  z-index: 9999999;
  transition: width 0.18s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
  pointer-events: none;
}

