/* ============================================================
   SOURCINGPRO.PK — GLOBAL DESIGN SYSTEM & STYLESHEET
   Market: Pakistan | Brand: SourcingPro
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand Colors inspired by SourcingPro Logo & Premium Corporate Aesthetic */
  --primary:        #0A1628;
  --primary-mid:    #122040;
  --primary-light:  #1E3A5F;
  --brand-blue:     #0D8FCA;
  --brand-navy:     #204066;
  --accent:         #E8A020;
  --accent-light:   #F4B942;
  --accent-dark:    #C4851A;
  
  /* Neutral Palette */
  --white:          #FFFFFF;
  --off-white:      #F8F9FC;
  --surface:        #FFFFFF;
  --surface-alt:    #F1F5F9;
  --border:         #E2E8F0;
  --border-light:   #EDF2F7;
  --text-main:      #0F172A;
  --text-muted:     #64748B;
  --text-light:     #94A3B8;

  /* Feedback Colors */
  --success:        #10B981;
  --warning:        #F59E0B;
  --danger:         #EF4444;

  /* Typography */
  --font-sans:      'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container-max:  1240px;
  --header-height:  80px;

  /* Transitions & Shadows */
  --transition:     all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm:      0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md:      0 4px 14px rgba(10, 22, 40, 0.08);
  --shadow-lg:      0 12px 30px rgba(10, 22, 40, 0.12);
  --shadow-xl:      0 20px 40px rgba(10, 22, 40, 0.16);
  --radius-sm:      6px;
  --radius-md:      10px;
  --radius-lg:      16px;
  --radius-full:    9999px;
}

/* ── Global Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ── Section Structure ── */
.section {
  padding: 100px 0;
  position: relative;
}
.section-dark {
  background: var(--primary);
  color: var(--white);
}
.section-alt {
  background: var(--off-white);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 143, 202, 0.1);
  color: var(--brand-blue);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.section-dark .section-tag {
  background: rgba(232, 160, 32, 0.15);
  color: var(--accent);
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 16px;
}
.section-dark .section-title {
  color: var(--white);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(232, 160, 32, 0.3);
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 160, 32, 0.4);
}
.btn-brand {
  background: var(--brand-blue);
  color: var(--white);
  border-color: var(--brand-blue);
  box-shadow: 0 4px 14px rgba(13, 143, 202, 0.3);
}
.btn-brand:hover {
  background: #0B7BB0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 143, 202, 0.4);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-navy {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-navy:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 15px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

/* ── Header / Navigation ── */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  background: #ffffff !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid #eef2f6;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.header.transparent {
  background: #ffffff !important;
  border-bottom: 1px solid #eef2f6 !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06) !important;
}
.header.scrolled {
  background: #ffffff !important;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1) !important;
  height: 72px;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.logo-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--accent);
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0b2545 !important;
  position: relative;
  padding: 8px 0;
  transition: color 0.25s ease;
}
.header.scrolled .nav-link {
  color: var(--text-main);
}
.nav-link:hover, .nav-link.active {
  color: var(--accent);
}
.header.scrolled .nav-link:hover, .header.scrolled .nav-link.active {
  color: var(--brand-blue);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: #0b2545 !important;
  border-radius: 2px;
  transition: var(--transition);
}
.header.scrolled .hamburger span {
  background: var(--primary);
}
.hamburger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-nav {
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  height: calc(100vh - 68px);
  background: #ffffff !important;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px 20px;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-top: 1px solid #eef2f6;
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav .nav-link {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0b2545 !important;
  padding: 12px 16px;
  width: 100%;
  text-align: center;
  border-radius: 8px;
  border-bottom: 1px solid #f8fafc;
}

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.94) 0%, rgba(32, 64, 102, 0.90) 100%),
              url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920&q=80') center/cover no-repeat;
  color: var(--white);
  padding: calc(var(--header-height) + 60px) 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.hero-content {
  max-width: 660px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 160, 32, 0.15);
  border: 1px solid rgba(232, 160, 32, 0.3);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-title .highlight {
  background: linear-gradient(90deg, var(--accent) 0%, var(--brand-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 32px;
}
.hero-stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* Hero Right Glass Card */
.hero-visual {
  position: relative;
}
.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.hero-card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.hero-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}
.hero-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}
.hero-feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(13, 143, 202, 0.25);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Floating Card */
.floating-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  color: var(--primary);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.floating-badge-icon {
  font-size: 1.8rem;
}
.floating-badge-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
}
.floating-badge-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Trust Strip ── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(13, 143, 202, 0.1);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.trust-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}
.trust-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Services Section ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(13, 143, 202, 0.3);
}
.service-card:hover::before {
  opacity: 1;
}
.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(13, 143, 202, 0.08);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: var(--brand-blue);
  color: var(--white);
  transform: scale(1.05);
}
.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-blue);
}
.service-link:hover {
  color: var(--accent-dark);
  gap: 12px;
}

/* ── About Section ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-stat-overlay {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--primary);
  color: var(--white);
  padding: 24px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.about-stat-overlay strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
}
.about-stat-overlay span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-feature-icon {
  font-size: 1.2rem;
  color: var(--brand-blue);
  line-height: 1.2;
}
.about-feature strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}
.about-feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── How It Works (Process) ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.process-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}
.process-step:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: var(--accent);
}
.process-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.8;
  line-height: 1;
  margin-bottom: 16px;
}
.process-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.process-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

/* ── Industries ── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.industry-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 280px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.industry-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.industry-card:hover .industry-img {
  transform: scale(1.08);
}
.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
}
.industry-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.industry-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

/* ── Quality Control Section ── */
.qc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.qc-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
.qc-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.qc-point-icon {
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.qc-point strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.qc-point p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* ── FAQ Accordion ── */
.faq-wrap {
  max-width: 840px;
  margin: 0 auto;
}
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
}
.accordion-item.open {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-sm);
}
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.accordion-icon {
  font-size: 1.2rem;
  color: var(--brand-blue);
  transition: transform 0.3s ease;
}
.accordion-item.open .accordion-icon {
  transform: rotate(180deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}
.accordion-item.open .accordion-body {
  max-height: 600px;
  transition: max-height 0.4s ease-in-out;
}
.accordion-content {
  padding: 0 24px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Contact Form Section ── */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: flex-start;
}
.contact-info {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
}
.contact-info-title {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.contact-info-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 36px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(232, 160, 32, 0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-method strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.contact-method span, .contact-method a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: var(--shadow-lg);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-full {
  grid-column: 1 / -1;
}
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--off-white);
  font-size: 0.9rem;
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--brand-blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(13, 143, 202, 0.12);
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}
.form-error {
  font-size: 0.75rem;
  color: var(--danger);
}
.form-success {
  display: none;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--success);
  color: #065F46;
  padding: 16px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.form-success.show {
  display: block;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--primary) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-xl);
}
.cta-banner h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 18px 0 24px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--brand-blue);
  color: var(--white);
  border-color: var(--brand-blue);
}
.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--accent);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}
.footer-link:hover {
  color: var(--accent);
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--brand-blue);
  color: var(--white);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  z-index: 99;
  transition: var(--transition);
  border: none;
}
.back-to-top:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

/* ── Responsive Media Queries ── */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .qc-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-card { margin-top: 20px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .section { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; }
  .trust-grid { grid-template-columns: 1fr; }
  .site-topbar { display: none; }
}

/* ══════════════════════════════════════════════════════════
   SOURCINGPRO.COM.AU EXACT REPLICATION STYLES
   ══════════════════════════════════════════════════════════ */

/* ── Top Bar ── */
.site-topbar {
  background: #111d2e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  position: sticky;
  top: 0;
  z-index: 1001;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  will-change: transform, opacity;
}
.site-topbar.topbar-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-info {
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}
.topbar-link:hover {
  color: #0d8fca;
}
/* Topbar Socials — Authentic Brand Styling */
.topbar-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.topbar-social-btn svg {
  display: block;
}

.topbar-social-btn.social-facebook {
  background: #1877F2;
  border: 1px solid #1877F2;
}
.topbar-social-btn.social-facebook:hover {
  background: #0d65d9;
  border-color: #0d65d9;
  transform: translateY(-2px) scale(1.12);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.6);
}

.topbar-social-btn.social-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.topbar-social-btn.social-instagram:hover {
  transform: translateY(-2px) scale(1.12);
  box-shadow: 0 4px 12px rgba(220, 39, 67, 0.6);
}

.topbar-social-btn.social-youtube {
  background: #FF0000;
  border: 1px solid #FF0000;
}
.topbar-social-btn.social-youtube:hover {
  background: #d90000;
  border-color: #d90000;
  transform: translateY(-2px) scale(1.12);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.6);
}

.topbar-social-btn.social-tiktok {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.topbar-social-btn.social-tiktok:hover {
  border-color: #25F4EE;
  transform: translateY(-2px) scale(1.12);
  box-shadow: -2px 2px 12px rgba(37, 244, 238, 0.6), 2px -2px 12px rgba(254, 44, 85, 0.6);
}

/* ── Elementor Style Divider ── */
.divider-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 18px 0 28px;
}
.divider-line {
  height: 2px;
  width: 80px;
  background: linear-gradient(90deg, transparent, #0d8fca);
}
.divider-line.right {
  background: linear-gradient(90deg, #0d8fca, transparent);
}
.divider-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #0d8fca;
}

/* ── Button Pill (sourcingpro.com.au specific) ── */
.btn-pill {
  background-color: #117db3;
  color: #ffffff !important;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-pill:hover {
  background-color: #254e7a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(17, 125, 179, 0.3);
}

/* ── Middle CTA Banner ── */
.banner-cta {
  background: linear-gradient(135deg, #0d8fca 0%, #204066 100%);
  color: #ffffff;
  padding: 80px 0;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.banner-cta-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 40px;
}
.banner-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}
.banner-cta p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

/* ── 8-Step Process Grid ── */
.steps-grid-8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) {
  .steps-grid-8 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .steps-grid-8 { grid-template-columns: 1fr; }
}
.step-item-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.step-item-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(13, 143, 202, 0.12);
  border-color: #0d8fca;
}
.step-img-wrap {
  height: 170px;
  overflow: hidden;
}
.step-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.step-item-card:hover .step-img-wrap img {
  transform: scale(1.06);
}
.step-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0d8fca;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 12px;
}
.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 10px;
}
.step-text {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.6;
}

/* ── 12-Categories Grid ── */
.categories-12-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .categories-12-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 650px) {
  .categories-12-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .categories-12-grid { grid-template-columns: 1fr; }
}
.category-box {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.category-box:hover {
  background: #0d8fca;
  color: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(13, 143, 202, 0.25);
  border-color: #0d8fca;
}
.category-box .cat-icon {
  font-size: 2rem;
  transition: transform 0.3s ease;
}
.category-box:hover .cat-icon {
  transform: scale(1.2);
}
.category-box h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: inherit;
}

/* ── Calendly Zoom Button ── */
.calendly-btn {
  font-family: var(--font-sans);
  font-size: 17px;
  background-color: #117db3;
  color: white;
  padding: 15px 29px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.calendly-btn:hover {
  background-color: #254e7a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(17, 125, 179, 0.3);
}

/* ── Contact Info Boxes (sourcingpro.com.au layout) ── */
.info-card-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}
.info-card-link:hover {
  border-color: #0d8fca;
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.info-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13, 143, 202, 0.1);
  color: #0d8fca;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.info-card-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: #0F172A;
}
.info-card-text p {
  font-size: 0.9rem;
  color: #64748B;
  margin: 0;
}

/* Powered by E-Virtual Support Button */
.btn-powered {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(13, 143, 202, 0.12);
  border: 1px solid rgba(13, 143, 202, 0.35);
  border-radius: 20px;
  color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.btn-powered:hover {
  background: #0d8fca !important;
  border-color: #0d8fca !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(13, 143, 202, 0.45);
  transform: translateY(-2px);
}
.powered-dot {
  width: 7px;
  height: 7px;
  background: #00d2ff;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #00d2ff;
}

/* Footer Social Links — Official Brand Colors */
.footer-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.social-link svg {
  display: block;
}
.social-link.social-facebook {
  background: #1877F2;
  border: 1px solid #1877F2;
}
.social-link.social-facebook:hover {
  background: #0d65d9;
  border-color: #0d65d9;
  box-shadow: 0 5px 18px rgba(24, 119, 242, 0.55);
  transform: translateY(-3px) scale(1.08);
}
.social-link.social-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-link.social-instagram:hover {
  box-shadow: 0 5px 18px rgba(220, 39, 67, 0.55);
  transform: translateY(-3px) scale(1.08);
}
.social-link.social-youtube {
  background: #FF0000;
  border: 1px solid #FF0000;
}
.social-link.social-youtube:hover {
  background: #d90000;
  border-color: #d90000;
  box-shadow: 0 5px 18px rgba(255, 0, 0, 0.55);
  transform: translateY(-3px) scale(1.08);
}
.social-link.social-tiktok {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.social-link.social-tiktok:hover {
  border-color: #25F4EE;
  box-shadow: -2px 3px 16px rgba(37, 244, 238, 0.55), 2px -3px 16px rgba(254, 44, 85, 0.55);
  transform: translateY(-3px) scale(1.08);
}

/* ==============================================================================
   WhatsApp Floating Lead Widget
   ============================================================================== */
.wa-widget-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 10002;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Adjust Back-to-Top to sit cleanly above WhatsApp */
.back-to-top {
  bottom: 95px !important;
  right: 28px !important;
}

/* Floating Toggle Button */
.wa-toggle-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-toggle-btn:hover {
  background: #20ba59;
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.wa-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulseRing 2s infinite cubic-bezier(0.25, 0, 0, 1);
  pointer-events: none;
}

@keyframes waPulseRing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.55); opacity: 0; }
}

.wa-icon-close {
  display: none;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.wa-widget-container.active .wa-icon-chat {
  display: none;
}

.wa-widget-container.active .wa-icon-close {
  display: block;
}

.wa-widget-container.active .wa-toggle-btn {
  background: #111d2e;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.wa-widget-container.active .wa-pulse {
  display: none;
}

/* Tooltip Badge */
.wa-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: #111d2e;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-width: 5px 0 5px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #111d2e;
}

.wa-widget-container.active .wa-tooltip,
.wa-widget-container:hover .wa-tooltip {
  opacity: 0;
}

/* Popup Chat Box */
.wa-popup {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 350px;
  max-width: calc(100vw - 36px);
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.wa-widget-container.active .wa-popup {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Header */
.wa-header {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
  color: #ffffff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.wa-avatar-wrap {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.wa-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
  border: 2px solid #ffffff;
}

.wa-status-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 11px;
  height: 11px;
  background: #25D366;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.wa-header-info {
  flex-grow: 1;
}

.wa-title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.wa-status-text {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  margin-top: 3px;
}

.wa-close-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}

.wa-close-btn:hover {
  color: #ffffff;
}

/* Body */
.wa-body {
  padding: 18px;
  background: #f8fafc;
}

.wa-intro-bubble {
  background: #ffffff;
  border-radius: 12px;
  border-top-left-radius: 4px;
  padding: 12px 14px;
  font-size: 0.83rem;
  line-height: 1.5;
  color: #334155;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 16px;
  border-left: 3px solid #25D366;
}

.wa-intro-bubble p {
  margin: 0;
}

/* Form Fields */
.wa-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wa-input-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: left;
}

.wa-input-group label {
  font-size: 0.77rem;
  font-weight: 700;
  color: #1e293b;
}

.wa-req {
  color: #e11d48;
}

.wa-input-group input,
.wa-input-group textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #0f172a;
  background: #ffffff;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.wa-input-group input:focus,
.wa-input-group textarea:focus {
  outline: none;
  border-color: #25D366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

.wa-submit-btn {
  margin-top: 4px;
  padding: 12px;
  background: #25D366;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
}

.wa-submit-btn:hover {
  background: #20ba59;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* ══════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE OPTIMIZATION & RESPONSIVE SUITE
   ══════════════════════════════════════════════════════════ */

/* Global Mobile Guard */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
}

img {
  max-width: 100%;
  height: auto;
}

/* Default Desktop Grids */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr;
  gap: 40px;
}

.hero-actions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 480px;
}

/* Tablet Screens (<= 992px) */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 36px !important;
  }
  .banner-cta-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    text-align: center;
  }
  .banner-cta-grid img {
    margin: 0 auto;
  }
}

/* Mobile Screens (<= 768px) */
@media (max-width: 768px) {
  /* Header & Navigation */
  .header {
    height: 68px !important;
    padding: 0 16px !important;
  }
  .logo-img {
    height: 42px !important;
  }
  .nav-links {
    display: none !important;
  }
  .hamburger {
    display: flex !important;
  }
  .nav-actions {
    gap: 10px !important;
  }
  .nav-actions .btn-pill {
    padding: 8px 16px !important;
    font-size: 0.82rem !important;
  }

  /* Containers & Spacing */
  .container {
    padding-left: 18px !important;
    padding-right: 18px !important;
    max-width: 100% !important;
  }
  .section {
    padding: 50px 0 !important;
  }

  /* Hero Section */
  .hero {
    min-height: auto !important;
    padding: 50px 0 60px !important;
  }
  .hero-content {
    max-width: 100% !important;
    text-align: left;
  }
  .hero-title {
    font-size: 1.95rem !important;
    line-height: 1.25 !important;
    margin-bottom: 16px !important;
  }
  .hero-desc {
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
    margin-bottom: 24px !important;
  }
  .hero-actions-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 12px !important;
  }
  .hero-actions-grid .btn-pill {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 13px 20px !important;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    padding-top: 24px !important;
    margin-top: 24px !important;
  }
  .hero-stat-number {
    font-size: 1.8rem !important;
  }

  /* Services Grid (Single Column Cards on Mobile) */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .service-card {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 16px !important;
    margin: 0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }
  .service-card > div:first-child {
    height: 210px !important;
  }
  .service-card img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
  }
  .service-card h3 {
    font-size: 1.2rem !important;
    line-height: 1.35 !important;
  }
  .service-card p {
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
  }

  /* 8-Step Process Cards */
  .steps-grid-8 {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .step-item-card {
    width: 100% !important;
  }
  .step-img-wrap {
    height: 200px !important;
  }

  /* Middle CTA Banner */
  .banner-cta {
    padding: 50px 0 !important;
  }
  .banner-cta h2 {
    font-size: 1.6rem !important;
    line-height: 1.3 !important;
  }
  .banner-cta p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }

  /* Footer (Full Width Single Column on Mobile) */
  .footer {
    padding: 50px 0 24px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .footer-brand {
    text-align: left !important;
  }
  .footer-socials {
    justify-content: flex-start !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 16px !important;
    margin-top: 36px !important;
    padding-top: 20px !important;
  }
  .footer-bottom > div {
    width: 100% !important;
    justify-content: center !important;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }

  /* WhatsApp Widget & Back-to-Top on Mobile */
  .wa-widget-container {
    bottom: 18px !important;
    right: 18px !important;
  }
  .wa-toggle-btn {
    width: 54px !important;
    height: 54px !important;
  }
  .back-to-top {
    bottom: 82px !important;
    right: 22px !important;
    width: 42px !important;
    height: 42px !important;
  }
  .wa-popup {
    width: calc(100vw - 36px) !important;
    right: 0 !important;
    bottom: 68px !important;
    max-height: 80vh !important;
  }
  .wa-input-group input,
  .wa-input-group textarea {
    font-size: 16px !important; /* Prevents auto zoom in iOS Safari */
  }
}

/* Extra Small Screens (<= 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem !important;
  }
  .hero-stats {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .nav-actions .btn-pill {
    padding: 7px 12px !important;
    font-size: 0.78rem !important;
  }
}

/* ── Hero Product Rotator & Showcase ── */
.hero-visual {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Desktop Grid & Rotating Effects */
.hero-product-grid-desktop {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 460px;
  perspective: 1000px;
}

.rotator-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.rotator-card-inner img {
  width: 100%;
  height: 155px;
  object-fit: contain;
  transition: transform 0.4s ease;
  display: block;
  margin: 0 auto 8px;
}

.rotator-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #00d2ff;
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid rgba(0, 210, 255, 0.3);
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Continuous Subtle 3D Floating & Rotating Animations */
.rotator-card-1 { animation: floatCard1 6s ease-in-out infinite; }
.rotator-card-2 { animation: floatCard2 7s ease-in-out infinite 0.5s; }
.rotator-card-3 { animation: floatCard3 6.5s ease-in-out infinite 1s; }
.rotator-card-4 { animation: floatCard4 7.5s ease-in-out infinite 1.5s; }

@keyframes floatCard1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}
@keyframes floatCard2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
@keyframes floatCard3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1.5deg); }
}
@keyframes floatCard4 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-11px) rotate(-2deg); }
}

/* Hover 3D Pop & Rotation */
.rotator-card:hover {
  transform: translateY(-10px) scale(1.06) rotate(0deg) !important;
  border-color: rgba(13, 143, 202, 0.6);
  box-shadow: 0 20px 45px rgba(13, 143, 202, 0.35);
  background: rgba(255, 255, 255, 0.12);
}
.rotator-card:hover .rotator-card-inner img {
  transform: scale(1.08) rotate(4deg);
}

/* Mobile Carousel (Hidden on Desktop) */
.hero-carousel-mobile {
  display: none;
}

/* ── Hero Single-Item Rotating Showcase ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-rotator-frame {
  width: 100%;
  max-width: 450px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 24px 24px 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  user-select: none;
}

.rotator-slides-wrap {
  position: relative;
  width: 100%;
  min-height: 290px;
}

.rotator-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.92) translateX(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.rotator-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateX(0);
  position: relative;
}

.rotator-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #00d2ff;
  background: rgba(0, 210, 255, 0.14);
  border: 1px solid rgba(0, 210, 255, 0.35);
  padding: 7px 18px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(0, 210, 255, 0.15);
}

.rotator-img-box {
  width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.rotator-img {
  max-height: 235px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.38));
  transition: transform 0.4s ease;
  animation: floatRotatorItem 5s ease-in-out infinite alternate;
}

@keyframes floatRotatorItem {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(2deg); }
}

/* Controls */
.rotator-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rotator-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.rotator-arrow-btn:hover {
  background: #0d8fca;
  border-color: #0d8fca;
  transform: scale(1.08);
}

.rotator-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.rotator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.35s ease;
}

.rotator-dot.active {
  width: 24px;
  border-radius: 10px;
  background: #0d8fca;
  box-shadow: 0 0 10px rgba(13, 143, 202, 0.7);
}

/* Mobile Rules */
@media (max-width: 768px) {
  .header-contact-btn,
  .nav-actions .header-contact-btn,
  .header .header-contact-btn,
  .nav-actions .btn-pill,
  .header .btn-pill {
    display: none !important;
  }
  
  .hero-rotator-frame {
    max-width: 350px;
    padding: 18px 16px 14px;
    margin: 10px auto 0;
  }
  .rotator-slides-wrap {
    min-height: 240px;
  }
  .rotator-img-box {
    height: 195px;
  }
  .rotator-img {
    max-height: 190px;
  }
  .rotator-badge {
    font-size: 0.76rem;
    padding: 5px 14px;
    margin-bottom: 8px;
  }
}