/* ==========================================================================
   EXIMMARK CORPORATE PORTAL - MASTER STYLESHEET
   ========================================================================== */

/* ─── ROOT & TOKENS ─────────────────────────────────── */
:root {
  --accent:      #0b2240; /* Official Corporate Deep Navy from Logo */
  --accent-2:    #c59b27; /* Official Premium Gold from Logo */
  --accent-dark: #07162b;
  --dark:        #080c11;
  --dark2:       #0d131a;
  --mid:         #141b24;
  --light-bg:    #f5f7fa;
  --text:        #2d3748;
  --muted:       #718096;
  --white:       #fff;
  --ff-head:     'Outfit', sans-serif;
  --ff-body:     'Inter', sans-serif;
  --radius:      12px;
  --transition:  0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); color: var(--text); background: #fff; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--ff-head); font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.1; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); line-height: 1.15; }
p  { line-height: 1.85; color: #555; }
a  { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
section { padding: 90px 0; }

/* ─── UTILITIES ─────────────────────────────────────── */
.subtitle {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(197,155,39,.1);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.subtitle.gold { color: var(--accent-2); background: rgba(197,155,39,.15); }
.subtitle.white { color: #fff; background: rgba(255,255,255,.15); }

.divider {
  position: relative;
  width: 60px;
  height: 4px;
  background: var(--accent-2);
  border-radius: 2px;
  margin-bottom: 24px;
}
.divider::after {
  content: '';
  position: absolute;
  left: 68px;
  top: 0;
  width: 10px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

/* Buttons */
.btn-ex {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-head); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 15px 32px; border-radius: var(--radius);
  transition: var(--transition); cursor: pointer; border: 2px solid transparent;
}
.btn-ex.green  { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-ex.green:hover  { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-ex.gold   { background: var(--accent-2); color: #fff; border-color: var(--accent-2); }
.btn-ex.gold:hover   { background: transparent; color: var(--accent-2); border-color: var(--accent-2); }
.btn-ex.outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ex.outline-white:hover { background: #fff; color: var(--dark); }
.btn-ex.outline-dark  { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-ex.outline-dark:hover  { background: var(--dark); color: #fff; }

.ul-check { list-style: none; padding: 0; }
.ul-check li {
  position: relative; padding-left: 28px;
  margin-bottom: 10px; font-size: 0.92rem; color: #444; font-weight: 500;
}
.ul-check li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 0; color: var(--accent-2); font-size: 0.78rem; top: 4px;
}

/* ─── LOADER ──────────────────────────────────────── */
#de-loader {
  position: fixed; inset: 0; background: var(--dark);
  z-index: 99999; display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease;
}
#de-loader.hide { opacity: 0; pointer-events: none; }
.loader-ring {
  width: 52px; height: 52px;
  border: 4px solid rgba(255,255,255,.1);
  border-top-color: var(--accent-2);
  border-radius: 50%; animation: spin 0.85s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── BACK TO TOP ─────────────────────────────────── */
#back-to-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 48px; height: 48px; background: var(--accent-2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; z-index: 9999;
  opacity: 0; transform: translateY(12px); transition: var(--transition);
  box-shadow: 0 6px 24px rgba(197,155,39,.45);
}
#back-to-top.show { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--accent); }

/* ─── HEADER ──────────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 1px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
header.scrolled {
  background: rgba(8,12,17,.97); backdrop-filter: blur(14px);
  padding: 4px 0; box-shadow: 0 4px 30px rgba(0,0,0,.45);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo-wrap-img {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: none;
}
.logo-wrap-img:hover {
  transform: translateY(-2px);
}
.logo-wrap-img img {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.85)) drop-shadow(0 0 1px rgba(255,255,255,0.9));
  transition: height 0.4s ease;
}
header.scrolled .logo-wrap-img img {
  height: 100px;
}

nav ul { list-style: none; display: flex; gap: 2px; margin: 0; padding: 0; }
nav ul li a {
  font-family: var(--ff-head);
  font-size: 1.05rem; /* Increased for premium readability */
  font-weight: 700;    /* Made bolder and highly visible */
  color: #fff;         /* High-contrast crisp white */
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
}
nav ul li a:hover, nav ul li a.active {
  color: var(--accent-2);
  background: rgba(255,255,255,0.1);
}

.header-cta a {
  font-family: var(--ff-head); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--accent-2); color: #fff; padding: 11px 24px;
  border-radius: var(--radius); transition: var(--transition); white-space: nowrap;
}
.header-cta a:hover { background: #ab8620; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }

.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: var(--dark); z-index: 990;
  flex-direction: column; align-items: center; justify-content: center; gap: 22px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--ff-head); font-size: 1.5rem; font-weight: 700; color: #fff; transition: color 0.2s; }
.mobile-nav a:hover { color: var(--accent-2); }
.mobile-close { position: absolute; top: 26px; right: 26px; background: none; border: none; color: rgba(255,255,255,.6); font-size: 1.6rem; cursor: pointer; }

@media (max-width: 991px) {
  nav, .header-cta { display: none; }
  .hamburger { display: flex; }
}

/* ─── SIDEBAR ─────────────────────────────────────── */
.sidebar-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  z-index: 4999; display: none; backdrop-filter: blur(3px);
}
.sidebar-backdrop.open { display: block; }
#sidebar-overlay {
  position: fixed; top: 0; right: -400px; width: 360px; height: 100vh;
  background: var(--dark2); color: #fff; z-index: 5000;
  padding: 60px 36px; overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -6px 0 40px rgba(0,0,0,.5);
}
#sidebar-overlay.open { right: 0; }
.sidebar-close {
  position: absolute; top: 22px; right: 22px;
  background: none; border: none; color: rgba(255,255,255,.5); font-size: 1.4rem; cursor: pointer;
}
.sidebar-close:hover { color: var(--accent-2); }
#sidebar-overlay h5 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--accent-2); margin: 28px 0 14px;
}
#sidebar-overlay ul { list-style: none; padding: 0; }
#sidebar-overlay ul li {
  padding: 9px 0; color: rgba(255,255,255,.6); font-size: 0.88rem;
  border-bottom: 1px solid rgba(255,255,255,.06); display: flex; align-items: center; gap: 10px;
}
#sidebar-overlay ul li i { color: var(--accent-2); font-size: 0.72rem; }
.sc-item { display: flex; align-items: flex-start; gap: 12px; padding: 9px 0; color: rgba(255,255,255,.62); font-size: 0.88rem; }
.sc-item a:hover { color: var(--accent-2); }
.sc-item i { color: var(--accent-2); margin-top: 3px; min-width: 14px; }
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.social-icons a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 0.82rem; transition: background 0.22s, color 0.22s;
}
.social-icons a:hover { background: var(--accent-2); color: #fff; }

/* ─── HERO SLIDER ─────────────────────────────────── */
#section-hero { padding: 0; height: 100vh; min-height: 660px; }
.swiper-hero { width: 100%; height: 100%; }
.slide-inner {
  position: relative; width: 100%; height: 100vh; min-height: 660px;
  background-size: cover; background-position: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
}
.slide-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,12,17,.85) 0%, rgba(11,34,64,.4) 100%);
  z-index: 2;
}
.slide-content {
  position: relative; z-index: 3; text-align: center;
  padding: 0 20px; max-width: 880px;
}
.slide-content h1 {
  font-size: clamp(2rem, 5.5vw, 4.2rem); font-weight: 900; color: #fff;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 22px;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.slide-content p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 600px; margin: 0 auto 32px; }
.slide-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
 
.slide-bottom-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  padding: 20px 0;
  background: rgba(0,0,0,.4); backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,.06);
}
.bar-items { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 10px; }
.bar-item { text-align: center; color: #fff; }
.bar-num { font-size: 0.65rem; font-weight: 700; color: var(--accent-2); letter-spacing: 2px; margin-bottom: 4px; }
.bar-item h6 { font-size: 0.8rem; font-weight: 600; margin: 0; color: rgba(255,255,255,.88); }

.swiper-button-prev, .swiper-button-next {
  color: #fff !important; background: rgba(255,255,255,.1);
  width: 52px !important; height: 52px !important; border-radius: 50%; transition: background 0.25s;
}
.swiper-button-prev:hover, .swiper-button-next:hover { background: var(--accent-2); }
.swiper-button-prev::after, .swiper-button-next::after { font-size: 1rem !important; font-weight: 900; }
.swiper-pagination-bullet { background: rgba(255,255,255,.4) !important; }
.swiper-pagination-bullet-active { background: var(--accent-2) !important; width: 24px !important; border-radius: 4px !important; }

/* ─── MARQUEE / TICKER ───────────────────────────── */
.ticker-wrap {
  background: var(--accent); padding: 14px 0; overflow: hidden; white-space: nowrap;
}
.ticker-inner { display: inline-flex; animation: ticker 28s linear infinite; }
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff-head); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.9);
  padding: 0 40px;
}
.ticker-item i { color: var(--accent-2); font-size: 0.7rem; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── ABOUT ──────────────────────────────────────── */
.about-img-wrap { position: relative; border-radius: 12px; overflow: hidden; }
.about-img-wrap img { width: 100%; height: 500px; object-fit: cover; object-position: center center; border-radius: 12px; transition: transform 0.6s ease; }
.about-img-wrap:hover img { transform: scale(1.04); }
.about-exp-badge {
  position: absolute; bottom: 28px; left: -18px;
  background: var(--accent); color: #fff; padding: 22px 28px;
  border-radius: 10px; text-align: center; box-shadow: 0 14px 40px rgba(11,34,64,.5);
}
.about-exp-badge .badge-num { font-family: var(--ff-head); font-size: 3.2rem; font-weight: 900; line-height: 1; }
.about-exp-badge .badge-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; opacity: 0.9; }

.about-cert-strip {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px;
}
.cert-pill {
  display: flex; align-items: center; gap: 7px;
  background: var(--light-bg); border: 1px solid #ddd;
  border-radius: 20px; padding: 7px 16px;
  font-size: 0.8rem; font-weight: 600; color: #333;
}
.cert-pill i { color: var(--accent-2); font-size: 0.75rem; }

/* ─── STATS ──────────────────────────────────────── */
#section-stats { padding: 0; }
.stats-band {
  background: var(--dark); padding: 60px 0;
  position: relative; overflow: hidden;
}
.stats-band::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(197,155,39,.1) 0%, transparent 60%);
}
.stat-card {
  text-align: center; padding: 20px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-card:last-child { border-right: none; }
.stat-num { font-family: var(--ff-head); font-size: 3rem; font-weight: 900; color: #fff; line-height: 1; }
.stat-num .suffix { color: var(--accent-2); }
.stat-label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.4); margin-top: 6px; }

/* ─── SERVICES ────────────────────────────────────── */
#section-services { background: var(--light-bg); }
.swiper-services { padding-bottom: 44px !important; }
.service-card {
  background: #fff; border-radius: var(--radius); padding: 34px 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,.03); height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,.03);
  border-bottom: 3px solid transparent; cursor: pointer;
}
.service-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 20px 40px rgba(11,34,64,.08); 
  border-color: var(--accent-2); 
  background: linear-gradient(to bottom, #fff, #fafbfd);
}
.svc-icon {
  width: 66px; height: 66px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(197, 155, 39, 0.1), rgba(11, 34, 64, 0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--accent-2); margin-bottom: 20px;
  transition: transform 0.3s ease;
}
.service-card:hover .svc-icon { transform: scale(1.1) rotate(-6deg); }
.service-card h4 { color: var(--dark); margin-bottom: 10px; font-size: 1.05rem; }
.service-card p { font-size: 0.87rem; margin: 0; line-height: 1.75; }

/* ─── QUOTE / INQUIRY FORM ────────────────────────── */
#section-quote { padding: 0; }
.quote-img { width: 100%; height: 520px; object-fit: cover; display: block; }
.quote-panel {
  background: var(--dark2); padding: 70px 56px; height: 100%; position: relative;
}
.quote-panel .subtitle { margin-bottom: 6px; }
.quote-panel h2 { color: #fff; margin-bottom: 8px; }
.quote-panel p { color: rgba(255,255,255,.5); font-size: 0.9rem; margin-bottom: 28px; }
.form-field { margin-bottom: 16px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius);
  padding: 14px 20px; color: #fff; font-size: 0.88rem;
  outline: none; transition: var(--transition); font-family: var(--ff-body);
  appearance: none;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,.3); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { 
  border-color: var(--accent-2);
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 12px rgba(197, 155, 39, 0.2);
}
.form-field select option { background: var(--dark2); color: #fff; }
.form-field textarea { resize: none; height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.submit-btn {
  width: 100%; background: var(--accent-2); color: #fff; border: none;
  padding: 15px; border-radius: 8px; font-family: var(--ff-head); font-size: 0.88rem;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer;
  transition: background 0.25s; margin-top: 6px;
}
.submit-btn:hover { background: #ab8620; }
#form-success {
  display: none; background: rgba(197,155,39,.15); border: 1px solid rgba(197,155,39,.3);
  border-radius: 8px; padding: 16px; color: #ffd666; font-size: 0.9rem; margin-top: 12px;
}

/* ─── PRODUCTS / CATEGORIES ───────────────────────── */
#section-products { }
.product-card {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.02);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 18px 50px rgba(11,34,64,.15); }
.product-card img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.product-card:hover img { transform: scale(1.07); }
.product-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,12,17,.85) 0%, transparent 55%);
}
.product-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 20px;
}
.product-label .cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-2); margin-bottom: 4px; }
.product-label h5 { color: #fff; font-size: 1rem; margin: 0; }

/* ─── WHY CHOOSE US ───────────────────────────────── */
#section-why { background: var(--dark); }
.why-card {
  display: flex; gap: 18px; padding: 26px; border-radius: var(--radius);
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.05);
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(197,155,39,.08); border-color: rgba(197,155,39,.3); transform: translateY(-4px);
}
.why-icon {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 10px;
  background: var(--accent-2); display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: #fff;
}
.why-card h4 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,.5); font-size: 0.87rem; margin: 0; line-height: 1.75; }

/* ─── PROCESS / HOW WE WORK ───────────────────────── */
#section-process { background: var(--light-bg); }
.process-step {
  text-align: center; padding: 0 20px; position: relative;
}
.process-step::after {
  content: '\f061'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; right: -18px; top: 22px;
  color: #ccc; font-size: 1.1rem;
}
.process-step:last-child::after { display: none; }
.step-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--accent-2); color: #fff; font-family: var(--ff-head);
  font-size: 1.3rem; font-weight: 900; display: flex;
  align-items: center; justify-content: center; margin: 0 auto 18px;
  box-shadow: 0 8px 28px rgba(197,155,39,.4);
}
.process-step h5 { font-size: 0.95rem; color: var(--dark); margin-bottom: 8px; }
.process-step p { font-size: 0.83rem; color: #777; }

/* ─── CTA BAND ────────────────────────────────────── */
#section-cta {
  background: linear-gradient(135deg, var(--accent) 0%, #07162b 100%);
  padding: 70px 0; position: relative; overflow: hidden;
  border-top: 1px solid rgba(197,155,39,0.15);
}
#section-cta::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
#section-cta h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
#section-cta p { color: rgba(255,255,255,.75); font-size: 1rem; max-width: 520px; }

/* ─── TESTIMONIALS ────────────────────────────────── */
#section-testimonials { }
.testimonial-card {
  background: #fff; border-radius: var(--radius); padding: 32px;
  box-shadow: 0 10px 35px rgba(0,0,0,.03); height: 100%;
  border-top: 4px solid var(--accent-2);
  border-left: 1px solid rgba(0,0,0,.015);
  border-right: 1px solid rgba(0,0,0,.015);
  border-bottom: 1px solid rgba(0,0,0,.015);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(197, 155, 39, 0.08);
}
.stars { color: var(--accent-2); font-size: 0.85rem; margin-bottom: 16px; }
.testimonial-card p { font-style: italic; color: #555; font-size: 0.92rem; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testimonial-author .name { font-family: var(--ff-head); font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.testimonial-author .role { font-size: 0.77rem; color: var(--muted); }

/* ─── [NEW] GLOBAL FOOTPRINT & TRADE ROUTES ───────── */
.route-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 10px 30px rgba(0,0,0,.02);
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.route-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(197,155,39,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.route-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(11,34,64,0.06);
  border-color: var(--accent-2);
}
.route-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.route-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(197,155,39,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2); font-size: 1rem;
}
.route-card h4 { font-size: 1.15rem; color: var(--accent); margin: 0; }
.route-card p { font-size: 0.88rem; color: #666; line-height: 1.7; margin-bottom: 14px; }
.route-details {
  display: flex;
  justify-content: space-between;
  border-top: 1px dashed rgba(0,0,0,0.08);
  padding-top: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}
.route-details span i { color: var(--accent-2); margin-right: 4px; }

/* ─── [NEW] INTERACTIVE ACCORDION FAQS ───────────── */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 16px;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 5px 15px rgba(0,0,0,.01);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  box-shadow: 0 10px 25px rgba(11,34,64,0.04);
  border-color: rgba(197,155,39,0.25);
}
.faq-trigger {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: var(--transition);
}
.faq-trigger h4 {
  font-size: 1.05rem;
  color: var(--accent);
  margin: 0;
  font-weight: 600;
  transition: color 0.22s;
}
.faq-trigger:hover h4 { color: var(--accent-2); }
.faq-icon-box {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(11,34,64,0.04);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 0.8rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-trigger:hover .faq-icon-box {
  background: var(--accent-2);
  color: #fff;
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.4s ease;
  padding: 0 28px;
}
.faq-content p {
  padding-bottom: 22px;
  color: #555;
  font-size: 0.92rem;
  line-height: 1.8;
  margin: 0;
}
/* Opened State */
.faq-item.active {
  border-color: var(--accent-2);
  box-shadow: 0 12px 30px rgba(11,34,64,0.05);
}
.faq-item.active .faq-trigger h4 {
  color: var(--accent-2);
}
.faq-item.active .faq-icon-box {
  background: var(--accent-2);
  color: #fff;
  transform: rotate(180deg);
}
.faq-item.active .faq-content {
  max-height: 250px;
}

/* ─── [NEW] BLOG FEED & POST CARDS ───────────────── */
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 8px 30px rgba(0,0,0,.02);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(11,34,64,.08);
  border-color: var(--accent-2);
}
.blog-img-wrap {
  position: relative;
  overflow: hidden;
}
.blog-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img-wrap img {
  transform: scale(1.06);
}
.blog-category {
  position: absolute;
  top: 15px; left: 15px;
  background: var(--accent-2);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(197,155,39,0.3);
}
.blog-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-meta {
  display: flex;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 12px;
}
.blog-meta span i { color: var(--accent-2); margin-right: 4px; }
.blog-card h3 {
  font-size: 1.2rem;
  color: var(--accent);
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.blog-card:hover h3 { color: var(--accent-2); }
.blog-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.75;
  margin-bottom: 20px;
  flex-grow: 1;
}
.blog-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-2);
  transition: var(--transition);
  width: fit-content;
}
.blog-readmore i { transition: transform 0.22s; }
.blog-card:hover .blog-readmore i {
  transform: translateX(4px);
}

/* ─── FOOTER ──────────────────────────────────────── */
footer { background: var(--dark); color: rgba(255,255,255,.6); padding: 80px 0 0; }
.footer-logo-name { font-family: var(--ff-head); font-size: 1.8rem; font-weight: 900; color: #fff; display: block; margin-bottom: 14px; }
.footer-logo-name span { color: var(--accent-2); }
footer .widget h5 {
  color: #fff; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 18px;
}
footer .widget ul { list-style: none; padding: 0; }
footer .widget ul li { margin-bottom: 10px; }
footer .widget ul li a { color: rgba(255,255,255,.5); font-size: 0.88rem; transition: color 0.2s; }
footer .widget ul li a:hover { color: var(--accent-2); }
.foot-contact-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; opacity: 0.35; margin-bottom: 5px; }
.foot-contact-val { font-family: var(--ff-head); font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 22px; }
.foot-contact-val a:hover { color: var(--accent-2); }
.subfooter { border-top: 1px solid rgba(255,255,255,.07); padding: 22px 0; margin-top: 56px; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,.25); }
.subfooter a { color: var(--accent-2); }

/* ─── ANIMATIONS ──────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(12px); /* Luxury subtle drift */
  transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left {
  opacity: 0;
  transform: translateY(12px); /* Minimalistic vertical transition */
  transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.fade-left.visible { opacity: 1; transform: translateY(0); }
.fade-right {
  opacity: 0;
  transform: translateY(12px); /* Minimalistic vertical transition */
  transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.fade-right.visible { opacity: 1; transform: translateY(0); }
.scale-in {
  opacity: 0;
  transition: opacity 0.5s ease; /* Elegant fade without size jumps */
}
.scale-in.visible { opacity: 1; }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; } .d6 { transition-delay: 0.6s; }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 767px) {
  section { padding: 60px 0; }
  .quote-panel { padding: 44px 24px; }
  .quote-img { height: 300px; }
  .form-row { grid-template-columns: 1fr; }
  .about-exp-badge { left: 10px; bottom: 10px; }
  .slide-content h1 { font-size: 1.65rem; }
  .process-step::after { display: none; }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
}
