/* ==========================================================================
   MY EXPORT WORLD - Premium Design System (style.css)
   Colors: Inspired by the Blue and Red of the brand logo
   Typography: Outfit (Headings) & Inter (Body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- Brand Design Tokens --- */
:root {
  /* Color System */
  --primary-blue: hsl(224, 76%, 35%);       /* #1349A0 - Deep Royal Cobalt */
  --primary-blue-light: hsl(224, 76%, 46%);
  --primary-blue-dark: hsl(224, 80%, 14%);   /* #05193B */
  --accent-red: hsl(356, 79%, 48%);         /* #D41A2B - Deep Vibrant Crimson */
  --accent-red-hover: hsl(356, 79%, 40%);
  --accent-yellow: hsl(42, 100%, 50%);       /* #FFAA00 - Warm Rich Golden */
  
  /* Neutral Palette */
  --bg-main: hsl(215, 20%, 98%);             /* Ice-cool soft slate backdrop */
  --bg-card: hsl(0, 0%, 100%);
  --text-dark: hsl(224, 45%, 16%);           /* Deep high-contrast Slate Navy */
  --text-muted: hsl(220, 12%, 52%);          /* Neutral grey subtext */
  --text-light: hsl(0, 0%, 98%);
  --border-light: hsl(215, 16%, 90%);
  
  /* Status Colors */
  --success: hsl(150, 84%, 38%);             /* Soft vibrant emerald green */
  --warning: hsl(38, 100%, 50%);
  
  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Elevation & Shadows */
  --shadow-sm: 0 2px 4px rgba(11, 60, 155, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(11, 60, 155, 0.08), 0 8px 16px -6px rgba(11, 60, 155, 0.05);
  --shadow-lg: 0 20px 35px -8px rgba(11, 60, 155, 0.12), 0 12px 20px -8px rgba(11, 60, 155, 0.08);
  --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  
  /* Layout & Transitions */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --max-width: 1280px;
}

/* --- Base Styles & Reset --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

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

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

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

/* --- Layout Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

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

.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* --- Scrollbar Styling --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: hsl(220, 30%, 80%);
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-main);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-blue-light);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.header.scrolled {
  height: 75px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

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

/* Brand Logo */
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
  height: 50px;
}

.logo-text {
  font-family: var(--font-heading);
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.logo-subtitle {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent-red);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary-blue-dark);
  position: relative;
  padding: 0.4rem 0.2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.5px;
  background-color: var(--accent-red);
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
}

.nav-link.active {
  color: var(--primary-blue);
}

.nav-link.active::after {
  width: 80%;
}

.nav-link:hover {
  color: var(--accent-red);
}

.nav-link:hover::after {
  width: 80%;
}

/* Nav Actions (CTA Button) */
.nav-cta {
  background: linear-gradient(135deg, var(--accent-red), hsl(355, 77%, 55%));
  color: var(--text-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(214, 28, 44, 0.2);
  transition: var(--transition-smooth);
  cursor: pointer;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214, 28, 44, 0.35);
  background: linear-gradient(135deg, hsl(355, 77%, 55%), var(--accent-red));
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.mobile-nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--primary-blue-dark);
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
}

.mobile-nav-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-nav-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


/* ==========================================================================
   Page Transitions & SPA Container
   ========================================================================== */
.main-content {
  margin-top: 90px;
  min-height: calc(100vh - 90px);
  position: relative;
}

/* Views base styling */
.view-section {
  display: none; /* Controlled by Javascript */
  animation: pageFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.view-section.active {
  display: block;
}

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

/* ==========================================================================
   Home View
   ========================================================================== */
/* Hero Section */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 30% 50%, #0c1e3f 0%, #05132d 100%);
  padding: 8rem 0;
  overflow: hidden;
  color: #ffffff;
}

.hero-section .container {
  position: relative;
  z-index: 5;
}

/* Torn Paper Edges separating white background sections */
.hero-torn-edge {
  position: absolute;
  left: 0;
  width: 100%;
  height: 40px;
  z-index: 10;
  pointer-events: none;
}

.hero-torn-edge.top {
  top: -1px;
}

.hero-torn-edge.bottom {
  bottom: -1px;
}

.hero-torn-edge svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Premium Gold Button Styling (Kaayra View Sourcing Style) */
.btn-gold {
  background: linear-gradient(135deg, var(--accent-yellow), #E5A93B) !important;
  color: var(--primary-blue-dark) !important;
  box-shadow: 0 8px 25px rgba(229, 169, 59, 0.35) !important;
  border: none !important;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #E5A93B, var(--accent-yellow)) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(229, 169, 59, 0.5) !important;
}

/* Premium Glassmorphism White Outline Button */
.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important; /* Pure white text */
  border: 2px solid rgba(255, 255, 255, 0.35) !important; /* White transparent border */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15) !important;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

/* Live-Animated Sourcing World Map Overlay Styles */
.hero-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none; /* Let clicks pass through to buttons/links */
  opacity: 0.95;
}

.hero-map-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sourcing & Export Paths */
.trade-route {
  fill: none;
  stroke: url(#indiaSourcingGlow);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 6 8;
  opacity: 0.8;
  animation: tradeFlow 30s linear infinite;
  filter: drop-shadow(0 2px 4px rgba(19, 73, 160, 0.15));
}

@keyframes tradeFlow {
  to {
    stroke-dashoffset: -1000;
  }
}

/* Custom specific path flow speeds & stroke widths */
.route-usa { stroke-width: 2.5; animation-duration: 25s; }
.route-europe { stroke-width: 2.4; animation-duration: 28s; }
.route-dubai { stroke-width: 2.2; animation-duration: 18s; }
.route-singapore { stroke-width: 2.3; animation-duration: 22s; }
.route-africa { stroke-width: 2.2; animation-duration: 24s; }

/* Coordinate Markers & Pulsing Radars */
.marker-core {
  fill: var(--primary-blue);
  stroke: #ffffff;
  stroke-width: 1.5;
  filter: drop-shadow(0 2px 4px rgba(11, 60, 155, 0.2));
}

.marker-core.origin {
  fill: var(--accent-red);
  stroke: #ffffff;
  stroke-width: 2;
  filter: drop-shadow(0 2px 6px rgba(214, 28, 44, 0.4));
}

.marker-ring {
  fill: none;
  stroke: var(--primary-blue);
  stroke-width: 1.2;
  transform-origin: center;
  opacity: 0;
  animation: glowingRadar 3s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.marker-ring.origin {
  stroke: var(--accent-red);
}

.marker-ring.ring-1 {
  animation-delay: 0s;
}

.marker-ring.ring-2 {
  animation-delay: 1.5s;
}

@keyframes glowingRadar {
  0% {
    transform: scale(0.3);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

/* India Flag Shape Animation & Pulse */
.india-flag-map-shape {
  transform-origin: 600px 280px;
  animation: indiaPulse 4s ease-in-out infinite;
  filter: drop-shadow(0 2px 8px rgba(255, 153, 51, 0.55)) drop-shadow(0 4px 20px rgba(19, 73, 160, 0.3));
}

@keyframes indiaPulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 2px 8px rgba(255, 153, 51, 0.55)) drop-shadow(0 4px 20px rgba(19, 73, 160, 0.3));
  }
  50% {
    transform: scale(1.06);
    filter: drop-shadow(0 4px 15px rgba(255, 153, 51, 0.85)) drop-shadow(0 8px 30px rgba(19, 73, 160, 0.55));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 2px 8px rgba(255, 153, 51, 0.55)) drop-shadow(0 4px 20px rgba(19, 73, 160, 0.3));
  }
}

/* High-Tech Marker Text Labels */
.marker-label {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 800;
  fill: #ffffff; /* White labels for high-contrast dark theme */
  letter-spacing: 1px;
  opacity: 0.9;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 -1px 2px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.marker-label.origin {
  font-size: 11px;
  fill: #ffffff; /* White text for origin too */
  font-weight: 900;
  text-shadow: 0 2px 5px rgba(214, 28, 44, 0.95), 0 -1px 2px rgba(0, 0, 0, 0.7);
}

/* Animated Flying Planes */
.flying-plane {
  transform-box: view-box;
  transform-origin: center;
  offset-rotate: auto;
  opacity: 0.95;
  filter: drop-shadow(0 2px 4px rgba(214, 28, 44, 0.35));
}

/* Plane Flight Path Mapping (Bezier Paths mapping) */
.plane-usa {
  offset-path: path('M 600 280 Q 380 140 180 190');
  animation: flyPlaneUSA 12s linear infinite;
  animation-delay: 1s;
}
.plane-europe {
  offset-path: path('M 600 280 Q 530 180 480 160');
  animation: flyPlaneEurope 9s linear infinite;
  animation-delay: 3s;
}
.plane-dubai {
  offset-path: path('M 600 280 Q 570 255 540 240');
  animation: flyPlaneDubai 7s linear infinite;
  animation-delay: 0.5s;
}
.plane-singapore {
  offset-path: path('M 600 280 Q 660 300 720 330');
  animation: flyPlaneSingapore 8s linear infinite;
  animation-delay: 4s;
}
.plane-africa {
  offset-path: path('M 600 280 Q 550 310 510 350');
  animation: flyPlaneAfrica 8.5s linear infinite;
  animation-delay: 2s;
}

@keyframes flyPlaneUSA {
  0% { offset-distance: 0%; opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

@keyframes flyPlaneEurope {
  0% { offset-distance: 0%; opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

@keyframes flyPlaneDubai {
  0% { offset-distance: 0%; opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

@keyframes flyPlaneSingapore {
  0% { offset-distance: 0%; opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

@keyframes flyPlaneAfrica {
  0% { offset-distance: 0%; opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.08); /* Dark glassmorphism badge */
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(214, 28, 44, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(214, 28, 44, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(214, 28, 44, 0); }
}

.hero-title {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #ffffff; /* White title for deep contrast */
}

.hero-title span {
  background: linear-gradient(135deg, hsl(42, 100%, 65%), var(--accent-red)); /* Beautiful warm gold to red span gradient */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8); /* Light-gray description */
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
  color: var(--text-light);
  box-shadow: 0 8px 25px rgba(11, 60, 155, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(11, 60, 155, 0.35);
  background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-blue));
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-blue-dark);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background-color: rgba(11, 60, 155, 0.04);
  transform: translateY(-3px);
}

/* Card Mockup Showcase (Right Side of Hero) */
.hero-showcase {
  position: relative;
  width: 100%;
  height: 480px; /* High-end dashboard card dimensions */
  background-image: url('images/logo.png');
  background-size: 75%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), inset 0 0 30px rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.4);
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.9); /* Clean high-contrast ice-white glassmorphism */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroLogoFloat 6s infinite ease-in-out; /* Premium gentle hover float */
}

@keyframes heroLogoFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

@media (max-width: 991px) {
  .hero-showcase {
    height: 380px;
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-showcase {
    height: 280px;
  }
}

/* Pillars Section */
.pillars-section {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-header {
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-red);
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue-dark);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 1rem;
}

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

.pillar-card {
  background-color: var(--bg-main);
  padding: 3.5rem 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-blue);
  transition: var(--transition-smooth);
}

.pillar-card.accent::before {
  background-color: var(--accent-red);
}

.pillar-card.gold::before {
  background-color: var(--accent-yellow);
}

.pillar-card:hover {
  transform: translateY(-8px);
  background-color: #ffffff;
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 60, 155, 0.1);
}

.pillar-card:hover::before {
  height: 8px;
}

.pillar-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--primary-blue);
  background-color: rgba(11, 60, 155, 0.08);
}

.pillar-card.accent .pillar-icon-wrapper {
  color: var(--accent-red);
  background-color: rgba(214, 28, 44, 0.08);
}

.pillar-card.gold .pillar-icon-wrapper {
  color: var(--accent-yellow);
  background-color: rgba(255, 168, 0, 0.08);
}

.pillar-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

/* Vision & Mission Section */
.vision-mission-section {
  background: linear-gradient(135deg, var(--primary-blue-dark), hsl(218, 86%, 10%));
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.vision-mission-section::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(214, 28, 44, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.vision-mission-section .section-title {
  color: #ffffff;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  margin-top: 2rem;
}

.vm-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 3.5rem;
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
}

.vm-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vm-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--accent-red);
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.vm-card.vision .vm-icon-wrapper {
  background-color: var(--primary-blue);
}

.vm-card-title {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.vm-card-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.vm-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.vm-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
  color: #ffffff;
  font-size: 0.95rem;
}

.vm-bullet-item i {
  color: var(--accent-red);
  font-size: 1.1rem;
}

.vm-card.vision .vm-bullet-item i {
  color: var(--primary-blue-light);
}

/* Info Stats Banner */
.stats-banner {
  background: #ffffff;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number span {
  color: var(--accent-red);
}

.stat-label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Product View
   ========================================================================== */
.product-hero {
  background: linear-gradient(185deg, rgba(11, 60, 155, 0.05) 0%, transparent 60%), #ffffff;
  padding: 5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

/* Navigation breadcrumbs for category hierarchy */
.category-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: var(--bg-main);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  margin-top: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

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

.breadcrumb-item.active {
  color: var(--accent-red);
}

.breadcrumb-separator {
  color: var(--border-light);
  font-weight: 300;
}

/* Custom breadcrumb helpers */
.cursor-pointer {
  cursor: pointer;
}
.cursor-pointer:hover {
  color: var(--accent-red);
  text-decoration: underline;
}

/* Generic utility helper */
.hidden {
  display: none !important;
}

/* Catalog Levels Base Animation */
.catalog-level {
  animation: catalogSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* LEVEL 1: Category Showcase Grid */
.category-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 1rem;
}

.category-showcase-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  padding: 4rem 3rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.category-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--border-light);
  transition: var(--transition-smooth);
}

.category-showcase-card.active::before {
  background-color: var(--primary-blue);
}

.category-showcase-card.active:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 60, 155, 0.15);
}

.category-showcase-card.locked {
  background-color: rgba(220, 225, 230, 0.3);
  border-color: var(--border-light);
  box-shadow: none;
  opacity: 0.8;
}

.category-showcase-card.locked::before {
  background-color: var(--text-muted);
}

.cat-card-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background-color: rgba(11, 60, 155, 0.06);
  color: var(--primary-blue);
  font-size: 2.5rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.category-showcase-card.active:hover .cat-card-icon-wrapper {
  background-color: var(--primary-blue);
  color: #ffffff;
  transform: scale(1.08) rotate(3deg);
}

.category-showcase-card.locked .cat-card-icon-wrapper {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--text-muted);
}

.cat-card-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cat-card-badge {
  display: inline-block;
  align-self: flex-start;
  background-color: rgba(11, 60, 155, 0.08);
  color: var(--primary-blue);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.8rem;
}

.cat-card-badge.locked {
  background-color: rgba(0,0,0,0.06);
  color: var(--text-muted);
}

.cat-card-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-blue-dark);
  margin-bottom: 0.8rem;
}

.category-showcase-card.locked .cat-card-title {
  color: var(--text-muted);
}

.cat-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.category-showcase-card.locked .cat-card-desc {
  color: hsl(220, 10%, 60%);
}

.cat-card-action {
  align-self: flex-start;
}

/* LEVEL 2: Commodity Spotlight Cards */
.catalog-navigation-bar {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 2.5rem;
}

.btn-back {
  background-color: #ffffff;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-back i {
  transition: var(--transition-smooth);
}

.btn-back:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

.commodities-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.commodity-spotlight-card {
  border-radius: var(--radius-lg);
  padding: 4rem 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.commodity-spotlight-card.gold {
  background: linear-gradient(135deg, hsl(40, 100%, 97%), hsl(45, 100%, 94%));
  border: 1px solid rgba(255, 168, 0, 0.25);
}

.commodity-spotlight-card.green {
  background: linear-gradient(135deg, hsl(150, 84%, 97%), hsl(155, 84%, 94%));
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.commodity-spotlight-card.amber {
  background: linear-gradient(135deg, hsl(28, 100%, 97%), hsl(32, 100%, 94%));
  border: 1px solid rgba(214, 110, 28, 0.25);
}

.commodity-spotlight-card.red {
  background: linear-gradient(135deg, hsl(356, 79%, 97%), hsl(356, 79%, 94%));
  border: 1px solid rgba(212, 26, 43, 0.25);
}

.spotlight-bg-gradient {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.15;
}

.commodity-spotlight-card.gold .spotlight-bg-gradient {
  background: radial-gradient(circle, var(--accent-yellow) 0%, transparent 70%);
}

.commodity-spotlight-card.green .spotlight-bg-gradient {
  background: radial-gradient(circle, var(--success) 0%, transparent 70%);
}

.commodity-spotlight-card.amber .spotlight-bg-gradient {
  background: radial-gradient(circle, hsl(28, 100%, 50%) 0%, transparent 70%);
}

.commodity-spotlight-card.red .spotlight-bg-gradient {
  background: radial-gradient(circle, var(--accent-red) 0%, transparent 70%);
}

.spotlight-content {
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.spotlight-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
}

.commodity-spotlight-card.gold .spotlight-tag { color: hsl(35, 90%, 40%); }
.commodity-spotlight-card.green .spotlight-tag { color: hsl(150, 84%, 30%); }
.commodity-spotlight-card.amber .spotlight-tag { color: hsl(28, 90%, 40%); }
.commodity-spotlight-card.red .spotlight-tag { color: hsl(356, 79%, 40%); }

.spotlight-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.commodity-spotlight-card.gold .spotlight-title { color: hsl(35, 90%, 25%); }
.commodity-spotlight-card.green .spotlight-title { color: hsl(150, 84%, 20%); }
.commodity-spotlight-card.amber .spotlight-title { color: hsl(28, 90%, 25%); }
.commodity-spotlight-card.red .spotlight-title { color: hsl(356, 79%, 25%); }

.spotlight-desc {
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.spotlight-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.spotlight-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.commodity-spotlight-card.gold .spotlight-features li { color: hsl(35, 90%, 25%); }
.commodity-spotlight-card.gold .spotlight-features li i { color: var(--accent-yellow); }

.commodity-spotlight-card.green .spotlight-features li { color: hsl(150, 84%, 20%); }
.commodity-spotlight-card.green .spotlight-features li i { color: var(--success); }

.commodity-spotlight-card.amber .spotlight-features li { color: hsl(28, 90%, 25%); }
.commodity-spotlight-card.amber .spotlight-features li i { color: hsl(28, 100%, 50%); }

.commodity-spotlight-card.red .spotlight-features li { color: hsl(356, 79%, 25%); }
.commodity-spotlight-card.red .spotlight-features li i { color: var(--accent-red); }

.spotlight-action {
  align-self: flex-start;
}

/* LEVEL 3: Sub-products layout toggle wrapper */
.products-section {
  background-color: var(--bg-main);
}

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

.sub-products-grid.hidden {
  display: none !important;
}

@media (max-width: 1024px) {
  .category-showcase-grid, .commodities-spotlight-grid, .sub-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .category-showcase-grid, .commodities-spotlight-grid, .sub-products-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .category-showcase-card, .commodity-spotlight-card {
    padding: 3rem 2rem;
    flex-direction: column;
    gap: 1.5rem;
  }
  .commodity-spotlight-card .spotlight-title {
    font-size: 1.8rem;
  }
}

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

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 60, 155, 0.12);
}

.product-img-wrapper {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #f0f3f6;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.product-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background-color: var(--primary-blue-dark);
  color: var(--text-light);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  text-transform: uppercase;
}

.product-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.hs-code-tag {
  display: inline-block;
  align-self: flex-start;
  background-color: rgba(214, 28, 44, 0.08);
  color: var(--accent-red);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}

.product-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary-blue-dark);
  margin-bottom: 0.8rem;
}

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

/* Custom specs table */
.product-specs {
  list-style: none;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.spec-name {
  color: var(--text-muted);
  font-weight: 500;
}

.spec-value {
  color: var(--text-dark);
  font-weight: 700;
}

.product-actions {
  display: flex;
  gap: 0.8rem;
}

.product-actions .btn {
  padding: 0.8rem 1.2rem;
  font-size: 0.9rem;
  flex-grow: 1;
  justify-content: center;
}

/* ==========================================================================
   About Us View
   ========================================================================== */
.about-intro-section {
  background-color: var(--bg-card);
}

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

.about-narrative h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.about-narrative p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Partner Profiles Section */
.partners-section {
  background-color: var(--bg-main);
  border-top: 1px solid var(--border-light);
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.partner-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 60, 155, 0.12);
}

.partner-img-container {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 350px;
}

.partner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.partner-card:hover .partner-img {
  transform: scale(1.05);
}

.partner-role-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background-color: var(--accent-red);
  color: var(--text-light);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  text-transform: uppercase;
}

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

.partner-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-blue-dark);
  margin-bottom: 0.2rem;
}

.partner-title {
  color: var(--primary-blue);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.partner-bio {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.partner-contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.partner-contact-item i {
  color: var(--accent-red);
  font-size: 1rem;
}

.partner-contact-item a:hover {
  color: var(--accent-red);
}

/* Strategic Advantage Callout */
.advantage-section {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  color: var(--text-light);
}

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

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.advantage-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 2.2rem;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.advantage-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.advantage-title {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.advantage-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ==========================================================================
   Contact Us View
   ========================================================================== */
.contact-section {
  background-color: var(--bg-card);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: stretch;
}

/* Contact Info Details Pane */
.contact-info-pane {
  background: linear-gradient(135deg, var(--primary-blue-dark), hsl(218, 86%, 10%));
  color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 4rem 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-pane::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(214, 28, 44, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.contact-pane-title {
  font-size: 2.2rem;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-pane-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  list-style: none;
  margin-bottom: 3.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--accent-red);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-detail-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.contact-detail-content p, .contact-detail-content a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.contact-detail-content a:hover {
  color: var(--accent-red);
}

.contact-socials-wrapper h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.contact-socials {
  display: flex;
  gap: 1rem;
}

.social-circle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.social-circle-btn:hover {
  background-color: var(--accent-red);
  transform: translateY(-3px);
}

/* Call-to-Actions (Quick Contact) Panel */
.contact-cta-pane {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
}

.contact-cta-intro {
  margin-bottom: 2.5rem;
}

.contact-cta-intro h3 {
  font-size: 1.8rem;
  color: var(--primary-blue-dark);
  margin-bottom: 0.8rem;
}

.contact-cta-intro p {
  color: var(--text-muted);
}

.cta-action-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.cta-action-card {
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.cta-action-card:hover {
  transform: translateY(-5px);
  background-color: #ffffff;
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 60, 155, 0.1);
}

.cta-action-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cta-action-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.8rem;
  background-color: rgba(16, 185, 129, 0.08);
  color: var(--success);
}

.cta-action-card.phone .cta-action-icon {
  background-color: rgba(11, 60, 155, 0.08);
  color: var(--primary-blue);
}

.cta-action-text h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.cta-action-text p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.cta-btn-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cta-action-card .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-action-card .btn-whatsapp {
  background-color: var(--success);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.cta-action-card .btn-whatsapp:hover {
  background-color: hsl(150, 84%, 32%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}

.cta-action-card .btn-phone {
  background-color: var(--primary-blue);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(11, 60, 155, 0.2);
}

.cta-action-card .btn-phone:hover {
  background-color: var(--primary-blue-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(11, 60, 155, 0.35);
}

/* ==========================================================================
   Inquiry Form View
   ========================================================================== */
.inquiry-view-section {
  background-color: var(--bg-main);
}

.inquiry-card-wrapper {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
}

.inquiry-left-accent {
  background: linear-gradient(145deg, var(--primary-blue-dark), var(--primary-blue));
  color: var(--text-light);
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.inquiry-left-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(214, 28, 44, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.inquiry-accent-title {
  font-size: 2rem;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.2;
}

.inquiry-accent-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 1rem;
}

.inquiry-accent-footer {
  margin-top: 4rem;
}

.inquiry-accent-trust-tag {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.inquiry-accent-trust-tag i {
  color: var(--accent-yellow);
}

.inquiry-form-container {
  padding: 3.5rem 3rem;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.inquiry-form-container h3 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
  color: var(--primary-blue-dark);
}

.inquiry-form-container p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

/* Custom Inquiry Form Grid */
.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-label span {
  color: var(--accent-red);
}

.form-input, .form-select, .form-textarea {
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.form-select {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.form-input::placeholder, .form-textarea::placeholder {
  color: hsl(220, 10%, 65%);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary-blue-light);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(11, 60, 155, 0.12);
}

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

.form-submit-wrapper {
  grid-column: span 2;
  margin-top: 1rem;
}

.form-submit-wrapper .btn {
  width: 100%;
  justify-content: center;
  padding: 1.1rem;
  font-size: 1rem;
}

/* Form Success & Errors State */
.inquiry-success-view {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
  animation: pageFadeIn 0.5s ease forwards;
}

.success-icon-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success);
  font-size: 2.5rem;
  margin: 0 auto 2rem auto;
}

.success-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-blue-dark);
  margin-bottom: 1rem;
}

.success-desc {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2.5rem auto;
}



/* ==========================================================================
   Scrolling Certificate Marquee (Home Page Banner)
   ========================================================================== */
.marquee-section {
  background-color: #ffffff;
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.marquee-header {
  margin-bottom: 1.5rem;
}

.marquee-subtitle {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.marquee-subtitle::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-red);
  border-radius: var(--radius-full);
}

.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  padding: 1rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeContinuous 30s linear infinite;
  gap: 4.5rem;
  align-items: center;
}

.marquee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  flex-shrink: 0;
}

.marquee-item svg {
  width: 90px;
  height: 90px;
  transition: var(--transition-smooth);
  filter: none;
  opacity: 0.9;
}

.marquee-item:hover svg {
  filter: none;
  opacity: 1;
  transform: scale(1.15);
}

.marquee-item-name {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(6px);
  transition: var(--transition-smooth);
}

.marquee-item:hover .marquee-item-name {
  opacity: 1;
  transform: translateY(0);
  color: var(--primary-blue-light);
}

@keyframes marqueeContinuous {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Translate exactly half of the total track width (since the track contains duplicated items) */
    transform: translateX(-50%);
  }
}

/* Pause scroll on hover to let users interact or read */
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

/* ==========================================================================
   Certificates & Licenses View
   ========================================================================== */
.certificates-hero {
  background: linear-gradient(185deg, rgba(11, 60, 155, 0.05) 0%, transparent 60%), #ffffff;
  padding: 5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.certificates-section {
  background-color: var(--bg-main);
}

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

.cert-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 60, 155, 0.12);
}

/* Dynamic color stripes based on authority type */
.cert-top-stripe {
  height: 6px;
  width: 100%;
}
.cert-top-stripe.blue { background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light)); }
.cert-top-stripe.red { background: linear-gradient(90deg, var(--accent-red), hsl(355, 77%, 60%)); }
.cert-top-stripe.gold { background: linear-gradient(90deg, var(--accent-yellow), hsl(40, 100%, 65%)); }

.cert-body {
  padding: 2.5rem 2rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-grow: 1;
}

.cert-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  font-size: 1.8rem;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}
.cert-icon-wrapper.blue { color: var(--primary-blue); background-color: rgba(11, 60, 155, 0.08); }
.cert-icon-wrapper.red { color: var(--accent-red); background-color: rgba(214, 28, 44, 0.08); }
.cert-icon-wrapper.gold { color: var(--accent-yellow); background-color: rgba(255, 168, 0, 0.08); }

.cert-card:hover .cert-icon-wrapper {
  transform: scale(1.08) rotate(3deg);
}

.cert-content {
  display: flex;
  flex-direction: column;
}

.cert-authority {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.cert-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-blue-dark);
  margin-bottom: 0.8rem;
}

.cert-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.cert-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-top: 1px dashed var(--border-light);
  font-size: 0.85rem;
}

.cert-label {
  color: var(--text-muted);
  font-weight: 500;
}

.cert-value {
  color: var(--text-dark);
  font-weight: 700;
}

.cert-value.active {
  color: var(--success);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.status-dot {
  width: 7px;
  height: 7px;
  background-color: var(--success);
  border-radius: 50%;
  display: inline-block;
  animation: pulseGreen 2.2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.cert-footer {
  padding: 0 2rem 2.5rem 2rem;
}

.btn-cert {
  width: 100%;
  justify-content: center;
  background-color: transparent;
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
  padding: 0.8rem 1.5rem;
  font-size: 0.88rem;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
}

.btn-cert:hover {
  background-color: var(--primary-blue);
  color: var(--text-light);
  box-shadow: 0 5px 15px rgba(11, 60, 155, 0.15);
  transform: translateY(-2px);
}

/* Trust Banner style */
.trust-banner {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  color: var(--text-light);
}

.trust-banner .container {
  max-width: 850px;
}

.trust-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
}

.trust-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: 1rem;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer {
  background-color: var(--primary-blue-dark);
  color: var(--text-light);
  border-top: 4px solid var(--accent-red);
  padding: 5rem 0 2rem 0;
  font-size: 0.9rem;
}

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

.footer-brand h4 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-brand h4 span {
  color: var(--accent-red);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 1.8rem;
  max-width: 320px;
}

.footer-links-col h5, .footer-contact-col h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links-col h5::after, .footer-contact-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--accent-red);
}

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

.footer-link-item {
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: var(--transition-fast);
}

.footer-link-item:hover {
  color: var(--accent-red);
  transform: translateX(5px);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item i {
  color: var(--accent-red);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.footer-contact-item a:hover {
  color: var(--accent-red);
}

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

.footer-copyright strong {
  color: rgba(255, 255, 255, 0.7);
}

.footer-admin-trigger {
  cursor: pointer;
  transition: var(--transition-fast);
}

.footer-admin-trigger:hover {
  color: var(--accent-yellow);
}

/* ==========================================================================
   Global Micro-Animations & Floating Widget
   ========================================================================== */
.floating-cta-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
  animation: floatBubble 4s infinite ease-in-out;
}

.float-bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
}

.float-bubble.float-whatsapp {
  background-color: var(--success);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.float-bubble.float-whatsapp:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: hsl(150, 84%, 32%);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.55);
}

.float-bubble.float-call {
  background-color: var(--primary-blue);
  box-shadow: 0 6px 20px rgba(11, 60, 155, 0.35);
}

.float-bubble.float-call:hover {
  transform: scale(1.1) rotate(-5deg);
  background-color: var(--primary-blue-light);
  box-shadow: 0 8px 25px rgba(11, 60, 155, 0.5);
}

@keyframes floatBubble {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

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

.toast {
  background-color: #ffffff;
  color: var(--text-dark);
  border-left: 4px solid var(--primary-blue);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 300px;
  animation: toastSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast.success {
  border-left-color: var(--success);
}

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

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

/* ==========================================================================
   Home Page Certificates Trust Strip
   ========================================================================== */
.home-cert-strip {
  background: linear-gradient(135deg, #001f3f 0%, #003366 50%, #001a33 100%);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.home-cert-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(200, 16, 46, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 30%, rgba(212, 147, 13, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.home-cert-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.home-cert-header .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.home-cert-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 0.5rem;
  letter-spacing: 0.5px;
}

.home-cert-marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.home-cert-track {
  display: flex;
  gap: 3rem;
  animation: certMarqueeScroll 25s linear infinite;
  width: max-content;
}

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

.home-cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  min-width: 110px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.home-cert-badge:hover {
  transform: translateY(-4px);
}

.home-cert-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease;
}

.home-cert-icon.blue {
  background: linear-gradient(135deg, #1a5276, #2980b9);
}

.home-cert-icon.red {
  background: linear-gradient(135deg, #922b21, #c0392b);
}

.home-cert-icon.gold {
  background: linear-gradient(135deg, #9a7d0a, #d4ac0d);
}

.home-cert-badge:hover .home-cert-icon {
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.15);
}

.home-cert-name {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .home-cert-strip {
    padding: 2.5rem 0 2rem;
  }
  .home-cert-title {
    font-size: 1.2rem;
  }
  .home-cert-icon {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }
  .home-cert-name {
    font-size: 0.68rem;
  }
  .home-cert-track {
    gap: 2rem;
  }
}

/* ==========================================================================
   Premium Animated Stats Counter Section
   ==========================================================================*/
.stats-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e8ecf4 50%, #f0f4fa 100%);
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(0, 51, 102, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(200, 16, 46, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

.stats-counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-counter-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem 2rem;
  border: 1px solid rgba(0, 51, 102, 0.06);
  box-shadow: 0 4px 24px rgba(0, 51, 102, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}

.stat-counter-card.animated-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stat-counter-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 51, 102, 0.12);
}

.stat-counter-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 70%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-red));
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.4s ease 0.3s;
}

.stat-counter-card.animated-in::after {
  opacity: 1;
}

.stat-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.4rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  box-shadow: 0 4px 14px rgba(0, 51, 102, 0.25);
}

.stat-icon-circle.red {
  background: linear-gradient(135deg, var(--accent-red), #9a0824);
}

.stat-icon-circle.gold {
  background: linear-gradient(135deg, #d4930d, #a67b00);
}

.stat-number-wrapper {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.8rem;
  color: var(--primary-blue);
}

.stat-number-wrapper .stat-suffix {
  color: var(--accent-red);
  font-weight: 700;
}

.stat-label-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue-dark);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

@media (max-width: 1024px) {
  .stats-counters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .stats-counters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .stat-number-wrapper {
    font-size: 2.6rem;
  }
  .stat-counter-card {
    padding: 1.5rem 1rem 1.2rem;
  }
  .stat-icon-circle {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  .stat-label-text {
    font-size: 0.72rem;
    letter-spacing: 0.8px;
  }
}

/* ==========================================================================
   Trade Insights Daily Blog Styles
   ========================================================================== */
.blog-filter-toolbar {
  margin-top: 1rem;
}

.blog-filter-btn {
  background: var(--bg-card);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.blog-filter-btn:hover {
  background: var(--primary-blue-dark);
  color: #ffffff;
  border-color: var(--primary-blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.blog-filter-btn.active {
  background: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

/* Grid Layout */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 1rem;
  transition: var(--transition-smooth);
}

.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(19, 73, 160, 0.2);
}

.blog-card-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  background: var(--primary-blue-dark);
}

.blog-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.blog-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

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

.blog-category-badge {
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Category Specific Colors */
.badge-logistics {
  background: rgba(19, 73, 160, 0.08);
  color: var(--primary-blue-light);
}

.badge-customs {
  background: rgba(46, 172, 109, 0.08);
  color: var(--success);
}

.badge-finance {
  background: rgba(212, 26, 43, 0.08);
  color: var(--accent-red);
}

.blog-card-title {
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 0.8rem;
  color: var(--primary-blue-dark);
  transition: var(--transition-fast);
}

.blog-card:hover .blog-card-title {
  color: var(--primary-blue);
}

.blog-card-summary {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

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

.blog-read-more {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

.blog-card:hover .blog-read-more {
  color: var(--accent-red);
}

/* --- Single Article Reader View --- */
.blog-single-view {
  width: 100%;
  animation: fadeIn 0.5s ease;
}

.blog-reader-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.blog-article-header {
  margin-bottom: 2.5rem;
}

.blog-article-title {
  font-size: 2.6rem;
  line-height: 1.25;
  color: var(--primary-blue-dark);
  margin-bottom: 1.2rem;
  font-family: var(--font-heading);
}

.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--border-light);
}

.blog-article-cover-wrapper {
  width: 100%;
  max-height: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-md);
}

.blog-article-cover {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
}

.blog-article-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.blog-article-content p {
  margin-bottom: 1.8rem;
}

.blog-article-content strong {
  color: var(--primary-blue-dark);
}

.blog-article-content h3 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1.2rem 0;
  color: var(--primary-blue);
  font-family: var(--font-heading);
}

.blog-article-content ul, .blog-article-content ol {
  margin-bottom: 1.8rem;
  padding-left: 1.8rem;
}

.blog-article-content li {
  margin-bottom: 0.6rem;
}

.blog-article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.blog-article-content th, .blog-article-content td {
  padding: 0.9rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.blog-article-content th {
  background: var(--primary-blue-dark);
  color: #ffffff;
  font-weight: 600;
}

.blog-article-content tr:nth-child(even) {
  background: var(--bg-main);
}

/* Call to action inside reader */
.blog-cta-card {
  background: linear-gradient(135deg, var(--primary-blue-dark) 0%, #08285c 100%);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  color: #ffffff;
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.blog-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 26, 43, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.blog-cta-info h4 {
  color: var(--accent-yellow);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.blog-cta-info p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-bottom: 0;
  max-width: 550px;
}

.blog-cta-action {
  flex-shrink: 0;
}



/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
  html { font-size: 15px; }
  
  .hero-grid, .about-intro-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-showcase {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .showcase-card {
    transform: rotate(0);
  }
  
  .pillars-grid, .products-grid, .advantage-grid, .blog-grid, .certificates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .partner-card {
    grid-template-columns: 0.7fr 1.3fr;
  }
  
  .inquiry-card-wrapper {
    grid-template-columns: 1fr;
  }
  
  .inquiry-left-accent {
    padding: 3rem;
  }
  
  .inquiry-accent-footer {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .section-padding { padding: 4rem 0; }
  
  .header .nav-cta {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-start;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border-light);
    overflow-y: auto;
    z-index: 999;
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .header.scrolled .nav-menu {
    top: 75px;
    height: calc(100vh - 75px);
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-menu .nav-link {
    display: block;
    font-size: 1.25rem;
    padding: 0.8rem;
    color: var(--primary-blue-dark);
    border-bottom: 1px solid rgba(0, 51, 102, 0.05);
  }

  .nav-menu .nav-link::after {
    display: none;
  }

  .nav-menu .nav-link.active {
    color: var(--accent-red);
    font-weight: 700;
  }

  /* Style for the mobile menu CTA */
  .mobile-menu-cta {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
  }
  
  .nav-cta-mobile {
    background: linear-gradient(135deg, var(--accent-red), hsl(355, 77%, 55%));
    color: var(--text-light) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem !important;
    padding: 0.8rem 2.5rem !important;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(214, 28, 44, 0.25);
    display: inline-block !important;
    width: auto !important;
    border-bottom: none !important;
  }

  /* Show marquee item names by default on mobile (no hover required) */
  .marquee-item-name {
    opacity: 1 !important;
    transform: translateY(0) !important;
    color: var(--primary-blue) !important;
  }
  
  .pillars-grid, .products-grid, .vm-grid, .stats-grid, .advantage-grid, .footer-grid, .blog-grid, .certificates-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .blog-reader-card {
    padding: 2.2rem;
  }
  
  .blog-article-title {
    font-size: 2rem;
  }
  
  .blog-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    gap: 1.5rem;
  }
  
  .blog-cta-info p {
    max-width: 100%;
  }
  
  .partner-card {
    grid-template-columns: 1fr;
  }
  
  .partner-img-container {
    min-height: 280px;
  }
  
  .hero-title { font-size: 2.8rem; }
  
  .inquiry-form {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .form-submit-wrapper {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-title { font-size: 2.3rem; }
  .section-title { font-size: 2rem; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; width: 100%; }
  
  .partner-info, .inquiry-form-container, .contact-info-pane {
    padding: 2rem 1.5rem;
  }
  
  /* Brand header resizing to prevent expansion on phones */
  .logo-img { height: 45px !important; }
  .logo-title { font-size: 1.15rem !important; }
  .logo-subtitle { font-size: 0.55rem !important; }

  /* Floating CTA widget resizing on mobile */
  .floating-cta-container {
    bottom: 1.25rem;
    right: 1.25rem;
    gap: 0.8rem;
  }
  .float-bubble {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

@media (max-width: 380px) {
  /* Prevent header overflow/wrapping on very narrow viewports */
  .logo-subtitle {
    display: none !important;
  }
  .logo-title {
    font-size: 1rem !important;
  }
}

/* ==========================================================================
   Exit Intent Modal Styling
   ========================================================================== */
.exit-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 25, 59, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.exit-modal-overlay:not(.hidden) {
  opacity: 1;
  pointer-events: auto;
}

.exit-modal {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.exit-modal-overlay:not(.hidden) .exit-modal {
  transform: translateY(0) scale(1);
}

.exit-modal-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(214, 28, 44, 0.08);
  color: var(--accent-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem auto;
}

.exit-modal-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: var(--primary-blue-dark);
}

.exit-modal-text {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.exit-modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 480px) {
  .exit-modal-actions {
    flex-direction: column;
  }
}

/* ==========================================================================
   Multi-Language (i18n) Selector & RTL Styles
   ========================================================================== */
.lang-selector-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-icon {
  position: absolute;
  left: 12px;
  color: var(--primary-blue);
  font-size: 0.95rem;
  pointer-events: none;
  z-index: 2;
}

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 51, 102, 0.15);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.2rem 0.5rem 2.1rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-blue-dark);
  cursor: pointer;
  outline: none;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  max-width: 145px;
  text-overflow: ellipsis;
}

.lang-select:hover, .lang-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(11, 60, 155, 0.12);
}

.lang-select option {
  background: #ffffff;
  color: var(--text-dark);
  padding: 0.5rem;
}

/* RTL Support for Arabic */
[dir="rtl"] {
  text-align: right;
}

[dir="rtl"] .lang-icon {
  left: auto;
  right: 12px;
}

[dir="rtl"] .lang-select {
  padding: 0.55rem 2.2rem 0.55rem 1.8rem;
}

[dir="rtl"] .nav-menu {
  direction: rtl;
}

/* ==========================================================================
   Stealth Google Translate Engine (100% Invisible UI)
   ========================================================================== */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
.goog-te-banner,
iframe.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover,
.goog-te-spinner-pos {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

body {
  top: 0px !important;
  position: static !important;
}

.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

#google_translate_element,
.goog-te-gadget {
  display: none !important;
  visibility: hidden !important;
}

.goog-te-gadget span {
  display: none !important;
}


/* ==========================================================================
   Dynamic Micro-Animations & Interactivity Effects
   ========================================================================== */
@keyframes heroFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.hero-badge {
  animation: heroFloat 4s ease-in-out infinite;
}

/* Card Hover Animations */
.product-card, .blog-card, .certificate-card, .stat-counter-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.product-card:hover, .certificate-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 16px 40px rgba(11, 60, 155, 0.14);
}

/* Interactive Button Hover Glow */
.btn-gold:hover, .nav-cta:hover {
  animation: pulseGlow 1.5s ease infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(214, 28, 44, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(214, 28, 44, 0); }
  100% { box-shadow: 0 0 0 0 rgba(214, 28, 44, 0); }
}

