/* ==========================================================================
   ARABIAN GULF HORIZON PARTNERS GENERAL TRADING LLC (AGHP)
   Master Corporate Stylesheet - Pure CSS3 & Luxury Design System
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --dark-green: #001f1a;
  --deep-green: #003d32;
  --emerald: #004c3f;
  --green-light: #075b4d;

  --gold: #c8a45d;
  --gold-light: #e0be73;
  --gold-dark: #a9823d;
  --gold-shimmer: #fdf5e2;

  --white: #f7f5ed;
  --text-muted: #aab8b3;
  --text-dim: #7f948e;

  --border: rgba(200, 164, 93, 0.35);
  --border-light: rgba(200, 164, 93, 0.15);
  --border-glow: rgba(224, 190, 115, 0.6);

  /* Gradients */
  --gold-gradient: linear-gradient(135deg, #c8a45d 0%, #f7eccb 40%, #c8a45d 70%, #a9823d 100%);
  --gold-gradient-horizontal: linear-gradient(90deg, #a9823d 0%, #e0be73 50%, #c8a45d 100%);
  --emerald-gradient: linear-gradient(180deg, #001f1a 0%, #003d32 50%, #001f1a 100%);
  --surface-gradient: linear-gradient(145deg, rgba(0, 61, 50, 0.65) 0%, rgba(0, 31, 26, 0.85) 100%);
  --surface-card: rgba(0, 35, 29, 0.75);
  --surface-card-hover: rgba(0, 48, 40, 0.9);

  /* Typography */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows & Glow */
  --gold-glow-sm: 0 0 15px rgba(200, 164, 93, 0.3);
  --gold-glow-lg: 0 0 35px rgba(200, 164, 93, 0.45);
  --card-shadow: 0 20px 45px rgba(0, 12, 10, 0.6);
  --card-shadow-hover: 0 25px 60px rgba(0, 10, 8, 0.8), 0 0 25px rgba(200, 164, 93, 0.25);

  /* Transitions */
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);

  /* Dimensions */
  --nav-height: 90px;
  --nav-height-scrolled: 75px;
  --container-max: 1280px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESETS & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--dark-green);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  line-height: 1.65;
  background-color: var(--dark-green);
  color: var(--white);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* Focus Visible Accessibility */
:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & TEXT UTILITIES
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.3rem, 4.5vw + 1rem, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.85rem, 3vw + 0.8rem, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.25rem, 1.8vw + 0.6rem, 1.65rem);
  font-weight: 700;
}

h4 {
  font-size: 1.15rem;
  font-weight: 700;
}

p {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 400;
}

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

.text-gold {
  color: var(--gold);
}

.text-center {
  text-align: center;
}

.text-gradient-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gold-gradient);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem auto;
  position: relative;
  z-index: 2;
}

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

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.12rem;
  margin-top: 1rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   4. LAYOUT & CONTAINERS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
}

.section-padding {
  padding-top: clamp(4.5rem, 8vw, 7.5rem);
  padding-bottom: clamp(4.5rem, 8vw, 7.5rem);
  position: relative;
  overflow: hidden;
}

.grid {
  display: grid;
  gap: 2rem;
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

/* --------------------------------------------------------------------------
   5. BACKGROUNDS & LUXURY DECORATIVE SYSTEM
   -------------------------------------------------------------------------- */
.bg-deep-green {
  background-color: var(--deep-green);
}

.bg-dark-green {
  background-color: var(--dark-green);
}

.bg-mesh-pattern {
  position: relative;
  background-color: var(--dark-green);
  background-image: 
    radial-gradient(circle at 15% 30%, rgba(0, 76, 63, 0.45) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(0, 61, 50, 0.55) 0%, transparent 45%),
    radial-gradient(circle at 50% 10%, rgba(200, 164, 93, 0.08) 0%, transparent 35%);
}

.bg-emerald-gradient {
  background: linear-gradient(180deg, var(--dark-green) 0%, var(--deep-green) 50%, var(--dark-green) 100%);
}

/* Decorative Geometric SVG & Hexagon Layers */
.deco-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.deco-hexagon {
  position: absolute;
  stroke: var(--border);
  stroke-width: 1.2;
  fill: none;
  opacity: 0.35;
  transition: transform var(--transition-slow);
}

.deco-hexagon-filled {
  fill: rgba(0, 76, 63, 0.12);
  stroke: var(--border);
  stroke-width: 1;
}

.deco-wave-line {
  position: absolute;
  width: 100%;
  left: 0;
  stroke: url(#goldLinear);
  stroke-width: 1;
  opacity: 0.25;
  fill: none;
}

.gold-glow-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 164, 93, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

/* Hexagon Clip-path Helper */
.hexagon-shape {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* --------------------------------------------------------------------------
   6. LUXURY BUTTONS & INTERACTIVE ELEMENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--dark-green);
  border: 1px solid var(--gold-light);
  box-shadow: 0 4px 20px rgba(200, 164, 93, 0.28);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(200, 164, 93, 0.45);
  color: #00120f;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-outline {
  background: rgba(0, 31, 26, 0.5);
  color: var(--white);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(200, 164, 93, 0.12);
  color: var(--gold-shimmer);
  transform: translateY(-3px);
  box-shadow: var(--gold-glow-sm);
}

.btn-icon {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 18px 38px;
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   7. HEADER & FIXED NAVIGATION
   -------------------------------------------------------------------------- */
.header-navbar {
  position: static;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition-medium);
  background: #ffffff;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.header-navbar.scrolled {
  height: var(--nav-height-scrolled);
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

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

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  z-index: 1002;
}

.brand-logo-img,
.brand-logo-svg {
  height: 76px;
  max-height: 80px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
  transition: transform var(--transition-fast);
}

.brand-logo-wrap:hover .brand-logo-img,
.brand-logo-wrap:hover .brand-logo-svg {
  transform: scale(1.03);
}

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

.nav-link {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark-green);
  letter-spacing: 0.03em;
  padding: 6px 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--dark-green);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: #002d25;
}

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

.nav-link.active {
  color: #002d25;
}

.nav-cta-wrap {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.header-navbar .btn-header-cta {
  background: var(--dark-green);
  color: var(--gold-light);
  border: 1px solid var(--dark-green);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.header-navbar .btn-header-cta:hover {
  background: #002d25;
  color: var(--gold-shimmer);
}

/* Mobile Hamburger Toggle */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: transparent;
  cursor: pointer;
  z-index: 1002;
  padding: 0;
}

.hamburger-line {
  width: 100%;
  height: 2.5px;
  background: var(--dark-green);
  border-radius: 2px;
  transition: all var(--transition-medium);
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(85vw, 420px);
  height: 100vh;
  background: rgba(0, 24, 20, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-left: 1px solid var(--border);
  padding: 120px 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-medium);
  z-index: 1001;
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
}

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

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 10, 8, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
  z-index: 1000;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}

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

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

.mobile-nav-contact {
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0.8rem;
}

/* --------------------------------------------------------------------------
   8. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 3rem;
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  background-color: var(--dark-green);
  background-image:
    linear-gradient(90deg, rgba(0, 20, 16, 0.96) 0%, rgba(0, 20, 16, 0.88) 32%, rgba(0, 20, 16, 0.55) 60%, rgba(0, 20, 16, 0.35) 100%),
    linear-gradient(0deg, rgba(0, 15, 12, 0.85) 0%, rgba(0, 15, 12, 0.1) 30%, rgba(0, 15, 12, 0.1) 70%, rgba(0, 15, 12, 0.85) 100%),
    url('../images/hero/hero_fmcg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  align-items: center;
  gap: 3.5rem;
  position: relative;
  z-index: 2;
}

.hero-grid-single {
  grid-template-columns: 1fr;
}

.hero-floating-badge-top-bg {
  position: absolute;
  top: 2rem;
  right: 3rem;
  z-index: 3;
}

@media (max-width: 768px) {
  .hero-floating-badge-top-bg {
    display: none;
  }
}

.hero-content {
  max-width: 640px;
}

.hero-badge-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(0, 61, 50, 0.5);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  margin-bottom: 1.5rem;
}

.hero-badge-location .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-light);
  animation: pulse-glow 2s infinite ease-in-out;
}

.hero-title {
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-description {
  font-size: 1.18rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

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

.hero-meta-strip {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-item .meta-val {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-light);
}

.meta-item .meta-lbl {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero Right Side Visual Composition */
.hero-visual-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-card {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow), 0 0 35px rgba(200, 164, 93, 0.2);
  background: var(--surface-card);
  backdrop-filter: blur(15px);
  animation: float-gentle 6s ease-in-out infinite alternate;
}

.hero-visual-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-visual-card:hover .hero-visual-img {
  transform: scale(1.04);
}

.hero-floating-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(0, 31, 26, 0.92);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), var(--gold-glow-sm);
  backdrop-filter: blur(12px);
  z-index: 3;
}

.floating-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-green);
  flex-shrink: 0;
}

.floating-badge-icon svg {
  width: 22px;
  height: 22px;
}

.floating-badge-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
}

.floating-badge-desc {
  font-size: 0.78rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-floating-badge-top {
  position: absolute;
  top: -20px;
  right: -15px;
  background: rgba(0, 31, 26, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  z-index: 3;
}

/* --------------------------------------------------------------------------
   9. TRUST STRIP SECTION
   -------------------------------------------------------------------------- */
.trust-strip-section {
  position: relative;
  z-index: 10;
  margin-top: -3.5rem;
  padding-bottom: 4rem;
}

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

.trust-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient-horizontal);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.trust-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: var(--surface-card-hover);
  box-shadow: var(--card-shadow-hover);
}

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

.trust-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: rgba(0, 76, 63, 0.4);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast);
}

.trust-card:hover .trust-icon-box {
  background: var(--gold-gradient);
  color: var(--dark-green);
  box-shadow: var(--gold-glow-sm);
}

.trust-icon-box svg {
  width: 28px;
  height: 28px;
}

.trust-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
  color: var(--white);
}

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

/* --------------------------------------------------------------------------
   10. ABOUT SECTION PREVIEW / TWO-COLUMN LAYOUT
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4.5rem;
  position: relative;
  z-index: 2;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.about-text-col p.lead {
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 500;
}

.about-visual-col {
  position: relative;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
}

.about-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-stats-badge {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: rgba(0, 31, 26, 0.95);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 20px 26px;
  box-shadow: var(--card-shadow-hover);
  backdrop-filter: blur(15px);
  text-align: left;
}

.about-stats-val {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.about-stats-lbl {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* --------------------------------------------------------------------------
   11. VISION & MISSION CARDS
   -------------------------------------------------------------------------- */
.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.vm-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: all var(--transition-medium);
  box-shadow: var(--card-shadow);
}

.vm-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(200, 164, 93, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.vm-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-light);
  box-shadow: var(--card-shadow-hover);
  background: var(--surface-card-hover);
}

.vm-icon-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.vm-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(0, 76, 63, 0.4);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.vm-card:hover .vm-icon {
  background: var(--gold-gradient);
  color: var(--dark-green);
  box-shadow: var(--gold-glow-sm);
}

.vm-icon svg {
  width: 32px;
  height: 32px;
}

.vm-title {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.vm-text {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--white);
}

/* --------------------------------------------------------------------------
   12. PRODUCTS & CATEGORIES
   -------------------------------------------------------------------------- */
.filter-tabs-wrapper {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

.filter-tab-btn {
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  background: rgba(0, 31, 26, 0.6);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.filter-tab-btn:hover {
  color: var(--white);
  border-color: var(--gold);
}

.filter-tab-btn.active {
  background: var(--gold-gradient);
  color: var(--dark-green);
  border-color: var(--gold-light);
  box-shadow: var(--gold-glow-sm);
}

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

.product-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: all var(--transition-medium);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
}

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

.product-img-wrap {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  background: #001713;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(0, 31, 26, 0.85);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

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

.product-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
}

.product-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

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

/* --------------------------------------------------------------------------
   13. WHO WE SERVE (CUSTOMER SEGMENTS)
   -------------------------------------------------------------------------- */
.customer-segments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  position: relative;
  z-index: 2;
}

.customer-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(16px);
  transition: all var(--transition-fast);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.customer-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-light);
  background: var(--surface-card-hover);
  box-shadow: var(--card-shadow-hover);
}

.customer-card-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(200, 164, 93, 0.12);
  line-height: 1;
  transition: color var(--transition-fast);
}

.customer-card:hover .customer-card-number {
  color: rgba(200, 164, 93, 0.3);
}

.customer-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(0, 76, 63, 0.4);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 2rem;
  transition: all var(--transition-fast);
}

.customer-card:hover .customer-icon {
  background: var(--gold-gradient);
  color: var(--dark-green);
  box-shadow: var(--gold-glow-sm);
}

.customer-icon svg {
  width: 28px;
  height: 28px;
}

.customer-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  line-height: 1.35;
}

.customer-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   14. WHY CHOOSE US (THE AGHP ADVANTAGE)
   -------------------------------------------------------------------------- */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.advantage-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.6rem;
  backdrop-filter: blur(16px);
  transition: all var(--transition-fast);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  position: relative;
}

.advantage-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  background: var(--surface-card-hover);
  box-shadow: var(--card-shadow-hover);
}

.advantage-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(0, 76, 63, 0.4);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast);
}

.advantage-card:hover .advantage-icon {
  background: var(--gold-gradient);
  color: var(--dark-green);
  box-shadow: var(--gold-glow-sm);
}

.advantage-icon svg {
  width: 24px;
  height: 24px;
}

.advantage-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.advantage-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   15. OUR STRENGTHS (CENTRAL AGHP HEXAGON ARCHITECTURE)
   -------------------------------------------------------------------------- */
.strengths-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Desktop Central Hexagon Layout */
.strengths-orbit-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  grid-template-rows: auto auto;
  gap: 2.5rem 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.strength-satellite-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.2rem 2rem;
  backdrop-filter: blur(16px);
  transition: all var(--transition-fast);
  box-shadow: var(--card-shadow);
}

.strength-satellite-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: var(--surface-card-hover);
  box-shadow: var(--card-shadow-hover);
}

.strength-card-tl {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.strength-card-tr {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.strength-card-bl {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.strength-card-br {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

/* Center Hexagon Hub */
.strength-center-hub {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.center-hexagon-badge {
  width: 220px;
  height: 240px;
  background: linear-gradient(135deg, #003d32 0%, #001f1a 100%);
  border: 2px solid var(--gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-shadow: 0 0 40px rgba(200, 164, 93, 0.35);
  position: relative;
  animation: pulse-border 4s ease-in-out infinite alternate;
}

.center-hexagon-badge::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px dashed var(--gold-light);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0.6;
}

.hub-logo-mark {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}

.hub-tagline {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}

.strength-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(0, 76, 63, 0.4);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.strength-satellite-card:hover .strength-icon {
  background: var(--gold-gradient);
  color: var(--dark-green);
  box-shadow: var(--gold-glow-sm);
}

.strength-icon svg {
  width: 24px;
  height: 24px;
}

.strength-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
  color: var(--white);
}

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

/* --------------------------------------------------------------------------
   16. UAE COVERAGE & INTERACTIVE MAP SECTION
   -------------------------------------------------------------------------- */
.coverage-layout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.map-container-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.uae-svg-map {
  width: 100%;
  height: auto;
  max-height: 480px;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
}

.map-location-pin {
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.map-location-pin:hover,
.map-location-pin.active {
  transform: scale(1.25);
}

.map-pin-pulse {
  animation: map-pulse 2s infinite ease-out;
  transform-origin: center;
}

.coverage-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.coverage-emirate-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.emirate-card-item {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.emirate-card-item:hover,
.emirate-card-item.active {
  border-color: var(--gold);
  background: var(--surface-card-hover);
  transform: translateX(6px);
  box-shadow: var(--gold-glow-sm);
}

.emirate-info-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.emirate-badge-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-gradient);
  box-shadow: 0 0 10px var(--gold);
}

.emirate-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

.emirate-role {
  font-size: 0.82rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   17. OUR PROMISE (COMMITMENT TO EXCELLENCE)
   -------------------------------------------------------------------------- */
.promise-banner-section {
  position: relative;
  background: linear-gradient(135deg, rgba(0, 61, 50, 0.9) 0%, rgba(0, 31, 26, 0.95) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(4rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.promise-content-wrap {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3.5rem auto;
  position: relative;
  z-index: 2;
}

.promise-lead-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--white);
  margin-top: 1.2rem;
}

.promise-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.promise-pillar-card {
  background: rgba(0, 31, 26, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(15px);
  transition: all var(--transition-fast);
}

.promise-pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-light);
  box-shadow: var(--card-shadow-hover);
}

.pillar-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: var(--gold-glow-sm);
}

.pillar-icon-box svg {
  width: 32px;
  height: 32px;
}

.pillar-title {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
  color: var(--white);
}

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

/* --------------------------------------------------------------------------
   18. CONTACT SECTION & INTERACTIVE FORM
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-details-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--card-shadow);
}

.contact-item-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 2rem;
}

.contact-item-row:last-child {
  margin-bottom: 0;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(0, 76, 63, 0.4);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
}

.contact-item-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.contact-item-val {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
}

.contact-form-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--card-shadow);
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.form-label span.req {
  color: var(--gold-light);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0, 26, 22, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--gold);
  background: rgba(0, 36, 30, 0.95);
  box-shadow: 0 0 15px rgba(200, 164, 93, 0.2);
}

.form-control.is-invalid {
  border-color: #e55353;
  background: rgba(45, 12, 12, 0.8);
}

.form-control.is-valid {
  border-color: #2eb85c;
}

.form-error-msg {
  font-size: 0.8rem;
  color: #ff7b7b;
  margin-top: 5px;
  display: none;
}

.form-control.is-invalid + .form-error-msg {
  display: block;
}

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

/* Success Modal Notification */
.form-notification-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 15, 12, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.form-notification-modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content-box {
  background: var(--dark-green);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  max-width: 520px;
  width: 90%;
  text-align: center;
  box-shadow: var(--card-shadow-hover), var(--gold-glow-lg);
  transform: scale(0.9);
  transition: transform var(--transition-medium);
}

.form-notification-modal.show .modal-content-box {
  transform: scale(1);
}

.modal-icon-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: var(--gold-glow-sm);
}

.modal-icon-circle svg {
  width: 40px;
  height: 40px;
}

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
.footer-main {
  background-color: #001512;
  border-top: 1px solid var(--border);
  padding-top: 5rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 10;
}

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

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-logo-img,
.footer-logo-svg {
  height: 90px;
  max-height: 100px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.7));
}

.footer-brand-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
}

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

.footer-link {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-link:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom-bar {
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-dim);
  font-size: 0.88rem;
}

/* --------------------------------------------------------------------------
   20. BACK TO TOP BUTTON
   -------------------------------------------------------------------------- */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-gradient);
  color: var(--dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5), var(--gold-glow-sm);
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all var(--transition-medium);
  border: 1px solid var(--gold-light);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--gold-glow-lg);
}

.back-to-top-btn svg {
  width: 22px;
  height: 22px;
}

/* --------------------------------------------------------------------------
   21. SCROLL REVEAL & CSS KEYFRAME ANIMATIONS
   -------------------------------------------------------------------------- */
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes float-gentle {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

@keyframes pulse-border {
  0% { border-color: var(--gold); box-shadow: 0 0 25px rgba(200, 164, 93, 0.25); }
  100% { border-color: var(--gold-light); box-shadow: 0 0 45px rgba(200, 164, 93, 0.5); }
}

@keyframes map-pulse {
  0% { r: 6; opacity: 1; }
  100% { r: 18; opacity: 0; }
}

/* --------------------------------------------------------------------------
   22. RESPONSIVE DESIGN & MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .customer-segments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .coverage-layout-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual-card {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-floating-badge {
    bottom: -15px;
    left: 10px;
  }

  .trust-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Strengths Stack on Tablet/Mobile */
  .strengths-orbit-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .strength-center-hub {
    order: -1;
    margin-bottom: 1.5rem;
  }

  .center-hexagon-badge {
    width: 200px;
    height: 220px;
  }

  .about-stats-badge {
    position: static;
    margin-top: 1.5rem;
    align-self: flex-start;
  }

  .hero-visual-img,
  .about-img-frame img {
    height: 360px;
  }
}

@media (max-width: 868px) {
  .nav-menu-desktop,
  .nav-cta-wrap .btn-header-cta {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .grid-2,
  .vision-mission-grid,
  .products-grid,
  .promise-pillars-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-height: 80px;
  }

  .trust-cards-grid,
  .customer-segments-grid,
  .advantages-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-meta-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .contact-form-card,
  .vm-card {
    padding: 2.2rem 1.5rem;
  }

}

/* --------------------------------------------------------------------------
   22b. MOBILE REFINEMENTS (PHONES & SMALL TABLETS)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-padding {
    padding-top: clamp(3rem, 10vw, 4.5rem);
    padding-bottom: clamp(3rem, 10vw, 4.5rem);
  }

  /* Nav / Header */
  .brand-logo-img,
  .brand-logo-svg {
    height: 56px;
    max-width: 190px;
  }

  :root {
    --nav-height: 78px;
  }

  .mobile-nav-drawer {
    padding: 100px 28px 40px;
    width: min(88vw, 380px);
  }

  .mobile-nav-link {
    font-size: 1.12rem;
  }

  /* Hero */
  .hero-section {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: 3.5rem;
  }

  .hero-description {
    font-size: 1.05rem;
  }

  .hero-badge-location {
    flex-wrap: wrap;
  }

  /* Product / About Images */
  .product-img-wrap {
    height: 260px;
  }

  .about-img-frame img {
    height: 300px;
  }

  .product-content {
    padding: 1.8rem;
  }

  /* Cards & Grids */
  .strengths-orbit-wrapper {
    padding: 0;
  }

  .center-hexagon-badge {
    width: 180px;
    height: 195px;
  }

  .vm-card,
  .contact-details-card {
    padding: 2.2rem 1.6rem;
  }

  .promise-pillars-grid {
    gap: 1.5rem;
  }

  .promise-pillar-card {
    padding: 2rem 1.5rem;
  }

  /* Coverage */
  .map-container-card {
    padding: 1.5rem;
  }

  .emirate-card-item {
    padding: 1rem 1.2rem;
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Footer */
  .footer-main {
    padding-top: 3.5rem;
  }

  .footer-grid {
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  /* Modal */
  .modal-content-box {
    padding: 2.5rem 1.6rem;
  }

  /* Back to top */
  .back-to-top-btn {
    bottom: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: clamp(1.9rem, 8vw, 2.3rem);
  }

  h2 {
    font-size: clamp(1.55rem, 7vw, 1.9rem);
  }

  .btn {
    padding: 12px 22px;
    font-size: 0.85rem;
  }

  .btn-lg {
    padding: 15px 26px;
    width: 100%;
  }

  .brand-logo-img,
  .brand-logo-svg {
    height: 46px;
    max-width: 155px;
  }

  :root {
    --nav-height: 68px;
  }

  .nav-cta-wrap {
    gap: 0.6rem;
  }

  .hero-meta-strip {
    gap: 0.7rem;
  }

  .trust-card,
  .customer-card,
  .advantage-card,
  .strength-satellite-card {
    padding: 1.6rem 1.3rem;
  }

  .customer-card-number {
    font-size: 2rem;
  }

  .vm-card,
  .contact-details-card,
  .contact-form-card {
    padding: 1.8rem 1.3rem;
  }

  .vm-title {
    font-size: 1.4rem;
  }

  .filter-tab-btn {
    padding: 9px 18px;
    font-size: 0.8rem;
  }

  .center-hexagon-badge {
    width: 155px;
    height: 170px;
  }

  .hub-logo-mark {
    font-size: 1.6rem;
  }

  .about-stats-val {
    font-size: 1.8rem;
  }

  .footer-logo-img,
  .footer-logo-svg {
    height: 68px;
  }

  .product-img-wrap {
    height: 220px;
  }

  .about-img-frame img {
    height: 240px;
  }

  .modal-content-box {
    padding: 2.2rem 1.2rem;
  }

  .modal-icon-circle {
    width: 60px;
    height: 60px;
  }
}

/* --------------------------------------------------------------------------
   23. ACCESSIBILITY & PREFERS REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-visual-card {
    animation: none !important;
  }
}
