/* ========================================
   EXPORZA GLOBAL - PROFESSIONAL UI
   Clean, Impactful, Premium Design
======================================== */

:root {
  /* Primary Palette */
  --primary: #1F3A5F;
  --primary-dark: #152942;
  --primary-light: #2A4A73;
  
  /* Gold Accent */
  --secondary: #C89B3C;
  --secondary-light: #D4AB5A;
  --secondary-dark: #A67F2E;
  
  /* Neutrals */
  --dark: #1a1a1a;
  --text: #2d3748;
  --text-light: #64748b;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --white: #ffffff;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(31, 58, 95, 0.08);
  --shadow-lg: 0 10px 40px rgba(31, 58, 95, 0.12);
  --shadow-xl: 0 20px 60px rgba(31, 58, 95, 0.15);
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
 TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

h1 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(20px, 2.5vw, 24px);
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

p {
  color: var(--text);
  line-height: 1.8;
}

/* ========================================
   HEADER & NAVIGATION - Fully Responsive
======================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  position: relative;
}

/* ========================================
 BRAND / LOGO
======================================== */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  z-index: 1001;
  cursor: pointer;
  transition: var(--transition);
}

.brand:hover img {
  transform: scale(1.05);
}

.brand img {
  height: 56px;
  width: auto;
  transition: var(--transition);
  
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.brand-tagline {
  font-size: 11px;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ========================================
 DESKTOP NAVIGATION
======================================== */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  position: relative;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--primary);
  background: rgba(31, 58, 95, 0.04);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

/* Active page indicator */
.nav-menu a.active {
  color: var(--primary);
}

.nav-menu a.active::after {
  transform: scaleX(1);
}

/* ========================================
 HAMBURGER BUTTON
======================================== */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-toggle:hover {
  background: rgba(31, 58, 95, 0.04);
}

.hamburger {
  position: relative;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  bottom: -7px;
}

/* Hamburger Animation - Open State */
.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* ========================================
 MOBILE OVERLAY
======================================== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

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

/* Tablet - 992px */
@media (max-width: 992px) {
  .nav-menu a {
      padding: 10px 14px;
      font-size: 14px;
  }
}

/* Mobile - 768px */
@media (max-width: 768px) {
  .nav-toggle {
      display: flex;
  }

  .nav-overlay {
      display: block;
  }

  /* Mobile Navigation Menu */
  .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 100px 28px 40px;
      background: var(--white);
      box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      overflow-y: auto;
      justify-content: flex-start;
  }

  .nav-menu.active {
      right: 0;
  }

  .nav-menu a {
      padding: 18px 24px;
      font-size: 16px;
      font-weight: 500;
      color: var(--text);
      border-radius: 10px;
      border-bottom: 1px solid var(--border);
  }

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

  .nav-menu a::after {
      display: none;
  }

  .nav-menu a:hover,
  .nav-menu a.active {
      background: rgba(31, 58, 95, 0.06);
      color: var(--primary);
      padding-left: 32px;
  }

  /* Brand adjustments for mobile */
  .brand img {
      height: 48px;
  }

  .brand-name {
      font-size: 20px;
  }

  .brand-tagline {
      font-size: 9px;
      letter-spacing: 1px;
  }
}

/* Extra Small - 360px */
@media (max-width: 360px) {
  .brand-text {
      display: none;
  }

  .brand img {
      height: 44px;
  }
  
  /* Hero extra small mobile */
  .hero .container {
      padding: 85px 16px 40px;
  }
  
  /* Video responsive for extra small mobile */
  .hero-video {
      min-width: 100%;
      min-height: 100%;
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
  
  .hero h1 {
      font-size: clamp(24px, 6vw, 28px);
      margin-bottom: 14px;
      line-height: 1.3;
  }
  
  .hero-divider {
      width: 50px;
      height: 2px;
      margin-bottom: 16px;
  }
  
  .hero p {
      font-size: 14px;
      margin-bottom: 24px;
      line-height: 1.6;
  }
  
  .hero-btn {
      padding: 13px 28px;
      font-size: 13px;
      width: auto;
      min-width: 200px;
  }
}

/* ========================================
 BODY SCROLL LOCK (when menu is open)
======================================== */
body.nav-open {
  overflow: hidden;
}
/* ========================================
 HERO SECTION - Maximum Impact
======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Video Background */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

/* Dark overlay on video */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
 background: linear-gradient(135deg, rgba(21, 41, 66, 0.85) 0%, rgb(31 58 95 / 19%) 50%, rgba(42, 74, 115, 0.75) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Subtle pattern overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
      radial-gradient(circle at 20% 80%, rgba(200, 155, 60, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto 24px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
  animation: fadeUp 0.8s ease-out;
  line-height: 1.2;
}

.hero-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  margin: 0 auto 28px;
  border-radius: 2px;
  animation: fadeUp 0.8s ease-out 0.1s both;
}

.hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(16px, 2vw, 19px);
  max-width: 750px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--white);
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid transparent;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  animation: fadeUp 0.8s ease-out 0.3s both;
}

.hero-btn:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

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

/* ========================================
 SECTION STYLING
======================================== */
section {
  padding: 100px 0;
}

.bg-light {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-head h2 {
  margin-bottom: 16px;
}

.section-head p {
  color: var(--text-light);
  font-size: 17px;
}

/* ========================================
 TRUST SECTION - Credibility Grid
======================================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.trust-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  padding: 40px 24px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--secondary);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: var(--transition);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.trust-card:hover::before {
  opacity: 1;
}

.trust-card i {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
}

.trust-card h4 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* CTA Card */
.trust-card-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border: none;
}

.trust-card-cta h4,
.trust-card-cta p,
.trust-card-cta i {
  color: var(--white);
}

.trust-card-cta:hover {
  transform: translateY(-4px) scale(1.02);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.trust-card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: 100%;
}

/* ========================================
 ABOUT SECTION
======================================== */
.about-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.about-center {
  max-width: 1000px;
}

.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-header p {
  color: var(--text-light);
  font-size: 18px;
  margin-top: 12px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 80px;
}

.about-block {
  position: relative;
}

.about-block h3 {
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--secondary);
  display: inline-block;
}

.about-block p {
  font-size: 16px;
  line-height: 1.85;
}

.about-cta {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 20px;
}

/* ========================================
 BUTTONS
======================================== */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--primary);
  border-radius: 50px;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--primary);
  border-radius: 50px;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ========================================
 PRODUCTS SECTION
======================================== */
.products-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.products-section .section-head h2 {
  font-size: clamp(24px, 3.5vw, 32px);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.portfolio-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(200, 155, 60, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.portfolio-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
  z-index: 1;
}

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

.portfolio-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-card:hover img {
  transform: scale(1.03);
}

.portfolio-card h3 {
  position: relative;
  padding: 20px;
  text-align: center;
  font-size: 18px;
  color: var(--primary);
  background: var(--white);
  transition: color 0.25s ease;
}

.portfolio-card:hover h3 {
  color: var(--primary-dark);
}

/* ========================================
 WHY CHOOSE SECTION
======================================== */
.why-section {
  background: linear-gradient(
      180deg,
      #f8fafc 0%,
      rgba(31, 58, 95, 0.02) 50%,
      #f8fafc 100%
  );
  padding: 0;
}

.why-overlay {
  padding: 100px 0;
}

.why-overlay .section-head h2,
.why-overlay .section-head p {
  color: var(--primary);
}

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

.why-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  padding: 32px 24px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: var(--transition);
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--secondary);
  transform: scaleY(0);
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.why-card:hover::before {
  transform: scaleY(1);
}

/* ========================================
 GLOBAL REACH
======================================== */
.global-reach-section {
  background: 
      linear-gradient(rgba(248, 250, 252, 0.95), rgba(248, 250, 252, 0.95)),
      url("images/world-map.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 70px 0;
}

.global-reach-section .section-head {
  margin-bottom: 0;
}

.global-reach-section p {
  max-width: 900px;
  margin: 16px auto 0;
  font-size: 17px;
  text-align: center;
}

/* ========================================
 FAQ SECTION
======================================== */
.faq-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.faq-accordion {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(31, 58, 95, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

.faq-trigger:hover {
  background: rgba(31, 58, 95, 0.02);
}

.faq-icon {
  font-size: 12px;
  color: var(--secondary);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  border-top: 1px solid var(--border);
  background: rgba(248, 250, 252, 0.5);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content.open {
  max-height: 400px;
}

.faq-content p {
  padding: 18px 28px 22px;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

/* ========================================
 CTA SECTION
======================================== */
.cta-section {
  background: linear-gradient(
      135deg,
      var(--primary) 0%,
      var(--primary-light) 100%
  );
  padding: 100px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 36px;
}

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

.cta-section .btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

/* ========================================
 FOOTER
======================================== */
.footer {
  background: linear-gradient(180deg, var(--primary-dark) 0%, #0f1f33 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background: var(--secondary);
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

/* Social Icons */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--secondary);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom span {
  color: var(--secondary);
  font-weight: 600;
}

/* ========================================
 ABOUT PAGE
======================================== */
.about-main {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.about-main .container.narrow {
  max-width: 960px;
  padding: 0 24px;
}

.about-main h1 {
  margin-bottom: 32px;
  position: relative;
  display: inline-block;
}

.about-main h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--secondary-light) 100%);
  border-radius: 2px;
}

.about-main h2 {
  margin-top: 50px;
  margin-bottom: 20px;
  font-size: clamp(24px, 3vw, 28px);
}

.about-main p {
  margin-bottom: 20px;
  font-size: clamp(15px, 1.5vw, 16px);
  line-height: 1.9;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.value-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 32px 28px;
  border-radius: 16px;
  border-left: 4px solid var(--secondary);
  transition: var(--transition);
}

.value-card:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.value-card h4 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}

/* ========================================
 PRODUCTS PAGE - ENHANCED
======================================== */
.products-visual {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
}

.product-category-visual {
  margin-bottom: 100px;
  position: relative;
}

.product-category-visual:last-child {
  margin-bottom: 0;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 50px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(31, 58, 95, 0.03) 0%, rgba(200, 155, 60, 0.05) 100%);
  border-radius: 24px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.category-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
}

.category-header img {
  width: 280px;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
  transition: var(--transition);
}

.category-header:hover img {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.category-header-content {
  flex: 1;
}

.category-header h2 {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 12px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-header h2 i {
  font-size: 32px;
  color: var(--secondary);
}

.category-header p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 600px;
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  border: 2px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--secondary-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

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

.product-card h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-card h3::before {
  content: '•';
  color: var(--secondary);
  font-size: 28px;
  line-height: 1;
}

.product-card p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.product-card ul {
  list-style: none;
}

.product-card li {
  padding: 12px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: var(--transition);
}

.product-card li::before {
  content: '→';
  color: var(--secondary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.product-card li.no-arrow::before {
  content: '';
  display: none;
}

.product-card li:hover {
  padding-left: 8px;
  color: var(--primary);
}

.product-card li.no-arrow:hover {
  padding-left: 0;
}

.product-card li:last-child {
  border-bottom: none;
}

.product-card strong {
  color: var(--primary);
  font-weight: 600;
}

/* Product Inquiry */
.product-inquiry {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.product-inquiry::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(200, 155, 60, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.inquiry-head {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.inquiry-head h2 {
  margin-bottom: 12px;
  color: var(--white);
}

.inquiry-head p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

.form-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.form-wrapper iframe {
  width: 100%;
  border: none;
}

/* ========================================
 COMPLIANCE PAGE
======================================== */
.compliance-section {
  padding: 100px 0 80px;
}

.section-title {
  text-align: center;
  font-size: clamp(32px, 4vw, 40px);
  margin-bottom: 12px;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: clamp(16px, 1.5vw, 17px);
}

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

.compliance-card {
  background: var(--white);
  padding: 40px 28px;
  text-align: center;
  border-radius: 16px;
  border: 2px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.compliance-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--secondary-light) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

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

.compliance-card i {
  font-size: 44px;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}

.compliance-card:hover i {
  color: var(--secondary);
  transform: scale(1.1);
}

.compliance-card h4 {
  font-size: 17px;
  color: var(--primary);
  margin-bottom: 12px;
}

.compliance-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.compliance-promise {
  margin-top: 80px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px;
  background: linear-gradient(135deg, rgba(31, 58, 95, 0.03) 0%, rgba(200, 155, 60, 0.05) 100%);
  border-radius: 20px;
  border: 2px solid var(--border);
}

.compliance-promise h3 {
  font-size: clamp(22px, 3vw, 26px);
  margin-bottom: 16px;
}

.compliance-promise p {
  color: var(--text-light);
  font-size: clamp(15px, 1.5vw, 16px);
  line-height: 1.8;
}

/* ========================================
 CONTACT PAGE
======================================== */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.contact-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  padding: 40px 32px;
  text-align: center;
  border-radius: 20px;
  border: 2px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.contact-card i {
  font-size: 44px;
  color: var(--primary);
  margin-bottom: 24px;
  display: block;
  transition: var(--transition);
}

.contact-card:hover i {
  transform: scale(1.1);
  color: var(--secondary-dark);
}

.contact-card h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 24px;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.contact-card p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 8px;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card strong {
  color: var(--primary);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

/* Contact Links */
.contact-link {
  display: block;
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
  padding: 12px 20px;
  margin: 8px auto;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  max-width: 280px;
  font-size: 15px;
  line-height: 1.6;
}

.contact-link:hover {
  color: var(--primary);
  border-color: var(--secondary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-link i {
  font-size: 14px;
  margin-right: 8px;
  display: inline;
  color: var(--primary);
  margin-bottom: 0;
  transition: var(--transition);
}

.contact-link:hover i {
  transform: none;
  color: var(--secondary);
}

.contact-info-group {
  margin: 20px 0;
}

.contact-info-group:first-of-type {
  margin-top: 24px;
}

.contact-info-group:last-child {
  margin-bottom: 0;
}

/* Request Quote CTA Card */
.quote-cta-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 48px 40px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  transition: var(--transition);
}

.quote-cta-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.quote-cta-card h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 12px;
}

.quote-cta-card p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.quote-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--primary);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  border: 2px solid var(--primary);
}

.quote-cta-btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.quote-cta-btn i {
  font-size: 14px;
  margin: 0;
  color: inherit;
}

/* ========================================
 PAGE HERO (INNER PAGES)
======================================== */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(
      135deg,
      #f8fafc 0%,
      rgba(31, 58, 95, 0.03) 50%,
      #f8fafc 100%
  );
  border-bottom: 1px solid var(--border);
  animation: fadeUp 0.8s ease-out;
}

.page-hero h1 {
  margin-bottom: 12px;
  animation: fadeUp 0.8s ease-out 0.1s both;
}

.page-hero p {
  color: var(--text-light);
  font-size: 18px;
  animation: fadeUp 0.8s ease-out 0.2s both;
}

/* Page Content Animation */
.about-main,
.products-visual,
.compliance-section,
.contact-section {
  animation: fadeUp 0.8s ease-out 0.3s both;
}

/* Section animations */
section {
  animation: fadeUp 0.8s ease-out 0.2s both;
}

/* Stagger animations for cards */
.trust-card,
.portfolio-card,
.why-card,
.compliance-card,
.contact-card,
.value-card,
.product-card {
  animation: fadeUp 0.8s ease-out both;
}

.trust-card:nth-child(1) { animation-delay: 0.1s; }
.trust-card:nth-child(2) { animation-delay: 0.2s; }
.trust-card:nth-child(3) { animation-delay: 0.3s; }
.trust-card:nth-child(4) { animation-delay: 0.4s; }
.trust-card:nth-child(5) { animation-delay: 0.5s; }

.portfolio-card:nth-child(1) { animation-delay: 0.1s; }
.portfolio-card:nth-child(2) { animation-delay: 0.2s; }
.portfolio-card:nth-child(3) { animation-delay: 0.3s; }

.why-card:nth-child(1) { animation-delay: 0.1s; }
.why-card:nth-child(2) { animation-delay: 0.2s; }
.why-card:nth-child(3) { animation-delay: 0.3s; }
.why-card:nth-child(4) { animation-delay: 0.4s; }
.why-card:nth-child(5) { animation-delay: 0.5s; }
.why-card:nth-child(6) { animation-delay: 0.6s; }

.compliance-card:nth-child(1) { animation-delay: 0.1s; }
.compliance-card:nth-child(2) { animation-delay: 0.2s; }
.compliance-card:nth-child(3) { animation-delay: 0.3s; }
.compliance-card:nth-child(4) { animation-delay: 0.4s; }
.compliance-card:nth-child(5) { animation-delay: 0.5s; }
.compliance-card:nth-child(6) { animation-delay: 0.6s; }
.compliance-card:nth-child(7) { animation-delay: 0.7s; }
.compliance-card:nth-child(8) { animation-delay: 0.8s; }

.contact-card:nth-child(1) { animation-delay: 0.2s; }
.contact-card:nth-child(2) { animation-delay: 0.3s; }
.contact-card:nth-child(3) { animation-delay: 0.4s; }

.value-card:nth-child(1) { animation-delay: 0.2s; }
.value-card:nth-child(2) { animation-delay: 0.3s; }
.value-card:nth-child(3) { animation-delay: 0.4s; }
.value-card:nth-child(4) { animation-delay: 0.5s; }

.product-card:nth-child(1) { animation-delay: 0.2s; }
.product-card:nth-child(2) { animation-delay: 0.3s; }
.product-card:nth-child(3) { animation-delay: 0.4s; }
.product-card:nth-child(4) { animation-delay: 0.5s; }

/* Category headers animation */
.category-header {
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.product-category-visual:nth-child(1) .category-header { animation-delay: 0.1s; }
.product-category-visual:nth-child(2) .category-header { animation-delay: 0.2s; }
.product-category-visual:nth-child(3) .category-header { animation-delay: 0.3s; }

/* ========================================
 RESPONSIVE DESIGN
======================================== */
@media (max-width: 1200px) {
  .trust-grid {
      grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .portfolio-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
      grid-template-columns: 1fr;
  }
  
  .about-grid {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  /* Products Page - Tablet */
  .category-header {
      flex-direction: column;
      gap: 30px;
      padding: 30px;
  }
  
  .category-header img {
      width: 100%;
      max-width: 400px;
      height: 240px;
  }
  
  .product-cards {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
  }
  
  .product-category-visual {
      margin-bottom: 70px;
  }
}

@media (max-width: 768px) {
  .nav {
      flex-direction: row;
      align-items: center;
      padding: 14px 0;
  }
  
  nav {
      flex-wrap: wrap;
      justify-content: center;
  }
  
  nav a {
      padding: 8px 12px;
      font-size: 14px;
  }
  
  /* Container padding for mobile */
  .container {
      padding: 0 20px;
  }
  
  /* Hero improvements for mobile */
  .hero {
      min-height: 70vh;
      padding: 0;
  }
  
  /* Video responsive for mobile */
  .hero-video {
      min-width: 100%;
      min-height: 100%;
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
  
  .hero .container {
      padding: 100px 24px 50px;
  }
  
  .hero h1 {
      font-size: clamp(30px, 7.5vw, 38px);
      line-height: 1.25;
      margin-bottom: 18px;
      max-width: 100%;
      letter-spacing: -0.01em;
  }
  
  .hero-divider {
      width: 70px;
      height: 3px;
      margin-bottom: 20px;
  }
  
  .hero p {
      font-size: clamp(15px, 3.5vw, 17px);
      margin-bottom: 28px;
      line-height: 1.7;
      max-width: 100%;
      padding: 0 10px;
  }
  
  .hero-btn {
      padding: 15px 36px;
      font-size: 15px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  }
  
  /* Section headings mobile */
  .section-head {
      margin-bottom: 40px;
  }
  
  .section-head h2 {
      font-size: clamp(26px, 6vw, 32px);
      margin-bottom: 12px;
  }
  
  .section-head p {
      font-size: 15px;
  }
  
  .trust-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
  }
  
  .trust-card {
      padding: 28px 16px;
  }
  
  .trust-card i {
      font-size: 32px;
      margin-bottom: 16px;
  }
  
  .trust-card h4 {
      font-size: 15px;
      margin-bottom: 8px;
  }
  
  .trust-card p {
      font-size: 13px;
  }
  
  .portfolio-grid {
      grid-template-columns: 1fr;
      max-width: 400px;
  }
  
  .portfolio-card img {
      height: 200px;
  }
  
  .portfolio-card h3 {
      padding: 18px;
      font-size: 17px;
  }
  
  .why-grid {
      grid-template-columns: 1fr;
      gap: 14px;
  }
  
  .why-card {
      padding: 24px 20px;
      font-size: 15px;
  }
  
  /* CTA Section mobile */
  .cta-section {
      padding: 70px 0;
  }
  
  .cta-section h2 {
      font-size: clamp(24px, 6vw, 32px);
      margin-bottom: 14px;
  }
  
  .cta-section p {
      font-size: 16px;
      margin-bottom: 28px;
  }
  
  .footer-grid {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 40px;
  }
  
  .footer-col h4::after {
      left: 50%;
      transform: translateX(-50%);
  }
  
  .footer-socials {
      justify-content: center;
  }
  
  .values-grid {
      grid-template-columns: 1fr;
  }
  
  section {
      padding: 60px 0;
  }
  
  /* Global Reach - Mobile */
  .global-reach-section {
      padding: 50px 0;
  }
  
  .global-reach-section .section-head h2 {
      font-size: 28px;
      margin-bottom: 16px;
  }
  
  .global-reach-section p {
      font-size: 15px;
      margin: 12px auto 0;
      padding: 0 8px;
  }
  
  /* Products Page - Mobile */
  .products-visual {
      padding: 60px 0;
  }
  
  .category-header {
      padding: 24px;
      gap: 24px;
  }
  
  .category-header img {
      height: 200px;
  }
  
  .category-header h2 {
      font-size: 26px;
  }
  
  .category-header h2 i {
      font-size: 24px;
  }
  
  .category-header p {
      font-size: 15px;
  }
  
  .product-cards {
      grid-template-columns: 1fr;
      gap: 20px;
  }
  
  .product-card {
      padding: 24px;
  }
  
  .product-card h3 {
      font-size: 18px;
  }
  
  .product-category-visual {
      margin-bottom: 60px;
  }
  
  .product-inquiry {
      padding: 60px 0;
  }
  
  .inquiry-head h2 {
      font-size: 28px;
  }
  
  .inquiry-head p {
      font-size: 16px;
  }
  
  .quote-cta-card {
      padding: 36px 28px;
  }
  
  .quote-cta-card h3 {
      font-size: 22px;
  }
  
  .quote-cta-btn {
      padding: 16px 32px;
      font-size: 16px;
  }
  
  .form-wrapper {
      padding: 28px;
  }
  
  /* Contact Page - Mobile */
  .contact-section {
      padding: 60px 0;
  }
  
  .contact-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }
  
  .contact-card {
      padding: 32px 24px;
  }
  
  .contact-card i {
      font-size: 28px;
  }
  
  .contact-card h3 {
      font-size: 18px;
  }
  
  /* Contact Link Icons - Mobile */
  .contact-link {
      font-size: 14px;
      padding: 10px 18px;
  }
  
  .contact-link i {
      font-size: 12px;
      margin-right: 6px;
  }
  
  /* Compliance Page - Mobile */
  .compliance-section {
      padding: 60px 0;
  }
  
  .compliance-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }
  
  .compliance-card {
      padding: 32px 24px;
  }
  
  .compliance-card i {
      font-size: 36px;
  }
  
  /* About Page - Mobile */
  .about-main {
      padding: 60px 0;
  }
  
  .about-main .container.narrow {
      padding: 0 20px;
  }
  
  .about-main h1 {
      font-size: 32px;
  }
  
  .about-main h2 {
      margin-top: 40px;
      font-size: 24px;
  }
  
  /* Trust Cards - Mobile */
  .trust-card i {
      font-size: 28px;
  }
  
  /* Footer Socials - Mobile */
  .footer-socials a {
      width: 38px;
      height: 38px;
      font-size: 16px;
  }
  
  /* Category Header Icons - Mobile */
  .category-header h2 i {
      font-size: 20px;
  }
  
  /* Product Card Icons - Mobile */
  .product-card h3::before {
      font-size: 22px;
  }
}

@media (max-width: 480px) {
  /* Container padding for small mobile */
  .container {
      padding: 9px 16px ;
  }
  
  /* Navigation improvements */
  .nav {
      padding:  9px 16px !important;
  }
  
  .nav .container {
      padding: 0 11px;
  }
  
  .nav-menu {
      width: 100%;
      padding: 70px 24px 40px;
      right: -100%;
  }
  
  .nav-toggle {
      width: 44px;
      height: 44px;
  }
  
  .hamburger,
  .hamburger::before,
  .hamburger::after {
      width: 22px;
  }
  
  .brand img {
      height: 42px;
  }
  
  .brand-name {
      font-size: 18px;
  }
  
  .brand-tagline {
      font-size: 8px;
  }
  
  /* Hero improvements */
  .hero {
      min-height: 60vh;
  }
  
  /* Video responsive for small mobile */
  .hero-video {
      min-width: 100%;
      min-height: 100%;
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
  
  .hero .container {
      padding: 90px 20px 45px;
  }
  
  .hero h1 {
      font-size: clamp(26px, 6.5vw, 32px);
      margin-bottom: 16px;
      line-height: 1.3;
      letter-spacing: -0.01em;
      max-width: 100%;
  }
  
  .hero-divider {
      width: 60px;
      height: 2.5px;
      margin-bottom: 18px;
  }
  
  .hero p {
      font-size: clamp(14px, 3.5vw, 16px);
      margin-bottom: 26px;
      line-height: 1.65;
      padding: 0 5px;
  }
  
  .hero-btn {
      padding: 14px 32px;
      font-size: 14px;
      border-radius: 50px;
  }
  
  /* Section improvements */
  section {
      padding: 50px 0;
  }
  
  .section-head {
      margin-bottom: 32px; 
  }
  
  .section-head h2 {
      font-size: clamp(24px, 5vw, 28px);
  }
  
  .section-title {
    margin-top: 20px;
      font-size: 22px;
      line-height: 1.2;
  }
  
  .section-head p {
      font-size: 14px;
  }
  
  .trust-grid {
      grid-template-columns: 1fr;
      gap: 14px;
  }
  
  .trust-card {
      padding: 24px 18px;
  }
  
  .trust-card i {
      font-size: 28px;
      margin-bottom: 14px;
  }
  
  .trust-card h4 {
      font-size: 14px;
      margin-bottom: 8px;
  }
  
  .trust-card p {
      font-size: 13px;
  }
  
  /* About section mobile */
  .about-section {
      padding: 50px 0;
  }
  
  .about-header {
      margin-bottom: 40px;
  }
  
  .about-header h2 {
      font-size: 26px;
  }
  
  .about-header p {
      font-size: 15px;
  }
  
  .about-grid {
      gap: 32px;
  }
  
  .about-block h3 {
      font-size: 20px;
      margin-bottom: 14px;
  }
  
  .about-block p {
      font-size: 15px;
  }
  
  /* Portfolio improvements */
  .portfolio-grid {
      max-width: 100%;
  }
  
  .portfolio-card img {
      height: 180px;
  }
  
  .portfolio-card h3 {
      padding: 16px;
      font-size: 16px;
  }
  
  /* Why section mobile */
  .why-card {
      padding: 20px 18px;
      font-size: 14px;
  }
  
  /* Global Reach - Small Mobile */
  .global-reach-section {
      padding: 40px 0;
  }
  
  .global-reach-section .section-head h2 {
      font-size: 24px;
      margin-bottom: 14px;
  }
  
  .global-reach-section p {
      font-size: 14px;
      margin: 10px auto 0;
      line-height: 1.7;
  }
  
  /* FAQ mobile improvements */
  .faq-section {
      padding: 50px 0;
  }
  
  .faq-trigger {
      padding: 18px 20px;
      font-size: 15px;
  }
  
  .faq-content p {
      padding: 16px 20px 18px;
      font-size: 14px;
  }
  
  /* CTA Section small mobile */
  .cta-section {
      padding: 60px 0;
  }
  
  .cta-section h2 {
      font-size: clamp(22px, 5vw, 28px);
  }
  
  .cta-section p {
      font-size: 15px;
      margin-bottom: 24px;
  }
  
  .cta-section .btn-outline {
      padding: 13px 28px;
      font-size: 14px;
  }
  
  /* Footer improvements */
  .footer {
      padding: 60px 0 0;
  }
  
  .footer-grid {
      gap: 32px;
  }
  
  .footer-col h4 {
      font-size: 15px;
      margin-bottom: 20px;
  }
  
  .footer-col p,
  .footer-col a {
      font-size: 13px;
  }
  
  .footer-socials a {
      width: 40px;
      height: 40px;
      font-size: 16px;
  }
  
  .footer-bottom {
      margin-top: 50px;
      padding: 20px 0;
  }
  
  .footer-bottom p {
      font-size: 13px;
  }
  
  .contact-card,
  .compliance-card {
      padding: 32px 24px;
  }
  
  /* Products Page - Small Mobile */
  .container {
      padding: 0 16px;
  }
  
  .category-header {
      padding: 20px;
      gap: 20px;
  }
  
  .category-header img {
      height: 180px;
  }
  
  .category-header h2 {
      font-size: 22px;
      flex-direction: column;
      gap: 8px;
  }
  
  .product-card {
      padding: 20px;
  }
  
  .product-card h3 {
      font-size: 17px;
      margin-bottom: 16px;
  }
  
  .product-card li {
      font-size: 13px;
      padding: 10px 0;
  }
  
  .quote-cta-card {
      padding: 28px 20px;
      border-radius: 16px;
  }
  
  .quote-cta-card h3 {
      font-size: 20px;
  }
  
  .quote-cta-card p {
      font-size: 14px;
  }
  
  .quote-cta-btn {
      padding: 14px 28px;
      font-size: 15px;
      width: 100%;
      justify-content: center;
  }
  
  .page-hero {
      padding: 120px 0 50px;
  }
  
  .page-hero h1 {
      font-size: 28px;
  }
  
  .page-hero p {
      font-size: 16px;
  }
  
  /* Compliance Promise - Small Mobile */
  .compliance-promise {
      padding: 28px 20px;
  }
  
  .compliance-promise h3 {
      font-size: 20px;
  }
  
  /* Contact Card - Small Mobile */
  .contact-card {
      padding: 28px 20px;
  }
  
  .contact-card i {
      font-size: 26px;
      margin-bottom: 20px;
  }
  
  .contact-card h3 {
      font-size: 17px;
      margin-bottom: 20px;
  }
  
  .contact-card p {
      font-size: 14px;
  }
  
  /* Contact Link Icons - Small Mobile */
  .contact-link {
      font-size: 13px;
      padding: 10px 16px;
  }
  
  .contact-link i {
      font-size: 11px;
      margin-right: 6px;
  }
  
  /* Compliance Card - Small Mobile */
  .compliance-card i {
      font-size: 32px;
  }
  
  /* Trust Cards - Small Mobile */
  .trust-card i {
      font-size: 24px;
  }
  
  .trust-card h4 {
      font-size: 14px;
  }
  
  .trust-card p {
      font-size: 13px;
  }
  
  /* Footer Socials - Small Mobile */
  .footer-socials a {
      width: 36px;
      height: 36px;
      font-size: 14px;
  }
  
  /* About Page - Small Mobile */
  .about-main {
      padding: 50px 0;
  }
  
  .about-main .container.narrow {
      padding: 10px 16px;
  }
  
  .about-main h1 {
      font-size: 28px;
      margin-bottom: 24px;
  }
  
  .about-main h2 {
      margin-top: 32px;
      margin-bottom: 16px;
      font-size: 22px;
  }
  
  .about-main p {
      font-size: 15px;
      margin-bottom: 16px;
  }
  
  .value-card {
      padding: 24px 20px;
  }
  
  .value-card h4 {
      font-size: 17px;
  }
  
  .value-card p {
      font-size: 14px;
  }
}

/* ========================================
 UTILITIES
======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Smooth scroll offset for fixed header */
[id] {
  scroll-margin-top: 100px;
}

/* Better touch targets for mobile */
@media (max-width: 768px) {
  a, button {
      min-height: 44px;
      min-width: 44px;
  }
}

/* Video responsive for portrait orientation on mobile */
@media (max-width: 768px) and (orientation: portrait) {
  .hero-video {
      width: auto;
      height: 100%;
      min-width: 100%;
      min-height: 100%;
  }
}

/* Video responsive for landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-video {
      width: 100%;
      height: auto;
      min-width: 100%;
      min-height: 100%;
  }
  
  .hero {
      min-height: 100vh;
  }
}

/* Prevent horizontal scroll on mobile */
body {
  overflow-x: hidden;
}

/* Improve image loading */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Better focus states for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .nav-toggle,
  .nav-overlay,
  .hero-btn,
  .btn-outline,
  .btn-primary,
  .quote-cta-btn {
      display: none;
  }
  
  body {
      font-size: 12pt;
      line-height: 1.5;
      color: #000;
      background: #fff;
  }
}