/* ========================================
   NOVAMINEX STYLESHEET
   Table of Contents:
   1. CSS Variables
   2. Reset & Base Styles
   3. Typography
   4. Navigation
   5. Hero Section
   6. Sections & Layout
   7. Cards & Components
   8. Buttons
   9. Forms
   10. Footer
   11. Animations
   12. Product Page Styles
   13. Team & About Pages
   14. Utilities
   15. Media Queries
======================================== */

/* ========================================
   1. CSS VARIABLES
======================================== */
:root {
  --primary-blue: #0B266B;
  --accent-gold: #FFB800;
  --accent-green: #4CAF50;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-light: #e9ecef;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   2. RESET & BASE STYLES
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
  padding-top: 75px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ========================================
   3. TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ========================================
   4. NAVIGATION
======================================== */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.4s ease-in-out;
  padding: 0.5rem 0;
  background-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  vertical-align: middle;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

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

.nav-link {
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--bg-white);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-white);
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: var(--transition);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 1rem;
  border: 1px solid rgba(0,0,0,0.05);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: normal;
}

.dropdown-menu a:hover {
  background: linear-gradient(90deg, rgba(76, 175, 80, 0.1) 0%, rgba(255, 184, 0, 0.1) 100%);
  color: var(--accent-green);
  padding-left: 2rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--bg-white);
  transition: all 0.3s ease;
  display: block;
}

/* ========================================
   5. HERO SECTION
======================================== */
.hero {
  min-height: calc(100vh - 75px);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #e1e8f0 100%);
  padding: 2rem 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  gap: 3rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-content {
  text-align: left;
  animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.hero-content .subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Video Showcase */
.hero-video-showcase {
  position: relative;
  width: 100%;
  height: 450px;
  background: var(--primary-blue);
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  overflow: hidden;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.showcase-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1.0s ease-in-out;
  z-index: 1;
}

.showcase-video.active {
  opacity: 1;
  z-index: 2;
}

.video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 50%, transparent 100%);
  color: white;
  padding: 30px 30px 25px;
  transform: translateY(100%);
  transition: transform 0.6s ease-out;
  z-index: 20;
  pointer-events: none;
}

.video-caption.active {
  transform: translateY(0);
}

.video-caption h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.video-caption p {
  color: rgba(255,255,255,0.95);
  font-size: 1rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.video-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 25;
}

.indicator {
  width: 40px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: white;
  width: 60px;
}

/* ========================================
   6. SECTIONS & LAYOUT
======================================== */
.section {
  padding: 3rem 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--bg-light) 0%, rgba(248, 249, 250, 0.5) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto;
}

/* About Us Intro Section */
#about-intro {
  padding: 3rem 0;
}

.about-us-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-us-intro p {
  text-align: left;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  color: var(--text-light);
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ========================================
   7. CARDS & COMPONENTS
======================================== */
.card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-green) 0%, var(--accent-gold) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-header {
  margin-bottom: 1.5rem;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-gold) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Product Cards - Updated without gradients and jitter */
.products-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  padding: 10px 0;
}

.showcase-product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
  border-bottom: 4px solid transparent;
}

.showcase-product-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-bottom: 4px solid var(--primary-blue);
}

.product-media {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}

.product-media video,
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.product-type {
  background: var(--primary-blue);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  color: var(--primary-blue);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.product-info p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  flex-grow: 1;
}

.product-link {
  color: var(--accent-gold);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.product-link:hover {
  color: var(--primary-blue);
  transform: translateX(5px);
}

/* Case Studies Section */
.case-studies-section {
  padding: 3rem 0;
  background: #ffffff;
}

.case-study-card {
  background: var(--bg-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.case-study-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 3rem;
}

.case-study-text h3 {
  color: var(--primary-blue);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.case-study-label {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--text-dark);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.case-study-quote {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-light);
  border-left: 4px solid var(--accent-gold);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

.case-study-details {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.case-study-details li {
  padding: 0.5rem 0;
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.case-study-details li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: bold;
  margin-right: 0.75rem;
}

.case-study-image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

/* Slideshow */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 500px;
  background-color: #f5f5f5;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.slide.active-slide {
  opacity: 1;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 500px;
}

.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
  color: white;
  padding: 30px 20px 20px;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  z-index: 3;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.3s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.3);
  z-index: 4;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.7);
}

/* ========================================
   8. BUTTONS
======================================== */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #ffc933 100%);
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
  filter: brightness(0.95);
}

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

.btn-secondary:hover {
  background: var(--primary-blue);
  color: white;
}

/* ========================================
   9. FORMS
======================================== */
form {
  max-width: 600px;
  margin: 0 auto;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(11, 38, 107, 0.1);
}

/* ========================================
   10. FOOTER
======================================== */
.footer {
  background: linear-gradient(180deg, var(--text-dark) 0%, #0a0a0a 100%);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  padding: 0.25rem 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-green);
  padding-left: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   11. ANIMATIONS
======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: backwards;
}

/* ========================================
   12. PRODUCT PAGE STYLES
======================================== */
.product-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1a3a8a 100%);
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.product-hero h1 {
  color: white !important;
}

.product-hero .subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95) !important;
  opacity: 1;
}

.product-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 4rem;
  align-items: center;
  margin: 3rem 0;
}

.product-content .section-title {
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.product-content.reverse {
  direction: rtl;
}

.product-content.reverse > * {
  direction: ltr;
}

.product-content .image-wrapper,
.product-content .text-wrapper {
  min-width: 0;
}

.product-content .image-wrapper img {
  max-width: 100%;
  height: auto;
}

/* Product Specifications */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.spec-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border-light);
}

.spec-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.spec-title {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.spec-detail {
  color: var(--text-light);
  font-size: 1rem;
}

/* Feature Cards */
.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.feature-icon {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  width: 60px;
  height: 60px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 1rem;
}

.feature-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--accent-green);
}

.performance-card {
  background: var(--bg-light);
  border-left: 5px solid var(--primary-blue);
  padding: 2.5rem;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.performance-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
}

.bhem-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: #f0f4f8;
  border-radius: 16px;
  padding: 2rem 1rem;
  height: 100%;
  min-height: 400px;
}

.bhem-image-wrapper img {
  max-height: 500px;
  width: auto;
}

.video-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.video-card h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.video-card video {
  width: 100%;
  border-radius: 8px;
}

/* ========================================
   13. TEAM & ABOUT PAGES
======================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.team-profile-card {
  background-color: var(--bg-light);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

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

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 auto 1.5rem;
  box-shadow: 0 5px 15px rgba(11, 38, 107, 0.3);
}

.profile-name {
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
}

.profile-title {
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.profile-bio {
  text-align: left;
  font-size: 0.95rem;
}

.profile-bio p {
  margin-bottom: 1em;
}

/* Services Page */
.consultant-profile {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 2rem;
}

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

.consultant-header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.consultant-avatar {
  min-width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
}

.consultant-info h3 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.consultant-title {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.consultant-bio {
  line-height: 1.8;
  color: var(--text-light);
}

.service-category {
  background: var(--bg-light);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.capability-item {
  text-align: center;
  padding: 2rem 1rem;
}

.capability-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: var(--primary-blue);
}

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }

/* ========================================
   15. MEDIA QUERIES
======================================== */

/* Tablet (max-width: 1200px) */
@media (max-width: 1200px) {
  .products-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .case-study-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .case-study-image {
    order: -1;
  }
}

/* Mobile Navigation (max-width: 768px) */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed !important;
    left: -100% !important;
    top: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background-color: var(--primary-blue) !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 80px 20px 40px !important;
    transition: left 0.3s ease !important;
    z-index: 999 !important;
    overflow-y: auto !important;
  }
  
  .nav-menu.active {
    left: 0 !important;
  }
  
  .nav-menu li {
    width: 100% !important;
    text-align: center !important;
    margin: 10px 0 !important;
  }
  
  .nav-link {
    display: block !important;
    width: 100% !important;
    padding: 15px 20px !important;
    color: white !important;
    font-size: 18px !important;
    border: none !important;
  }
  
  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important;
    margin: 10px 0 !important;
    padding: 0 !important;
    display: none !important;
    width: 100% !important;
    max-width: 300px !important;
  }
  
  .nav-dropdown.active .dropdown-menu {
    display: block !important;
  }
  
  .dropdown-menu a {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 10px 20px !important;
    font-size: 16px !important;
  }
  
  .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
  }
  
  .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 40px !important;
    height: 40px !important;
    cursor: pointer !important;
    z-index: 1001 !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
  }
  
  .mobile-menu-toggle span {
    display: block !important;
    width: 25px !important;
    height: 3px !important;
    background-color: white !important;
    margin: 3px 0 !important;
    transition: all 0.3s ease !important;
    border-radius: 2px !important;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px) !important;
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0 !important;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px) !important;
  }
  
  .nav-link.btn {
    background: var(--accent-gold) !important;
    color: var(--text-dark) !important;
    margin-top: 20px !important;
    border-radius: 50px !important;
    padding: 12px 30px !important;
  }
  
  .nav-container {
    padding: 0 15px !important;
  }
  
  .logo img {
    height: 50px !important;
  }
  
  /* Mobile content adjustments */
  .hero {
    padding: 2rem 0;
    min-height: auto;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 20px;
  }
  
  .hero-content {
    order: 2;
    text-align: center;
  }
  
  .hero-video-showcase {
    order: 1;
    height: 350px;
    padding: 1rem;
  }
  
  .hero-content .subtitle {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .products-showcase {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .case-study-content {
    padding: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Small mobile (max-width: 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .hero-content .subtitle {
    font-size: 1rem;
  }
  
  .hero-video-showcase {
    height: 300px;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .product-hero h1 {
    font-size: 1.75rem;
  }
  
  .product-hero .subtitle {
    font-size: 1.1rem;
  }
  
  .product-media {
    height: 180px;
  }
}

/* Hide mobile toggle on desktop */
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  
  .dropdown-menu {
    display: block !important;
  }
}

/* Touch device improvements */
@media (hover: none) {
  .card:hover {
    transform: none;
  }
  
  .btn:hover {
    transform: none;
  }
  
  .nav-dropdown .dropdown-menu {
    display: none;
  }
  
  .nav-dropdown.active .dropdown-menu {
    display: block;
  }
}

/* Print styles */
@media print {
  .navigation,
  .mobile-menu-toggle,
  .hero-cta,
  .footer {
    display: none;
  }
  
  body {
    padding-top: 0;
  }
  
  .section {
    padding: 2rem 0;
  }
}
