/* ==========================================================================
   POZHIAMUTHAN IMPEX LLP - Core Stylesheet & Design System
   ========================================================================== */

:root {
  /* Brand Colors */
  --navy-dark: #0B1C3D;
  --navy-deep: #071329;
  --navy-surface: #102652;
  --navy-light: #1A366E;
  
  --gold-primary: #D4AF37;
  --gold-light: #F4E298;
  --gold-dark: #AA771C;
  --gold-glow: rgba(212, 175, 55, 0.4);

  --slate-bg: #F8FAFC;
  --slate-card: #FFFFFF;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-light: #94A3B8;

  /* Typography */
  --font-serif: 'Playfair Display', 'Cinzel', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;

  /* Transitions & Shadow */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 25px -5px rgba(11, 28, 61, 0.15);
  --shadow-gold: 0 10px 25px -5px rgba(212, 175, 55, 0.35);
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-sans);
  background-color: var(--slate-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

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

/* ==========================================================================
   Top Announcement Bar (Dark Blue Navy Background with White Font)
   ========================================================================== */
.top-bar {
  background: var(--navy-deep) !important;
  color: #E2E8F0 !important;
  font-size: 0.88rem !important;
  padding: 0.65rem 0 !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25) !important;
}

.top-bar-content {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 1.5rem !important;
}

.top-info {
  display: flex !important;
  align-items: center !important;
  gap: 1.75rem !important;
}

.top-info-item {
  display: flex !important;
  align-items: center !important;
  gap: 0.55rem !important;
  font-weight: 500 !important;
}

.top-info-item span {
  color: #E2E8F0 !important;
  font-size: 0.88rem !important;
  white-space: nowrap !important;
}

.top-info-item i {
  color: var(--gold-primary) !important;
  font-size: 0.95rem !important;
}

.top-info-item i.fa-whatsapp {
  color: #25D366 !important;
}

.top-right-actions {
  display: flex !important;
  align-items: center !important;
  gap: 1.5rem !important;
  margin-left: auto !important;
}

.lang-curr-selector {
  display: flex !important;
  gap: 0.75rem !important;
  align-items: center !important;
  font-size: 0.82rem !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #E2E8F0 !important;
  padding: 0.3rem 0.75rem !important;
  border-radius: 6px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  white-space: nowrap !important;
}

/* ==========================================================================
   Google Translate Engine & Custom Language Selector Component
   ========================================================================== */
iframe.goog-te-banner-frame {
  display: none !important;
}

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

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

.skiptranslate {
  font-family: inherit !important;
}

#goog-gt-tt, .goog-te-balloon-frame, .goog-tooltip, .goog-tooltip:hover {
  display: none !important;
}

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

/* Custom Interactive Language Selector */
.lang-selector-wrapper {
  position: relative;
  display: inline-block;
}

.lang-selector-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #FFFFFF !important;
  padding: 0.35rem 0.85rem !important;
  border-radius: 6px !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
}

.lang-selector-btn:hover,
.lang-selector-btn.active {
  background: rgba(212, 175, 55, 0.18) !important;
  border-color: var(--gold-primary) !important;
  color: var(--gold-light) !important;
}

.lang-selector-btn i.fa-globe {
  color: var(--gold-primary) !important;
  font-size: 0.92rem !important;
}

.lang-selector-btn i.lang-arrow {
  font-size: 0.72rem !important;
  transition: transform 0.25s ease !important;
  margin-left: 0.2rem !important;
}

.lang-selector-wrapper.open .lang-arrow {
  transform: rotate(180deg) !important;
}

.lang-dropdown-menu {
  position: absolute !important;
  top: calc(100% + 6px) !important;
  right: 0 !important;
  background: #0B1C3D !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
  min-width: 185px !important;
  padding: 0.4rem 0 !important;
  margin: 0 !important;
  list-style: none !important;
  z-index: 1050 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(6px) !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.lang-selector-wrapper.open .lang-dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.lang-option {
  display: flex !important;
  align-items: center !important;
  gap: 0.65rem !important;
  padding: 0.55rem 1rem !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  color: #E2E8F0 !important;
  text-decoration: none !important;
  transition: background 0.15s ease, color 0.15s ease !important;
  cursor: pointer !important;
}

.lang-option:hover,
.lang-option.active {
  background: rgba(212, 175, 55, 0.18) !important;
  color: var(--gold-primary) !important;
}

.lang-option .flag {
  font-size: 1.1rem !important;
  line-height: 1 !important;
}

.social-links {
  display: flex !important;
  align-items: center !important;
  gap: 0.9rem !important;
}

.social-links a {
  color: #94A3B8 !important;
  font-size: 0.95rem !important;
  transition: var(--transition-fast) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.social-links a:hover {
  color: var(--gold-primary) !important;
  transform: translateY(-1px);
}

/* ==========================================================================
   Header & Navigation Menu Bar
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  border-bottom: 1px solid #E2E8F0 !important;
  transition: var(--transition-normal);
}

.main-header.scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
  background: rgba(255, 255, 255, 0.98) !important;
}

.header-container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.75rem !important;
  height: 100px !important;
  padding: 0.5rem 1.75rem !important;
}

/* Brand Logo (Enhanced Size, Premium Gold Border, Uncrowded & Crisp Visibility) */
.brand-logo {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  background: #FFFFFF !important;
  padding: 0.45rem 1.15rem !important;
  border-radius: 14px !important;
  border: 2px solid var(--gold-primary) !important;
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.32) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
  flex-shrink: 0 !important;
  margin-right: 0.75rem !important;
}

.brand-logo:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(212, 160, 23, 0.5) !important;
  border-color: var(--gold-dark) !important;
}

.brand-logo img {
  height: 74px !important;
  max-height: 76px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
  border-radius: 6px !important;
  transition: var(--transition-fast) !important;
}

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

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

.brand-title {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 1px;
  color: #071329 !important;
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--gold-primary);
  font-weight: 700;
  text-transform: uppercase;
}

/* Navigation Links (Positioned Right Next to Logo on Left) */
.nav-menu {
  display: flex !important;
  align-items: center !important;
  gap: 1.15rem !important;
  list-style: none !important;
  margin-left: 0.75rem !important;
  margin-right: auto !important;
}

.nav-link {
  color: #071329 !important;
  font-weight: 700 !important;
  font-size: 0.98rem !important;
  letter-spacing: 0.2px !important;
  position: relative !important;
  padding: 0.5rem 0 !important;
  white-space: nowrap !important;
  transition: var(--transition-fast) !important;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--gold-dark) !important;
}

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

/* Header CTA Button - Get in Touch (Positioned on Far Right) */
.btn-get-in-touch {
  display: inline-flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.55rem !important;
  background: linear-gradient(135deg, #D4AF37 0%, #AA771C 100%) !important;
  color: #071329 !important;
  font-weight: 800 !important;
  font-size: 0.96rem !important;
  padding: 0.65rem 1.6rem !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.45) !important;
  transition: var(--transition-normal) !important;
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid var(--gold-light) !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  height: 46px !important;
  max-height: 46px !important;
  line-height: 1 !important;
  margin-left: auto !important;
  letter-spacing: 0.3px !important;
}

.btn-get-in-touch span,
.btn-get-in-touch i {
  white-space: nowrap !important;
  display: inline-block !important;
  line-height: 1 !important;
}

.btn-get-in-touch i {
  font-size: 0.9rem !important;
}

.btn-get-in-touch::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: 0.6s;
}

.btn-get-in-touch:hover::before {
  left: 100%;
}

.btn-get-in-touch:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6) !important;
  background: linear-gradient(135deg, #F4E298 0%, #D4AF37 100%) !important;
}

.mobile-toggle {
  display: none;
  color: #071329 !important;
  font-size: 1.6rem;
}

/* Mobile Drawer Navigation (Scrollable, High Z-index, Perfect Visibility) */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh; /* Dynamic viewport height for modern browsers */
  background: #071329 !important;
  z-index: 3000 !important;
  padding: 1.25rem 1.25rem 2.5rem 1.25rem !important;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.7) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), right 0.35s ease !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1.25rem !important;
  overflow-y: auto !important; /* CRITICAL: Fixes truncating/half-menu issue */
  -webkit-overflow-scrolling: touch !important;
  border-left: 3px solid var(--gold-primary) !important;
}

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

.drawer-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding-bottom: 0.85rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  flex-shrink: 0 !important;
}

.drawer-header img {
  height: 48px !important;
  max-height: 48px !important;
  width: auto !important;
  object-fit: contain !important;
  background: #FFFFFF !important;
  padding: 0.25rem 0.5rem !important;
  border-radius: 8px !important;
}

.drawer-close {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #FFFFFF !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.2rem !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.drawer-close:hover {
  background: var(--gold-primary) !important;
  color: #071329 !important;
}

.mobile-nav-menu {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.65rem !important;
  margin: 0 !important;
  padding: 0 !important;
}

.mobile-nav-link {
  color: #F8FAFC !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  padding: 0.65rem 0.9rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.65rem !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: linear-gradient(135deg, #D4AF37 0%, #AA7C11 100%) !important;
  color: #071329 !important;
  border-color: var(--gold-primary) !important;
  font-weight: 800 !important;
}

/* Overlay Backdrop */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

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

/* ==========================================================================
   Hero Auto-Slide Section (5 Topic-Specific Slides)
   ========================================================================== */
.hero-slider-section {
  position: relative;
  min-height: calc(100vh - 90px);
  background: var(--navy-deep);
  overflow: hidden;
}

.hero-slider-wrapper {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 90px);
  display: flex;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 3rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s ease-in-out;
  transform: scale(1.05);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(7, 19, 41, 0.92) 0%,
    rgba(11, 28, 61, 0.82) 50%,
    rgba(7, 19, 41, 0.90) 100%
  );
  pointer-events: none;
}

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

/* Slider Golden Progress Bar */
.hero-slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 10;
}

.hero-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #D4AF37, #F4E298);
  transition: width 0.1s linear;
}

/* Arrow Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(7, 19, 41, 0.75);
  color: #F4E298;
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.slider-arrow:hover {
  background: var(--gold-primary);
  color: #071329;
  border-color: #F4E298;
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.5);
  transform: translateY(-50%) scale(1.08);
}

.arrow-prev {
  left: 1.5rem;
}

.arrow-next {
  right: 1.5rem;
}

/* Pagination Dots */
.slider-dots-container {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(7, 19, 41, 0.65);
  padding: 0.45rem 1.15rem;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot:hover,
.slider-dot.active {
  background: var(--gold-primary);
  border-color: #FFFFFF;
  width: 28px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

/* Animations for Visual Attractiveness */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGoldGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
  }
  50% {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.7);
  }
}

.animate-badge {
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-title {
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.animate-desc {
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.animate-actions {
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

.animate-stats {
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-primary);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.65rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.hero-title span {
  background: linear-gradient(135deg, #F4E298 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 0.98rem;
  color: #CBD5E1;
  margin-bottom: 1.65rem;
  line-height: 1.6;
  max-width: 700px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--navy-dark);
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
}

/* Quick Stats Bar */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  z-index: 10;
}

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

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #E2E8F0 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block !important;
  opacity: 1 !important;
  line-height: 1.2;
}

/* ==========================================================================
   Freight & Shipping Quick Calculator Section
   ========================================================================== */
.calculator-section {
  margin-top: 2.5rem;
  position: relative;
  z-index: 20;
  margin-bottom: 5rem;
}

.calculator-card {
  background: var(--slate-card);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.calculator-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.calc-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy-dark);
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.form-control {
  padding: 0.75rem 1rem;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.calc-btn-container {
  display: flex;
  align-items: flex-end;
}

.btn-calc {
  width: 100%;
  padding: 0.8rem;
  background: var(--navy-dark);
  color: var(--gold-primary);
  font-weight: 700;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.btn-calc:hover {
  background: var(--navy-surface);
  color: #FFFFFF;
}

.calc-result-box {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px dashed var(--gold-primary);
  border-radius: 8px;
  display: none;
  justify-content: space-between;
  align-items: center;
}

/* ==========================================================================
   Section Title Utilities
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* ==========================================================================
   Page Hero Banner Background (Directly Behind Text & Center Aligned)
   ========================================================================== */
.page-hero {
  background: linear-gradient(180deg, rgba(7, 19, 41, 0.82) 0%, rgba(11, 28, 61, 0.88) 100%),
              url('assets/images/about-banner.png') center/cover no-repeat !important;
  color: #FFFFFF !important;
  padding: 6rem 1.5rem 5rem 1.5rem;
  text-align: center !important;
  border-bottom: 3px solid var(--gold-primary);
  position: relative;
  box-shadow: inset 0 -10px 40px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-crest-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.25);
  border: 1px solid var(--gold-primary);
  padding: 0.45rem 1.5rem;
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 auto 1.25rem auto;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
  text-align: center;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 800;
  color: #FFFFFF !important;
  margin: 0 0 1rem 0;
  text-align: center !important;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.page-hero-subtitle {
  color: var(--gold-light) !important;
  font-size: 1.2rem;
  max-width: 780px;
  margin: 0 auto 2rem auto;
  font-weight: 500;
  line-height: 1.65;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  text-align: center !important;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  background: rgba(16, 38, 82, 0.92);
  padding: 0.55rem 1.8rem;
  border-radius: 50px;
  border: 1px solid var(--gold-primary);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  margin: 0 auto;
}

.breadcrumbs a {
  color: var(--gold-light);
  font-weight: 600;
  transition: var(--transition-fast);
}

.breadcrumbs a:hover {
  color: #FFFFFF;
}

.breadcrumbs span {
  color: #94A3B8;
}

/* ==========================================================================
   Mission & Vision Section (Luxury Card Format & Hover Animation)
   ========================================================================== */
.mission-vision-section {
  padding: 5.5rem 0;
  background: var(--slate-bg);
}

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

.mv-card {
  background: #FFFFFF !important;
  border-radius: 20px !important;
  padding: 3rem 2.5rem !important;
  box-shadow: 0 12px 35px rgba(11, 28, 61, 0.08) !important;
  border: 2px solid var(--gold-primary) !important;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex;
  flex-direction: column;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
}

.mv-card:hover {
  transform: translateY(-10px) scale(1.02) !important;
  box-shadow: 0 25px 55px rgba(212, 175, 55, 0.35) !important;
  border-color: var(--gold-dark) !important;
}

.mv-card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.mv-icon-box {
  width: 80px !important;
  height: 80px !important;
  background: var(--navy-dark) !important;
  color: var(--gold-primary) !important;
  border-radius: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 2.4rem !important;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35) !important;
  transition: all 0.35s ease !important;
}

.mv-card:hover .mv-icon-box {
  background: var(--gold-primary) !important;
  color: var(--navy-dark) !important;
  transform: scale(1.1) rotate(5deg) !important;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5) !important;
}

.mv-title {
  font-family: var(--font-serif);
  font-size: 2rem !important;
  font-weight: 800;
  color: var(--navy-dark) !important;
  margin: 0;
}

.mv-text {
  color: var(--text-secondary) !important;
  font-size: 1.12rem !important;
  line-height: 1.8 !important;
  font-style: italic;
  margin: 0;
}

/* ==========================================================================
   Core Values Section (Luxury Card Format & Hover Animation)
   ========================================================================== */
.values-section {
  padding: 5.5rem 0;
  background: #FFFFFF;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.25rem;
}

.value-card {
  background: #FFFFFF !important;
  border-radius: 20px !important;
  padding: 2.75rem 2rem !important;
  border: 2px solid var(--gold-primary) !important;
  box-shadow: 0 10px 30px rgba(11, 28, 61, 0.08) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  text-align: center !important;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
}

.value-card:hover {
  background: #FFFFFF !important;
  border-color: var(--gold-dark) !important;
  transform: translateY(-10px) scale(1.02) !important;
  box-shadow: 0 25px 50px rgba(212, 175, 55, 0.35) !important;
}

.value-icon {
  width: 75px !important;
  height: 75px !important;
  margin: 0 auto 1.5rem auto !important;
  border-radius: 50% !important;
  background: var(--navy-dark) !important;
  color: var(--gold-primary) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 2.2rem !important;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35) !important;
  transition: all 0.35s ease !important;
}

.value-card:hover .value-icon {
  background: var(--gold-primary) !important;
  color: var(--navy-dark) !important;
  transform: scale(1.12) rotate(6deg) !important;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5) !important;
}

.value-title {
  font-family: var(--font-serif);
  font-size: 1.4rem !important;
  font-weight: 800;
  color: var(--navy-dark) !important;
  margin-bottom: 0.75rem !important;
}

.value-desc {
  font-size: 0.98rem !important;
  color: var(--text-secondary) !important;
  line-height: 1.65 !important;
  margin: 0;
}

/* Process Workflow Section (6 Steps) */
.process-section {
  padding: 5rem 0;
  background: var(--navy-deep);
  color: #FFFFFF;
}

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

.process-step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: var(--transition-normal);
}

.process-step-card:hover {
  background: rgba(16, 38, 82, 0.8);
  border-color: var(--gold-primary);
  transform: translateY(-5px);
}

.step-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.3);
}

.step-icon {
  font-size: 2rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.9rem;
  color: #CBD5E1;
  line-height: 1.6;
}

/* Certifications & Accreditation Section */
.certifications-section {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border-top: 1px solid #E2E8F0;
  position: relative;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.cert-seal-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.card-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-light));
  opacity: 0.6;
  transition: all 0.4s ease;
}

.cert-seal-card:hover {
  background: #FFFFFF;
  border-color: var(--gold-primary);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 35px -10px rgba(11, 28, 61, 0.12), 0 0 25px rgba(212, 175, 55, 0.25);
}

.cert-seal-card:hover .card-accent-bar {
  height: 6px;
  opacity: 1;
}

.seal-icon-ring {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border: 2px dashed var(--gold-primary);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.25rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08);
}

.cert-seal-card:hover .seal-icon-ring {
  transform: scale(1.15) rotate(5deg);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #FFFFFF;
  border-style: solid;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.seal-icon-ring i {
  transition: transform 0.4s ease;
}

.cert-seal-card:hover .seal-icon-ring i {
  transform: scale(1.1);
}

.cert-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.cert-seal-card:hover .cert-title {
  color: var(--navy-surface);
}

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

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold-dark);
  background: rgba(212, 175, 55, 0.1);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  transition: all 0.3s ease;
}

.cert-seal-card:hover .cert-badge {
  background: var(--navy-dark);
  color: var(--gold-primary);
  border-color: var(--navy-dark);
}

/* Leadership Commitment Section */
.commitments-section {
  padding: 5rem 0;
  background: var(--slate-bg);
}

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

.commitment-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  border: 1px solid #E2E8F0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
}

.commitment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold-primary);
}

.commitment-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.commitment-icon {
  width: 48px;
  height: 48px;
  background: var(--navy-dark);
  color: var(--gold-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.commitment-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy-dark);
}

.commitment-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Call to Action Banner */
.cta-banner-section {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-surface) 100%);
  border-top: 3px solid var(--gold-primary);
  border-bottom: 3px solid var(--gold-primary);
  color: #FFFFFF;
  box-shadow: var(--shadow-xl);
}

.cta-banner-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner-text h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.cta-banner-text p {
  color: var(--gold-light);
  font-size: 1.05rem;
}

/* About Us Section */
.about-section {
  padding: 5rem 0;
  background: #FFFFFF;
}

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

.about-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.about-experience-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--navy-dark);
  color: var(--gold-primary);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--gold-primary);
  text-align: center;
}

.exp-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.exp-txt {
  font-size: 0.75rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content-box .section-title {
  text-align: left;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-card-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-info h4 {
  font-size: 1rem;
  color: var(--navy-dark);
  margin-bottom: 0.25rem;
}

.feature-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   Services Grid Section
   ========================================================================== */
.services-section {
  padding: 5rem 0;
  background: var(--slate-bg);
}

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

.service-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #E2E8F0;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--navy-dark);
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--navy-dark);
  color: var(--gold-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon {
  background: var(--gold-primary);
  color: var(--navy-dark);
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}

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

.service-link {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

/* Export Solutions Grid & Export Documentation Styles */
.export-solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.export-service-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid #E2E8F0;
  transition: all 0.35s ease;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}

.export-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-primary);
  opacity: 0.4;
  transition: all 0.35s ease;
}

.export-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(11, 28, 61, 0.1);
  border-color: var(--gold-primary);
}

.export-service-card:hover::before {
  width: 6px;
  opacity: 1;
  background: linear-gradient(180deg, var(--gold-primary), var(--gold-dark));
}

.export-service-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-surface));
  color: var(--gold-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.35s ease;
}

.export-service-card:hover .export-service-icon {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #FFFFFF;
  transform: scale(1.1) rotate(4deg);
}

.export-service-content h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy-dark);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.export-service-content p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

/* Export Documentation Section Box */
.export-doc-box {
  background: linear-gradient(135deg, #0B1C3D 0%, #071329 100%);
  border-radius: 28px;
  padding: 4rem 2.5rem;
  color: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 25px 50px -12px rgba(7, 19, 41, 0.35), 0 0 30px rgba(212, 175, 55, 0.15);
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}

.export-doc-box::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.export-doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.doc-pill-card {
  position: relative;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  padding: 2rem 1.25rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.doc-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-light));
  opacity: 0.5;
  transition: all 0.4s ease;
}

.doc-pill-card:hover {
  background: rgba(16, 38, 82, 0.95);
  border-color: var(--gold-primary);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.3);
}

.doc-pill-card:hover .doc-card-accent {
  height: 5px;
  opacity: 1;
}

.doc-pill-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.08));
  border: 2px dashed var(--gold-primary);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.15rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.doc-pill-card:hover .doc-pill-icon {
  transform: scale(1.15) rotate(6deg);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #FFFFFF;
  border-style: solid;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.doc-pill-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
}

.doc-pill-desc {
  font-size: 0.84rem;
  color: #CBD5E1;
  line-height: 1.45;
  margin-bottom: 1.1rem;
  flex-grow: 1;
}

.doc-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.15);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all 0.35s ease;
}

.doc-pill-card:hover .doc-pill-badge {
  background: var(--gold-primary);
  color: var(--navy-dark);
  border-color: var(--gold-primary);
}

.doc-pill-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.35s ease;
}

.doc-pill-card:hover .doc-pill-icon {
  background: var(--gold-primary);
  color: var(--navy-dark);
  transform: scale(1.1);
}

.doc-pill-title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
}

.service-link:hover {
  color: var(--navy-dark);
  gap: 0.6rem;
}

/* ==========================================================================
   Product Showcase Section
   ========================================================================== */
.products-section {
  padding: 5rem 0;
  background: #FFFFFF;
}

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 1px solid #CBD5E1;
  background: #FFFFFF;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--navy-dark);
  color: var(--gold-primary);
  border-color: var(--navy-dark);
}

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

.product-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

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

.product-thumb {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

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

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--navy-dark);
  color: var(--gold-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.product-info {
  padding: 1.5rem;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

.product-specs {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.product-inquire-btn {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid var(--gold-primary);
  color: var(--navy-dark);
  font-weight: 700;
  border-radius: 6px;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.product-inquire-btn:hover {
  background: var(--gold-primary);
  color: var(--navy-dark);
}

/* ==========================================================================
   Global Network / Route Map Section
   ========================================================================== */
.global-section {
  padding: 5rem 0;
  background: var(--navy-deep);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.global-map-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  position: relative;
}

.hub-pins {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.hub-box {
  background: rgba(16, 38, 82, 0.7);
  border: 1px solid var(--gold-primary);
  padding: 1.5rem;
  border-radius: 12px;
  width: 220px;
  text-align: center;
}

.hub-flag {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hub-title {
  font-family: var(--font-serif);
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.hub-desc {
  font-size: 0.8rem;
  color: #94A3B8;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
  padding: 5rem 0;
  background: var(--slate-bg);
}

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

.testimonial-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: var(--gold-primary);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.testimonial-quote {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.client-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-dark);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;

}

.client-name {
  font-weight: 700;
  color: var(--navy-dark);
  font-size: 0.95rem;
}

.client-role {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ==========================================================================
   Get in Touch Modal Dialog
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 19, 41, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

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

.modal-card,
.modal-container {
  background: #FFFFFF !important;
  color: #071329 !important;
  width: 92%;
  max-width: 480px !important;
  max-height: 88vh !important;
  max-height: 88dvh !important;
  display: flex !important;
  flex-direction: column !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45) !important;
  border: 2px solid #D4AF37 !important;
  position: relative !important;
  margin: auto !important;
  padding: 0 !important;
  overflow: hidden !important;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card,
.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-header {
  background: linear-gradient(135deg, #071329 0%, #0B1C3D 100%) !important;
  color: #FFFFFF !important;
  padding: 1.1rem 3.2rem 0.9rem 1.25rem !important;
  border-bottom: 2px solid #D4AF37 !important;
  position: relative !important;
  flex-shrink: 0 !important;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.15rem !important;
  font-weight: 700;
  color: #F4E298 !important;
  margin: 0 !important;
}

.modal-subtitle {
  color: #CBD5E1 !important;
  font-size: 0.78rem !important;
  line-height: 1.35;
  margin: 0.2rem 0 0 0 !important;
}

/* Close Button - Bright Gold Circle (Super Visible & Easy Touch Target) */
.modal-close,
.modal-close-btn {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  width: 36px !important;
  height: 36px !important;
  background: #D4AF37 !important;
  color: #071329 !important;
  border: 2px solid #FFFFFF !important;
  border-radius: 50% !important;
  font-size: 1.4rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  z-index: 50 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  padding: 0 !important;
  touch-action: manipulation !important;
}

.modal-close:hover,
.modal-close-btn:hover {
  background: #FFFFFF !important;
  color: #071329 !important;
  border-color: #D4AF37 !important;
  transform: scale(1.1) rotate(90deg) !important;
}

.modal-body,
.modal-card form,
.modal-container .modal-body {
  padding: 1.25rem !important;
  background: #FFFFFF !important;
  color: #071329 !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior: contain !important;
  flex: 1 1 auto !important;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem !important;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem !important;
}

.contact-form label {
  font-size: 0.78rem !important;
  font-weight: 700;
  color: #071329 !important;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.45rem 0.75rem !important;
  border: 1.5px solid #CBD5E1;
  border-radius: 6px !important;
  font-size: 0.825rem !important;
  color: #071329 !important;
  background: #F8FAFC !important;
  height: 36px;
}

.contact-form textarea {
  height: 60px !important;
  min-height: 55px !important;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #D4AF37;
  background: #FFFFFF !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem !important;
}

.btn-submit,
.btn-submit-form {
  background: linear-gradient(135deg, #D4AF37 0%, #AA771C 100%) !important;
  color: #071329 !important;
  font-weight: 800 !important;
  padding: 0.5rem 1rem !important;
  border-radius: 6px !important;
  font-size: 0.85rem !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3) !important;
  transition: all 0.2s ease !important;
  margin-top: 0.25rem !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  height: 38px !important;
}

.btn-submit:hover,
.btn-submit-form:hover {
  background: linear-gradient(135deg, #F4E298 0%, #D4AF37 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4) !important;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.main-footer {
  background: var(--navy-deep) !important;
  color: #94A3B8 !important;
  padding-top: 4.5rem !important;
  padding-bottom: 2.5rem !important;
  border-top: 2px solid var(--gold-primary) !important;
}

.footer-grid {
  display: grid !important;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr 1.1fr !important;
  gap: 1.5rem !important;
  align-items: start !important;
  margin-bottom: 3.5rem !important;
}

.footer-logo-link {
  display: inline-block !important;
  text-decoration: none !important;
  background: #FFFFFF !important;
  padding: 0.85rem 1.25rem !important;
  border-radius: 14px !important;
  border: 1.5px solid var(--gold-primary) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35) !important;
  margin-bottom: 1rem !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.footer-logo-link:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 30px rgba(244, 226, 152, 0.45) !important;
}

.footer-brand img {
  height: 140px !important;
  max-height: 140px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
  border-radius: 6px !important;
}

.footer-brand p {
  margin-top: 0.4rem !important;
  font-size: 0.88rem !important;
  line-height: 1.6 !important;
  color: #94A3B8 !important;
}

.footer-col-title {
  font-family: var(--font-serif) !important;
  color: #FFFFFF !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  margin-bottom: 1.2rem !important;
  position: relative !important;
  padding-bottom: 0.5rem !important;
  letter-spacing: 0.3px !important;
  white-space: nowrap !important;
}

.footer-col-title::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 35px !important;
  height: 2.5px !important;
  background: var(--gold-primary) !important;
  border-radius: 2px !important;
}

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

.footer-links a {
  color: #CBD5E1 !important;
  font-size: 0.92rem !important;
  font-weight: 500 !important;
  transition: var(--transition-fast) !important;
  display: inline-flex !important;
  align-items: center !important;
}

.footer-links a:hover {
  color: var(--gold-primary) !important;
  padding-left: 5px !important;
}

.footer-contact-list {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  font-size: 0.92rem !important;
}

.footer-contact-item {
  display: flex !important;
  gap: 0.75rem !important;
  align-items: flex-start !important;
  color: #CBD5E1 !important;
}

.footer-contact-item i {
  color: var(--gold-primary) !important;
  margin-top: 0.25rem !important;
  font-size: 0.95rem !important;
}

.footer-bottom {
  padding-top: 2rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
  font-size: 0.9rem !important;
}

/* Floating WhatsApp / Action Button */
.floating-action-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-fast);
}

.floating-action-btn:hover {
  transform: scale(1.1);
}

/* ==========================================================================
   Navigation Dropdown Menu Styles
   ========================================================================== */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Hover bridge gap fix */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -15px;
  right: -15px;
  height: 25px;
  background: transparent;
  z-index: 999;
}

.nav-dropdown .dropdown-arrow {
  font-size: 0.75rem;
  margin-left: 0.4rem;
  transition: transform 0.3s ease;
  color: var(--gold-primary);
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.active-open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #071329;
  border: 2px solid var(--gold-primary);
  border-radius: 16px;
  padding: 0.6rem 0;
  min-width: 230px;
  box-shadow: 0 20px 45px rgba(7, 19, 41, 0.6), 0 0 25px rgba(212, 175, 55, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 10000;
  list-style: none;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #071329;
  border-left: 2px solid var(--gold-primary);
  border-top: 2px solid var(--gold-primary);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.35rem;
  color: #FFFFFF !important;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.25s ease;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu a i {
  color: var(--gold-primary);
  font-size: 1.1rem;
  transition: transform 0.25s ease;
  width: 20px;
  text-align: center;
}

.dropdown-menu a:hover {
  background: rgba(212, 175, 55, 0.2) !important;
  color: var(--gold-light) !important;
  padding-left: 1.65rem;
}

.dropdown-menu a:hover i {
  transform: scale(1.3);
  color: #FFFFFF;
}

/* Mobile Drawer Dropdown Sub-menu */
.mobile-nav-sub-menu {
  list-style: none;
  padding-left: 1.25rem;
  margin-top: 0.35rem;
  border-left: 2px solid rgba(212, 175, 55, 0.35);
}

.mobile-nav-sub-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  color: #CBD5E1;
  font-size: 0.9rem;
}

.mobile-nav-sub-menu a i {
  color: var(--gold-primary);
}

/* Toast Popup */
.toast-popup {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: var(--navy-dark);
  color: #FFFFFF;
  border-left: 4px solid var(--gold-primary);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-xl);
  z-index: 4000;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-fast);
}

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

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .header-container {
    height: 100px !important;
  }
  .brand-logo {
    padding: 0.35rem 0.65rem !important;
  }
  .brand-logo img {
    height: 80px !important;
    max-height: 80px !important;
  }
  .nav-menu {
    gap: 1.1rem !important;
    margin-right: 1rem !important;
  }
  .nav-link {
    font-size: 0.9rem !important;
  }
  .btn-get-in-touch {
    padding: 0.45rem 1.1rem !important;
    font-size: 0.85rem !important;
    height: 38px !important;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.35rem 0.85rem !important;
    padding: 0.4rem 0.5rem !important;
  }
  .top-info {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.35rem 0.85rem !important;
    font-size: 0.78rem !important;
  }
  .top-info-item {
    font-size: 0.78rem !important;
  }
  .top-right-actions {
    margin-left: 0 !important;
    justify-content: center !important;
    font-size: 0.78rem !important;
  }
  .header-container {
    height: 75px !important;
    padding: 0 1rem !important;
  }
  .brand-logo {
    padding: 0.25rem 0.5rem !important;
  }
  .brand-logo img {
    height: 55px !important;
    max-height: 55px !important;
  }
  .nav-menu,
  .btn-get-in-touch {
    display: none !important;
  }
  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .hero-title {
    font-size: 1.95rem;
  }
  .hero-desc {
    font-size: 0.95rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Contact Page Enhanced Styling & Interactive Features
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  border: 1px solid #E2E8F0;
  box-shadow: 0 15px 35px rgba(11, 28, 61, 0.06);
}

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

.contact-cards-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Quick Topic Chips */
.quick-chips-wrapper {
  margin-bottom: 1.5rem;
}

.quick-chips-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.quick-chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quick-chip {
  background: #F1F5F9;
  color: var(--navy-dark);
  border: 1px solid #CBD5E1;
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.quick-chip:hover,
.quick-chip.active {
  background: var(--navy-dark);
  color: var(--gold-primary);
  border-color: var(--navy-dark);
  box-shadow: 0 3px 10px rgba(11, 28, 61, 0.15);
}

/* Quick Action Copy/WhatsApp Buttons */
.contact-card-action {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-card-action:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.copy-btn {
  background: rgba(11, 28, 61, 0.08);
  color: var(--navy-dark);
  border: none;
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.copy-btn:hover {
  background: var(--navy-dark);
  color: var(--gold-primary);
}

/* FAQ Accordion Section */
.faq-section {
  padding: 5rem 0;
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 2.5rem auto 0 auto;
}

details.faq-item {
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #F8FAFC;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

details.faq-item:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 6px 20px rgba(11, 28, 61, 0.06);
}

details.faq-item[open] {
  border-color: var(--gold-primary);
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(11, 28, 61, 0.08);
}

/* Hide default browser marker */
summary.faq-question::-webkit-details-marker,
summary.faq-question::marker {
  display: none !important;
  content: "" !important;
}

summary.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  list-style: none;
  outline: none;
}

summary.faq-question i {
  color: var(--gold-dark);
  transition: transform 0.3s ease;
  font-size: 0.95rem;
  flex-shrink: 0;
}

details.faq-item[open] summary.faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.65;
  animation: faqFadeIn 0.3s ease-out forwards;
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FAQ Page Specific Card Styling */
.faq-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2rem 2.25rem;
  border: 1.5px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(11, 28, 61, 0.04);
  transition: all 0.3s ease;
}

.faq-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(11, 28, 61, 0.08);
}

/* ==========================================================================
   Gallery Page Layout & Lightbox Styling
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.gallery-item-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(11, 28, 61, 0.05);
  transition: all 0.35s ease;
}

.gallery-item-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(11, 28, 61, 0.12);
}

.gallery-img-wrapper {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item-card:hover .gallery-img-wrapper img {
  transform: scale(1.08);
}

.gallery-overlay {
  padding: 1.5rem 1.75rem;
  background: #FFFFFF;
}

.gallery-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212, 175, 55, 0.15);
  color: #AA771C;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.gallery-item-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy-dark);
  margin: 0 0 0.5rem 0;
}

.gallery-item-desc {
  color: #64748B;
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0 0 1.25rem 0;
}

.gallery-zoom-btn {
  background: rgba(11, 28, 61, 0.06);
  color: var(--navy-dark);
  border: 1px solid #CBD5E1;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.gallery-zoom-btn:hover {
  background: var(--navy-dark);
  color: var(--gold-primary);
  border-color: var(--navy-dark);
}

.gallery-filter-btn {
  background: #FFFFFF;
  color: var(--navy-dark);
  border: 1.5px solid #CBD5E1;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--navy-dark);
  color: var(--gold-primary);
  border-color: var(--navy-dark);
  box-shadow: 0 4px 15px rgba(11, 28, 61, 0.15);
}

/* Lightbox Modal */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 19, 41, 0.92);
  backdrop-filter: blur(8px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 1.5rem;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-card {
  position: relative;
  max-width: 900px;
  width: 100%;
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-card {
  transform: scale(1);
}

.lightbox-card img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  display: block;
}

.lightbox-caption {
  padding: 1.25rem 2rem;
  background: var(--navy-dark);
  color: var(--gold-primary);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  background: #E11D48;
}

/* ==========================================================================
   Quality Assurance Page Layout Styling
   ========================================================================== */
.quality-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.process-card {
  position: relative;
  background: #F8FAFC;
  border-radius: 20px;
  padding: 2.25rem 2rem;
  border: 1.5px solid #E2E8F0;
  transition: all 0.35s ease;
  overflow: hidden;
}

.process-card:hover {
  background: #FFFFFF;
  border-color: var(--gold-primary);
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(11, 28, 61, 0.08);
}

.process-card-highlight {
  background: linear-gradient(135deg, #0B1C3D 0%, #071329 100%);
  border-color: #D4AF37;
  color: #FFFFFF;
}

.process-card-highlight:hover {
  background: linear-gradient(135deg, #071329 0%, #0B1C3D 100%);
  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.2);
}

.process-step-num {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(11, 28, 61, 0.08);
  line-height: 1;
}

.process-card-highlight .process-step-num {
  color: rgba(212, 175, 55, 0.25);
}

.process-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(11, 28, 61, 0.08);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.process-card-highlight .process-icon-wrapper {
  background: rgba(212, 175, 55, 0.2);
  color: #F4E298;
}

.process-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy-dark);
  margin: 0 0 0.6rem 0;
}

.process-card-highlight .process-title {
  color: #FFFFFF;
}

.process-desc {
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.process-card-highlight .process-desc {
  color: #CBD5E1;
}

/* International Standards Grid */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.standard-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2.25rem 2rem;
  border: 1.5px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(11, 28, 61, 0.04);
  transition: all 0.35s ease;
}

.standard-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(11, 28, 61, 0.09);
}

.standard-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1A365D 100%);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 18px rgba(11, 28, 61, 0.15);
}

.standard-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy-dark);
  margin: 0 0 0.6rem 0;
}

.standard-desc {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* Cert Pills */
.cert-pill {
  background: #F8FAFC;
  border: 1.5px solid #CBD5E1;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 4px 15px rgba(11, 28, 61, 0.04);
  transition: all 0.3s ease;
}

.cert-pill:hover {
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 28, 61, 0.08);
}

/* ==========================================================================
   Global Markets Page Layout Styling
   ========================================================================== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.destination-card {
  background: #F8FAFC;
  border-radius: 20px;
  padding: 2.25rem 2rem;
  border: 1.5px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(11, 28, 61, 0.04);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.destination-card:hover {
  background: #FFFFFF;
  border-color: var(--gold-primary);
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(11, 28, 61, 0.09);
}

.destination-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.destination-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1A365D 100%);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(11, 28, 61, 0.15);
}

.destination-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: #AA771C;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.destination-region-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy-dark);
  margin: 0;
}

.destination-desc {
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.country-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.country-chip {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  color: var(--navy-dark);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.25s ease;
}

.destination-card:hover .country-chip {
  background: rgba(11, 28, 61, 0.05);
  border-color: #94A3B8;
}

.country-chip i {
  color: var(--gold-dark);
  font-size: 0.75rem;
}

/* Why Us Grid */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.why-us-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2.25rem 2rem;
  border: 1.5px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(11, 28, 61, 0.04);
  transition: all 0.35s ease;
}

.why-us-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(11, 28, 61, 0.09);
}

.why-us-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.15);
  color: #AA771C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.why-us-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy-dark);
  margin: 0 0 0.6rem 0;
}

.why-us-desc {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* Contact Page Responsive Media Queries */
@media (max-width: 992px) {




  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .contact-form-card {
    padding: 2rem 1.25rem;
  }
}

/* ==========================================================================
   Global Markets Quick Region Navigation Menu
   ========================================================================== */
.markets-sub-nav {
  position: sticky;
  top: 75px;
  z-index: 995;
  background: rgba(7, 19, 41, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: 2px solid var(--gold-primary);
  padding: 0.85rem 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.markets-sub-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
}

.markets-sub-nav-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.markets-sub-nav-title {
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  text-transform: uppercase;
}

.markets-sub-nav-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

.market-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.15rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #E2E8F0;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.25s ease;
}

.market-menu-btn i {
  color: var(--gold-primary);
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.market-menu-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.market-menu-btn:hover i {
  transform: scale(1.15);
}

.market-menu-btn.active {
  background: linear-gradient(135deg, #D4AF37 0%, #AA7C11 100%);
  border-color: #D4AF37;
  color: #071329;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.market-menu-btn.active i {
  color: #071329;
}

@media (max-width: 768px) {
  .markets-sub-nav {
    top: 65px;
    padding: 0.65rem 0;
  }
  .markets-sub-nav-title {
    display: none;
  }
  .market-menu-btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.825rem;
  }
}

/* ==========================================================================
   Reference-Matched Blog Hero & Grid Design (The Business Vastu Style)
   ========================================================================== */
.hero-blog-banner {
  background: linear-gradient(135deg, #071329 0%, #0B1C3D 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  border-bottom: 3px solid var(--gold-primary);
}

.hero-blog-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 10;
}

.hero-blog-left {
  max-width: 550px;
  padding: 4rem 0;
}

.hero-blog-title {
  font-family: 'Cinzel', 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

.hero-blog-subtitle {
  color: #F4E298;
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Floating Knowledge 3D Animation Container */
.hero-animation-container {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  perspective: 1000px;
}

.blog-nexus {
  position: relative;
  width: 480px;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
}

.blog-card-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-top: 1px solid rgba(212, 175, 55, 0.5);
  border-left: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3), inset 0 0 20px rgba(212, 175, 55, 0.08);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-float-1 {
  width: 240px;
  height: 290px;
  right: 10%;
  top: 12%;
  z-index: 1;
  animation: floatCardAnim 8s ease-in-out infinite;
}

.card-float-2 {
  width: 270px;
  height: 330px;
  right: 35%;
  top: 15%;
  z-index: 3;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 0 30px rgba(212, 175, 55, 0.15);
  animation: floatCardAnim 7s ease-in-out infinite 1.5s;
}

.card-float-3 {
  width: 210px;
  height: 260px;
  right: 2%;
  top: 38%;
  z-index: 2;
  animation: floatCardAnim 9s ease-in-out infinite 3s;
}

.title-shimmer-line {
  height: 12px;
  width: 65%;
  margin-bottom: 8px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.3) 0%, #D4AF37 50%, rgba(212, 175, 55, 0.3) 100%);
  background-size: 200% 100%;
  border-radius: 4px;
  animation: shimmerTextAnim 3s infinite linear reverse;
}

.text-shimmer-line {
  height: 6px;
  background: linear-gradient(90deg, rgba(244, 226, 152, 0.15) 0%, rgba(244, 226, 152, 0.5) 50%, rgba(244, 226, 152, 0.15) 100%);
  background-size: 200% 100%;
  border-radius: 3px;
  animation: shimmerTextAnim 3s infinite linear;
}

.shimmer-l1 { width: 100%; }
.shimmer-l2 { width: 85%; }
.shimmer-l3 { width: 92%; }
.shimmer-l4 { width: 55%; }

.idea-node-particle {
  position: absolute;
  background: #D4AF37;
  border-radius: 50%;
  box-shadow: 0 0 12px #D4AF37, 0 0 25px #FFFFFF;
  opacity: 0;
}

.node-p1 { width: 6px; height: 6px; left: 20%; top: 20%; animation: ideaFloatAnim 4s infinite 0s; }
.node-p2 { width: 4px; height: 4px; left: 78%; top: 58%; animation: ideaFloatAnim 5s infinite 1.5s; }
.node-p3 { width: 7px; height: 7px; left: 32%; top: 78%; animation: ideaFloatAnim 6s infinite 3s; }
.node-p4 { width: 5px; height: 5px; left: 68%; top: 28%; animation: ideaFloatAnim 4.5s infinite 2s; }

@keyframes floatCardAnim {
  0%, 100% { transform: translateY(0) translateZ(0) rotateY(-5deg) rotateX(5deg); }
  50% { transform: translateY(-18px) translateZ(20px) rotateY(-8deg) rotateX(2deg); }
}

@keyframes shimmerTextAnim {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Single Article 2-Column Sidebar Layout */
.article-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 35px;
  align-items: start;
  padding: 2.5rem 0 6rem 0;
}

.article-main {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 2.5rem 2.5rem 4rem 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #E2E8F0;
  min-width: 0;
  margin-bottom: 2rem;
}

.article-featured-img,
.article-main img,
.article-body img {
  width: 100% !important;
  max-width: 400px !important;
  height: 220px !important;
  object-fit: cover !important;
  border-radius: 10px !important;
  margin: 1.25rem 0 1.75rem 0 !important;
  display: block !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: sticky;
  top: 100px;
  width: 100%;
  max-width: 350px;
  margin-left: auto;
}

.sidebar-widget {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid #E2E8F0;
}

.sidebar-title {
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #071329;
  border-bottom: 2px solid #D4AF37;
  padding-bottom: 0.65rem;
  margin: 0 0 1.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .article-wrapper {
    grid-template-columns: 1fr;
  }
  .article-sidebar {
    max-width: 100%;
    position: static;
  }
}

/* ==========================================================================
   Header Footer Elementor (HFE) Post Grid - Reference Screenshot Matched
   ========================================================================== */
.hfe-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px 50px 20px;
}

.hfe-post-card {
  background: #F8F9FA;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hfe-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
}

.hfe-post-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.hfe-post-image img {
  width: 100% !important;
  height: 220px !important;
  object-fit: cover !important;
  object-position: center center !important;
  transition: transform 0.4s ease;
}

.hfe-post-card:hover .hfe-post-image img {
  transform: scale(1.03);
}

.hfe-post-content {
  padding: 24px 22px 26px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.hfe-post-title {
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 8px 0;
}

.hfe-post-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hfe-post-card:hover .hfe-post-title a {
  color: var(--navy-dark, #071329);
}

.hfe-post-meta {
  font-size: 13px;
  color: #888888;
  margin-bottom: 16px;
  font-weight: 500;
}

.hfe-post-excerpt {
  font-size: 14.5px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.hfe-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #555555;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
  margin-top: auto;
}

.hfe-read-more:hover {
  color: #B82E2E;
}

/* Pagination Controls */
.pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 2.5rem 0 4rem 0;
  flex-wrap: wrap;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 1.15rem;
  border-radius: 8px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  color: var(--navy-dark, #071329);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-btn:hover:not(.disabled) {
  border-color: var(--gold-primary, #D4AF37);
  color: var(--gold-dark, #B38F2E);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(11, 28, 61, 0.1);
}

.page-btn.active {
  background: var(--navy-dark, #071329);
  border-color: var(--navy-dark, #071329);
  color: #F4E298;
}

.page-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: #E2E8F0;
}

@media (max-width: 1024px) {
  .hfe-posts-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 20px 15px !important;
  }
}

@media (max-width: 767px) {
  .hfe-posts-grid {
    grid-template-columns: 1fr !important;
    padding: 20px 10px !important;
  }
}

/* ==========================================================================
   Global Enhanced Product Card Styles (Catalog & Related Products Grid)
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}
.product-card-enhanced {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(11, 28, 61, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card-enhanced:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(11, 28, 61, 0.12);
  border-color: var(--gold-primary, #D4AF37);
}
.product-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #0B1C3D;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card-enhanced:hover .product-img-wrap img {
  transform: scale(1.08);
}
.cat-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(7, 19, 41, 0.88);
  color: #F4E298;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.28rem 0.75rem;
  border-radius: 30px;
  border: 1px solid var(--gold-primary, #D4AF37);
  backdrop-filter: blur(4px);
  z-index: 2;
}
.product-info-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-title-text {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #071329;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.product-short-desc {
  font-size: 0.86rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.product-actions-bar {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}
.btn-view-detail {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--navy-deep, #0B1C3D);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-view-detail:hover {
  background: var(--navy-light, #1A365D);
  color: #F4E298;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.85rem !important;
  }
  .hero-desc {
    font-size: 0.9rem !important;
    margin-bottom: 1.25rem !important;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.85rem !important;
    margin-top: 1.25rem !important;
    padding-top: 0.85rem !important;
  }
  .stat-number {
    font-size: 1.45rem !important;
  }
  .stat-label {
    font-size: 0.72rem !important;
  }
}
/* ==========================================================================
   Global Motion & Scroll Reveal System (Animations for Headings, Cards & Containers)
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-fade-up {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-fade-left {
  opacity: 0;
  transform: translateX(-45px);
}

.reveal-fade-right {
  opacity: 0;
  transform: translateX(45px);
}

.reveal-zoom-in {
  opacity: 0;
  transform: scale(0.9);
}

.reveal-flip-up {
  opacity: 0;
  transform: perspective(1000px) rotateX(12deg) translateY(35px);
}

/* Active Revealed State */
.reveal-on-scroll.revealed,
.reveal-fade-up.revealed,
.reveal-fade-left.revealed,
.reveal-fade-right.revealed,
.reveal-zoom-in.revealed,
.reveal-flip-up.revealed {
  opacity: 1 !important;
  transform: translateY(0) translateX(0) scale(1) rotateX(0) !important;
}

/* Stagger Delays for Grids */
.reveal-delay-100 { transition-delay: 0.1s; }
.reveal-delay-200 { transition-delay: 0.2s; }
.reveal-delay-300 { transition-delay: 0.3s; }
.reveal-delay-400 { transition-delay: 0.4s; }
.reveal-delay-500 { transition-delay: 0.5s; }

/* Dynamic Card Hover Elevation & Micro Motion Effects */
.export-service-card,
.product-card,
.product-card-enhanced,
.destination-card,
.feature-card-item,
.why-us-card,
.standard-card,
.hfe-post-card,
.calculator-card,
.contact-form-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease !important;
}

.export-service-card:hover,
.product-card:hover,
.product-card-enhanced:hover,
.destination-card:hover,
.why-us-card:hover,
.standard-card:hover,
.hfe-post-card:hover {
  transform: translateY(-8px) scale(1.01) !important;
  box-shadow: 0 16px 35px rgba(11, 28, 61, 0.12) !important;
}

/* Button Shimmer Sweep Effect */
.btn-primary, .btn-calc {
  position: relative;
  overflow: hidden;
}

.btn-primary::after, .btn-calc::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  transition: all 0.65s ease;
}

.btn-primary:hover::after, .btn-calc:hover::after {
  left: 140%;
}

/* ==========================================================================
   MASTER COMPREHENSIVE TABLET & MOBILE RESPONSIVE DESIGN SYSTEM
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TABLET BREAKPOINT (Max-width: 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  /* Layout Grids */
  .export-solutions-grid,
  .standards-grid,
  .features-grid,
  .markets-grid,
  .why-us-grid,
  .products-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem !important;
  }

  .about-grid,
  .contact-grid,
  .hero-blog-container,
  .blog-grid,
  .hfe-posts-grid {
    grid-template-columns: 1fr !important; /* 1 by 1 blog layout on tablet & mobile */
    gap: 1.5rem !important;
  }

  /* Section Spacing & Fluid Headers */
  section {
    padding: 3.5rem 0 !important;
  }

  h1, .hero-title, .hero-blog-title, .product-detail-title {
    font-size: 2.3rem !important;
    line-height: 1.25 !important;
  }

  h2, .section-title {
    font-size: 1.85rem !important;
    line-height: 1.3 !important;
  }

  h3, .card-title, .process-title, .standard-title {
    font-size: 1.25rem !important;
  }

  .hero-blog-banner {
    min-height: auto !important;
    padding: 3rem 0 !important;
  }

  .hero-animation-container {
    position: relative !important;
    width: 100% !important;
    height: 280px !important;
    top: auto !important;
    right: auto !important;
    margin-top: 1.5rem !important;
  }
}

/* --------------------------------------------------------------------------
   2. MOBILE & SMALL TABLET BREAKPOINT (Max-width: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  /* Containers & Section Spacing */
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  section {
    padding: 2.5rem 0 !important;
  }

  /* Multi-Column Grids Collapsing for Mobile */
  .export-solutions-grid,
  .standards-grid,
  .features-grid,
  .markets-grid,
  .why-us-grid,
  .process-grid,
  .process-timeline,
  .stats-grid,
  .gallery-grid,
  .blog-grid,
  .hfe-posts-grid,
  .footer-grid,
  .contact-grid,
  .about-grid,
  .hero-stats {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  /* Product Catalog Grid - Guaranteed 2-Column Side-By-Side Layout on Tablet & Mobile */
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  /* Fluid Typography for Mobile */
  h1, .hero-title, .hero-blog-title, .product-detail-title {
    font-size: 1.85rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.65rem !important;
  }

  h2, .section-title, .modal-title {
    font-size: 1.45rem !important;
    line-height: 1.35 !important;
    margin-bottom: 0.5rem !important;
  }

  h3, .card-title, .process-title, .standard-title {
    font-size: 1.15rem !important;
    line-height: 1.4 !important;
  }

  p, .hero-desc, .section-desc, .hero-subtitle, .product-short-desc, .why-us-desc {
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
  }

  .section-header {
    margin-bottom: 2rem !important;
  }

  /* Mobile Flex Stacking */
  .hero-blog-container,
  .hero-container {
    flex-direction: column !important;
    text-align: center !important;
  }

  .hero-blog-left {
    max-width: 100% !important;
    padding: 1.5rem 0 !important;
  }

  .hero-animation-container {
    position: relative !important;
    width: 100% !important;
    height: 220px !important;
    margin-top: 1rem !important;
  }

  /* Cards & Elevate Box Padding */
  .export-service-card,
  .standard-card,
  .process-card,
  .why-us-card,
  .contact-form-card,
  .calculator-card,
  .feature-card-item {
    padding: 1.35rem 1.15rem !important;
    border-radius: 14px !important;
  }

  /* Responsive Tables & Data Specs */
  table, .spec-table, .quality-table {
    display: block !important;
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  th, td {
    padding: 0.6rem 0.75rem !important;
    font-size: 0.82rem !important;
    white-space: nowrap !important;
  }

  /* Interactive Modals - Mobile Responsiveness Engine */
  .modal-overlay {
    padding: 0.75rem !important;
    align-items: center !important;
  }

  .modal-card,
  .modal-container {
    width: 96% !important;
    max-width: 480px !important;
    padding: 0 !important; /* Fixes outer double padding & header margin glitch */
    border-radius: 14px !important;
    max-height: 90vh !important;
    max-height: 90dvh !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
  }

  .modal-header {
    padding: 1rem 3rem 0.8rem 1rem !important;
  }

  .modal-title {
    font-size: 1.08rem !important;
  }

  .modal-subtitle {
    font-size: 0.76rem !important;
  }

  .modal-close,
  .modal-close-btn {
    top: 10px !important;
    right: 10px !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 1.35rem !important;
  }

  .modal-body,
  .modal-container .modal-body,
  .modal-card form {
    padding: 1rem !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .form-row,
  .form-row-2col {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }

  /* Prevent iOS Safari Input Auto-Zoom & Touch Friendly Targets */
  .form-control,
  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .modal-body input,
  .modal-body select,
  .modal-body textarea,
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    font-size: 16px !important;
    padding: 0.65rem 0.85rem !important;
    min-height: 44px !important;
    height: auto !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
  }

  .contact-form textarea,
  .modal-body textarea.form-control,
  textarea {
    min-height: 70px !important;
  }

  .btn-submit,
  .btn-submit-form {
    width: 100% !important;
    min-height: 48px !important;
    font-size: 0.98rem !important;
    padding: 0.75rem 1rem !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Image Lightbox Modal Mobile Responsiveness */
  .lightbox-overlay {
    padding: 0.75rem !important;
  }

  .lightbox-card {
    width: 96% !important;
    max-width: 96% !important;
    border-radius: 16px !important;
    max-height: 90vh !important;
  }

  .lightbox-card img {
    max-height: 60vh !important;
    object-fit: contain !important;
    background: #071329 !important;
  }

  .lightbox-caption {
    padding: 0.85rem 1rem !important;
    font-size: 0.95rem !important;
  }

  .lightbox-close {
    top: 0.75rem !important;
    right: 0.75rem !important;
    width: 38px !important;
    height: 38px !important;
    font-size: 1.3rem !important;
  }

  /* Certifications & Quick Chips */
  .cert-pill {
    padding: 0.5rem 0.9rem !important;
    font-size: 0.8rem !important;
  }

  /* Footer Adjustments */
  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 0.85rem !important;
    padding-top: 1.5rem !important;
  }

  .footer-bottom > div {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }

  /* Floating WhatsApp Button */
  .floating-action-btn {
    bottom: 1.25rem !important;
    right: 1.25rem !important;
    width: 48px !important;
    height: 48px !important;
    font-size: 1.5rem !important;
    z-index: 2500 !important;
  }

  /* Toast Notification */
  .toast-popup {
    left: 1rem !important;
    right: 1rem !important;
    bottom: 4.5rem !important;
    max-width: calc(100% - 2rem) !important;
    font-size: 0.88rem !important;
    z-index: 4500 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
  }
}

/* --------------------------------------------------------------------------
   3. SMALL MOBILE BREAKPOINT (Max-width: 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  section {
    padding: 2rem 0 !important;
  }

  h1, .hero-title, .hero-blog-title, .product-detail-title {
    font-size: 1.55rem !important;
  }

  h2, .section-title {
    font-size: 1.3rem !important;
  }

  .modal-overlay {
    padding: 0.5rem !important;
  }

  .modal-card,
  .modal-container {
    width: 98% !important;
    max-width: 98% !important;
    border-radius: 12px !important;
    max-height: 92vh !important;
    max-height: 92dvh !important;
  }

  .modal-header {
    padding: 0.9rem 2.8rem 0.75rem 0.9rem !important;
  }

  .modal-title {
    font-size: 1.02rem !important;
  }

  .modal-subtitle {
    font-size: 0.75rem !important;
    line-height: 1.3 !important;
  }

  .modal-body,
  .modal-container .modal-body,
  .modal-card form {
    padding: 0.85rem !important;
  }

  .modal-close,
  .modal-close-btn {
    top: 8px !important;
    right: 8px !important;
    width: 34px !important;
    height: 34px !important;
    font-size: 1.25rem !important;
  }

  .btn-get-in-touch,
  .btn-primary,
  .btn-submit,
  .btn-submit-form,
  .btn-calc {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.75rem 1.25rem !important;
    font-size: 0.92rem !important;
    min-height: 46px !important;
  }

  .top-bar-content {
    font-size: 0.72rem !important;
  }

  .top-info-item span {
    font-size: 0.72rem !important;
  }

  /* Compact 2-Column Product Grid for Small Mobile Devices */
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.6rem !important;
  }
}

/* ==========================================================================
   Get Directions Button & Map Actions Styling
   ========================================================================== */
.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1A366E 100%);
  color: var(--gold-primary) !important;
  padding: 0.6rem 1.15rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--gold-primary);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(11, 28, 61, 0.2);
}

.btn-directions:hover {
  background: var(--gold-primary);
  color: var(--navy-deep) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

.btn-directions i {
  color: var(--gold-primary);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.btn-directions:hover i {
  color: var(--navy-deep) !important;
}

/* ==========================================================================
   Responsive Header Logo Rules (Desktop, Tablet & Mobile Visibility)
   ========================================================================== */
@media (max-width: 992px) {
  .header-container {
    height: 85px !important;
    padding: 0.45rem 1.25rem !important;
  }
  .brand-logo {
    padding: 0.35rem 0.85rem !important;
  }
  .brand-logo img {
    height: 60px !important;
    max-height: 62px !important;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 80px !important;
    padding: 0.4rem 1rem !important;
    justify-content: space-between !important;
  }
  .brand-logo {
    padding: 0.3rem 0.75rem !important;
    border-radius: 12px !important;
    margin-right: 0 !important;
  }
  .brand-logo img {
    height: 54px !important;
    max-height: 56px !important;
  }
  .drawer-header img {
    height: 54px !important;
    max-height: 56px !important;
    padding: 0.3rem 0.75rem !important;
    border-radius: 10px !important;
    border: 1.5px solid var(--gold-primary) !important;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3) !important;
  }
}

@media (max-width: 480px) {
  .header-container {
    height: 75px !important;
    padding: 0.35rem 0.75rem !important;
  }
  .brand-logo {
    padding: 0.25rem 0.65rem !important;
  }
  .brand-logo img {
    height: 48px !important;
    max-height: 50px !important;
  }
}





