/* ==========================================================================
   PRIMAVEX INTERNATIONAL LTD | MAIN STYLESHEET
   Accurate visual translation strictly adhering to Figma designs
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Color Palette */
  --primary-navy: #062852;
  --deep-navy: #051A3A;
  --dark-black: #000000;
  --dark-banner: #04142B;
  --primary-gold: #B78949;
  --soft-gold: #D2AE73;
  --light-gold: #E5C38E;
  
  /* Surfaces & Neutrals */
  --white: #FFFFFF;
  --page-bg: #FFFFFF;
  --off-white: #FFFFFF;
  --subtle-gray: #F9FAFB;
  --warm-surface: #FAF8F5;
  --footer-bg: #FAF8F5;
  
  /* Text & Borders */
  --neutral-dark: #111827;
  --neutral-body: #4B5563;
  --neutral-light: #6B7280;
  --border-color: #E5E0D8;
  --border-subtle: #ECE8E1;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Dimensions & Spacing */
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-hero: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Base Reset & Defaults */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--neutral-body);
  background-color: var(--page-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
}

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Typography Scale */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  color: var(--primary-navy);
  font-weight: 500;
  line-height: 1.15;
}

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

h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(20px, 2.2vw, 28px);
}

h4 {
  font-size: 18px;
}

p {
  color: var(--neutral-body);
  font-size: 15px;
  line-height: 1.65;
}

.text-gold {
  color: var(--primary-gold);
}

.text-navy {
  color: var(--primary-navy);
}

.text-white {
  color: var(--white);
}

.text-muted {
  color: var(--neutral-light);
}

/* Eyebrow Label (Clean uppercase typography without decorative dash) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-gold);
  margin-bottom: 14px;
}

.eyebrow-light {
  color: var(--soft-gold);
}

/* Containers */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-padding {
  padding-top: clamp(56px, 7vw, 90px);
  padding-bottom: clamp(56px, 7vw, 90px);
}

.bg-white {
  background-color: var(--white);
}

.bg-warm-surface {
  background-color: var(--warm-surface);
}

/* Floating Glass Header Navigation */
.header-wrapper {
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.nav-pill {
  width: 100%;
  max-width: var(--container-max);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-brand img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-navy);
  position: relative;
  padding: 4px 0;
}

.nav-link:hover {
  color: var(--primary-gold);
}

.nav-link.active {
  color: var(--primary-navy);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-navy);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--primary-navy);
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-drawer.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 340px;
  height: 100%;
  background: var(--white);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-drawer.open .mobile-drawer-content {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
}

.mobile-nav-links .nav-link {
  font-size: 17px;
  display: block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

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

.btn-gold:hover {
  background-color: #a4783d;
  border-color: #a4783d;
}

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

.btn-navy:hover {
  background-color: #041a37;
  border-color: #041a37;
}

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

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

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

.btn-outline-navy:hover {
  border-color: var(--primary-navy);
  background-color: var(--subtle-gray);
}

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

.btn-white:hover {
  background-color: #f3f4f6;
}

.btn-pill {
  border-radius: var(--radius-full);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 13px 26px;
  font-size: 15px;
}

.btn-full {
  width: 100%;
}

/* Hero Sections (Full-viewport / Full-width, NO rounded corner radius on background) */
.hero-wrapper {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 70px;
  background-color: var(--deep-navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
  border-radius: 0;
  margin: 0;
  width: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 55%, rgba(0, 0, 0, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 780px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-end;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Feature Highlights Bar */
.feature-bar {
  background: var(--white);
  padding: 36px 0 24px 0;
  border-bottom: 1px solid var(--border-subtle);
}

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

.feature-bar-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: #FAF8F5;
  border: 1px solid #EFEAE2;
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-bar-item h4 {
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.feature-bar-item p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--neutral-body);
}

/* Product Showcase (Home) */
.product-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 48px;
  align-items: center;
}

.product-cards-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.showcase-product-card {
  position: relative;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.showcase-product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.65) 100%);
  transition: opacity 0.3s ease;
}

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

.showcase-product-card:hover::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.showcase-badge {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  color: var(--primary-navy);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.showcase-arrow-btn {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--primary-navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.showcase-product-card:hover .showcase-arrow-btn {
  background: var(--primary-gold);
  transform: rotate(45deg);
}

/* 5-Step Process (Home & How It Works) */
.process-split {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 56px;
  align-items: flex-start;
}

.process-steps-list {
  display: flex;
  flex-direction: column;
}

.process-step-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-subtle);
  align-items: baseline;
}

.process-step-item:last-child {
  border-bottom: none;
}

.process-step-num {
  font-family: var(--font-serif);
  font-size: 38px;
  color: var(--soft-gold);
  line-height: 1;
  font-weight: 600;
}

.process-step-text h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.process-step-text p {
  font-size: 14.5px;
  color: var(--neutral-body);
  line-height: 1.6;
}

/* Editorial 2-Column Split */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.editorial-img-box {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.editorial-img-box img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* Outline-Only vs Filled Frame Rules (Strict Figma Fidelity) */
.frame-outline {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.frame-black {
  background: var(--dark-black);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
}

.frame-black h2, .frame-black h3, .frame-black h4 {
  color: var(--white);
}

.frame-black p {
  color: rgba(255, 255, 255, 0.85);
}

/* Quality Assurance Teaser (Home) */
.qa-teaser-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr;
  gap: 24px;
}

.qa-subcards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.qa-subcard {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
}

.qa-subcard h4 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.qa-subcard p {
  font-size: 13.5px;
}

/* Global Reach Map Section (No dark border outline!) */
.global-reach-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px auto;
}

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  /* NO dark outline/border! Clean image matching Figma */
}

.map-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Pre-Footer Dark CTA Banner */
.cta-banner {
  background-color: var(--dark-banner);
  color: var(--white);
  text-align: center;
  padding: 72px 24px;
}

.cta-banner-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  margin-bottom: 28px;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Products Catalog Page */
.products-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.product-card-large {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card-image {
  height: 260px;
  width: 100%;
  object-fit: cover;
}

.product-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-meta-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.tag-badge {
  color: var(--primary-gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.origin-text {
  font-size: 13px;
  color: var(--neutral-light);
}

.product-card-body h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.product-card-body p {
  font-size: 14.5px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.product-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Product Detail Page */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--neutral-light);
  margin-bottom: 28px;
}

.breadcrumbs a {
  color: var(--primary-navy);
  font-weight: 500;
}

.product-detail-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: flex-start;
  margin-bottom: 56px;
}

.product-hero-image-box {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.product-hero-image-box img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.product-detail-info {
  display: flex;
  flex-direction: column;
}

.product-detail-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--neutral-body);
  margin-bottom: 14px;
}

/* Outline-only specifications box (No unnecessary background fill!) */
.specifications-box {
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 24px 0;
}

.specifications-box-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-gold);
  margin-bottom: 14px;
}

.specifications-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.specifications-list li {
  font-size: 14px;
  color: var(--neutral-dark);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.specifications-list li::before {
  content: '•';
  color: var(--primary-gold);
  font-size: 16px;
  line-height: 1;
}

.product-overview-section {
  background: var(--white);
  padding: 56px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.overview-split {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
}

.sample-availability-box {
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-top: 24px;
}

.sample-availability-box h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-gold);
  margin-bottom: 8px;
}

/* Related Products Grid */
.related-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.related-product-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.related-product-card:hover {
  transform: translateY(-3px);
}

.related-product-card img {
  height: 170px;
  width: 100%;
  object-fit: cover;
}

.related-product-card-body {
  padding: 18px;
}

.related-product-card-body h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.related-product-card-body span {
  font-size: 13px;
  color: var(--primary-gold);
  font-weight: 600;
}

/* Quality Assurance Page (Six Pillars) */
.qa-quote-banner {
  background: var(--white);
  border-left: 4px solid var(--primary-gold);
  padding: 32px 0 32px 28px;
  margin: 40px auto;
  max-width: var(--container-max);
}

.qa-quote-banner blockquote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--primary-navy);
  line-height: 1.4;
}

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

.pillar-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}

.pillar-num {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--soft-gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.pillar-card h4 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.pillar-card p {
  font-size: 14px;
  line-height: 1.55;
}

/* Form Styles & Layout (White Page Background) */
.form-page-split {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.contact-page-split {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 40px;
  align-items: flex-start;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 44px);
}

.form-card h2 {
  font-size: 28px;
  margin-bottom: 6px;
}

.form-note {
  font-size: 13.5px;
  color: var(--neutral-light);
  margin-bottom: 24px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

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

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.form-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 6px;
}

.form-label .required {
  color: #DC2626;
}

.form-control {
  width: 100%;
  height: 46px;
  padding: 11px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--neutral-dark);
  background-color: var(--white);
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 11px 38px 11px 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
  cursor: pointer;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(183, 137, 73, 0.12);
}

.form-control.error {
  border-color: #DC2626;
  background-color: #FEF2F2;
}

.error-text {
  color: #DC2626;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.form-group.has-error .error-text {
  display: block;
}

textarea.form-control {
  height: auto;
  min-height: 110px;
  resize: vertical;
}

.conditional-field {
  display: none;
  background: var(--warm-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 16px;
}

.conditional-field.active {
  display: block;
}

/* Sidebar Cards */
.sidebar-light-card {
  background: var(--warm-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
}

.contact-sidebar-black {
  background: var(--dark-black);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
}

.contact-sidebar-black h3 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 28px;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon-box {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: var(--soft-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-gold);
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-value {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-value a:hover {
  color: var(--soft-gold);
}

/* Form Confirmation Card */
.form-success-card {
  display: none;
  text-align: center;
  padding: 44px 20px;
}

.form-success-card.active {
  display: block;
}

.success-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: rgba(183, 137, 73, 0.15);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.success-icon-circle svg {
  width: 28px;
  height: 28px;
}

/* Site Footer */
.site-footer {
  background-color: var(--footer-bg);
  border-top: 1px solid var(--border-color);
  padding-top: 72px;
  padding-bottom: 32px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 38px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-gold);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--neutral-body);
}

.footer-links a:hover {
  color: var(--primary-navy);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--neutral-body);
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  color: var(--primary-gold);
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border-color);
  font-size: 13px;
  color: var(--neutral-light);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-split-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .qa-teaser-grid {
    grid-template-columns: 1fr;
  }

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

  .products-catalog-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-split {
    grid-template-columns: 1fr;
  }

  .overview-split {
    grid-template-columns: 1fr;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-page-split,
  .contact-page-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

@media (max-width: 768px) {
  .nav-menu, .nav-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .header-wrapper {
    top: 16px;
    padding: 0 16px;
  }

  .hero-wrapper {
    min-height: 440px;
    padding-top: 115px;
    padding-bottom: 50px;
    border-radius: 0;
  }

  .hero-content {
    padding: 0;
  }

  .hero-split-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-padding {
    padding: 56px 0;
  }

  .feature-bar-grid {
    grid-template-columns: 1fr;
  }

  .product-showcase-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-cards-2x2 {
    grid-template-columns: 1fr;
  }

  .qa-subcards-grid {
    grid-template-columns: 1fr;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .contact-sidebar-black {
    padding: 32px 22px;
    border-radius: var(--radius-lg);
  }

  .form-card {
    padding: 32px 22px;
    border-radius: var(--radius-lg);
  }

  .form-grid-2,
  .form-grid-3 {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }

  .process-step-item {
    grid-template-columns: 52px 1fr;
    gap: 16px;
    padding: 20px 0;
  }

  .process-step-num {
    font-size: 32px;
  }

  .related-products-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }

  .hero-cta-group .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: inline-flex;
  }

  .cta-banner {
    padding: 56px 20px;
  }

  .cta-banner-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    gap: 12px;
  }

  .cta-banner-buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: inline-flex;
  }

  .doc-buttons {
    flex-direction: column;
    width: 100%;
  }

  .doc-buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .product-actions-group {
    flex-direction: column !important;
    width: 100%;
    gap: 12px !important;
  }

  .product-actions-group .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Product Catalog Cards on Mobile */
  .product-card-large {
    border-radius: var(--radius-lg);
  }

  .product-card-image {
    height: 200px;
  }

  .product-card-body {
    padding: 22px 18px;
  }

  .product-card-body h3 {
    font-size: 21px;
    margin-bottom: 8px;
  }

  .product-card-body p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .product-card-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }

  .product-card-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: inline-flex;
    padding: 12px 18px;
  }
}
