/* ==========================================================================
   AXIORA EXPORTS - UI COMPONENTS STYLESHEET
   ========================================================================== */

/* ==========================================================================
   1. SITE HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: 1.1rem 0;
}

/* Header on transparent / hero view */
.site-header.header-transparent {
  background: linear-gradient(180deg, rgba(7, 28, 75, 0.85) 0%, rgba(7, 28, 75, 0) 100%);
}

.site-header.header-transparent .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

.site-header.header-transparent .nav-link:hover,
.site-header.header-transparent .nav-link.active {
  color: var(--color-gold);
}

.site-header.header-transparent .logo-light {
  display: block;
}

.site-header.header-transparent .logo-dark {
  display: none;
}

.site-header.header-transparent .hamburger-btn span {
  background-color: var(--color-white);
}

/* Header Scrolled state (White background) */
.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 20px rgba(11, 42, 111, 0.08);
  border-bottom: 1px solid var(--color-border);
}

.site-header.scrolled .nav-link {
  color: var(--color-text-dark);
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
  color: var(--color-orange);
}

.site-header.scrolled .logo-light {
  display: none;
}

.site-header.scrolled .logo-dark {
  display: block;
}

.site-header.scrolled .hamburger-btn span {
  background-color: var(--color-navy);
}

/* Header Inner Container */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-logo {
  display: flex;
  align-items: center;
  height: 52px;
  max-width: 250px;
}

.header-logo img,
.header-logo svg {
  height: 100%;
  width: auto;
  max-height: 52px;
  object-fit: contain;
}

/* Desktop Navigation */
.header-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

@media (min-width: 1100px) {
  .header-nav {
    display: flex;
  }
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-orange);
  transition: width var(--transition-normal);
  border-radius: 2px;
}

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

.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1100px) {
  .header-actions {
    display: flex;
  }
}

/* Hamburger button */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  z-index: 1002;
}

.site-header.scrolled .hamburger-btn {
  background: rgba(11, 42, 111, 0.05);
  border: 1px solid var(--color-border);
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

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

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

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

@media (min-width: 1100px) {
  .hamburger-btn {
    display: none;
  }
}

/* Mobile Nav Drawer */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(7, 28, 75, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

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

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--color-white);
  z-index: 1001;
  padding: 5.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  transition: right var(--transition-smooth);
  overflow-y: auto;
}

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

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-navy);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--color-border);
  display: block;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--color-orange);
}

.mobile-nav-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  background-color: var(--color-navy-dark);
  background-image: linear-gradient(135deg, rgba(7, 28, 75, 0.94) 0%, rgba(11, 42, 111, 0.85) 50%, rgba(18, 102, 196, 0.72) 100%), url('../images/hero/hero-shipping.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: var(--color-white);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--color-bg-light), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-title {
  color: var(--color-white);
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.5rem;
}

.hero-title span.accent {
  color: var(--color-gold);
  display: inline-block;
}

.hero-description {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.25rem;
  max-width: 720px;
}

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

/* India -> Global Markets visual trajectory element */
.hero-motif {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.06em;
}

.hero-motif .origin {
  color: var(--color-white);
}

.hero-motif .dest {
  color: var(--color-gold);
}

.trajectory-arrow {
  display: inline-flex;
  align-items: center;
  color: var(--color-orange);
  animation: pulseArrow 2s infinite ease-in-out;
}

@keyframes pulseArrow {
  0%, 100% { transform: translateX(0); opacity: 0.7; }
  50% { transform: translateX(5px); opacity: 1; }
}

/* ==========================================================================
   3. TRUST HIGHLIGHTS BAR
   ========================================================================== */
.trust-bar-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -3rem;
}

.trust-bar {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .trust-bar {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-bar {
    grid-template-columns: repeat(6, 1fr);
    padding: 1.25rem 1.75rem;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: var(--color-royal-soft);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.trust-item:hover .trust-icon {
  background-color: var(--color-navy);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.trust-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
}

/* ==========================================================================
   4. SECTION HEADINGS
   ========================================================================== */
.section-heading {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-heading.text-center {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  margin-bottom: 0.85rem;
}

.section-heading p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

.section-bg-navy .section-heading p {
  color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   5. PRODUCT CATEGORY CARDS
   ========================================================================== */
.category-card {
  position: relative;
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(18, 102, 196, 0.3);
}

.category-card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: var(--color-bg-alt);
}

.category-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.category-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(11, 42, 111, 0.1) 0%, rgba(7, 28, 75, 0.65) 100%);
  opacity: 0.7;
  transition: opacity var(--transition-normal);
}

.category-card:hover .category-card-overlay {
  opacity: 0.85;
}

.category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.category-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.category-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-navy);
  transition: color var(--transition-fast);
}

.category-card:hover .category-card-title {
  color: var(--color-royal);
}

.category-card-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.55;
  flex: 1;
}

.category-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-orange);
  text-decoration: none;
  transition: gap var(--transition-fast);
}

.category-card:hover .category-card-link {
  gap: 0.75rem;
  color: var(--color-orange-hover);
}

/* ==========================================================================
   6. SERVICE CARDS
   ========================================================================== */
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(18, 102, 196, 0.3);
  box-shadow: var(--shadow-lg);
}

.service-detail-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-detail-card:hover {
  transform: translateY(-6px);
  border-color: rgba(18, 102, 196, 0.35);
  box-shadow: var(--shadow-xl);
}

.service-card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: var(--color-bg-alt);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-detail-card:hover .service-card-media img {
  transform: scale(1.06);
}

.service-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(11, 42, 111, 0.88);
  backdrop-filter: blur(6px);
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 2;
}

.service-detail-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (max-width: 640px) {
  .service-card-media {
    height: 180px;
  }
  .service-detail-body {
    padding: 1.25rem;
  }
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-royal-soft) 0%, rgba(18, 102, 196, 0.15) 100%);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon-wrap,
.service-detail-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-royal) 100%);
  color: var(--color-gold);
  transform: scale(1.05);
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
  color: var(--color-navy);
}

.service-desc {
  font-size: 0.925rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
}

/* ==========================================================================
   7. PROCESS TIMELINE (HOW IT WORKS)
   ========================================================================== */
.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  position: relative;
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .timeline {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }
}

.timeline-step {
  position: relative;
  background: var(--color-white);
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.timeline-step:hover {
  transform: translateY(-4px);
  border-color: var(--color-orange);
  box-shadow: var(--shadow-md);
}

.timeline-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: 0.85rem;
}

.timeline-title {
  font-size: 1.05rem;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   8. WHY AXIORA SECTION (DARK NAVY)
   ========================================================================== */
.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  padding: 2rem;
  transition: all var(--transition-normal);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(233, 169, 40, 0.45);
  transform: translateY(-4px);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(245, 124, 0, 0.15);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.why-title {
  color: var(--color-white);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.why-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.925rem;
  line-height: 1.6;
}

/* ==========================================================================
   8B. VALUE CARDS (ABOUT US GUIDING PRINCIPLES)
   ========================================================================== */
.value-card {
  position: relative;
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(18, 102, 196, 0.3);
}

.value-card-media {
  position: relative;
  height: 160px;
  overflow: hidden;
  background-color: var(--color-bg-alt);
}

.value-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.value-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(7, 28, 75, 0.08) 0%, rgba(7, 28, 75, 0.5) 100%);
  opacity: 0.6;
  transition: opacity var(--transition-normal);
}

.value-card:hover .value-card-overlay {
  opacity: 0.8;
}

.value-icon-badge {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 2;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.value-card:hover .value-icon-badge {
  transform: scale(1.08);
}

.value-card-body {
  padding: 1.35rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.value-card-title {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
  color: var(--color-navy);
  transition: color var(--transition-fast);
}

.value-card:hover .value-card-title {
  color: var(--color-orange);
}

.value-card-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   9. GLOBAL TRADE MAP SECTION
   ========================================================================== */
.map-visual-container {
  position: relative;
  background: radial-gradient(circle at center, #0F388F 0%, #071C4B 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  margin-bottom: 3rem;
}

.map-svg {
  width: 100%;
  height: auto;
  max-height: 420px;
}

.trade-hub-india {
  fill: var(--color-orange);
  filter: drop-shadow(0 0 8px rgba(245, 124, 0, 0.8));
}

.trade-pulse-ring {
  stroke: var(--color-orange);
  stroke-width: 1.5;
  fill: none;
  animation: mapPulse 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  transform-origin: center;
}

@keyframes mapPulse {
  0% { r: 6px; opacity: 1; }
  100% { r: 28px; opacity: 0; }
}

.trade-route {
  stroke: var(--color-gold);
  stroke-width: 1.5;
  stroke-dasharray: 4 6;
  fill: none;
  animation: dashRoute 20s linear infinite;
}

@keyframes dashRoute {
  to { stroke-dashoffset: -100; }
}

.map-highlights-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .map-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .map-highlights-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.map-highlight-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all var(--transition-normal);
}

.map-highlight-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(233, 169, 40, 0.4);
}

.map-highlight-item .highlight-stat {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-gold);
  margin-bottom: 0.35rem;
  line-height: 1;
}

.map-highlight-item h4 {
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.map-highlight-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

/* Corridor Cards */
.corridor-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.corridor-card:hover {
  transform: translateY(-5px);
  border-color: rgba(18, 102, 196, 0.35);
  box-shadow: var(--shadow-lg);
}

.corridor-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 0.75rem;
}

.corridor-tag {
  background: var(--color-royal-soft);
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.corridor-time {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-orange);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Port Cards */
.port-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.port-card:hover {
  transform: translateY(-6px);
  border-color: rgba(18, 102, 196, 0.35);
  box-shadow: var(--shadow-xl);
}

.port-card-media {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: var(--color-bg-alt);
}

.port-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.port-card:hover .port-card-media img {
  transform: scale(1.06);
}

.port-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(11, 42, 111, 0.9);
  backdrop-filter: blur(4px);
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.port-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.port-title {
  font-size: 1.25rem;
  color: var(--color-navy);
  margin-bottom: 0.35rem;
}

.port-location {
  font-size: 0.85rem;
  color: var(--color-royal);
  font-weight: 600;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Incoterms Table */
.trade-table-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
  margin-bottom: 2rem;
}

.trade-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 680px;
}

.trade-table th {
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 1rem 1.25rem;
  border-bottom: 2px solid var(--color-gold);
  letter-spacing: 0.03em;
}

.trade-table td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
  color: var(--color-text-body);
  vertical-align: middle;
}

.trade-table tr:hover td {
  background-color: var(--color-royal-soft);
}

/* Export Documentation Checklist Cards */
.doc-compliance-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.doc-compliance-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 102, 196, 0.3);
  box-shadow: var(--shadow-md);
}

.doc-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--color-royal-soft);
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.doc-compliance-card:hover .doc-step-badge {
  background: var(--color-orange);
  color: var(--color-white);
}

/* ==========================================================================
   10. INDUSTRIES & BUYER CARDS
   ========================================================================== */
.buyer-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all var(--transition-fast);
}

.buyer-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-royal);
  box-shadow: var(--shadow-md);
}

.buyer-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-royal-soft);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.buyer-title {
  font-size: 1.05rem;
  color: var(--color-navy);
  font-weight: 700;
}

/* ==========================================================================
   11. FAQ ACCORDION
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: rgba(18, 102, 196, 0.35);
  box-shadow: var(--shadow-md);
}

.faq-trigger {
  width: 100%;
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy);
  text-align: left;
  background: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-trigger:hover {
  color: var(--color-royal);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-normal), background-color var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background-color: var(--color-orange);
  color: var(--color-white);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 1.5rem;
}

.faq-item.active .faq-content {
  padding-bottom: 1.35rem;
}

.faq-content p {
  color: var(--color-text-body);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   12. CONVERSION CTA SECTION (PRE-FOOTER)
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 60%, var(--color-royal) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
  color: var(--color-white);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 169, 40, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

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

/* ==========================================================================
   13. SITE FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--color-navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: clamp(3.5rem, 6vw, 5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1.3fr 1.7fr;
    gap: 3rem;
  }
}

.footer-brand .footer-logo {
  height: 52px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  margin-bottom: 1.25rem;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.footer-heading {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--color-orange);
  border-radius: 2px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-item svg {
  color: var(--color-orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.75);
}

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

.footer-bottom {
  padding: 1.75rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.footer-legal-links a:hover {
  color: var(--color-white);
}

/* ==========================================================================
   14. FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background-color: var(--color-whatsapp);
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: var(--color-whatsapp-dark);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
  color: var(--color-white);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-pulse {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid var(--color-whatsapp);
  animation: waPulse 2s infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ==========================================================================
   15. INNER PAGE HERO BANNER (WITH CONTEXTUAL IMAGES)
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 9.5rem 0 4.75rem;
  color: var(--color-white);
  overflow: hidden;
  background-color: var(--color-navy-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* Default overlay for page heroes */
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(7, 28, 75, 0.94) 0%, rgba(11, 42, 111, 0.88) 55%, rgba(18, 102, 196, 0.76) 100%);
  z-index: 1;
}

/* Subtle bottom blend mask */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--color-bg-light), transparent);
  pointer-events: none;
  z-index: 2;
}

/* Ensure container content sits on top of overlay */
.page-hero .container {
  position: relative;
  z-index: 3;
}

.page-hero h1 {
  color: var(--color-white);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 0.85rem;
}

.page-hero p {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
}

/* Page Hero Specific Background Images */
.page-hero-about {
  background-image: url('../images/about/about-sourcing.jpg');
}

.page-hero-products {
  background-image: url('../images/products/category-spices.jpg');
}

.page-hero-product-detail {
  background-image: url('../images/products/category-agriculture.jpg');
}

.page-hero-services {
  background-image: url('../images/hero/hero-shipping.jpg');
}

.page-hero-global-trade {
  background-image: url('../images/hero/hero-shipping.jpg');
  background-position: center top;
}

.page-hero-quality {
  background-image: url('../images/quality/quality-compliance.jpg');
}

.page-hero-quote {
  background-image: url('../images/about/about-sourcing.jpg');
}

.page-hero-contact {
  background-image: url('../images/hero/hero-shipping.jpg');
}

.page-hero-insights {
  background-image: url('../images/about/about-sourcing.jpg');
}

.page-hero-legal {
  background-image: url('../images/hero/hero-shipping.jpg');
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.25rem;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumbs a:hover {
  color: var(--color-gold);
}

.breadcrumbs span.current {
  color: var(--color-gold);
  font-weight: 600;
}

/* ==========================================================================
   16. PRODUCT CATALOG & FILTER UI
   ========================================================================== */
.catalog-header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .catalog-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-pill {
  padding: 0.45rem 1.1rem;
  font-family: var(--font-heading);
  font-size: 0.825rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-navy);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.filter-pill .filter-pill-count {
  opacity: 0.65;
  font-size: 0.75rem;
}

.filter-pill:hover {
  background: var(--color-royal-soft);
  color: var(--color-royal);
  border-color: rgba(18, 102, 196, 0.3);
}

.filter-pill.active {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
  box-shadow: 0 2px 8px rgba(11, 42, 111, 0.2);
}

.filter-pill.active .filter-pill-count {
  color: var(--color-gold);
  opacity: 1;
}

.search-input-wrap {
  position: relative;
  min-width: 280px;
}

.search-input-wrap input {
  padding-left: 2.5rem;
  border-radius: var(--radius-full);
}

.search-input-wrap svg {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
}

/* Category Description Callout Banner */
.category-info-banner {
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-orange);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: bannerFade 0.3s ease forwards;
}

@media (min-width: 768px) {
  .category-info-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

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

.category-info-body {
  flex: 1;
}

/* Product Card Component */
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  display: flex;
  flex-direction: column;
  animation: productCardFade 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(18, 102, 196, 0.3);
}

.product-media {
  height: 200px;
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg-alt);
}

.product-media a {
  display: block;
  width: 100%;
  height: 100%;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-category-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(11, 42, 111, 0.92);
  backdrop-filter: blur(4px);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}

.product-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.product-title a {
  color: var(--color-navy);
  transition: color var(--transition-fast);
}

.product-title a:hover {
  color: var(--color-orange);
}

.product-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}

.product-price-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-orange);
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

/* ==========================================================================
   17. BACK TO TOP BUTTON
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  background-color: var(--color-white);
  color: var(--color-navy);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 998;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-3px);
}
