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

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary:       #003087;
  --primary-dark:  #001a4d;
  --primary-mid:   #0047b3;
  --accent:        #1565c0;
  --accent-light:  #4da6ff;
  --text:          #1a1a2e;
  --text-muted:    #555;
  --white:         #ffffff;
  --bg-light:      #f4f7ff;
  --border:        #dde3f0;
  --shadow-sm:     0 2px 10px rgba(0,0,0,0.08);
  --shadow-md:     0 6px 25px rgba(0,48,135,0.12);
  --shadow-lg:     0 12px 40px rgba(0,48,135,0.18);
  --radius:        6px;
  --radius-lg:     12px;
  --transition:    0.3s ease;
  --header-h:      80px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ========================================
   UTILITIES
======================================== */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.section-header .line {
  width: 55px;
  height: 3px;
  background: var(--primary);
  margin: 0 auto;
  border-radius: 2px;
}

.btn {
  display: inline-block;
  padding: 13px 34px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-mid);
  border-color: var(--primary-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,48,135,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.25);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  font-weight: 700;
}

.btn-white:hover {
  background: #e8f0fe;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  height: var(--header-h);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
  min-width: 0;
}

.logo a {
  display: block;
}

.logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: #333;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  transform: scaleX(1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ========================================
   HERO
======================================== */
.hero {
  margin-top: var(--header-h);
  height: calc(100vh - var(--header-h));
  min-height: 540px;
  max-height: 800px;
  background-image: url('images/HomePage.jpg');
  background-size: cover;
  background-position: center top;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,10,40,0.65) 0%, rgba(0,20,70,0.55) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  max-width: 760px;
  padding: 0 24px;
}

.hero-content h1 {
  font-size: clamp(1rem, 6.5vw, 5rem);
  font-weight: 900;
  letter-spacing: clamp(1px, 0.35vw, 3px);
  line-height: 1.1;
  white-space: nowrap;
  margin-bottom: 16px;
  text-shadow: 0 2px 15px rgba(0,0,0,0.4);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.hero-subtitle-line {
  width: 60px;
  height: 3px;
  background: var(--accent-light);
  margin: 10px auto 18px;
  border-radius: 2px;
}

.hero-desc {
  font-size: clamp(0.88rem, 1.6vw, 1rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  line-height: 1.8;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   PILLARS / FEATURES BAR
======================================== */
.pillars {
  background: var(--white);
  padding: 38px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  position: relative;
  z-index: 2;
}

.pillars .container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.pillar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 130px;
  padding: 8px 16px;
}

.pillar-divider {
  width: 1px;
  height: 80px;
  background: #dde3f0;
  align-self: center;
  flex-shrink: 0;
}

.pillar-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.pillar-icon i {
  font-size: 2.1rem;
  color: var(--primary);
}

.pillar-item h4 {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
  line-height: 1.3;
}

.pillar-item p {
  font-size: 0.77rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ========================================
   ABOUT SOURCEIFY
======================================== */
.about {
  padding: 90px 0;
  background: var(--white);
}

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

.about-text h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
  position: relative;
  padding-bottom: 14px;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.about-text > p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-top: 22px;
  margin-bottom: 32px;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mv-card {
  background: #eef2ff;
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid #dde5ff;
}

.mv-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mv-icon i {
  color: var(--white);
  font-size: 1rem;
}

.mv-text h5 {
  font-size: 0.73rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 7px;
}

.mv-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

/* ========================================
   OUR PRODUCTS
======================================== */
.products {
  padding: 90px 0;
  background: var(--bg-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e2e9f5;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

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

.product-image-area {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f0f5ff, #e8eeff);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.product-image-area::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: rgba(0,48,135,0.05);
  border-radius: 50%;
}

.product-image-area i {
  font-size: 2.8rem;
  color: var(--primary);
  opacity: 0.85;
  position: relative;
  z-index: 1;
}

.product-image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.product-image-area:has(img) {
  padding: 0;
  background: #e8edf5;
  overflow: hidden;
}

.product-card:hover .product-image-area img {
  transform: scale(1.07);
}

.product-label {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 11px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.35;
}

/* ========================================
   CTA – LET'S GROW TOGETHER
======================================== */
.cta {
  background: linear-gradient(135deg, #001030 0%, #002060 40%, #001840 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(30,95,212,0.25) 0%, rgba(0,30,100,0.1) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(77,166,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.cta-globe-wrap {
  flex-shrink: 0;
  position: relative;
}

.cta-globe {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1e5fd4, #001040);
  border: 2px solid rgba(77,166,255,0.35);
  box-shadow:
    0 0 50px rgba(30,95,212,0.5),
    0 0 100px rgba(30,95,212,0.25),
    inset 0 0 40px rgba(0,0,80,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: globePulse 4s ease-in-out infinite;
}

.cta-globe i {
  font-size: 5rem;
  color: rgba(255,255,255,0.15);
  position: relative;
  z-index: 2;
}

.cta-globe::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 14px,
    rgba(77,166,255,0.07) 14px,
    rgba(77,166,255,0.07) 15px
  ),
  repeating-linear-gradient(
    90deg,
    transparent,
    transparent 14px,
    rgba(77,166,255,0.07) 14px,
    rgba(77,166,255,0.07) 15px
  );
  border-radius: 50%;
}

.cta-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(77,166,255,0.2);
  animation: ringExpand 3s ease-out infinite;
}

.cta-ring:nth-child(1) { width: 240px; height: 240px; top: -20px; left: -20px; animation-delay: 0s; }
.cta-ring:nth-child(2) { width: 280px; height: 280px; top: -40px; left: -40px; animation-delay: 1s; }
.cta-ring:nth-child(3) { width: 320px; height: 320px; top: -60px; left: -60px; animation-delay: 2s; }

@keyframes globePulse {
  0%, 100% { box-shadow: 0 0 50px rgba(30,95,212,0.5), 0 0 100px rgba(30,95,212,0.25), inset 0 0 40px rgba(0,0,80,0.4); }
  50% { box-shadow: 0 0 70px rgba(30,95,212,0.7), 0 0 130px rgba(30,95,212,0.35), inset 0 0 40px rgba(0,0,80,0.4); }
}

@keyframes ringExpand {
  0% { opacity: 0.6; transform: scale(0.95); }
  100% { opacity: 0; transform: scale(1.1); }
}

.cta-content {
  text-align: center;
  color: var(--white);
  max-width: 440px;
}

.cta-content h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 1.5px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 30px;
  line-height: 1.7;
}

/* ========================================
   TRUST PILLARS – ABOVE FOOTER
======================================== */
.trust-pillars {
  background: var(--white);
  border-top: 4px solid var(--primary);
  border-bottom: 1px solid #dde3f0;
  padding: 44px 0;
  box-shadow: 0 -4px 20px rgba(0,48,135,0.07);
}

.trust-pillars .container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.trust-pillar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 140px;
  padding: 10px 18px;
}

.trust-pillar-divider {
  width: 1px;
  height: 80px;
  background: #dde3f0;
  align-self: center;
  flex-shrink: 0;
}

.trust-pillar-icon {
  width: 62px;
  height: 62px;
  background: #eef2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background var(--transition);
}

.trust-pillar-item:hover .trust-pillar-icon {
  background: var(--primary);
}

.trust-pillar-item:hover .trust-pillar-icon i {
  color: var(--white);
}

.trust-pillar-icon i {
  font-size: 1.8rem;
  color: var(--primary);
  transition: color var(--transition);
}

.trust-pillar-item h4 {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 7px;
  line-height: 1.3;
}

.trust-pillar-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Pillars bottom (legacy, keep for services/contact pages) */
.pillars-bottom {
  background: #f4f7ff;
  border-top: 1px solid #dde3f0;
  border-bottom: 1px solid #dde3f0;
}

/* ========================================
   FOOTER
======================================== */
.footer-main {
  position: relative;
  background-image: url('images/footer.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 20px 60px;
  text-align: center;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 4, 0.45);
}

.footer-inner {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 780px;
  margin: 0 auto;
}

.footer-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 32px;
}

.footer-contact-info {
  margin-bottom: 36px;
}

.footer-contact-info p {
  font-size: clamp(0.88rem, 1.6vw, 1rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: 14px;
  font-weight: 400;
}

.footer-contact-info a {
  color: rgba(255, 255, 255, 0.88);
  transition: color var(--transition);
}

.footer-contact-info a:hover {
  color: var(--accent-light);
}

.footer-follow-heading {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.social-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(0, 48, 135, 0.5);
}

.footer-copyright {
  background: #0a0806;
  text-align: center;
  padding: 14px 20px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ========================================
   SERVICES PAGE
======================================== */
.page-hero {
  margin-top: var(--header-h);
  height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,10,40,0.72) 0%, rgba(0,25,80,0.62) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-content {
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.page-hero-content p {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,0.88);
  max-width: 550px;
  margin: 0 auto 22px;
  line-height: 1.75;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.breadcrumb a {
  color: var(--accent-light);
  font-weight: 500;
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb span { color: rgba(255,255,255,0.5); }

/* Services intro */
.services-intro {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}

.services-intro > .container > p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-top: 16px;
}

/* Product categories grid (services page) */
.categories {
  padding: 80px 0;
  background: var(--bg-light);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 24px;
  text-align: center;
  border: 1px solid #e2e9f5;
  transition: all var(--transition);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.category-card:hover .cat-icon {
  background: var(--primary);
}

.category-card:hover .cat-icon i {
  color: var(--white);
}

.category-card.has-image {
  padding: 0;
}

.cat-image {
  height: 170px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.cat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.category-card:hover .cat-image img {
  transform: scale(1.07);
}

.cat-body {
  padding: 24px;
  text-align: center;
}

.cat-icon {
  width: 72px;
  height: 72px;
  background: #eef2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: all var(--transition);
}

.cat-icon i {
  font-size: 1.9rem;
  color: var(--primary);
  transition: color var(--transition);
}

.category-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.category-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Trade services */
.trade-services {
  padding: 90px 0;
  background: var(--white);
}

.trade-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.trade-card {
  border: 1px solid #e2e9f5;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.trade-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.trade-card:hover::before { transform: scaleX(1); }

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

.trade-icon {
  width: 60px;
  height: 60px;
  background: #eef2ff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.trade-icon i {
  font-size: 1.6rem;
  color: var(--primary);
}

.trade-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.trade-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Process section */
.process {
  padding: 90px 0;
  background: var(--bg-light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent-light));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 18px rgba(0,48,135,0.3);
  border: 3px solid var(--white);
  outline: 3px solid var(--primary);
}

.step h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================================
   CONTACT PAGE
======================================== */

/* Simple contact (no form) */
.contact-simple {
  padding: 90px 0;
  background: var(--white);
}

.contact-simple-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.contact-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background var(--transition);
}

.contact-card:hover .contact-card-icon {
  background: var(--accent);
}

.contact-card-icon i {
  font-size: 1.4rem;
  color: var(--white);
}

.contact-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.contact-card a {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
  transition: color var(--transition);
}

.contact-card a:hover {
  color: var(--accent);
}

.contact-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.contact-section {
  padding: 90px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  position: relative;
}

.contact-info h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.contact-info > p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-detail-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.cd-icon {
  width: 52px;
  height: 52px;
  background: #eef2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.cd-icon:hover {
  background: var(--primary);
}

.cd-icon:hover i { color: var(--white); }

.cd-icon i {
  font-size: 1.1rem;
  color: var(--primary);
  transition: color var(--transition);
}

.cd-text h5 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 5px;
}

.cd-text a,
.cd-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  display: block;
  transition: color var(--transition);
}

.cd-text a:hover { color: var(--primary); }

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}

input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: #fafbff;
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,48,135,0.1);
  background: var(--white);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-submit {
  margin-top: 8px;
}

.btn-form {
  width: 100%;
  padding: 14px;
  font-size: 0.96rem;
  border: none;
  border-radius: var(--radius);
}

.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  margin-top: 14px;
  text-align: center;
}

/* Why choose us (contact page) */
.why-us {
  padding: 88px 0;
  background: var(--bg-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  text-align: center;
  border: 1px solid #e2e9f5;
  transition: all var(--transition);
}

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

.why-icon {
  width: 70px;
  height: 70px;
  background: #eef2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--transition);
}

.why-card:hover .why-icon {
  background: var(--primary);
}

.why-card:hover .why-icon i {
  color: var(--white);
}

.why-icon i {
  font-size: 1.8rem;
  color: var(--primary);
  transition: color var(--transition);
}

.why-card h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ========================================
   RESPONSIVE
======================================== */

/* ── Tablet large (≤1100px) ────────────── */
@media (max-width: 1100px) {
  .products-grid      { grid-template-columns: repeat(4, 1fr); }
  .categories-grid    { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
}

/* ── Tablet (≤900px) ───────────────────── */
@media (max-width: 900px) {
  .container { padding: 0 24px; }

  .about, .products, .categories, .trade-services,
  .process, .contact-simple, .contact-section,
  .why-us, .services-intro { padding: 70px 0; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-image { order: -1; }
  .about-image img { height: 280px; }
  .mission-vision { grid-template-columns: 1fr; }

  .cta-inner {
    flex-direction: column;
    gap: 36px;
    text-align: center;
  }

  .trade-grid    { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  .contact-grid  { grid-template-columns: 1fr; gap: 40px; }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile large (≤768px) ─────────────── */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .container { padding: 0 18px; }

  /* Nav */
  .navbar { padding: 0 18px; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-top: 1px solid var(--border);
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  /* Hero */
  .hero {
    height: 70vh;
    min-height: 380px;
    max-height: 560px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-buttons .btn { width: 100%; max-width: 260px; text-align: center; }

  /* Section spacing */
  .about, .products, .categories, .trade-services,
  .process, .contact-simple, .contact-section,
  .why-us, .services-intro { padding: 60px 0; }

  .section-header { margin-bottom: 36px; }

  /* Trust pillars (home) */
  .trust-pillars { padding: 32px 0; }
  .trust-pillars .container {
    flex-wrap: wrap;
    gap: 0;
  }
  .trust-pillar-divider { display: none; }
  .trust-pillar-item {
    flex: 0 0 50%;
    min-width: 0;
    padding: 14px 12px;
  }

  /* Pillars (services/contact) */
  .pillars { padding: 32px 0; }
  .pillars .container { flex-wrap: wrap; gap: 0; }
  .pillar-divider { display: none; }
  .pillar-item {
    flex: 0 0 50%;
    min-width: 0;
    padding: 14px 12px;
  }

  /* Grids */
  .products-grid   { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .trade-grid      { grid-template-columns: 1fr; }
  .contact-cards   { grid-template-columns: repeat(2, 1fr); }
  .why-grid        { grid-template-columns: 1fr; }

  /* Forms */
  .form-row          { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  /* Page hero */
  .page-hero { height: 260px; }
  .page-hero-content h1 { font-size: clamp(1.6rem, 5vw, 2.4rem); }

  /* Footer */
  .footer-main { padding: 60px 20px 44px; }
  .footer-heading { letter-spacing: 6px; }
  .footer-follow-heading { letter-spacing: 4px; }
}

/* ── Mobile medium (≤600px) ─────────────── */
@media (max-width: 600px) {
  .container { padding: 0 16px; }

  .about, .products, .categories, .trade-services,
  .process, .contact-simple, .contact-section,
  .why-us, .services-intro { padding: 50px 0; }

  .section-header { margin-bottom: 28px; }

  .products-grid   { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .contact-cards   { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .trust-pillar-item { flex: 0 0 50%; }
  .pillar-item       { flex: 0 0 50%; }

  .cat-image { height: 140px; }

  .about-image img { height: 220px; }
}

/* ── Mobile small (≤420px) ──────────────── */
@media (max-width: 420px) {
  :root { --header-h: 60px; }

  .container { padding: 0 14px; }

  .logo img { height: 42px; }

  .hero {
    height: 65vh;
    min-height: 320px;
  }

  .hero-buttons .btn { max-width: 100%; }

  .about, .products, .categories, .trade-services,
  .process, .contact-simple, .contact-section,
  .why-us, .services-intro { padding: 44px 0; }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .categories-grid  { grid-template-columns: 1fr; }
  .contact-cards    { grid-template-columns: 1fr; }
  .trust-pillar-item { flex: 0 0 100%; }
  .pillar-item       { flex: 0 0 100%; }
  .pillar-divider    { display: none; }
  .trust-pillar-divider { display: none; }

  .process-steps { grid-template-columns: 1fr; }

  .page-hero { height: 220px; }
  .page-hero-content h1 { font-size: 1.5rem; letter-spacing: 1px; }

  .footer-main  { background-attachment: scroll; padding: 50px 16px 36px; }
  .footer-heading { font-size: 1.6rem; letter-spacing: 4px; }
  .footer-follow-heading { letter-spacing: 3px; }

  .cta-globe { width: 140px; height: 140px; }

  .section-header h2 { letter-spacing: 1.5px; }
}
