/* ==========================================================================
   TOPSTAR GROUP - MASTER CORPORATE STYLESHEET
   Enterprise Grade, High-Performance, Responsive Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Brand Palette */
  --primary-navy: #071326;
  --navy-dark: #040c1a;
  --navy-card: #0c1c38;
  --navy-light: #132b54;
  --accent-blue: #1d4ed8;
  --accent-blue-light: #3b82f6;
  --accent-red: #e11d48;
  --accent-red-hover: #be123c;
  --accent-gold: #f59e0b;
  --accent-cyan: #06b6d4;
  --accent-emerald: #10b981;

  /* Neutral Spectrum */
  --bg-page: #f8fafc;
  --bg-surface: #ffffff;
  --bg-subtle: #f1f5f9;
  --border-light: #e2e8f0;
  --border-dark: rgba(255, 255, 255, 0.12);
  
  --text-main: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-inverse: #ffffff;
  --text-inverse-muted: #cbd5e1;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Elevations & Shadows */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 4px 12px rgba(11, 26, 48, 0.06);
  --shadow-md: 0 10px 30px rgba(11, 26, 48, 0.08);
  --shadow-lg: 0 20px 45px rgba(11, 26, 48, 0.12);
  --shadow-glow-blue: 0 0 30px rgba(37, 99, 235, 0.35);
  --shadow-glow-red: 0 0 30px rgba(225, 29, 72, 0.35);

  /* Transitions & Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.15s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
}

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

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

ul {
  list-style: none;
}

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-fluid {
  width: 100%;
  padding: 0 2rem;
}

.section-padding {
  padding: 5.5rem 0;
}

.section-padding-sm {
  padding: 3.5rem 0;
}

/* Typography Helpers */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.text-accent { color: var(--accent-red); }
.text-blue { color: var(--accent-blue-light); }
.text-gold { color: var(--accent-gold); }
.text-white { color: #ffffff !important; }
.text-muted { color: var(--text-muted); }

/* Badges & Section Headers */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(29, 78, 216, 0.1);
  color: var(--accent-blue);
  border: 1px solid rgba(29, 78, 216, 0.2);
  margin-bottom: 1rem;
}

.section-badge.badge-red {
  background: rgba(225, 29, 72, 0.1);
  color: var(--accent-red);
  border-color: rgba(225, 29, 72, 0.2);
}

.section-badge.badge-white {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.section-title.title-white {
  color: #ffffff;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 3rem auto;
}

.section-subtitle.subtitle-white {
  color: var(--text-inverse-muted);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #1e40af 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(29, 78, 216, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1e40af 0%, #172554 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(29, 78, 216, 0.45);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-red) 0%, #be123c 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.35);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #be123c 0%, #9f1239 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(225, 29, 72, 0.45);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--navy-dark);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-light);
}

.btn-outline-dark:hover {
  background: var(--bg-subtle);
  border-color: var(--text-main);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 0.95rem 2.2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

/* Top Utility Bar */
.top-bar {
  background: var(--navy-dark);
  color: var(--text-inverse-muted);
  font-size: 0.82rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

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

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-inverse-muted);
}

.top-contact-link:hover {
  color: #ffffff;
}

.top-contact-link i {
  color: var(--accent-red);
}

.top-badge-pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(225, 29, 72, 0.15);
  color: #fda4af;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-red);
  box-shadow: 0 0 8px var(--accent-red);
  animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

/* Main Navigation Bar */
.main-nav-bar {
  background: linear-gradient(180deg, rgba(6, 15, 30, 0.96) 0%, rgba(9, 21, 44, 0.94) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.22);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
  padding: 0.8rem 0;
  transition: var(--transition);
}

.site-header.scrolled .main-nav-bar {
  background: rgba(4, 10, 22, 0.98);
  padding: 0.55rem 0;
  border-bottom-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.55);
}

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

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  background: #ffffff;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

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

.brand-logo-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.5px;
}

.brand-logo-tagline {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  font-weight: 700;
  margin-top: 2px;
}

/* Nav Links - Unified & Attractive Modern Colors */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.15rem;
  color: #f1f5f9;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

/* Unified Attractive Hover State Across All Menu Items */
.nav-link:hover {
  color: #38bdf8;
  background: rgba(37, 99, 235, 0.16);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.22);
  transform: translateY(-1px);
}

/* Unified Attractive Active State */
.nav-link.active {
  color: #38bdf8;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25) 0%, rgba(30, 64, 175, 0.2) 100%);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 0 18px rgba(37, 99, 235, 0.32);
}

.nav-link i.dropdown-icon {
  font-size: 0.72rem;
  color: #60a5fa;
  margin-left: 2px;
  transition: transform 0.25s ease, color 0.2s ease;
}

.nav-link:hover i.dropdown-icon,
.nav-link.active i.dropdown-icon {
  color: #38bdf8;
}

.nav-item:hover .nav-link i.dropdown-icon {
  transform: rotate(180deg);
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 100px;
}

/* Dropdowns */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  background: rgba(7, 18, 38, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(37, 99, 235, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1000;
}

.nav-dropdown::before,
.nav-mega-menu::before,
.mega-menu-panel::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
  background: transparent;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.dropdown-link:hover {
  background: rgba(37, 99, 235, 0.2);
  color: #38bdf8;
  padding-left: 1.25rem;
}

.dropdown-link i {
  color: #60a5fa;
  font-size: 0.9rem;
  width: 18px;
  transition: color 0.2s ease;
}

.dropdown-link:hover i {
  color: #38bdf8;
}

/* Mega Menu for Our Businesses */
.nav-mega-menu,
.mega-menu-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 900px;
  max-width: 95vw;
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
  z-index: 1000;
}

.nav-item:hover .nav-mega-menu,
.nav-item:focus-within .nav-mega-menu,
.nav-item:hover .mega-menu-panel,
.nav-item.has-mega-menu:hover .mega-menu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-menu-header h4 {
  color: #ffffff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.mega-sector-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 1rem;
  transition: var(--transition);
}

.mega-sector-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-blue-light);
  transform: translateY(-2px);
}

.mega-sector-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.mega-sector-title i {
  color: var(--accent-gold);
}

.mega-sector-desc {
  font-size: 0.78rem;
  color: var(--text-inverse-muted);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.mega-sector-badge {
  display: inline-block;
  font-size: 0.72rem;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  background: rgba(30, 64, 175, 0.3);
  color: #93c5fd;
}

/* Nav Actions (Search, Quote CTA, Mobile Toggle) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.search-nav-item {
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
}

.nav-search-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.28);
  color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 0.92rem;
}

.nav-search-btn:hover {
  background: #1d4ed8;
  border-color: #38bdf8;
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.4);
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.25rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION (HOME)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.42;
  filter: saturate(1.2) contrast(1.1);
  transform: scale(1.02);
  transition: transform 10s ease-out;
}

.hero-section:hover .hero-bg-img {
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
    rgba(4, 12, 26, 0.75) 0%, 
    rgba(7, 19, 38, 0.85) 50%, 
    rgba(4, 12, 26, 0.98) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.2rem;
  background: rgba(225, 29, 72, 0.15);
  border: 1px solid rgba(225, 29, 72, 0.35);
  color: #fda4af;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}

.hero-heading {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.12;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 1.2rem;
}

.hero-heading span.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #93c5fd 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-heading span.accent-text {
  color: var(--accent-gold);
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 0.4rem;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-inverse-muted);
  margin-bottom: 2.2rem;
  line-height: 1.7;
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Quick Inquiry / Freight Tracker Floating Card */
.hero-tracker-card {
  background: rgba(12, 28, 56, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

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

.tracker-header h3 {
  color: #ffffff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.tracker-header h3 i {
  color: var(--accent-red);
}

.tracker-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.tracker-tab {
  flex: 1;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-inverse-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}

.tracker-tab.active {
  background: var(--accent-blue);
  color: #ffffff;
  border-color: var(--accent-blue-light);
}

.tracker-form-group {
  margin-bottom: 1rem;
}

.tracker-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.9rem;
  transition: var(--transition);
}

.tracker-input:focus {
  border-color: var(--accent-blue-light);
  background: rgba(255, 255, 255, 0.14);
}

.tracker-input::placeholder {
  color: var(--text-muted);
}

/* Hero Stats Bar */
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  font-family: var(--font-heading);
}

.hero-stat-num span.plus {
  color: var(--accent-red);
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-inverse-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.4rem;
}

/* ==========================================================================
   CONGLOMERATE OVERVIEW & LEADERSHIP INTRO
   ========================================================================== */
.overview-section {
  background: var(--bg-surface);
  position: relative;
}

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

.overview-image-stack {
  position: relative;
}

.overview-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.overview-float-card {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--navy-dark);
  color: #ffffff;
  padding: 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-width: 280px;
  border-left: 4px solid var(--accent-red);
}

.overview-float-card h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.overview-float-card p {
  font-size: 0.85rem;
  color: var(--text-inverse-muted);
  line-height: 1.5;
}

.overview-quote-box {
  background: var(--bg-subtle);
  border-left: 4px solid var(--accent-blue);
  padding: 1.4rem 1.6rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.8rem 0;
  font-style: italic;
  color: var(--text-secondary);
}

.overview-leader-info {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.leader-avatar-ph {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--navy-light);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  border: 2px solid var(--accent-blue);
}

.leader-meta h5 {
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.leader-meta p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   SECTOR EXPLORER & COMPANY CARDS
   ========================================================================== */
.sectors-section {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.sector-nav-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.sector-pill-btn {
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #1e293b;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.sector-pill-btn:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
  color: #0f172a;
}

.sector-pill-btn.active {
  background: #1d4ed8;
  color: #ffffff;
  border-color: #1d4ed8;
  box-shadow: 0 4px 15px rgba(29, 78, 216, 0.35);
}

.sector-pill-btn span.count {
  background: rgba(0, 0, 0, 0.08);
  color: inherit;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  margin-left: 0.35rem;
}

.sector-pill-btn.active span.count {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* Dark section variation for index.html */
.sectors-section .sector-pill-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f1f5f9;
}

.sectors-section .sector-pill-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.sectors-section .sector-pill-btn.active {
  background: #2563eb;
  color: #ffffff;
  border-color: #60a5fa;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.45);
}

/* Company Grid */
.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.8rem;
}

.company-card {
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.company-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-red) 100%);
  opacity: 0;
  transition: var(--transition);
}

.company-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.company-card:hover::before {
  opacity: 1;
}

.company-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.company-icon-box {
  width: 145px;
  height: 64px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1.5px solid rgba(56, 189, 248, 0.35);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.company-logo-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.06));
}

.company-card:hover .company-icon-box {
  transform: scale(1.06);
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.45), inset 0 0 0 1px #ffffff;
  border-color: #38bdf8;
}

.company-badge-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-gold);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.company-card-title {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.company-card-tagline {
  font-size: 0.85rem;
  color: var(--text-inverse-muted);
  font-style: italic;
  margin-bottom: 1rem;
}

.company-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.company-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.company-stat-item {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.company-stat-item strong {
  display: block;
  font-size: 0.88rem;
  color: #ffffff;
  font-weight: 600;
}

.company-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.company-detail-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-blue-light);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.company-detail-link:hover {
  color: #ffffff;
  gap: 0.6rem;
}

/* ==========================================================================
   GLOBAL LOGISTICS / NETWORK MAP SECTION
   ========================================================================== */
.network-section {
  background: var(--bg-surface);
  position: relative;
}

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

.network-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.network-feat-card {
  padding: 1.5rem;
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.network-feat-card:hover {
  background: #ffffff;
  box-shadow: var(--shadow-md);
  border-color: var(--accent-blue);
  transform: translateY(-3px);
}

.network-feat-card i {
  font-size: 1.6rem;
  color: var(--accent-blue);
  margin-bottom: 0.8rem;
}

.network-feat-card h5 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.network-feat-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.network-visual-card {
  background: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.network-visual-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(29, 78, 216, 0.2);
  filter: blur(40px);
}

.network-hub-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.hub-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hub-flag-icon {
  font-size: 1.3rem;
  color: var(--accent-gold);
}

.hub-info h6 {
  color: #ffffff;
  font-size: 0.95rem;
}

.hub-info p {
  font-size: 0.8rem;
  color: var(--text-inverse-muted);
}

/* ==========================================================================
   NEWS, PRESS RELEASES & CSR SECTION
   ========================================================================== */
.news-section {
  background: var(--bg-subtle);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.news-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-light);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-blue-light);
}

.news-img-holder {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
}

.news-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-img-holder img {
  transform: scale(1.08);
}

.news-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent-blue);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.news-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.news-meta i {
  color: var(--accent-red);
}

.news-title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.8rem;
  transition: var(--transition-fast);
}

.news-card:hover .news-title {
  color: var(--accent-blue);
}

.news-excerpt {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.news-readmore-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ==========================================================================
   CALL TO ACTION BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-card) 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.2) 0%, transparent 70%);
}

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

.cta-text h2 {
  color: #ffffff;
  font-size: 2.3rem;
  margin-bottom: 0.8rem;
}

.cta-text p {
  color: var(--text-inverse-muted);
  font-size: 1.05rem;
  max-width: 600px;
}

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

/* ==========================================================================
   PAGE HERO (INNER PAGES: ABOUT, BUSINESSES, DETAIL, CONTACT, CAREERS)
   ========================================================================== */
.page-hero {
  position: relative;
  background: var(--navy-dark);
  padding: 160px 0 70px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(29, 78, 216, 0.25) 0%, transparent 60%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-inverse-muted);
  margin-bottom: 1.2rem;
}

.breadcrumb-nav a:hover {
  color: #ffffff;
}

.breadcrumb-nav i {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.page-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.8rem;
  letter-spacing: -0.5px;
}

.page-hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-inverse-muted);
  max-width: 700px;
  line-height: 1.6;
}

/* ==========================================================================
   COMPANY & SECTOR DETAIL PAGE STYLES
   ========================================================================== */
.detail-layout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.detail-main-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  margin-bottom: 2rem;
}

.detail-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid var(--border-light);
  gap: 1.5rem;
}

.detail-brand-title {
  font-size: 2.2rem;
  color: var(--navy-dark);
  margin-bottom: 0.3rem;
}

.detail-tagline {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-style: italic;
}

.detail-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.detail-stat-box {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  text-align: center;
}

.detail-stat-box .stat-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-blue);
  font-family: var(--font-heading);
}

.detail-stat-box .stat-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.2rem;
}

.detail-services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.detail-service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--bg-subtle);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent-blue);
}

.detail-service-item i {
  color: var(--accent-blue);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

/* Detail Sidebar */
.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.sidebar-widget.widget-dark {
  background: var(--navy-dark);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.1);
}

.sidebar-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sidebar-widget.widget-dark .sidebar-title {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.sidebar-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.9rem;
}

.sidebar-contact-item i {
  color: var(--accent-red);
  font-size: 1rem;
  margin-top: 0.25rem;
}

.sidebar-company-switcher {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.switcher-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.switcher-btn:hover, .switcher-btn.active {
  background: var(--accent-blue);
  color: #ffffff;
}

/* ==========================================================================
   ABOUT US & LEADERSHIP STYLES
   ========================================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}

.value-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 55px;
  height: 55px;
  border-radius: var(--radius-md);
  background: rgba(29, 78, 216, 0.1);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.timeline-track {
  position: relative;
  max-width: 900px;
  margin: 3rem auto 0 auto;
  padding: 1rem 0;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--border-light);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 1.5rem 2.5rem;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 2rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-red);
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 3px var(--accent-blue);
  z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -9px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -9px;
}

.timeline-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.timeline-year {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-blue);
  margin-bottom: 0.3rem;
  font-family: var(--font-heading);
}

/* Leadership Grid */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.leader-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.leader-photo-wrap {
  height: 280px;
  background: var(--navy-dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.leader-photo-wrap i {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.2);
}

.leader-card-body {
  padding: 1.8rem;
}

.leader-name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.leader-role {
  font-size: 0.85rem;
  color: var(--accent-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.leader-bio {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1rem;
}

/* ==========================================================================
   CAREERS & APPLICATION FORM STYLES
   ========================================================================== */
.career-jobs-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.job-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.job-card:hover {
  border-color: var(--accent-blue-light);
  box-shadow: var(--shadow-md);
}

.job-info h4 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.job-tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 0.6rem 0;
}

.job-tag {
  font-size: 0.78rem;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  background: var(--bg-subtle);
  color: var(--text-secondary);
  font-weight: 600;
}

/* ==========================================================================
   CONTACT PAGE & INQUIRY FORM STYLES
   ========================================================================== */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
}

.contact-card-info {
  background: var(--navy-dark);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-card-info h3 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}

.contact-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(225, 29, 72, 0.15);
  border: 1px solid rgba(225, 29, 72, 0.35);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-form-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

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

.form-group {
  margin-bottom: 1.2rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: var(--bg-subtle);
  font-size: 0.92rem;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-blue);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15);
}

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

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--navy-dark);
  color: var(--text-inverse-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5rem 0 2rem 0;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-inverse-muted);
  margin: 1.2rem 0;
  line-height: 1.6;
}

.footer-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-red);
}

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

.footer-link {
  font-size: 0.88rem;
  color: var(--text-inverse-muted);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: #ffffff;
  padding-left: 0.4rem;
}

.footer-social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social-btn:hover {
  background: var(--accent-blue);
  transform: translateY(-2px);
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   MODAL SYSTEM & TOAST NOTIFICATIONS
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 12, 26, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 1.5rem;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: #ffffff;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transform: scale(0.95);
  transition: var(--transition);
}

.modal-backdrop.active .modal-dialog {
  transform: scale(1);
}

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

.modal-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.modal-close-btn {
  background: var(--bg-subtle);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--accent-red);
  color: #ffffff;
}

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

.toast-message {
  background: var(--navy-dark);
  color: #ffffff;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--accent-emerald);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  animation: slideInToast 0.3s ease;
}

@keyframes slideInToast {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   OFFICIAL CORPORATE PROFILE & GOVERNANCE STYLES (2026 EDITION)
   ========================================================================== */
.growth-engines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.growth-engine-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.growth-engine-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-blue);
}

.engine-num-badge {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-blue);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

.engine-focus-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-red);
  margin-bottom: 1rem;
}

.engine-pill-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.5rem 0;
}

.engine-pill-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-dark);
}

.engine-pill-item i {
  color: var(--accent-blue);
  font-size: 0.8rem;
}

/* Multiplier */
.multiplier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.multiplier-card {
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-light);
  position: relative;
  transition: var(--transition);
}

.multiplier-card:hover {
  background: #ffffff;
  box-shadow: var(--shadow-md);
  border-color: var(--accent-blue);
}

.multiplier-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.4rem;
}

.multiplier-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.2rem;
}

.multiplier-sub {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-red);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

/* Top Governance Pillars (4 in a row on desktop) */
.gov-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.gov-pillar-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gov-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-blue);
}

.gov-avatar-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--navy-dark);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  border: 4px solid var(--accent-blue);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.2rem;
}

.gov-avatar-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 4px solid var(--accent-blue);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gov-pillar-card:hover .gov-avatar-img {
  transform: scale(1.05);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.gov-designation-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 29, 72, 0.1);
  color: var(--accent-red);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.6rem;
  min-height: 24px;
}

.gov-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.35rem;
  white-space: nowrap;
  letter-spacing: -0.3px;
  min-height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gov-role-sub {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.9rem;
  min-height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gov-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* Board of Directors Cards */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.board-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.board-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-blue);
}

.board-avatar, .board-avatar-img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
  border: 3px solid var(--accent-blue);
  box-shadow: 0 6px 18px rgba(29, 78, 216, 0.2);
}

.board-avatar {
  background: var(--navy-dark);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.board-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.2rem;
}

.board-domain {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-red);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.board-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

/* Executive Management Grid (3 in a row on desktop) */
.exec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.exec-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.4rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.exec-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-blue);
  background: var(--bg-subtle);
}

.exec-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-subtle);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
}

.exec-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.15rem;
  line-height: 1.25;
}

.exec-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-red);
  margin-bottom: 0.15rem;
}

.exec-company {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.2;
}

/* Strategic Assets & Social Impact */
.asset-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.asset-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-blue);
}

.asset-sft {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   AI CORPORATE ASSISTANT CHATBOT (TOPSTAR AI)
   ========================================================================== */

/* Floating Launcher Button */
.ai-chat-launcher {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d4ed8 0%, #0f172a 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(29, 78, 216, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.15);
  cursor: pointer;
  z-index: 1050;
  border: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.ai-chat-launcher:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(29, 78, 216, 0.6), 0 0 20px rgba(96, 165, 250, 0.6);
}

.ai-launcher-icon {
  font-size: 1.6rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.ai-launcher-pulse {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid #60a5fa;
  animation: aiPulse 2.5s infinite;
  opacity: 0.8;
  pointer-events: none;
}

@keyframes aiPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

.ai-launcher-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #10b981;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.15rem 0.4rem;
  border-radius: var(--radius-full);
  border: 2px solid #071326;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ai-launcher-tooltip {
  position: absolute;
  right: 75px;
  background: #0f172a;
  color: #ffffff;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.25s ease;
  pointer-events: none;
}

.ai-chat-launcher:hover .ai-launcher-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Chat Window Dialog */
.ai-chat-window {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 390px;
  max-width: calc(100vw - 32px);
  height: 580px;
  max-height: calc(100vh - 120px);
  background: #0b1528;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(29, 78, 216, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-chat-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Header */
.ai-chat-header {
  background: linear-gradient(135deg, #071326 0%, #1e3a8a 100%);
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.ai-header-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.ai-avatar {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.5);
}

.ai-status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  border: 2px solid #071326;
}

.ai-header-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

.ai-header-info p {
  font-size: 0.75rem;
  color: #94a3b8;
  margin: 0;
}

.ai-live-tag {
  color: #10b981;
  font-weight: 800;
}

.ai-header-actions {
  display: flex;
  gap: 0.4rem;
}

.ai-action-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
}

.ai-action-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.08);
}

/* Quick Chips */
.ai-quick-chips {
  background: rgba(255, 255, 255, 0.02);
  padding: 0.6rem 0.8rem;
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ai-quick-chips::-webkit-scrollbar {
  display: none;
}

.ai-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.ai-chip i {
  color: #60a5fa;
  font-size: 0.72rem;
}

.ai-chip:hover {
  background: #1d4ed8;
  color: #ffffff;
  border-color: #60a5fa;
  transform: translateY(-1px);
}

/* Messages Body */
.ai-chat-messages {
  flex-grow: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #081120;
}

.ai-msg {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  animation: aiMsgIn 0.25s ease-out;
}

@keyframes aiMsgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.ai-msg-user {
  flex-direction: row-reverse;
}

.ai-msg-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.ai-msg-bot .ai-msg-avatar {
  background: #1d4ed8;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(29, 78, 216, 0.4);
}

.ai-msg-user .ai-msg-avatar {
  background: #e11d48;
  color: #ffffff;
}

.ai-msg-bubble {
  max-width: 82%;
  padding: 0.85rem 1.05rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  line-height: 1.55;
}

.ai-msg-bot .ai-msg-bubble {
  background: #132238;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-left-radius: 4px;
}

.ai-msg-user .ai-msg-bubble {
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
  color: #ffffff;
  border-top-right-radius: 4px;
  box-shadow: 0 4px 15px rgba(29, 78, 216, 0.3);
}

.ai-msg-bubble p {
  margin: 0 0 0.4rem 0;
}

.ai-msg-bubble p:last-child {
  margin-bottom: 0;
}

/* Typing Indicator */
.ai-typing-indicator {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0 1rem 0.5rem 1rem;
  background: #081120;
}

.ai-typing-dots {
  background: #132238;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.ai-typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #60a5fa;
  animation: aiDotBlink 1.4s infinite ease-in-out both;
}

.ai-typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.ai-typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes aiDotBlink {
  0%, 80%, 100% { transform: scale(0); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* Input Area */
.ai-chat-input-area {
  background: #0b1528;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-chat-input-area input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 0.7rem 1.1rem;
  color: #ffffff;
  font-size: 0.88rem;
  transition: all 0.2s ease;
}

.ai-chat-input-area input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #60a5fa;
  box-shadow: 0 0 12px rgba(96, 165, 250, 0.25);
}

.ai-chat-input-area input::placeholder {
  color: #64748b;
  font-size: 0.82rem;
}

.ai-chat-input-area button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.35);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.ai-chat-input-area button:hover {
  transform: scale(1.06);
  background: #1e40af;
}

/* Footer Note */
.ai-chat-footer {
  background: #070e1b;
  padding: 0.4rem;
  text-align: center;
  font-size: 0.68rem;
  color: #64748b;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

@media (max-width: 480px) {
  .ai-chat-launcher {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .ai-chat-window {
    bottom: 82px;
    right: 12px;
    left: 12px;
    width: auto;
    height: 500px;
  }
}

