/* CST Logistics - Combined CSS (auto-generated) */
/* For development, edit individual files in css/ folder */
/* This file aggregates all split CSS for backward compatibility */

/* ========== base.css ========== */

/* --- Variables & Reset --- */
:root {
  --bg-dark: #0b0d10;
  --bg-card: rgba(20, 24, 30, 0.6);
  --primary: #ff4d00;
  --primary-glow: rgba(255, 77, 0, 0.4);
  --text-main: #ffffff;
  --text-muted: #a0a4b0;
  --border-color: rgba(255, 255, 255, 0.1);

  --font-heading: "Kanit", sans-serif;
  --font-body: "Kanit", sans-serif;

  --container-width: 1280px;
  --transition: all 0.3s ease;
  --radius: 50px;
  --radius-card: 16px;
  --radius-btn: 50px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

/* --- Utility --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.text-gradient {
  background: linear-gradient(90deg, #ffffff, #a0a4b0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 8px;
  z-index: 1000;
  border-radius: var(--radius-btn);
}
.skip-link:focus {
  top: 0;
}

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.6s; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-transform: uppercase;
  font-family: var(--font-heading);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
  background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, transparent 70%);
}

.btn:hover::after {
  opacity: 1;
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #e04400);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 77, 0, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ff6a2a, var(--primary));
  box-shadow: 0 6px 25px var(--primary-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 77, 0, 0.08);
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--primary);
  border: none;
  font-weight: 700;
  border-radius: var(--radius-btn);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.arrow {
  margin-left: 8px;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn:hover .arrow {
  transform: translateX(4px);
}


/* --- Animations --- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}




/* ========== loader.css ========== */
/* ============================================
   PAGE LOADING ANIMATION
   ============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-logo span {
  color: var(--primary);
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.loader-bar-inner {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #ff8c00);
  border-radius: 3px;
  animation: loaderProgress 1.2s ease-in-out forwards;
}

@keyframes loaderProgress {
  0% { width: 0; }
  50% { width: 70%; }
  100% { width: 100%; }
}



/* ========== header.css ========== */
/* --- Header (Capsule Glassmorphism) --- */
#site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  width: calc(100% - 40px);
  max-width: 1300px;
  background: rgba(15, 18, 24, 0.45);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 12px 28px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

#site-header.scrolled {
  padding: 10px 28px;
  background: rgba(11, 13, 16, 0.65);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 2px;
  transition: transform 0.3s;
}

.logo:hover {
  transform: scale(1.03);
}

.logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
  animation: logo-glow 3s ease-in-out infinite;
}

.logo:hover .logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 77, 0, 0.6));
}

@keyframes logo-glow {
  0%, 100% { filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(255, 77, 0, 0.3)); }
  50% { filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 77, 0, 0.6)); }
}

.loader-logo-img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 77, 0, 0.5));
  margin-bottom: 8px;
}

.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.main-nav > ul {
  display: flex;
  gap: 8px;
  align-items: center;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s;
}
.main-nav a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.nav-actions .btn {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* --- Dropdown Menu --- */
.has-dropdown {
  position: relative;
}

.has-dropdown > a::after {
  content: '▾';
  margin-left: 4px;
  font-size: 0.7em;
  opacity: 0.6;
  transition: transform 0.3s;
}

.has-dropdown:hover > a::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: rgba(15, 18, 24, 0.85);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 8px;
  margin-top: 0;
  z-index: 1000;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}

.has-dropdown:hover > .dropdown-menu {
  display: block;
  animation: dropdownIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.dropdown-menu li {
  padding: 0;
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
  white-space: nowrap;
  border-radius: 10px;
}

.dropdown-menu li a:hover {
  color: white;
  background: rgba(255, 77, 0, 0.12);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px 0;
  border-radius: 3px;
  transition: all 0.3s;
}

/* Mobile-only CTA button — hidden on desktop */
.mobile-nav-cta {
  display: none;
}

/* ============================================
   LANGUAGE SWITCH
   ============================================ */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 3px;
  position: relative;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lang-switch-btn {
  background: transparent;
  border: none;
  padding: 4px 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 100px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flag-icon {
  width: 22px;
  height: auto;
  display: block;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.lang-switch-btn.active {
  background: rgba(255, 77, 0, 0.2);
  box-shadow: 0 0 15px rgba(255, 77, 0, 0.3);
}

.lang-switch-btn.active .flag-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 5px rgba(255, 77, 0, 0.5));
}

.lang-switch-btn:hover:not(.active) {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}






/* ========== hero.css ========== */
/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
  text-align: center;
}

.hero-bg-rings {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  animation: ring-pulse 6s ease-in-out infinite;
}

@keyframes ring-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.ring-1 {
  width: 600px;
  height: 600px;
  top: 100px;
  animation-delay: 0s;
}
.ring-2 {
  width: 900px;
  height: 900px;
  top: -50px;
  animation-delay: 2s;
}
.ring-3 {
  width: 1200px;
  height: 1200px;
  top: -200px;
  border-color: rgba(255, 77, 0, 0.1);
  animation-delay: 4s;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-subtext {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.trust-badges {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}
.separator {
  color: var(--primary);
}

/* --- Hero Waveform/Blocks Pattern --- */
.hero-wave-blocks {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  z-index: 1;
}

.block-column {
  width: 6%;
  height: var(--h);
  background: linear-gradient(
    to top,
    var(--primary) 0%,
    rgba(255, 77, 0, 0.15) 100%
  );
  opacity: 0.85;
  border-radius: 6px 6px 0 0;
  animation: waveBlock 3s ease-in-out infinite;
}

@keyframes waveBlock {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 0.5; }
}

.block-column:nth-child(odd) { animation-delay: 0.3s; }
.block-column:nth-child(even) { animation-delay: 0.6s; }

/* --- Page Hero Banner --- */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #0f1218 0%, #1a1e26 50%, #0B0D10 100%);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.page-hero[style*="background-image"] {
  border-bottom: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

.page-hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}

.page-hero-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 180px 0 80px;
  overflow: hidden;
  border-bottom: none;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 13, 16, 0.4) 0%,
    rgba(11, 13, 16, 0.65) 50%,
    rgba(11, 13, 16, 1) 90%,
    rgba(11, 13, 16, 1) 100%
  );
  z-index: 1;
}

.page-hero-bg .page-hero-sub {
  color: rgba(255, 255, 255, 0.85);
}



/* ========== components.css ========== */
/* --- Explore Section (Tabs) --- */
.section-explore {
  padding: 80px 0;
  position: relative;
  z-index: 5;
  margin-top: -60px;
}

.section-header {
  margin-bottom: 40px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 24px;
}

.tabs-nav {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 40px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 20px;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s;
  white-space: nowrap;
  border-radius: 25px;
}

.tab-btn:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
  color: white;
  background: var(--primary);
}

.tab-btn.active::after {
  display: none;
}

/* --- Card Grid --- */
.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}
.tab-content.active {
  display: block;
}
.tab-content[hidden] {
  display: none;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 32px;
  border-radius: var(--radius-card);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.card:not(.card-bg):hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  background: rgba(30, 35, 45, 0.9);
  box-shadow: 0 20px 60px rgba(255, 77, 0, 0.1);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--primary);
  border-left: 2px solid var(--primary);
  border-radius: 0 0 8px 0;
  opacity: 0;
  transition: opacity 0.3s, width 0.3s, height 0.3s;
}
.card:not(.card-bg):hover::before {
  opacity: 1;
  width: 30px;
  height: 30px;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--primary);
  transition: transform 0.3s;
}

.card:not(.card-bg):hover .card-icon {
  transform: scale(1.15);
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.card-link {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}

/* --- Background Image Cards (Explore Section) --- */
a.card-bg {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

a.card-bg::before {
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s, width 0.3s, height 0.3s;
}

a.card-bg:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: var(--border-color) !important;
}

a.card-bg:hover::before {
  opacity: 0 !important;
  transform: none !important;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 13, 16, 0.1) 0%,
    rgba(11, 13, 16, 0.5) 40%,
    rgba(11, 13, 16, 0.9) 75%,
    rgba(11, 13, 16, 0.97) 100%
  );
  z-index: 1;
}

.card-content {
  position: relative;
  z-index: 2;
  padding: 32px;
}

a.card-bg .card-icon {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

a.card-bg h3 {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

a.card-bg p {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}


/* --- Testimonial --- */
.section-testimonial {
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 60px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-card);
  transition: border-color 0.3s;
}

.testimonial-panel:hover {
  border-color: rgba(255, 77, 0, 0.3);
}

.logo-area {
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: white;
}

blockquote {
  font-size: 1.5rem;
  font-family: var(--font-body);
  font-weight: 300;
  color: #e0e0e0;
  margin-bottom: 32px;
  line-height: 1.5;
}

cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: var(--text-muted);
}
cite strong {
  color: var(--primary);
  margin-bottom: 4px;
  text-transform: uppercase;
}

/* --- CTA Band --- */
.cta-band {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1b69 25%, #6b2f3a 50%, #e04400 75%, #ff6a2a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: white;
  margin-top: 60px;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 106, 42, 0.25) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(45, 27, 105, 0.3) 0%, transparent 50%);
  animation: ctaGlow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(3%, -3%); }
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-frame-border {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 40px;
  display: inline-block;
  position: relative;
  border-radius: 20px;
}

.deco-corner {
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: conic-gradient(#000 90deg, transparent 90deg);
  opacity: 0.1;
}
.top-left { top: 0; left: 0; transform: scale(1); }
.top-right { top: 0; right: 0; transform: rotate(90deg); }
.bottom-left { bottom: 0; left: 0; transform: rotate(-90deg); }
.bottom-right { bottom: 0; right: 0; transform: rotate(180deg); }

.cta-band h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: white;
}

.cta-band p {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
  opacity: 0.9;
}


/* --- Services Grid (services.html) --- */
.section-services-overview {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

/* --- 3-Column Service Cards --- */
.services-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255, 77, 0, 0.12);
}

.service-card-img {
  position: relative;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: #1a1e26;
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(11, 13, 16, 0.9) 100%);
}

.service-card-body {
  padding: 24px;
}

.service-card-body .service-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  transition: transform 0.3s;
}

.service-card:hover .service-card-body .service-card-icon {
  transform: scale(1.15);
}

.service-card-body h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: white;
  margin-bottom: 4px;
}

.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 12px;
}

.service-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-card-large {
  display: block;
  padding: 40px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  color: inherit;
}

.service-card-large:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255, 77, 0, 0.12);
}

.service-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  transition: transform 0.3s;
}

.service-card-large:hover .service-card-icon {
  transform: scale(1.15);
}

.service-card-large h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: white;
}

.service-card-large p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.service-features li {
  padding: 6px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card-link {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.card-link .arrow {
  transition: transform 0.2s;
  display: inline-block;
}

.service-card-large:hover .card-link .arrow {
  transform: translateX(4px);
}

/* --- Services Listing Page (services/index.html) --- */
.section-services-list {
  padding: 80px 0;
}

.section-services-list .section-title {
  margin-top: 48px;
  margin-bottom: 32px;
}

.section-services-list .section-title:first-child {
  margin-top: 0;
}

.services-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.services-card-grid--unified {
  grid-template-columns: repeat(3, 1fr);
}

/* Category badge on service cards */
.service-card-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  background: rgba(255, 77, 0, 0.15);
  color: var(--primary);
  border: 1px solid rgba(255, 77, 0, 0.25);
  width: fit-content;
}

.service-card-badge.badge-warehouse {
  background: rgba(0, 200, 180, 0.12);
  color: #00c8b4;
  border-color: rgba(0, 200, 180, 0.25);
}

.service-card-badge.badge-shipping {
  background: rgba(140, 100, 255, 0.12);
  color: #8c64ff;
  border-color: rgba(140, 100, 255, 0.25);
}

@media (max-width: 900px) {
  .services-card-grid--unified {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-card-grid--unified {
    grid-template-columns: 1fr;
  }
}

/* Service card as <a> link — services listing page */
a.service-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  text-decoration: none;
  color: inherit;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

a.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--primary);
  border-radius: 0 4px 4px 0;
  transition: height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

a.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255, 77, 0, 0.12);
  background: rgba(30, 35, 45, 0.9);
}

a.service-card:hover::before {
  height: 100%;
}

a.service-card .service-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  transition: transform 0.3s;
  line-height: 1;
}

a.service-card:hover .service-card-icon {
  transform: scale(1.15);
}

a.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: white;
  margin-bottom: 10px;
}

a.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

a.service-card .card-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  transition: gap 0.3s;
  gap: 4px;
}

a.service-card:hover .card-link {
  gap: 8px;
}

/* --- Detail Grid (sub-service pages) --- */
.section-detail {
  padding: 80px 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.detail-card {
  padding: 0;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Left accent bar */
.detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), rgba(255, 77, 0, 0.2));
  border-radius: var(--radius-card) 0 0 var(--radius-card);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.detail-card:hover::before {
  opacity: 1;
}

.detail-card:hover {
  border-color: rgba(255, 77, 0, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(255, 77, 0, 0.08),
              0 0 0 1px rgba(255, 77, 0, 0.1);
}

/* Card header area — icon + title */
.detail-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 28px 0;
}

.detail-icon {
  font-size: 1.6rem;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 77, 0, 0.08);
  border: 1px solid rgba(255, 77, 0, 0.15);
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.detail-card:hover .detail-icon {
  background: rgba(255, 77, 0, 0.15);
  border-color: rgba(255, 77, 0, 0.3);
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(255, 77, 0, 0.15);
}

/* Card body area */
.detail-card-body {
  padding: 20px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.detail-card h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: white;
  margin: 0;
  line-height: 1.4;
}

.detail-card p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0;
  font-size: 0.92rem;
  flex: 1;
}

.detail-card ul {
  list-style: none;
  padding: 0;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
}

.detail-card ul li {
  padding: 7px 0;
  padding-left: 22px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.detail-card ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1em;
}

/* --- Clickable Detail Cards --- */
a.detail-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.detail-card-link:hover .card-link .arrow {
  transform: translateX(4px);
}

a.detail-card-link .card-link {
  margin-top: 16px;
}

/* --- Background Image Detail Cards --- */
.detail-card-bg {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.detail-card-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 0;
}

.detail-card-bg:hover::before {
  transform: none;
}

.detail-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 13, 16, 0.15) 0%,
    rgba(11, 13, 16, 0.55) 40%,
    rgba(11, 13, 16, 0.92) 75%,
    rgba(11, 13, 16, 0.98) 100%
  );
  z-index: 1;
  transition: background 0.4s ease;
}

.detail-card-bg:hover .detail-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(11, 13, 16, 0.1) 0%,
    rgba(11, 13, 16, 0.45) 40%,
    rgba(11, 13, 16, 0.88) 75%,
    rgba(11, 13, 16, 0.96) 100%
  );
}

.detail-card-content {
  position: relative;
  z-index: 2;
  padding: 32px;
}

.detail-card-bg .detail-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.detail-card-bg h2 {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.detail-card-bg p {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.detail-card-bg ul li {
  color: rgba(255, 255, 255, 0.8);
}

.detail-card-bg .card-link {
  color: var(--primary);
  font-weight: 600;
  text-shadow: none;
}

/* --- Breadcrumb Navigation (sub-pages) --- */
.breadcrumb-nav {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb-nav a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.breadcrumb-nav a:hover {
  color: var(--primary);
}

.breadcrumb-nav .sep {
  margin: 0 8px;
  opacity: 0.5;
}

/* --- Section Title (shared) --- */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: white;
}

/* --- Card Grid (shared) --- */
.section-why-us,
.section-values {
  padding: 80px 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.card {
  padding: 28px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 77, 0, 0.08);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: white;
}

.card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- CTA Band (sub-pages) --- */
.cta-band {
  padding: 80px 0;
}

.cta-frame-border {
  text-align: center;
  padding: 60px 40px;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,77,0,0.05) 0%, transparent 50%);
  transition: border-color 0.3s;
}

.cta-frame-border:hover {
  border-color: rgba(255, 77, 0, 0.3);
}

.cta-frame-border h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: white;
  margin-bottom: 12px;
}

.cta-frame-border p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: white;
  color: var(--bg-dark);
  font-weight: 600;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* --- Contact Page --- */
.section-contact {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 28px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.required {
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.15);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23999'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn {
  grid-column: 1 / -1;
  justify-self: start;
}

.contact-info-card {
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  margin-bottom: 16px;
  transition: all 0.3s;
}

.contact-info-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.contact-info-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
  transition: transform 0.3s;
}

.contact-info-card:hover .contact-info-icon {
  transform: scale(1.15);
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: white;
  margin-bottom: 6px;
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-info-card a {
  color: var(--primary);
  text-decoration: none;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

.contact-socials {
  display: flex;
  gap: 16px;
}

.contact-socials a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.contact-socials a:hover {
  color: var(--primary);
}

/* --- About Page --- */
.section-about {
  padding: 80px 0;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

/* --- Stats Section --- */
.section-stats {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* --- Responsive for Sub-Pages --- */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid-3col {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .cta-frame-border {
    padding: 40px 24px;
  }

  .page-hero {
    padding: 120px 0 40px;
  }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.section-how-it-works {
  padding: 80px 0;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-top: -16px;
  margin-bottom: 48px;
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step-card {
  flex: 1;
  max-width: 240px;
  text-align: center;
  padding: 24px 16px;
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 12px;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 56px;
  flex-shrink: 0;
}

.step-connector svg {
  width: 40px;
  height: 24px;
}

@media (max-width: 768px) {
  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    padding-top: 0;
    transform: rotate(90deg);
  }
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.section-why-us {
  padding: 80px 0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-us-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.why-us-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #ff8c00);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-us-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(255, 77, 0, 0.08);
}

.why-us-card:hover::after {
  transform: scaleX(1);
}

.why-us-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.why-us-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.why-us-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   REVIEWS PAGE — Category Sections
   ============================================ */
.reviews-category {
  padding: 60px 0;
}

.reviews-category:nth-child(odd) {
  background: rgba(255, 255, 255, 0.02);
}

.reviews-category .section-title {
  font-size: 1.6rem;
  margin-bottom: 32px;
  text-transform: none;
  letter-spacing: 0;
}

.testimonial-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .testimonial-grid-4 {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

/* ============================================
   TESTIMONIAL CARDS (Sub-Pages)
   ============================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(255, 77, 0, 0.08);
}

.testimonial-card .stars {
  color: #ffa500;
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card .review-author strong {
  color: white;
  font-size: 0.9rem;
}

.testimonial-card .review-author span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

/* ============================================
   RELATED SERVICES
   ============================================ */
.section-related {
  padding: 80px 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.related-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 40px 24px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.related-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(255, 77, 0, 0.1);
}

.related-card .related-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.related-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: white;
  margin-bottom: 8px;
}

.related-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.related-card .card-link {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.related-card:hover .card-link .arrow {
  display: inline-block;
  transform: translateX(4px);
  transition: transform 0.3s;
}

@media (max-width: 768px) {
  .related-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ============================================
   FAQ PAGE

   ============================================ */
.section-faq {
  padding: 60px 0 80px;
}

.faq-category {
  margin-bottom: 48px;
}

.faq-category .section-title {
  text-align: left;
  font-size: 1.4rem;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item[open] {
  border-color: var(--primary);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  user-select: none;
  transition: color 0.3s;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-toggle {
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-answer ul {
  margin: 12px 0;
  padding-left: 20px;
}

.faq-answer ul li {
  margin-bottom: 6px;
}

.faq-answer a {
  color: var(--primary);
  text-decoration: underline;
}

/* ============================================
   BLOG PAGE
   ============================================ */
.section-blog {
  padding: 60px 0 80px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.blog-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(255, 77, 0, 0.08);
}

.blog-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-body {
  padding: 48px 24px 24px;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.blog-card h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

.blog-card h2 a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-card h2 a:hover {
  color: var(--primary);
}

.blog-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-read-more {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* ============================================
   TRACKING PAGE
   ============================================ */
.section-tracking {
  padding: 60px 0 80px;
}

.tracking-search-box {
  max-width: 700px;
  margin: 0 auto 48px;
}

.tracking-form {
  text-align: center;
}

.tracking-input-wrapper {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.tracking-input {
  flex: 1;
  padding: 16px 20px;
  font-size: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  color: white;
  outline: none;
  transition: border-color 0.3s;
}

.tracking-input:focus {
  border-color: var(--primary);
}

.tracking-input::placeholder {
  color: var(--text-muted);
}

.tracking-btn {
  white-space: nowrap;
  padding: 16px 32px;
}

.tracking-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.tracking-result {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeSlideUp 0.5s ease both;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.tracking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
}

.tracking-id-display .label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.tracking-id-display .value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.tracking-status-badge {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.status-in-transit {
  background: rgba(255, 165, 0, 0.15);
  color: #ffa500;
  border: 1px solid rgba(255, 165, 0, 0.3);
}

.status-delivered {
  background: rgba(0, 200, 83, 0.15);
  color: #00c853;
  border: 1px solid rgba(0, 200, 83, 0.3);
}

.tracking-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.tracking-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 20px;
}

.info-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.info-value {
  font-weight: 600;
  font-size: 0.95rem;
}

.tracking-timeline {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 32px;
}

.tracking-timeline h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border-color);
}

.timeline-step {
  position: relative;
  padding-bottom: 28px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--border-color);
  z-index: 1;
}

.timeline-step.completed .timeline-dot {
  background: var(--primary);
  border-color: var(--primary);
}

.timeline-step.active .timeline-dot {
  background: var(--bg-dark);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 77, 0, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 77, 0, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(255, 77, 0, 0.1); }
}

.timeline-title {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.timeline-step.completed .timeline-title {
  color: var(--primary);
}

.timeline-step:not(.completed):not(.active) .timeline-title {
  color: var(--text-muted);
}

.timeline-detail {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.timeline-time {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.7;
  margin-top: 4px;
}

.tracking-not-found {
  text-align: center;
  padding: 60px 20px;
  max-width: 500px;
  margin: 0 auto;
  animation: fadeSlideUp 0.5s ease both;
}

.not-found-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.tracking-not-found h3 {
  font-family: var(--font-heading);
  margin-bottom: 12px;
}

.tracking-not-found p {
  color: var(--text-muted);
}

.tracking-not-found a {
  color: var(--primary);
}

/* ============================================
   STATS COUNTER
   ============================================ */
.section-stats-counter {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(255, 77, 0, 0.06) 0%, transparent 50%, rgba(255, 77, 0, 0.04) 100%);
  border-top: 1px solid rgba(255, 77, 0, 0.15);
  border-bottom: 1px solid rgba(255, 77, 0, 0.15);
}

.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-counter-item {
  position: relative;
}

.stat-counter-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.1);
}

.stat-counter-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ff4d00, #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-counter-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .stats-counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .stat-counter-item:not(:last-child)::after { display: none; }
  .section-stats-counter { padding: 50px 0; }
}

/* ============================================
   TRUSTED BY / PARTNERS
   ============================================ */
.section-trusted-by {
  padding: 50px 0;
  text-align: center;
}

.trusted-by-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
  font-weight: 600;
}

.trusted-by-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.partner-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.partner-logo:hover {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .trusted-by-logos { gap: 24px 32px; }
  .partner-logo { font-size: 1rem; }
}

/* ============================================
   CUSTOMER REVIEWS CAROUSEL
   ============================================ */
.section-reviews {
  padding: 100px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.review-card:hover {
  border-color: rgba(255, 77, 0, 0.3);
  transform: translateY(-4px);
}

.review-stars {
  color: #ff8c42;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-quote {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0 0 24px;
  font-style: italic;
  border: none;
  padding: 0;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4d00, #ff8c42);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.review-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-info strong {
  font-size: 0.9rem;
  color: #fff;
}

.review-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .section-reviews { padding: 60px 0; }
}

/* ============================================
   VISION & MISSION
   ============================================ */
.section-vision-mission {
  padding: 80px 0;
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.vm-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.vm-card:hover {
  border-color: rgba(255, 77, 0, 0.3);
  transform: translateY(-4px);
}

.vm-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.vm-card h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.vm-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .vm-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .vm-card { padding: 28px; }
}

/* ============================================
   COMPANY TIMELINE
   ============================================ */
.section-timeline {
  padding: 80px 0;
}

.timeline {
  position: relative;
  margin-top: 48px;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), rgba(255, 77, 0, 0.2));
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 32px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(255, 77, 0, 0.4);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: inline-block;
  background: rgba(255, 77, 0, 0.1);
  padding: 2px 12px;
  border-radius: 4px;
}

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
}

@media (max-width: 768px) {
  .timeline { padding-left: 24px; }
  .timeline::before { left: 7px; }
  .timeline-item { padding-left: 24px; }
  .timeline-item::before { left: -25px; width: 10px; height: 10px; }
}

/* ============================================
   SERVICE SCOPE — PRESENTATION STYLE
   ============================================ */
.scope {
  --scope-accent: #FF6A00;
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.scope__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
  pointer-events: none;
}

.scope__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.scope__left { position: relative; z-index: 2; }

.scope__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 20px;
}

.scope__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.scope__checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.scope__pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px 14px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  background: rgba(255,255,255,0.03);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.scope__pill:hover {
  border-color: rgba(255,106,0,0.45);
  transform: translateX(6px);
  background: rgba(255,106,0,0.06);
  box-shadow: 0 0 20px rgba(255,106,0,0.1);
}

.scope__pill-badge {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--scope-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(255,106,0,0.35);
}

.scope__pill-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  letter-spacing: 0.2px;
}

.scope__right {
  position: relative;
  height: 480px;
  z-index: 1;
}

.scope__dots {
  position: absolute;
  width: 48px;
  height: 48px;
  background-image: radial-gradient(circle, rgba(255,106,0,0.35) 1.5px, transparent 1.5px);
  background-size: 8px 8px;
  z-index: 5;
}

.scope__dots--top { top: 20px; left: 30%; }
.scope__dots--mid { bottom: 100px; right: 10%; width: 36px; height: 36px; }

.scope__hex-group {
  position: relative;
  width: 100%;
  height: 100%;
}

.scope__hex {
  position: absolute;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  overflow: hidden;
  transition: transform 0.4s ease;
  background: linear-gradient(135deg, #FF6A00, #ff8c42);
}

.scope__hex::before {
  content: '';
  position: absolute;
  inset: -3px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(135deg, rgba(255,106,0,0.6), rgba(255,106,0,0.15));
  z-index: -1;
}

.scope__hex::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,106,0,0.12) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.scope__hex:hover { transform: scale(1.05); }

.scope__hex-img {
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  margin: 3px;
  object-fit: cover;
  display: block;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.scope__hex--lg {
  width: 260px; height: 260px;
  top: 10px; right: 20px; z-index: 3;
  filter: drop-shadow(0 4px 30px rgba(255,106,0,0.2));
}

.scope__hex--md {
  width: 200px; height: 200px;
  top: 160px; right: 220px; z-index: 2;
  filter: drop-shadow(0 4px 24px rgba(255,106,0,0.15));
}

.scope__hex--sm {
  width: 150px; height: 150px;
  bottom: 20px; right: 60px; z-index: 4;
  filter: drop-shadow(0 4px 20px rgba(255,106,0,0.18));
}

.scope__hex--xs {
  width: 110px; height: 110px;
  top: 0; right: 280px; z-index: 1;
  filter: drop-shadow(0 4px 16px rgba(255,106,0,0.12));
  opacity: 0.85;
}

@media (max-width: 1024px) {
  .scope__container { gap: 40px; }
  .scope__hex--lg { width: 200px; height: 200px; right: 0; }
  .scope__hex--md { width: 160px; height: 160px; right: 150px; }
  .scope__hex--sm { width: 120px; height: 120px; right: 20px; }
  .scope__hex--xs { width: 90px; height: 90px; right: 200px; }
  .scope__right { height: 380px; }
}

@media (max-width: 768px) {
  .scope { padding: 60px 0; }
  .scope__container { grid-template-columns: 1fr; gap: 40px; }
  .scope__right {
    height: 320px; order: -1;
    margin: 0 auto; width: 100%; max-width: 400px;
  }
  .scope__hex--lg { width: 180px; height: 180px; top: 10px; right: 10px; }
  .scope__hex--md { width: 140px; height: 140px; top: 120px; right: 160px; }
  .scope__hex--sm { width: 110px; height: 110px; bottom: 10px; right: 40px; }
  .scope__hex--xs { width: 80px; height: 80px; top: 0; right: 210px; }
  .scope__pill { padding: 12px 18px 12px 12px; }
}

/* ============================================
   CERTIFICATIONS & COMPLIANCE
   ============================================ */
.certs {
  --certs-accent: #FF6A00;
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.certs__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* --- LEFT: hexagons --- */
.certs__left {
  position: relative;
  height: 420px;
  z-index: 1;
}

.certs__dots {
  position: absolute;
  width: 48px;
  height: 48px;
  background-image: radial-gradient(circle, rgba(255,106,0,0.35) 1.5px, transparent 1.5px);
  background-size: 8px 8px;
  z-index: 5;
}

.certs__dots--top { top: 10px; left: 10%; }
.certs__dots--btm { bottom: 60px; right: 20%; width: 36px; height: 36px; }

.certs__hex-group {
  position: relative;
  width: 100%;
  height: 100%;
}

.certs__hex {
  position: absolute;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  overflow: hidden;
  transition: transform 0.4s ease;
  background: linear-gradient(135deg, #FF6A00, #ff8c42);
}

.certs__hex::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,106,0,0.12) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.certs__hex:hover { transform: scale(1.05); }

.certs__hex-img {
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  margin: 3px;
  object-fit: cover;
  display: block;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.certs__hex--lg {
  width: 280px; height: 280px;
  top: 20px; left: 40px; z-index: 2;
  filter: drop-shadow(0 4px 30px rgba(255,106,0,0.2));
}

.certs__hex--md {
  width: 200px; height: 200px;
  bottom: 10px; left: 200px; z-index: 3;
  filter: drop-shadow(0 4px 24px rgba(255,106,0,0.18));
}

/* --- RIGHT: content --- */
.certs__right { position: relative; z-index: 2; }

.certs__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text-primary, #fff);
  line-height: 1.25;
  margin-bottom: 20px;
}

.certs__desc {
  font-size: 1rem;
  color: var(--text-secondary, rgba(255,255,255,0.6));
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 540px;
}

.certs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.certs__row {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
  cursor: default;
}

.certs__row:hover { transform: translateX(4px); }

.certs__row-desc {
  flex: 1;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  background: rgba(255,255,255,0.03);
  font-size: 0.88rem;
  color: var(--text-secondary, rgba(255,255,255,0.8));
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.certs__row-badge {
  flex-shrink: 0;
  padding: 12px 24px;
  border-radius: 100px;
  background: var(--certs-accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 12px rgba(255,106,0,0.3);
  white-space: nowrap;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .certs__container { gap: 40px; }
  .certs__hex--lg { width: 220px; height: 220px; left: 20px; }
  .certs__hex--md { width: 160px; height: 160px; left: 150px; }
  .certs__left { height: 340px; }
  .certs__row-desc { white-space: normal; }
}

@media (max-width: 768px) {
  .certs { padding: 60px 0; }
  .certs__container { grid-template-columns: 1fr; gap: 40px; }
  .certs__left {
    height: 280px;
    margin: 0 auto;
    width: 100%;
    max-width: 380px;
  }
  .certs__hex--lg { width: 180px; height: 180px; left: 20px; top: 10px; }
  .certs__hex--md { width: 140px; height: 140px; left: 140px; bottom: 10px; }
  .certs__row { flex-direction: column; gap: 8px; }
  .certs__row-desc { width: 100%; text-align: center; white-space: normal; }
  .certs__row-badge { align-self: center; }
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.section-compare { padding: 80px 0; }

.compare-table-wrap {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.92rem;
}

.compare-table thead th {
  padding: 18px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, rgba(255,106,0,0.15), rgba(255,106,0,0.05));
  border-bottom: 2px solid rgba(255,106,0,0.3);
  white-space: nowrap;
}

.compare-table thead th:first-child {
  text-align: left;
  padding-left: 24px;
}

.compare-table tbody td {
  padding: 16px;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}

.compare-table tbody tr:hover td {
  background: rgba(255,106,0,0.04);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-label {
  text-align: left !important;
  padding-left: 24px !important;
  font-weight: 600;
  color: rgba(255,255,255,0.9) !important;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .section-compare { padding: 60px 0; }
  .compare-table { font-size: 0.82rem; }
  .compare-table thead th { padding: 14px 12px; font-size: 0.85rem; }
  .compare-table tbody td { padding: 12px; }
}



/* ========== footer.css ========== */
/* --- Footer --- */
.site-footer {
  background: #050608;
  padding: 80px 0 20px;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}
.social-links {
  display: flex;
  gap: 16px;
  color: var(--text-muted);
}
.social-links a {
  transition: all 0.3s;
  padding: 8px;
  border-radius: 50%;
}
.social-links a:hover {
  color: var(--primary);
  background: rgba(255, 77, 0, 0.1);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact-info h4 {
  color: white;
  font-family: var(--font-heading);
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--text-muted);
  transition: all 0.3s;
  padding: 4px 0;
  position: relative;
}
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s;
}
.footer-links a:hover {
  color: var(--primary);
}
.footer-links a:hover::after {
  width: 100%;
}

/* Footer Contact Info */
.footer-contact-info ul li {
  color: var(--text-muted);
  margin-bottom: 10px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact-info a {
  transition: opacity 0.3s;
}

.footer-contact-info a:hover {
  opacity: 0.8;
}

.success {
  color: #4bb543;
}
.error {
  color: #ff3333;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: #555;
}
.legal-links a {
  margin-left: 20px;
  color: #555;
  transition: color 0.3s;
}
.legal-links a:hover {
  color: var(--primary);
}




/* ========== pages.css ========== */
/* --- Error Pages (404) --- */
.error-page {
  padding: 100px 0 120px;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.error-content {
  max-width: 600px;
  margin: 0 auto;
}

.error-code {
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), #D13E00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.error-page h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.error-description {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

.error-help {
  border-top: 1px solid var(--border-color);
  padding-top: 40px;
}

.error-help h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.error-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.error-links li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.error-links li a:hover {
  color: var(--primary);
}

/* --- Legal / Privacy Policy Pages --- */
.legal-page {
  padding: 120px 0 100px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb a {
  color: var(--primary);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .separator {
  margin: 0 8px;
  color: var(--text-muted);
}

.legal-content h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.legal-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 16px;
  color: white;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 12px;
  color: #e0e0e0;
}

.legal-content h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--primary);
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.legal-content ul li {
  color: var(--text-muted);
  padding: 6px 0 6px 20px;
  position: relative;
  line-height: 1.7;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.legal-content ul li strong {
  color: white;
}

.contact-list li::before {
  display: none;
}

.contact-list li {
  padding-left: 0;
}

@media (max-width: 600px) {
  .error-code { font-size: 5rem; }
  .error-page h1 { font-size: 1.8rem; }
  .error-actions { flex-direction: column; }
  .legal-content h1 { font-size: 1.8rem; }
  .legal-content h2 { font-size: 1.25rem; }
}

/* --- Contact Page --- */
.section-contact {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 28px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.required {
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.15);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23999'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn {
  grid-column: 1 / -1;
  justify-self: start;
}

.contact-info-card {
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  margin-bottom: 16px;
  transition: all 0.3s;
}

.contact-info-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.contact-info-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
  transition: transform 0.3s;
}

.contact-info-card:hover .contact-info-icon {
  transform: scale(1.15);
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: white;
  margin-bottom: 6px;
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-info-card a {
  color: var(--primary);
  text-decoration: none;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

.contact-socials {
  display: flex;
  gap: 16px;
}

.contact-socials a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.contact-socials a:hover {
  color: var(--primary);
}

/* --- About Page --- */
.section-about {
  padding: 80px 0;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

/* --- Stats Section --- */
.section-stats {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
}


/* ============================================
   REVIEWS PAGE — Category Sections
   ============================================ */
.reviews-category {
  padding: 60px 0;
}

.reviews-category:nth-child(odd) {
  background: rgba(255, 255, 255, 0.02);
}

.reviews-category .section-title {
  font-size: 1.6rem;
  margin-bottom: 32px;
  text-transform: none;
  letter-spacing: 0;
}

.testimonial-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .testimonial-grid-4 {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

/* ============================================
   TESTIMONIAL CARDS (Sub-Pages)
   ============================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(255, 77, 0, 0.08);
}

.testimonial-card .stars {
  color: #ffa500;
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card .review-author strong {
  color: white;
  font-size: 0.9rem;
}

.testimonial-card .review-author span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

/* ============================================
   RELATED SERVICES
   ============================================ */
.section-related {
  padding: 80px 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.related-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 40px 24px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.related-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(255, 77, 0, 0.1);
}

.related-card .related-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.related-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: white;
  margin-bottom: 8px;
}

.related-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.related-card .card-link {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.related-card:hover .card-link .arrow {
  display: inline-block;
  transform: translateX(4px);
  transition: transform 0.3s;
}

@media (max-width: 768px) {
  .related-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ============================================
   FAQ PAGE

   ============================================ */
.section-faq {
  padding: 60px 0 80px;
}

.faq-category {
  margin-bottom: 48px;
}

.faq-category .section-title {
  text-align: left;
  font-size: 1.4rem;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item[open] {
  border-color: var(--primary);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  user-select: none;
  transition: color 0.3s;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-toggle {
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-answer ul {
  margin: 12px 0;
  padding-left: 20px;
}

.faq-answer ul li {
  margin-bottom: 6px;
}

.faq-answer a {
  color: var(--primary);
  text-decoration: underline;
}

/* ============================================
   BLOG PAGE
   ============================================ */
.section-blog {
  padding: 60px 0 80px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.blog-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(255, 77, 0, 0.08);
}

.blog-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-body {
  padding: 48px 24px 24px;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.blog-card h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

.blog-card h2 a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-card h2 a:hover {
  color: var(--primary);
}

.blog-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-read-more {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* --- Contact Info Cards (2x2 grid) --- */
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.contact-info-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 16px 48px rgba(255, 77, 0, 0.1);
}

.contact-info-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-info-wrapper {
  margin-bottom: 40px;
}

.contact-info-wrapper h2 {
  text-align: center;
  margin-bottom: 32px;
}

.section-contact {
  padding: 80px 0;
}

/* --- Department Contacts --- */
.section-dept-contacts {
  padding: 80px 0;
}

.dept-contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dept-contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dept-contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 16px 48px rgba(255, 77, 0, 0.1);
}

.dept-contact-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.dept-contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--text-main);
}

.dept-phones {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dept-phones a {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.dept-phones a::before {
  content: '📞';
  font-size: 0.8rem;
}

.dept-phones a:hover {
  color: var(--primary);
  background: rgba(255, 77, 0, 0.08);
}

@media (max-width: 768px) {
  .dept-contacts-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .dept-contacts-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════
   BLOG PAGE
   ═══════════════════════════════════ */
.section-blog-list {
  padding: 60px 0 80px;
}

/* --- Blog Filters --- */
.blog-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.blog-filter-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 10px 24px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}

.blog-filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.blog-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* --- Featured Article --- */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 40px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.blog-featured:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(255, 77, 0, 0.1);
}

.blog-featured-image {
  position: relative;
  min-height: 320px;
  background: linear-gradient(135deg, #ff4d00 0%, #ff8a3d 40%, #1a1d24 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-featured-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(255, 77, 0, 0.3) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(255, 138, 61, 0.2) 0%, transparent 50%);
}

.blog-featured-icon {
  font-size: 5rem;
  z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.blog-featured-content {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--text-main);
}

.blog-featured-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* --- Blog Meta --- */
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.blog-badge {
  background: rgba(255, 77, 0, 0.15);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.blog-badge-article {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

.blog-badge-tips {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.blog-meta time {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.blog-reading-time {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* --- Blog Read More --- */
.blog-read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.blog-read-more:hover {
  gap: 8px;
  color: #ff8a3d;
}

/* --- Blog Grid --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* --- Blog Card --- */
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 16px 48px rgba(255, 77, 0, 0.1);
}

.blog-card-image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-card);
}

.blog-card-gradient-orange {
  background: linear-gradient(135deg, #ff4d00 0%, #ff8a3d 50%, #1a1d24 100%);
}

.blog-card-gradient-blue {
  background: linear-gradient(135deg, #1e3a5f 0%, #3b82f6 50%, #1a1d24 100%);
}

.blog-card-gradient-green {
  background: linear-gradient(135deg, #064e3b 0%, #10b981 50%, #1a1d24 100%);
}


.blog-card-icon {
  font-size: 3.5rem;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  transition: transform 0.4s;
}

.blog-card:hover .blog-card-icon {
  transform: scale(1.15);
}

.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-content h2 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 20px;
  color: var(--text-main);
  flex: 1;
}

/* --- Blog Read More Button --- */
.blog-read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.3s;
  width: fit-content;
}

.blog-read-more-btn:hover {
  background: rgba(59, 130, 246, 0.25);
  color: #93bbfc;
}

.blog-card-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- Blog Responsive --- */
@media (max-width: 768px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured-image {
    min-height: 200px;
  }

  .blog-featured-content {
    padding: 28px 24px;
  }

  .blog-featured-content h2 {
    font-size: 1.3rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .blog-filters {
    gap: 8px;
  }

  .blog-filter-btn {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .blog-featured-content {
    padding: 20px 16px;
  }

  .blog-card-content {
    padding: 20px;
  }
}

/* ========== BLOG ARTICLE PAGE ========== */
.section-blog-article {
  padding: 60px 0;
}

.blog-article-content {
  max-width: 780px;
  margin: 0 auto;
}

.blog-article-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin-bottom: 32px;
}

.blog-article-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-main);
  margin: 40px 0 16px;
}

.blog-article-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.blog-article-content ul {
  margin: 0 0 24px 20px;
  color: var(--text-muted);
  line-height: 2;
}

.blog-article-content ul li {
  margin-bottom: 4px;
}

.blog-badge {
  background: var(--primary);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-badge-article {
  background: #3b82f6;
}

.blog-badge-tips {
  background: #10b981;
}

.blog-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  font-size: 0.9rem;
}

.blog-compare-table th,
.blog-compare-table td {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  text-align: left;
  color: var(--text-muted);
}

.blog-compare-table th {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 600;
}

.blog-compare-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* Related Posts */
.blog-related {
  max-width: 780px;
  margin: 60px auto 0;
  border-top: 1px solid var(--border-color);
  padding-top: 40px;
}

.blog-related h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-main);
  margin-bottom: 24px;
}

.blog-related .blog-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
  .blog-related .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-article-content h2 {
    font-size: 1.2rem;
  }
}

/* --- Stats Grid 2x2 Layout --- */
.stats-grid,
.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
  text-align: center;
  padding: 40px 0;
}

.stats-grid > div,
.stats-counter-grid > div {
  text-align: center;
}

.stat-number,
.stat-counter-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.stat-label,
.stat-counter-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

@media (min-width: 768px) {
  .stats-grid,
  .stats-counter-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  .stat-number,
  .stat-counter-number {
    font-size: 3rem;
  }
}



/* ============================================
   FLOATING BUTTONS — Chat & Back-to-Top
   ============================================ */
.chat-btn-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

.chat-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #06C755;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(6, 199, 85, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.chat-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(6, 199, 85, 0.55);
}

.chat-btn svg {
  width: 28px;
  height: 28px;
}

/* QR Popup */
.chat-qr-popup {
  position: absolute;
  bottom: 68px;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.chat-btn-wrapper:hover .chat-qr-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-qr-card {
  background: rgba(20, 24, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px;
  width: 220px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(6, 199, 85, 0.15);
  text-align: center;
}

.chat-qr-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}

.chat-qr-header svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.chat-qr-header span {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.chat-qr-img {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
  object-fit: contain;
}

.chat-qr-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.75rem;
  color: #06C755;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.chat-qr-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.back-to-top {
  position: fixed;
  bottom: 92px;
  right: 28px;
  z-index: 9998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* ========== responsive.css ========== */
/* --- Responsive --- */
@media (max-width: 900px) {
  #site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px 16px;
    border-radius: 20px;
  }

  .hero-title {
    font-size: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-actions {
    display: flex;
    margin-left: auto;
    margin-right: 10px;
  }
  .nav-actions .nav-cta-btn {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(15, 18, 24, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
  }

  .main-nav > ul {
    flex-direction: column;
    gap: 4px;
  }

  .main-nav a {
    display: block;
    padding: 12px 16px;
  }

  .mobile-nav-cta {
    display: block;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
  }

  .mobile-nav-cta .btn {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .main-nav.open {
    display: block;
  }

  .mobile-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Brand — centered */
  .footer-brand {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
  }

  .footer-brand .social-links {
    justify-content: center;
  }

  /* Accordion sections */
  .footer-links,
  .footer-contact-info {
    border-bottom: 1px solid var(--border-color);
    padding: 0;
  }

  .footer-links h4,
  .footer-contact-info h4 {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    margin-bottom: 0;
    user-select: none;
    -webkit-user-select: none;
  }

  .footer-links h4::after,
  .footer-contact-info h4::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
  }

  .footer-links.accordion-open h4::after,
  .footer-contact-info.accordion-open h4::after {
    content: '−';
    color: var(--primary);
  }

  .footer-links > ul,
  .footer-contact-info > ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding-bottom: 0;
  }

  .footer-links.accordion-open > ul,
  .footer-contact-info.accordion-open > ul {
    max-height: 400px;
    padding-bottom: 16px;
  }
  .hero-ctas {
    flex-direction: column;
    padding: 0 20px;
  }
  .block-column {
    width: 8%;
  }
  .cta-band h2 {
    font-size: 1.8rem;
  }
  .testimonial-panel {
    padding: 30px;
  }
  blockquote {
    font-size: 1.1rem;
  }
}

/* ============================================
   RESPONSIVE — NEW COMPONENTS
   ============================================ */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .tracking-input-wrapper {
    flex-direction: column;
  }

  .tracking-header {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .tracking-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   MOBILE — ALL PHONE SIZES (≤600px)
   Fix footer-bottom + global small screen tweaks
   ============================================ */
@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .legal-links a {
    margin-left: 0;
  }

  .trust-badges {
    flex-direction: column;
    gap: 6px;
  }

  .trust-badges .separator {
    display: none;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtext {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .hero-wave-blocks {
    height: 120px;
  }

  /* Scope hexagons — prevent overflow */
  .scope__right {
    max-width: 320px;
    height: 260px;
  }

  .scope__hex--lg { width: 150px; height: 150px; top: 5px; right: 5px; }
  .scope__hex--md { width: 120px; height: 120px; top: 100px; right: 130px; }
  .scope__hex--sm { width: 95px; height: 95px; bottom: 5px; right: 30px; }
  .scope__hex--xs { width: 70px; height: 70px; top: 0; right: 180px; }

  /* Certs hexagons */
  .certs__left {
    height: 240px;
    max-width: 320px;
  }

  .certs__hex--lg { width: 150px; height: 150px; left: 10px; }
  .certs__hex--md { width: 120px; height: 120px; left: 110px; }

  .certs__row-badge {
    padding: 8px 16px;
    font-size: 0.78rem;
  }

  /* Section padding reduce */
  .section-explore,
  .section-how-it-works,
  .section-why-us,
  .section-reviews,
  .section-blog,
  .section-faq,
  .section-related,
  .section-detail,
  .section-about,
  .section-contact,
  .section-services-overview,
  .section-testimonial {
    padding: 50px 0;
  }

  .section-stats { padding: 40px 0; }

  /* Section title */
  .section-title {
    font-size: 1.3rem;
    margin-bottom: 32px;
  }

  /* Page hero */
  .page-hero {
    padding: 110px 0 36px;
  }

  .page-hero-bg {
    padding: 140px 0 60px;
  }

  /* Blog grid fix min-width */
  .blog-grid {
    grid-template-columns: 1fr !important;
  }

  /* Tabs nav */
  .tabs-nav {
    gap: 4px;
    padding-bottom: 4px;
  }

  .tab-btn {
    font-size: 0.78rem;
    padding: 8px 14px;
  }

  /* Cards */
  .card {
    padding: 22px;
  }

  a.card-bg {
    min-height: 260px;
  }

  .card-content {
    padding: 22px;
  }

  /* Detail cards */
  .detail-card-header {
    padding: 22px 22px 0;
    gap: 12px;
  }

  .detail-card-body {
    padding: 16px 22px 22px;
  }

  .detail-icon {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }

  /* Why-us cards */
  .why-us-card {
    padding: 24px 18px;
  }

  /* Review cards */
  .review-card {
    padding: 24px;
  }

  .review-quote {
    font-size: 0.88rem;
  }

  /* Testimonial cards (sub-pages) */
  .testimonial-card {
    padding: 24px 20px;
  }

  /* Related cards */
  .related-card {
    padding: 28px 18px;
  }

  /* FAQ */
  .faq-question {
    padding: 16px 18px;
    font-size: 0.9rem;
  }

  .faq-answer {
    padding: 0 18px 16px;
    font-size: 0.9rem;
  }

  /* CTA Band */
  .cta-band {
    padding: 50px 0;
  }

  .cta-frame-border {
    padding: 28px 18px;
  }

  .cta-band h2,
  .cta-frame-border h2 {
    font-size: 1.4rem;
  }

  .cta-band p,
  .cta-frame-border p {
    font-size: 0.9rem;
  }

  /* Footer */
  .site-footer {
    padding: 50px 0 16px;
  }

  .footer-grid {
    margin-bottom: 36px;
  }

  /* Buttons */
  .btn {
    padding: 10px 22px;
    font-size: 0.85rem;
  }

  .btn-lg {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  /* Contact form */
  .contact-form-wrapper h2,
  .contact-info-wrapper h2 {
    font-size: 1.25rem;
  }

  /* Steps grid */
  .step-card {
    max-width: 100%;
  }

  /* Stats grid */
  .stats-grid {
    gap: 16px;
  }

  /* Scope section */
  .scope {
    padding: 40px 0;
  }

  .scope__container {
    gap: 28px;
  }

  .scope__pill {
    padding: 10px 14px 10px 10px;
    gap: 12px;
  }

  .scope__pill-text {
    font-size: 0.82rem;
  }

  .scope__pill-badge {
    width: 30px;
    height: 30px;
  }

  /* Certs section */
  .certs {
    padding: 40px 0;
  }

  .certs__container {
    gap: 28px;
  }

  .certs__row-desc {
    font-size: 0.8rem;
    padding: 10px 16px;
  }

  /* Comparison table */
  .compare-table {
    font-size: 0.75rem;
    min-width: 580px;
  }

  /* Tracking */
  .tracking-info-grid {
    grid-template-columns: 1fr;
  }

  .tracking-timeline {
    padding: 20px;
  }

  /* Service card large */
  .service-card-large {
    padding: 28px;
  }

  /* Back to top / chat btn */
  .back-to-top {
    width: 42px;
    height: 42px;
    font-size: 1rem;
    right: 16px;
    bottom: 80px;
  }

  .chat-btn-wrapper {
    right: 16px;
    bottom: 16px;
  }

  .chat-btn {
    width: 48px;
    height: 48px;
  }

  .chat-btn svg {
    width: 24px;
    height: 24px;
  }

  .chat-qr-card {
    width: 190px;
    padding: 16px;
  }

  .chat-qr-img {
    width: 150px;
    height: 150px;
  }


  /* Testimonial panel (home) */
  .testimonial-panel {
    padding: 24px 18px;
  }

  blockquote {
    font-size: 1rem;
  }

  /* Vision & Mission cards */
  .vm-card {
    padding: 22px;
  }

  /* Timeline */
  .timeline {
    padding-left: 20px;
  }

  .timeline::before {
    left: 5px;
  }

  .timeline-item {
    padding-left: 20px;
  }

  .timeline-item::before {
    left: -22px;
    width: 8px;
    height: 8px;
  }

  /* Header mobile */
  #site-header {
    top: 8px;
    width: calc(100% - 16px);
    padding: 8px 12px;
    border-radius: 16px;
  }

  .logo {
    font-size: 1.15rem;
    gap: 6px;
  }

  /* Error pages */
  .error-code {
    font-size: 4rem;
  }

  .error-page h1 {
    font-size: 1.5rem;
  }

  .error-description {
    font-size: 0.95rem;
  }

  /* Legal pages */
  .legal-page {
    padding: 100px 0 60px;
  }

  .legal-content h1 {
    font-size: 1.5rem;
  }

  .legal-content h2 {
    font-size: 1.1rem;
    margin-top: 32px;
  }
}


/* ============================================
   MOBILE — SMALL PHONES (≤480px)
   iPhone SE 2/3, older Androids, narrow screens
   ============================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  /* Hero */
  .hero {
    padding: 90px 0 50px;
  }

  .hero-title {
    font-size: 1.7rem;
    letter-spacing: -0.5px;
  }

  .hero-subtext {
    font-size: 0.88rem;
    margin-bottom: 24px;
  }

  .hero-ctas {
    gap: 12px;
    padding: 0 8px;
  }

  .hero-wave-blocks {
    height: 80px;
  }

  /* Stats counter — 1 column */
  .stats-counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-counter-number {
    font-size: 2rem;
  }

  /* Stats grid — 2x2 */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .scope__right {
    max-width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
  }

  .scope__hex-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    height: auto;
  }

  .scope__hex {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .scope__hex--lg { width: 140px; height: 140px; }
  .scope__hex--md { width: 120px; height: 120px; }
  .scope__hex--sm { width: 100px; height: 100px; }
  .scope__hex--xs { display: none; }

  .scope__title {
    font-size: 1.4rem;
  }

  .scope__desc {
    font-size: 0.88rem;
  }

  /* Certs hexagons */
  .certs__left {
    height: auto;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }

  .certs__hex-group {
    display: flex;
    justify-content: center;
    gap: 12px;
    height: auto;
  }

  .certs__hex {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
  }

  .certs__hex--lg { width: 160px; height: 160px; }
  .certs__hex--md { width: 140px; height: 140px; }

  .certs__title {
    font-size: 1.4rem;
  }

  .certs__desc {
    font-size: 0.88rem;
  }

  /* Card grid — force 1 column */
  .card-grid {
    grid-template-columns: 1fr;
  }

  /* Detail grid — force 1 column */
  .detail-grid {
    grid-template-columns: 1fr;
  }

  /* Tabs */
  .tabs-nav {
    gap: 2px;
    justify-content: center;
  }

  .tab-btn {
    font-size: 0.72rem;
    padding: 7px 10px;
  }

  /* Section title */
  .section-title {
    font-size: 1.15rem;
    margin-bottom: 24px;
  }

  .section-subtitle {
    font-size: 0.88rem;
    margin-bottom: 32px;
  }

  /* Section header */
  .section-header h2 {
    font-size: 1.3rem;
  }

  /* Card bg */
  a.card-bg {
    min-height: 230px;
  }

  .card-content {
    padding: 18px;
  }

  /* Reviews */
  .review-card {
    padding: 20px;
  }

  .review-quote {
    font-size: 0.82rem;
    line-height: 1.6;
  }

  .review-avatar {
    width: 38px;
    height: 38px;
    font-size: 0.75rem;
  }

  .review-info strong {
    font-size: 0.82rem;
  }

  .review-info span {
    font-size: 0.72rem;
  }

  /* Blog card */
  .blog-card-body {
    padding: 40px 18px 18px;
  }

  .blog-card h2 {
    font-size: 1.05rem;
  }

  .blog-card p {
    font-size: 0.82rem;
  }

  /* FAQ */
  .faq-question {
    padding: 14px 14px;
    font-size: 0.85rem;
  }

  .faq-answer {
    padding: 0 14px 14px;
    font-size: 0.85rem;
  }

  .faq-toggle {
    font-size: 1.2rem;
    margin-left: 10px;
  }

  /* CTA */
  .cta-band h2,
  .cta-frame-border h2 {
    font-size: 1.2rem;
  }

  .cta-band p,
  .cta-frame-border p {
    font-size: 0.85rem;
  }

  .cta-frame-border {
    padding: 22px 14px;
  }

  /* Footer */
  .footer-brand .logo {
    font-size: 1.1rem;
  }

  .footer-links h4,
  .footer-track h4 {
    font-size: 0.75rem;
    margin-bottom: 0;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .footer-bottom {
    font-size: 0.72rem;
  }

  /* Steps (How it works) */
  .step-card {
    max-width: 100%;
    padding: 18px 12px;
  }

  .step-icon {
    font-size: 2rem;
  }

  .step-number {
    font-size: 2rem;
  }

  .step-card h3 {
    font-size: 0.92rem;
  }

  .step-card p {
    font-size: 0.8rem;
  }

  .step-connector svg {
    width: 30px;
    height: 18px;
  }

  /* Why-us */
  .why-us-card {
    padding: 22px 16px;
  }

  .why-us-icon {
    font-size: 2rem;
  }

  .why-us-card h3 {
    font-size: 0.95rem;
  }

  .why-us-card p {
    font-size: 0.82rem;
  }

  /* Testimonial cards */
  .testimonial-card {
    padding: 22px 16px;
  }

  .testimonial-card p {
    font-size: 0.82rem;
  }

  /* Related cards */
  .related-card {
    padding: 24px 16px;
  }

  .related-card .related-icon {
    font-size: 2rem;
  }

  .related-card h3 {
    font-size: 0.95rem;
  }

  .related-card p {
    font-size: 0.8rem;
  }

  /* Detail cards */
  .detail-card-header {
    padding: 18px 18px 0;
  }

  .detail-card-body {
    padding: 14px 18px 18px;
  }

  .detail-card h2 {
    font-size: 1.05rem;
  }

  .detail-card p {
    font-size: 0.85rem;
  }

  .detail-card ul li {
    font-size: 0.82rem;
  }

  /* Service cards */
  .service-card-body {
    padding: 18px;
  }

  .service-card-body h2 {
    font-size: 1.05rem;
  }

  .service-card-large {
    padding: 24px;
  }

  .service-card-large h2 {
    font-size: 1.25rem;
  }

  /* Contact */
  .contact-info-card {
    padding: 16px;
  }

  .contact-info-card h3 {
    font-size: 0.9rem;
  }

  .contact-info-card p {
    font-size: 0.82rem;
  }

  /* VM cards */
  .vm-card {
    padding: 20px;
  }

  .vm-card h2 {
    font-size: 1.15rem;
  }

  .vm-card p {
    font-size: 0.88rem;
  }

  /* Breadcrumb */
  .breadcrumb-nav {
    font-size: 0.78rem;
  }

  .breadcrumb {
    font-size: 0.78rem;
  }

  /* Buttons */
  .btn {
    padding: 9px 18px;
    font-size: 0.8rem;
  }

  .nav-actions .btn {
    padding: 8px 16px;
    font-size: 0.78rem;
  }

  /* Tracking */
  .tracking-input {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .tracking-btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .tracking-id-display .value {
    font-size: 1.1rem;
  }

  .tracking-timeline {
    padding: 18px;
  }

  .tracking-timeline h3 {
    font-size: 1rem;
  }

  /* Partner logos */
  .trusted-by-logos {
    gap: 16px 20px;
  }

  .partner-logo {
    font-size: 0.85rem;
  }

  /* Page hero */
  .page-hero {
    padding: 100px 0 30px;
  }

  .page-hero h1 {
    font-size: 1.6rem;
  }

  .page-hero-sub {
    font-size: 0.92rem;
  }

  .page-hero-bg {
    padding: 120px 0 50px;
  }

  /* Comparison table */
  .compare-table {
    font-size: 0.7rem;
    min-width: 520px;
  }

  .compare-table thead th {
    padding: 10px 8px;
    font-size: 0.75rem;
  }

  .compare-table tbody td {
    padding: 8px;
  }

  /* Back to top / chat btn positioning */
  .back-to-top {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
    right: 12px;
    bottom: 72px;
  }

  .chat-btn-wrapper {
    right: 12px;
    bottom: 12px;
  }

  .chat-btn {
    width: 44px;
    height: 44px;
  }

  .chat-btn svg {
    width: 22px;
    height: 22px;
  }

  .chat-qr-card {
    width: 170px;
    padding: 14px;
  }

  .chat-qr-img {
    width: 130px;
    height: 130px;
  }


  .flag-icon {
    width: 18px;
  }
}


/* ============================================
   MOBILE — VERY SMALL PHONES (≤360px)
   iPhone SE 1st gen (320px), Galaxy S series old
   ============================================ */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  /* Hero */
  .hero-title {
    font-size: 1.45rem;
  }

  .hero-subtext {
    font-size: 0.82rem;
  }

  .hero-ctas {
    padding: 0 4px;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* Stats */
  .stat-counter-number {
    font-size: 1.75rem;
  }

  .stat-counter-label {
    font-size: 0.78rem;
  }

  .scope__hex--lg { width: 120px; height: 120px; }
  .scope__hex--md { width: 100px; height: 100px; }
  .scope__hex--sm { width: 85px; height: 85px; }

  .scope__title {
    font-size: 1.2rem;
  }

  .scope__pill {
    padding: 8px 10px 8px 8px;
    gap: 8px;
  }

  .scope__pill-badge {
    width: 26px;
    height: 26px;
  }

  .scope__pill-badge svg {
    width: 11px;
    height: 11px;
  }

  .scope__pill-text {
    font-size: 0.75rem;
  }

  /* Certs */
  .certs__hex--lg { width: 140px; height: 140px; }
  .certs__hex--md { width: 120px; height: 120px; }

  .certs__title {
    font-size: 1.2rem;
  }

  .certs__row-desc {
    font-size: 0.72rem;
    padding: 8px 12px;
  }

  .certs__row-badge {
    padding: 6px 12px;
    font-size: 0.72rem;
  }

  /* Section titles */
  .section-title {
    font-size: 1.05rem;
  }

  .section-header h2 {
    font-size: 1.1rem;
  }

  /* Cards */
  .card {
    padding: 18px;
  }

  a.card-bg {
    min-height: 200px;
  }

  .card-content {
    padding: 14px;
  }

  .card h3 {
    font-size: 0.95rem;
  }

  .card p {
    font-size: 0.8rem;
  }

  /* Tabs */
  .tab-btn {
    font-size: 0.68rem;
    padding: 6px 8px;
  }

  /* CTA */
  .cta-band h2,
  .cta-frame-border h2 {
    font-size: 1.05rem;
  }

  .cta-frame-border {
    padding: 18px 12px;
  }

  /* FAQ */
  .faq-question {
    padding: 12px 12px;
    font-size: 0.8rem;
  }

  .faq-answer {
    padding: 0 12px 12px;
    font-size: 0.8rem;
  }

  /* Blog */
  .blog-card-body {
    padding: 36px 14px 14px;
  }

  .blog-card h2 {
    font-size: 0.95rem;
  }

  /* Footer */
  .footer-bottom {
    font-size: 0.68rem;
  }

  .legal-links a {
    font-size: 0.68rem;
  }

  /* Buttons */
  .btn {
    padding: 8px 16px;
    font-size: 0.78rem;
  }

  /* Review */
  .review-card {
    padding: 16px;
  }

  .review-quote {
    font-size: 0.78rem;
  }

  /* Detail cards */
  .detail-card-header {
    padding: 14px 14px 0;
  }

  .detail-card-body {
    padding: 12px 14px 14px;
  }

  .detail-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    border-radius: 10px;
  }

  .detail-card h2 {
    font-size: 0.95rem;
  }

  /* Why-us */
  .why-us-card {
    padding: 18px 14px;
  }

  .why-us-icon {
    font-size: 1.75rem;
    margin-bottom: 10px;
  }

  /* Service cards */
  .service-card-large {
    padding: 20px;
  }

  .service-card-large h2 {
    font-size: 1.1rem;
  }

  .service-card-body {
    padding: 14px;
  }

  /* Page hero */
  .page-hero h1 {
    font-size: 1.35rem;
  }

  .page-hero-sub {
    font-size: 0.82rem;
  }

  /* Tracking */
  .tracking-input {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  /* Contact */
  .contact-form-wrapper h2,
  .contact-info-wrapper h2 {
    font-size: 1.1rem;
  }

  /* Header */
  #site-header {
    padding: 7px 10px;
  }

  .logo {
    font-size: 1.05rem;
  }

  .logo-img {
    height: 24px;
  }

  /* Error pages */
  .error-code {
    font-size: 3.5rem;
  }

  .error-page h1 {
    font-size: 1.3rem;
  }

  /* Legal */
  .legal-content h1 {
    font-size: 1.3rem;
  }

  .dept-contacts-grid {
    grid-template-columns: 1fr;
  }
}

