/* CSS Reset & Variable Definitions */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Premium Light Theme Colors */
  --bg-primary: #fcfdfd;
  --bg-secondary: #f5f8fa;
  --bg-card: #ffffff;
  --text-main: #334155; /* Slate 700 - softer text */
  --text-muted: #64748b; /* Slate 500 */
  --text-dark: #0f172a; /* Slate 900 */
  --color-primary: #b48a47; /* Oil Gold */
  --color-primary-dark: #916c33;
  --color-primary-light: #dfb97d;
  --color-secondary: #133c48; /* Deep Ocean Teal Blue */
  --color-secondary-light: #205c6d;
  --color-accent: #0f766e;
  
  --border-color: rgba(15, 23, 42, 0.06);
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 18px;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.01);
  --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.01);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.02);
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.15s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 15px; /* slightly smaller base size for sleekness */
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  line-height: 1.5;
  font-weight: 300; /* sleeker, less bold body text */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 500; /* adjusted from 700 to 500/600 for sleekness */
  line-height: 1.2;
}

h1 { font-size: 3rem; font-weight: 600; }
h2 { font-size: 2rem; font-weight: 500; }
h3 { font-size: 1.35rem; font-weight: 500; }

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* Layout Utilities */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 70px 0; /* reduced spacing */
  position: relative;
}

.section-alt {
  background-color: var(--bg-secondary);
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500; /* less bold */
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  margin-bottom: 8px; /* reduced space */
}

.section-header {
  max-width: 600px;
  margin-bottom: 40px; /* reduced space */
}

.section-header h2 {
  margin-bottom: 10px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 300;
}

/* Grid Utilities */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px; /* reduced */
  align-items: center;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px; /* adjusted padding */
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--color-secondary);
  color: #ffffff;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.btn-primary:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary:hover {
  box-shadow: 0 8px 16px rgba(19, 60, 72, 0.15);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
}

.btn-secondary:hover {
  background-color: var(--color-secondary);
  color: #ffffff;
}

/* Navigation Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: rgb(252, 253, 253);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  height: 60px;
  background-color: rgb(255, 255, 255);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-secondary);
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--color-primary);
  font-weight: 300;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-family: var(--font-heading);
  font-weight: 400; /* sleeker, less bold navigation */
  font-size: 0.9rem;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.site-nav a:hover {
  color: var(--color-primary);
}

.nav-cta {
  background-color: var(--color-primary);
  color: #ffffff !important;
  padding: 6px 16px !important;
  border-radius: 4px;
  font-size: 0.85rem !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background-color: var(--color-primary-dark);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 1.5px;
  background-color: var(--color-secondary);
  margin: 4px 0;
  transition: var(--transition-smooth);
}

/* CENTRALIZED BACKGROUND SLIDER HERO SECTION */
.hero {
  height: 75vh;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 70px;
  overflow: hidden;
  text-align: center; /* Centralized copy layout */
}

/* BG Containers */
.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-bg-image.active {
  opacity: 1;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(252, 253, 253, 0.25); /* reduced opacity so background images show very clearly */
  z-index: 2;
}

.hero-copy-centralized {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centralized copy layout */
  padding: 40px 45px;
  background: rgba(252, 253, 253, 0.75); /* glassmorphism card for perfect contrast */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.03);
}

.hero-copy-centralized h1 {
  font-size: 3.2rem;
  margin-bottom: 16px;
  letter-spacing: -1px;
  font-weight: 600;
  color: var(--color-secondary);
}

.hero-copy-centralized h1 span {
  color: var(--color-primary);
  font-weight: 300;
}

.hero-copy-centralized p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 600px;
  font-weight: 300;
}

.hero-actions-centralized {
  display: flex;
  gap: 12px;
  justify-content: center; /* Centralized buttons */
}

/* Feature Showcase */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background-color: var(--bg-card);
  padding: 30px; /* reduced padding */
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(180, 138, 71, 0.15);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: rgba(180, 138, 71, 0.06);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-weight: 500;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 300;
}

/* Company Stats Banner */
.stats-banner {
  background-color: var(--color-secondary);
  color: #ffffff;
  padding: 40px 0; /* reduced padding */
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 2.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary-light);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item span {
  font-size: 0.85rem;
  opacity: 0.75;
  font-weight: 300;
}

/* Products Showcase (Home) */
.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-item-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

.product-image-container {
  height: 180px; /* reduced height */
  position: relative;
  overflow: hidden;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-item-card:hover .product-image-container img {
  transform: scale(1.06);
}

.product-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: rgba(19, 60, 72, 0.95);
  color: #ffffff;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  font-weight: 500;
}

.product-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 16px;
  font-weight: 300;
  flex-grow: 1;
}

.product-specs {
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.spec-block span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.spec-block strong {
  font-size: 0.8rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* Procedure CTA Section */
.procedure-cta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px; /* reduced space */
  align-items: center;
}

.summary-steps {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.summary-step {
  display: flex;
  gap: 16px;
}

.summary-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(180, 138, 71, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.summary-text h4 {
  margin-bottom: 2px;
  font-size: 1rem;
  font-weight: 500;
}

.summary-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

.procedure-flow-preview {
  background-color: var(--bg-card);
  padding: 30px; /* reduced */
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.flow-node {
  padding: 12px;
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-secondary);
  border-left: 3px solid var(--color-secondary);
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.flow-node:last-child {
  margin-bottom: 0;
  border-left-color: var(--color-primary);
}

.flow-node strong {
  display: block;
  color: var(--text-dark);
  font-weight: 500;
}

.flow-node span {
  font-weight: 300;
}

.flow-line {
  height: 15px;
  width: 2px;
  background-color: var(--border-color);
  margin-left: 18px;
  margin-top: -8px;
  margin-bottom: 4px;
}

/* About Page Specific Styles */
.about-hero {
  padding: 110px 0 50px;
  background: radial-gradient(circle at 10% 20%, rgba(19, 60, 72, 0.03), transparent 40%), var(--bg-secondary);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 300;
}

.about-ceo-card {
  background-color: var(--bg-card);
  padding: 30px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.ceo-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--color-secondary); /* premium solid background */
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.75rem;
}

.ceo-name {
  font-size: 1.2rem;
  margin-bottom: 2px;
  font-weight: 500;
}

.ceo-title {
  font-size: 0.85rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-bottom: 16px;
}

.ceo-details {
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  font-size: 0.85rem;
}

.ceo-details p {
  font-weight: 300;
}

.ceo-details p span {
  font-weight: 400;
  color: var(--text-dark);
}

/* Licensing & Certification section */
.license-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.license-icon {
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.license-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-weight: 500;
}

.license-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* Products Page Search and Filtering */
.products-filter-section {
  background-color: var(--bg-secondary);
  padding: 24px 0;
  border-bottom: 1px solid var(--border-color);
}

.filter-bar {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.search-input-wrapper {
  position: relative;
  max-width: 350px;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 10px 16px 10px 36px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--bg-card);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
}

.search-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.filter-tabs {
  display: flex;
  gap: 8px;
}

.filter-tab {
  background: none;
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.8rem;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-tab.active,
.filter-tab:hover {
  background-color: var(--color-secondary);
  color: #ffffff;
  border-color: var(--color-secondary);
}

.products-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-detail-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

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

.product-card-header {
  background-color: var(--color-secondary); /* premium solid background */
  color: #ffffff;
  padding: 20px;
  position: relative;
}

.product-card-header h3 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.product-card-header .product-cat {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-primary-light);
  letter-spacing: 1px;
}

.product-card-image {
  height: 150px;
  width: 100%;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

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

.product-pricing {
  padding: 16px 20px;
  background-color: var(--bg-secondary);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  border-bottom: 1px solid var(--border-color);
}

.price-item span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.price-item strong {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}

.product-body-specs {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-body-specs p {
  font-weight: 300;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 6px;
  font-size: 0.85rem;
}

.spec-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spec-row span {
  color: var(--text-muted);
}

.spec-row strong {
  color: var(--text-dark);
  font-weight: 500;
}

.product-action-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.product-action-footer .btn-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-primary-dark);
}

/* Procedures Page - Beautiful workflows */
.procedures-tabs-container {
  max-width: 800px;
  margin: 0 auto;
}

.proc-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 36px;
}

.proc-tab {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 14px 6px;
  text-align: center;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.proc-tab h4 {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}

.proc-tab span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.proc-tab.active {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.proc-tab.active h4 {
  color: var(--color-primary);
}

.proc-intro-card {
  background-color: var(--color-secondary); /* premium solid background */
  color: #ffffff;
  padding: 30px;
  border-radius: var(--border-radius-md);
  margin-bottom: 30px;
}

.proc-intro-card h3 {
  color: #ffffff;
  font-weight: 500;
}

.proc-intro-card p {
  opacity: 0.9;
  font-size: 0.95rem;
  font-weight: 300;
}

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10px;
  width: 1.5px;
  height: 100%;
  background-color: var(--border-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.timeline-dot {
  position: absolute;
  left: -30px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  z-index: 2;
}

.timeline-card {
  background-color: var(--bg-card);
  padding: 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.timeline-card h4 {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.timeline-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 300;
}

.timeline-docs-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.doc-badge {
  font-size: 0.7rem;
  background-color: var(--bg-secondary);
  padding: 3px 8px;
  border-radius: 3px;
  font-weight: 400;
}

/* Contact Page Specific */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.info-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(19, 60, 72, 0.04);
  color: var(--color-secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.info-text h4 {
  font-size: 1rem;
  font-weight: 500;
}

.info-text p {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 300;
}

.guidelines-box {
  background-color: rgba(180, 138, 71, 0.06);
  border-left: 3px solid var(--color-primary);
  padding: 18px;
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.guidelines-box h4 {
  color: var(--color-primary-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.guidelines-box p {
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 300;
}

.contact-form-panel {
  background-color: var(--bg-card);
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

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

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-secondary);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: #ffffff;
}

textarea.form-control {
  min-height: 100px;
}

/* Footer styling */
.site-footer {
  background-color: var(--color-secondary);
  color: #ffffff;
  padding: 50px 0 30px; /* reduced padding */
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 40px;
  margin-bottom: 24px;
}

.footer-col h3, 
.footer-col h4 {
  color: #ffffff;
  font-weight: 500;
}

.footer-col p {
  opacity: 0.75;
  font-size: 0.85rem;
  margin-top: 12px;
  font-weight: 300;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 14px;
}

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

.footer-links a {
  opacity: 0.75;
  font-size: 0.85rem;
  font-weight: 300;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-primary-light);
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 300;
  opacity: 0.8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.6;
  font-weight: 300;
}

/* Mobile Back To Top Button */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .product-showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .products-listing-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro-grid { grid-template-columns: 1fr; }
  .procedure-cta { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.2rem; }
  
  .site-header { height: 60px; }
  .nav-toggle { display: block; }
  
  .site-nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: var(--bg-primary);
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
    align-items: flex-start;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border-color);
  }
  
  .site-nav.open {
    transform: translateX(0);
  }
  
  .hero {
    height: auto;
    padding: 100px 0 60px;
  }
  
  .hero-copy-centralized h1 {
    font-size: 2.2rem;
  }
  
  .hero-copy-centralized p {
    font-size: 0.95rem;
  }
  
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .product-showcase-grid { grid-template-columns: 1fr; }
  .products-listing-grid { grid-template-columns: 1fr; }
  
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .proc-nav {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .license-cards {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Scroll Reveal Animations */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

