/* ==========================================================================
   AL MUSAWEQON GULF COMPANY (MGC) - WORLD-CLASS UI/UX DESIGN SYSTEM
   Modern, Clean, High-Tech Industrial Engineering Aesthetic
   ========================================================================== */

/* 1. CSS Custom Properties / Design Tokens */
:root {
  /* Brand Core Colors (Faithful to MGC Logo) */
  --mgc-navy-dark: #070d18;
  --mgc-navy-900: #0b1528;
  --mgc-navy-800: #112346;
  --mgc-navy-700: #1a3464;
  --mgc-navy-600: #254a8a;
  
  --mgc-red: #d9232e;
  --mgc-red-hover: #b91c25;
  --mgc-red-light: #fee2e2;
  --mgc-red-glow: rgba(217, 35, 46, 0.25);

  --mgc-cyan: #0ea5e9;
  --mgc-cyan-hover: #0284c7;
  --mgc-cyan-light: #e0f2fe;
  --mgc-cyan-glow: rgba(14, 165, 233, 0.25);

  --mgc-amber: #f59e0b;
  --mgc-green: #10b981;

  /* Surfaces & Neutrals */
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-alt: #f1f5f9;
  --bg-surface-dark: #0f172a;
  
  --border-subtle: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-dark: #334155;

  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  /* Shadows & Elevation */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 4px 0 rgba(15, 23, 42, 0.06);
  --shadow-md: 0 6px 16px -2px rgba(15, 23, 42, 0.08), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 28px -4px rgba(15, 23, 42, 0.12), 0 4px 10px -2px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 35px -5px rgba(15, 23, 42, 0.15), 0 8px 16px -4px rgba(15, 23, 42, 0.08);
  --shadow-red: 0 10px 25px -3px rgba(217, 35, 46, 0.3);
  --shadow-cyan: 0 10px 25px -3px rgba(14, 165, 233, 0.3);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Fonts */
  --font-primary: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-arabic: 'Cairo', 'Tajawal', sans-serif;
  
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. Global Reset & Typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--mgc-navy-900);
  line-height: 1.25;
}

a {
  color: var(--mgc-navy-800);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover {
  color: var(--mgc-red);
}

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

.arabic-font {
  font-family: var(--font-arabic);
}

/* 3. Global Badges, Buttons & UI Controls */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(17, 35, 70, 0.08);
  color: var(--mgc-navy-800);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  border: 1px solid rgba(17, 35, 70, 0.15);
}

.section-badge.badge-cyan {
  background: var(--mgc-cyan-light);
  color: var(--mgc-cyan-hover);
  border-color: rgba(14, 165, 233, 0.2);
}

.section-badge.badge-dark {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--mgc-navy-900);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin-bottom: 0;
}

.section-subtitle.subtitle-white {
  color: #cbd5e1;
}

.section-padding {
  padding: 85px 0;
}

.section-padding-sm {
  padding: 55px 0;
}

/* Buttons */
.btn-mgc-red {
  background: var(--mgc-navy-800);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 10px 25px -3px rgba(17, 35, 70, 0.35);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-mgc-red:hover {
  background: var(--mgc-navy-900);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -3px rgba(17, 35, 70, 0.45);
  color: #ffffff !important;
}

.btn-mgc-outline {
  background: transparent;
  color: var(--mgc-navy-900) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--mgc-navy-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-normal);
}

.btn-mgc-outline:hover {
  background: var(--mgc-navy-900);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-mgc-outline-white {
  background: transparent;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-normal);
}

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

.btn-mgc-cyan {
  background: var(--mgc-cyan);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: var(--shadow-cyan);
  transition: all var(--transition-normal);
}

.btn-mgc-cyan:hover {
  background: var(--mgc-cyan-hover);
  transform: translateY(-2px);
  color: #ffffff !important;
}

/* 4. Top Announcement Bar */
.mgc-topbar {
  background: var(--mgc-navy-dark);
  color: #94a3b8;
  font-size: 12.5px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mgc-topbar a {
  color: #cbd5e1;
}

.mgc-topbar a:hover {
  color: var(--mgc-cyan);
}

.mgc-topbar-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 10px;
  background: rgba(14, 165, 233, 0.15);
  color: #38bdf8;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 11px;
}

/* 5. Modern Sticky Navbar */
.mgc-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: all var(--transition-normal);
}

.mgc-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.mgc-logo {
  max-height: 52px;
  width: auto;
  transition: transform var(--transition-fast);
}

.mgc-logo:hover {
  transform: scale(1.02);
}

.nav-link.mgc-nav-link {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--mgc-navy-900);
  padding: 10px 16px !important;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link.mgc-nav-link:hover {
  color: var(--mgc-navy-800);
  background: rgba(17, 35, 70, 0.04);
}

.nav-link.mgc-nav-link.active {
  color: var(--mgc-navy-800);
  background: rgba(17, 35, 70, 0.08);
}

.nav-link.mgc-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2.5px;
  background: var(--mgc-navy-800);
  border-radius: var(--radius-full);
}

/* 6. Hero Section */
.hero-wrapper {
  position: relative;
  background: radial-gradient(circle at 80% 20%, #162c50 0%, #0b1528 70%, #070d18 100%);
  color: #ffffff;
  padding: 90px 0 110px 0;
  overflow: hidden;
}

.hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  top: -100px;
  right: -50px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.18) 0%, rgba(14, 165, 233, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217, 35, 46, 0.15) 0%, rgba(217, 35, 46, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-title-main {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -1px;
}

.hero-title-gradient {
  background: linear-gradient(135deg, #ffffff 30%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle-text {
  font-size: 1.15rem;
  color: #94a3b8;
  line-height: 1.7;
}

.hero-stats-row {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

.hero-stat-card {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 20px;
}

.hero-stat-card:last-child {
  border-right: none;
  padding-right: 0;
}

.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: #38bdf8;
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Hero Media Display */
.hero-media-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 16px;
  backdrop-filter: blur(16px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-main-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hero-floating-badge {
  position: absolute;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.hero-floating-badge.badge-top-left {
  top: -20px;
  left: -20px;
}

.hero-floating-badge.badge-bottom-right {
  bottom: -20px;
  right: -20px;
}

/* 7. Brands Compatibility Bar & Infinite Marquee */
.mgc-brands-bar {
  background: #ffffff;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: scrollBrands 22s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.brand-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  width: 170px;
  min-width: 170px;
  padding: 12px 24px;
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  flex-shrink: 0;
}

.brand-pill img {
  max-height: 38px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: all var(--transition-fast);
}

.brand-pill:hover {
  background: #ffffff;
  border-color: var(--mgc-red);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.brand-pill:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* 8. Feature Cards / Engineering Pillars */
.mgc-feature-box {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  height: 100%;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.mgc-feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--mgc-red), var(--mgc-cyan));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.mgc-feature-box:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-xl);
}

.mgc-feature-box:hover::before {
  opacity: 1;
}

.mgc-feature-icon {
  width: 58px;
  height: 58px;
  background: rgba(17, 35, 70, 0.08);
  color: var(--mgc-navy-800);
  font-size: 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition-fast);
}

.mgc-feature-box:hover .mgc-feature-icon {
  background: var(--mgc-navy-800);
  color: #ffffff;
  transform: scale(1.05);
}

/* 9. Interactive Category & Product Catalog Cards */
.catalog-nav-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  border: none;
  margin-bottom: 40px;
}

.catalog-tab-btn {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.catalog-tab-btn:hover {
  background: var(--bg-surface-alt);
  color: var(--mgc-navy-900);
}

.catalog-tab-btn.active {
  background: var(--mgc-navy-900);
  color: #ffffff;
  border-color: var(--mgc-navy-900);
  box-shadow: var(--shadow-md);
}

.product-item-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.product-item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(217, 35, 46, 0.3);
}

.product-img-holder {
  position: relative;
  background: #f8fafc;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.product-img-holder img {
  max-height: 170px;
  max-width: 100%;
  object-fit: contain;
  transition: transform var(--transition-smooth);
}

.product-img-holder.img-cover {
  padding: 0;
  height: 270px;
  background: #172a6b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-holder.img-cover img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
  background: #172a6b;
}

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

.product-badge-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  left: auto;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mgc-navy-900);
  margin-bottom: 8px;
}

.product-card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
}

/* 10. Technical Fabrication Spotlight (Silos & Conveyors) */
.spec-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-main);
  margin-right: 6px;
  margin-bottom: 6px;
}

.dark-spotlight-section {
  background: linear-gradient(135deg, #0b1528 0%, #112346 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* 11. Regional Network & Interactive Branch Selector */
.branch-pill-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.branch-selector-btn {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all var(--transition-fast);
  width: 100%;
}

.branch-selector-btn:hover {
  background: var(--bg-surface-alt);
  border-color: var(--border-medium);
}

.branch-selector-btn.active {
  background: var(--mgc-navy-900);
  color: #ffffff;
  border-color: var(--mgc-navy-900);
  box-shadow: var(--shadow-md);
}

.branch-selector-btn.active .branch-city {
  color: #ffffff;
}

.branch-selector-btn.active .branch-badge {
  background: var(--mgc-red);
  color: #ffffff;
}

.branch-city {
  font-weight: 700;
  font-size: 15px;
  color: var(--mgc-navy-900);
}

.branch-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  background: var(--bg-surface-alt);
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.branch-map-wrapper {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.branch-map-iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: var(--radius-md);
}

/* 12. Chairman & Trust Message Card */
.chairman-quote-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.chairman-quote-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 140px;
  color: rgba(217, 35, 46, 0.08);
  position: absolute;
  top: -20px;
  left: 30px;
  line-height: 1;
  pointer-events: none;
}

/* 13. Accordion / FAQ */
.mgc-accordion .accordion-item {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.mgc-accordion .accordion-button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--mgc-navy-900);
  background: #ffffff;
  padding: 18px 22px;
  box-shadow: none;
}

.mgc-accordion .accordion-button:not(.collapsed) {
  color: var(--mgc-red);
  background: rgba(217, 35, 46, 0.03);
}

.mgc-accordion .accordion-button::after {
  filter: grayscale(1);
}

.mgc-accordion .accordion-button:not(.collapsed)::after {
  filter: none;
}

.mgc-accordion .accordion-body {
  padding: 18px 22px 24px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
}

/* 14. Modern Contact & Quote Forms */
.mgc-form-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.form-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--mgc-navy-900);
  margin-bottom: 6px;
}

.form-control, .form-select {
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 14.5px;
  color: var(--text-main);
  background: #ffffff;
  transition: all var(--transition-fast);
}

.form-control:focus, .form-select:focus {
  border-color: var(--mgc-red);
  box-shadow: 0 0 0 4px var(--mgc-red-glow);
  outline: none;
}

/* 15. Call To Action (CTA) Banner */
.mgc-cta-strip {
  background: radial-gradient(circle at 10% 50%, #0284c7 0%, #0369a1 60%, #0b1528 100%);
  color: #ffffff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.mgc-cta-strip::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('../img/2024/08/Screenshot-439.jpg') center/cover;
  opacity: 0.12;
  pointer-events: none;
}

/* 16. Site Footer */
.mgc-footer {
  background: var(--mgc-navy-dark);
  color: #94a3b8;
  font-size: 14px;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-widget-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2.5px;
  background: var(--mgc-cyan);
  border-radius: var(--radius-full);
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 10px;
}

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

.footer-links-list a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

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

.footer-social-btn:hover {
  background: var(--mgc-red);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  margin-top: 50px;
  font-size: 13px;
}

/* 17. Floating Quick Actions Widget */
.floating-actions-bar {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-normal);
  color: #ffffff !important;
  border: none;
  cursor: pointer;
}

.floating-whatsapp {
  background: #25d366;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.floating-quote {
  background: var(--mgc-navy-900);
}

.floating-quote:hover {
  transform: scale(1.1);
  background: var(--mgc-red);
}

/* 18. Page Inner Banner */
.page-hero-banner {
  background: radial-gradient(circle at 70% 30%, #162c50 0%, #0b1528 100%);
  color: #ffffff;
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}

.breadcrumb-item a {
  color: #94a3b8;
}

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

.breadcrumb-item.active {
  color: var(--mgc-cyan);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* 19. Responsive Tweaks */
@media (max-width: 991.98px) {
  .hero-title-main {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 1.9rem;
  }
  .hero-stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .hero-floating-badge {
    position: static;
    margin-top: 15px;
  }
}
