:root {
  --blue: #1e5baa;
  --green: #2cab5a;
  --text: #1a1a1a;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --header-bg: #ffffff;
  --footer-bg: #0f172a;
  --gradient-primary: linear-gradient(135deg, #1e5baa 0%, #2cab5a 100%);
  --gradient-secondary: linear-gradient(135deg, rgba(30,91,170,0.1) 0%, rgba(44,171,90,0.1) 100%);
  --gradient-hero: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.1);
  --border-radius: 16px;
  --border-radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --section-padding: clamp(56px, 8vw, 100px);
  --scroll-offset: 96px;
}

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

/* Performance optimizations */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Critical rendering path optimizations */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Lazy loading styles */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* Touch optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn, .nav-menu a, .card {
    min-height: 44px;
    touch-action: manipulation;
  }
}

html { 
  scroll-behavior: smooth; 
  font-size: 16px;
  -webkit-text-size-adjust: 100%; /* Prevent iOS auto-zoom text resizing */
}

body {
  font-family: 'Inter', 'Roboto', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* Prevent accidental horizontal scroll on small screens */
}

/* Critical above-the-fold styles */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.hero {
  background: var(--gradient-hero);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Critical font loading */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Inter Regular'), local('Inter-Regular');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Inter SemiBold'), local('Inter-SemiBold');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: local('Inter ExtraBold'), local('Inter-ExtraBold');
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Header */
.site-header { 
  position: sticky; 
  top: 0; 
  z-index: 1000; 
  background: rgba(255, 255, 255, 0.95); 
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100% !important;
  min-height: 80px !important;
}

.header-inner { 
  display: flex !important; 
  align-items: center; 
  justify-content: space-between; 
  gap: 24px; 
  padding: 16px 0; 
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  min-height: 60px;
}

.brand { 
  display: inline-flex !important; 
  align-items: center; 
  gap: 16px; 
  color: inherit;
  transition: transform 0.2s ease;
  min-height: 60px;
  flex-shrink: 0;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand:hover .logo {
  transform: scale(1.02);
}

.logo { 
  width: 120px; 
  height: 41px; 
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  transition: all 0.3s ease;
  max-width: 120px;
  display: block;
  flex-shrink: 0;
}

.logo:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.brand-text { 
  display: flex; 
  flex-direction: column; 
  line-height: 1.2; 
}

.brand-acronym { 
  font-weight: 800; 
  font-size: 32px;
  letter-spacing: -0.5px;
  color: var(--blue);
  margin-bottom: 2px;
}

.brand-name { 
  font-size: 11px; 
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav { 
  display: flex !important; 
  align-items: center; 
  gap: 24px; 
  flex-shrink: 0;
}

.nav-menu { 
  list-style: none; 
  display: flex; 
  gap: 8px; 
  margin: 0; 
  padding: 0; 
  flex-shrink: 0;
}

.nav-menu a { 
  padding: 12px 20px; 
  border-radius: 12px; 
  font-weight: 500; 
  color: var(--text);
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-secondary);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.nav-menu a:hover::before {
  opacity: 1;
}

.nav-menu a:hover, .nav-menu a.active { 
  color: var(--blue);
  text-decoration: none;
  transform: translateY(-1px);
}

.nav-menu a.active {
  background: rgba(30, 91, 170, 0.1);
  color: var(--blue);
  font-weight: 600;
}

.lang-switcher {
  position: relative;
  display: inline-block;
}

.lang-switcher::before {
  content: '🌐';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  z-index: 1;
  pointer-events: none;
}

.lang-switcher::after {
  content: '▼';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: var(--blue);
  z-index: 1;
  pointer-events: none;
}

.lang-switcher select { 
  padding: 8px 35px 8px 35px; 
  border: 1px solid rgba(0,0,0,0.1); 
  border-radius: 20px; 
  background: rgba(0,0,0,0.05);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.3s ease;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-width: 100px;
  text-align: center;
}

.lang-switcher select:hover {
  background: rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.15);
}

.lang-switcher select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,91,170,0.1);
}

.lang-switcher::before {
  content: '🌐';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  pointer-events: none;
  z-index: 1;
}

.lang-switcher::after {
  content: '▼';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: var(--blue);
  pointer-events: none;
  z-index: 1;
}

.hamburger { 
  display: none; 
  width: 44px; 
  height: 44px; 
  border: none; 
  border-radius: 8px; 
  background: transparent; 
  align-items: center; 
  justify-content: center; 
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 1001;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  padding: 0;
  margin: 0;
  outline: none;
}

.hamburger:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.hamburger:active {
  background-color: rgba(0, 0, 0, 0.05);
}

.hamburger span { 
  display: block; 
  width: 24px; 
  height: 3px; 
  background: #111827; 
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}

.hamburger.active span:nth-child(1) { 
  transform: rotate(45deg) translate(6px, 6px); 
}

.hamburger.active span:nth-child(2) { 
  opacity: 0; 
  transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) { 
  transform: rotate(-45deg) translate(6px, -6px); 
}

.hamburger:hover span {
  background: #1e5baa;
}

/* Hero */
.hero { 
  background: var(--gradient-hero);
  padding: 120px 0 80px; 
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  margin: 32px 0 40px;
  width: 100%;
}

.hero-stats .stat {
  text-align: center;
  padding: 16px;
  border-radius: 16px;
  background: rgba(30,91,170,0.05);
  border: 1px solid rgba(30,91,170,0.08);
}

.hero-stats .stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.hero-stats .stat-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
}

.hero-trust {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.hero-trust p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 14px;
}

.trust-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(30,91,170,0.1);
  color: var(--blue);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(30,91,170,0.2);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(30,91,170,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(44,171,90,0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero-inner { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  align-items: center; 
  gap: 80px; 
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.hero-content h1 { 
  margin: 0 0 24px; 
  font-size: 56px; 
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero-content .lead { 
  color: var(--muted); 
  margin: 0 0 40px; 
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-visual { 
  min-height: 500px; 
  background: var(--gradient-primary);
  border-radius: 24px; 
  box-shadow: var(--shadow-xl); 
  overflow: hidden;
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%),
    linear-gradient(-45deg, rgba(255,255,255,0.05) 0%, transparent 50%);
  z-index: 1;
}

.hero-visual img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block;
  position: relative;
  z-index: 2;
  border-radius: 24px;
}

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

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

/* Scroll animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth scrolling improvements */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--blue);
}

/* Sections */
.section { 
  padding: var(--section-padding) 0; 
  position: relative;
  scroll-margin-top: var(--scroll-offset);
}

.bg-light { 
  background: linear-gradient(135deg, rgba(30,91,170,0.02), rgba(44,171,90,0.02));
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text);
}

.section-header .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.feature-card {
  background: white;
  padding: 40px 32px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.feature-card .feature-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.feature-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 16px;
}

.investment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.investment-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.investment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.investment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.investment-card .card-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}

.investment-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.investment-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 16px;
}

.opportunity-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.opportunity-list li {
  padding: 8px 0;
  color: var(--muted);
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.opportunity-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
}

.investment-metrics {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.metric {
  background: rgba(30,91,170,0.1);
  color: var(--blue);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.cta-section {
  text-align: center;
  background: white;
  padding: 60px 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: 60px;
}

.cta-section h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}

.cta-section p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.two-col { display: grid; grid-template-columns: 1fr; gap: 32px; }
.cards { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 24px; 
  margin-top: 32px;
}
.card { 
  background: white; 
  border: 1px solid rgba(0,0,0,0.05); 
  border-radius: 24px; 
  padding: 32px; 
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-secondary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

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

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(30,91,170,0.2);
}

.card > * {
  position: relative;
  z-index: 2;
}
.investment-card {
  text-align: center;
  border-left: 4px solid var(--blue);
}
.investment-card .card-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}
.investment-card h3 {
  color: var(--blue);
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 600;
}
.investment-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.service-card h3 { margin-top: 0; }
.cta-row { 
  margin-top: 32px; 
  text-align: center;
}
.lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  text-align: left;
}

.service-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(30,91,170,0.1);
  color: var(--muted);
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.service-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
}

.service-list li:last-child {
  border-bottom: none;
}

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

.stat-item {
  text-align: center;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #e5e7eb;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

/* Contact Page Styles */
.contact-reason-card {
  text-align: center;
  border-left: 4px solid var(--green);
}

.contact-reason-card .card-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.contact-reason-card h3 {
  color: var(--green);
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 600;
}

.contact-info {
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.contact-item h3 {
  margin: 0 0 4px;
  color: var(--blue);
  font-size: 16px;
}

.contact-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.contact-item a {
  color: var(--blue);
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* About Page Styles */
.achievement-card {
  text-align: center;
  border-left: 4px solid var(--blue);
}

.achievement-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
  line-height: 1;
}

.achievement-card h3 {
  color: var(--blue);
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

.team-member {
  text-align: center;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #e5e7eb;
}

.team-avatar {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.team-member h3 {
  color: var(--blue);
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
}

.certification-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.certification-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(30,91,170,0.1);
  color: var(--muted);
  position: relative;
  padding-left: 20px;
}

.certification-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
}

.certification-list li:last-child {
  border-bottom: none;
}

/* Homepage Feature Cards */
.feature-card {
  text-align: center;
  border-left: 4px solid var(--green);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  color: var(--green);
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 600;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #e5e7eb;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 48px;
  color: var(--blue);
  opacity: 0.3;
  font-family: serif;
}

.testimonial-content {
  margin-bottom: 16px;
  padding-left: 20px;
}

.testimonial-content p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
}

.author-info strong {
  color: var(--blue);
  display: block;
  margin-bottom: 4px;
}

.author-info span {
  color: var(--muted);
  font-size: 14px;
}

.contact-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* Company Stats */
.parent-company-info {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(30,91,170,0.05), rgba(44,171,90,0.05));
  border-radius: 16px;
  border-left: 4px solid var(--blue);
}

.parent-company-info h3 {
  color: var(--blue);
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 600;
}

.parent-company-info p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

/* Professional Contact Section */
.professional-contact {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

.contact-option {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.contact-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.option-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.contact-option h3 {
  color: var(--blue);
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 600;
}

.contact-option p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 20px;
}

.contact-option .btn {
  margin-top: 8px;
}

/* Page hero small */
.page-hero.small { background: linear-gradient(120deg, rgba(11,110,253,0.08), rgba(22,163,74,0.08)); padding: 32px 0; border-bottom: 1px solid #e5e7eb; }

/* Forms */
.contact-form { background: white; border: 1px solid #e5e7eb; border-radius: 14px; padding: 16px; }
.form-row { display: grid; gap: 6px; margin-bottom: 12px; }
input, textarea { padding: 10px 12px; border: 1px solid #e5e7eb; border-radius: 10px; font: inherit; }
button, .btn { 
  display: inline-flex; 
  align-items: center;
  justify-content: center;
  border: 0; 
  cursor: pointer; 
  font-weight: 600; 
  border-radius: 16px; 
  padding: 16px 32px; 
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 56px;
}

.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 ease;
}

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

.btn-primary { 
  background: var(--gradient-primary); 
  color: white; 
  box-shadow: var(--shadow-md);
}

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

.btn-outline { 
  background: transparent; 
  color: var(--blue); 
  border: 2px solid var(--blue);
  box-shadow: var(--shadow-sm);
}

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

/* Map */
.map-embed { border-radius: 16px; overflow: hidden; border: 1px solid #e5e7eb; box-shadow: 0 6px 18px rgba(0,0,0,0.05); }
.map-embed iframe { width: 100%; height: 280px; border: 0; display: block; }

.muted { color: var(--muted); }

/* Footer */
.site-footer { 
  background: var(--footer-bg); 
  color: white; 
  margin-top: 80px; 
  padding: 60px 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo-section {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.footer-logo { 
  width: 150px; 
  height: 51px; 
  object-fit: contain;
  flex-shrink: 0;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  max-width: 150px;
  display: block;
}

.footer-logo:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.brand-info h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  color: white;
}

.brand-subtitle {
  font-size: 16px;
  color: #94a3b8;
  margin-bottom: 16px;
  font-weight: 500;
}

.brand-description {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
}

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

.footer-section h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-section a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #60a5fa;
}

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

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

.contact-icon {
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-label {
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
  font-size: 14px;
}

.contact-item p {
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.4;
}

.contact-item a {
  color: #60a5fa;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  background: rgba(0,0,0,0.2);
}

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

.copyright p {
  margin: 0;
  font-size: 14px;
  color: #94a3b8;
}

.footer-legal p {
  margin: 0;
  font-size: 13px;
  color: #64748b;
  text-align: right;
}

/* Professional Icons */
.professional-icon {
  width: 48px;
  height: 48px;
  color: #374151;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.professional-icon.small {
  width: 32px;
  height: 32px;
  margin: 0 auto 8px;
  background: #eff6ff;
  border-color: #dbeafe;
  color: #2563eb;
}

.professional-icon.large {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.professional-icon.blue {
  color: #2563eb;
  background: #eff6ff;
  border-color: #dbeafe;
}

.professional-icon.green {
  color: #059669;
  background: #ecfdf5;
  border-color: #d1fae5;
}

.professional-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-color: #2563eb;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.icon-item {
  text-align: center;
  padding: 24px;
  background: white;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.icon-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
  border-color: #2563eb;
}

.icon-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.icon-item p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

/* Section Icons */
.section-icon {
  width: 56px;
  height: 56px;
  color: #2563eb;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 16px;
  border: 1px solid #dbeafe;
}

.section-header .section-icon {
  margin-bottom: 16px;
}

/* Card Icons */
.card-icon {
  width: 40px;
  height: 40px;
  color: #2563eb;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 10px;
  border: 1px solid #dbeafe;
  transition: all 0.3s ease;
}

.card-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.card-icon svg {
  width: 20px;
  height: 20px;
}

/* Feature Icons */
.feature-icon {
  width: 32px;
  height: 32px;
  color: #059669;
  margin-right: 12px;
  flex-shrink: 0;
}

/* Heritage Icons */
.heritage-icon {
  width: 48px;
  height: 48px;
  color: #2563eb;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 12px;
  border: 1px solid #dbeafe;
  transition: all 0.3s ease;
}

.heritage-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.heritage-icon svg {
  width: 24px;
  height: 24px;
}

/* Sector Icons */
.sector-icon {
  width: 48px;
  height: 48px;
  color: #2563eb;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 12px;
  border: 1px solid #dbeafe;
  transition: all 0.3s ease;
}

.sector-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.sector-icon svg {
  width: 24px;
  height: 24px;
}

/* Category Icons */
.category-icon {
  width: 48px;
  height: 48px;
  color: #2563eb;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 12px;
  border: 1px solid #dbeafe;
  transition: all 0.3s ease;
}

.category-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.category-icon svg {
  width: 24px;
  height: 24px;
}

/* Option Icons */
.option-icon {
  width: 40px;
  height: 40px;
  color: #2563eb;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 10px;
  border: 1px solid #dbeafe;
  transition: all 0.3s ease;
}

.option-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.option-icon svg {
  width: 20px;
  height: 20px;
}

/* Value Icons */
.value-icon {
  width: 32px;
  height: 32px;
  color: #059669;
  margin-right: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ecfdf5;
  border-radius: 8px;
  border: 1px solid #d1fae5;
  transition: all 0.3s ease;
}

.value-icon:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.value-icon svg {
  width: 16px;
  height: 16px;
}

/* Cert Icons */
.cert-icon {
  width: 40px;
  height: 40px;
  color: #2563eb;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 10px;
  border: 1px solid #dbeafe;
  transition: all 0.3s ease;
}

.cert-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.cert-icon svg {
  width: 20px;
  height: 20px;
}

/* Contact Page - Keep Emojis */
.contact-page .contact-icon {
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-sections {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-main {
    gap: 30px;
  }
  
  .footer-sections {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-logo-section {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .footer-legal p {
    text-align: center;
  }
  
  .professional-icon {
    width: 40px;
    height: 40px;
  }
  
  .professional-icon.large {
    width: 56px;
    height: 56px;
  }
  
  /* Mobile logo adjustments */
  .logo {
    width: 100px;
    height: 34px;
    max-width: 100px;
  }
  
  .footer-logo {
    width: 120px;
    height: 41px;
    max-width: 120px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .logo {
    width: 80px;
    height: 27px;
    max-width: 80px;
  }
  
  .footer-logo {
    width: 100px;
    height: 34px;
    max-width: 100px;
  }
  
  .brand {
    gap: 12px;
  }
}

/* Responsive */
@media (min-width: 768px) {
  .hero-inner { 
    grid-template-columns: 1fr 1fr; 
    gap: 60px;
  }
  .two-col { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .hero-content h1 { font-size: 48px; }
  .hero-actions {
    flex-wrap: nowrap;
  }
  .container {
    max-width: 1200px;
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .hero-content h1 { font-size: 56px; }
}

@media (min-width: 1000px) {
  .cards.investment-cards { 
    grid-template-columns: repeat(4, 1fr); 
  }
  .investment-card {
    padding: 32px 20px;
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-options {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile nav - Updated to ensure hamburger menu works properly */
@media (max-width: 799px) {
  /* Show hamburger on mobile */
  .hamburger { 
    display: inline-flex !important; 
    z-index: 1001; 
    position: relative;
  }
  
  /* Hide regular nav menu by default on mobile */
  .nav { 
    display: flex !important;
    align-items: center;
  }
  
  /* Transform nav menu into mobile slide-out menu */
  .nav-menu { 
    position: fixed !important; 
    right: -100% !important; 
    top: 0; 
    width: 85% !important;
    max-width: 350px !important;
    height: 100vh !important; 
    background: white !important; 
    padding: 80px 20px 40px !important; 
    display: flex !important; 
    flex-direction: column !important; 
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999 !important;
    overflow-y: auto;
    list-style: none !important;
    visibility: hidden;
    opacity: 0;
    gap: 0 !important;
    margin: 0 !important;
  }

  /* Ensure language selector does not appear in header unless menu is open */
  .nav-menu:not(.active) .lang-switcher-item {
    display: none !important;
  }

  /* Make language selector fully tappable inside the mobile drawer */
  .nav-menu .lang-switcher {
    width: 100%;
    z-index: 1002;
  }
  .nav-menu .lang-switcher select {
    pointer-events: auto;
    background: #ffffff;
    z-index: 1002;
  }
  
  /* Show menu when active */
  .nav-menu.active { 
    right: 0 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Menu items styling - ensure they're visible */
  .nav-menu li { 
    margin: 8px 0 !important; 
    width: 100% !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    list-style: none !important;
  }
  
  /* Menu links styling - ensure they're visible and clickable */
  .nav-menu a { 
    padding: 14px 20px !important; 
    display: block !important; 
    border-radius: 8px;
    width: 100% !important;
    font-size: 16px !important;
    color: var(--text) !important;
    text-decoration: none !important;
    transition: background-color 0.2s ease;
    cursor: pointer !important;
    -webkit-tap-highlight-color: transparent;
    opacity: 1 !important;
    visibility: visible !important;
    font-weight: 500 !important;
    position: relative !important;
    overflow: visible !important;
  }
  
  /* Remove the ::before pseudo-element on mobile for cleaner look */
  .nav-menu a::before {
    display: none !important;
  }
  
  .nav-menu a:hover,
  .nav-menu a:active,
  .nav-menu a:focus {
    background-color: rgba(30, 91, 170, 0.1) !important;
    color: var(--blue) !important;
    transform: none !important;
  }
  
  .nav-menu a.active {
    background-color: rgba(30, 91, 170, 0.15) !important;
    color: var(--blue) !important;
    font-weight: 600 !important;
  }
  
  /* Language switcher in mobile menu */
  .lang-switcher-item { 
    margin-top: 24px; 
    padding-top: 24px; 
    border-top: 2px solid rgba(0,0,0,0.1); 
    width: 100%;
  }
  
  .nav-menu .lang-switcher { 
    width: 100% !important;
    max-width: 100% !important;
    position: relative;
  }
  
  .nav-menu .lang-switcher select { 
    width: 100% !important; 
    padding: 14px 44px 14px 44px !important; 
    font-size: 16px;
    min-height: 48px; /* Touch-friendly height */
    border-radius: 8px !important;
  }
  
}

/* Menu overlay */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay[aria-hidden="false"] {
  opacity: 1;
}

/* Ensure brand doesn't interfere on mobile */
@media (max-width: 799px) {
  .brand {
    z-index: 1002;
    position: relative;
  }
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
  /* Improve mobile header */
  .site-header {
    min-height: 70px !important;
    padding: 0;
  }
  
  .header-inner {
    padding: 12px 16px !important;
    min-height: 70px !important;
    gap: 16px !important;
  }
  
  /* Better mobile brand display */
  .brand {
    gap: 12px !important;
    max-width: calc(100% - 120px);
  }
  
  .brand-acronym {
    font-size: 20px !important;
  }
  
  .brand-name {
    font-size: 8px !important;
  }
  
  .hero { 
    padding: 100px 0 60px; 
    min-height: auto; 
  }
  
  /* Mobile performance optimizations */
  .hero-visual img {
    will-change: transform;
    transform: translateZ(0);
  }
  
  /* Touch-friendly button sizing */
  .btn {
    min-height: 48px;
    min-width: 48px;
    touch-action: manipulation;
  }
  
  /* Optimize animations for mobile */
  .card:hover {
    transform: none;
  }
  
  .btn:hover {
    transform: none;
  }
  
  /* Reduce motion for accessibility */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
  
  .hero-inner { 
    grid-template-columns: 1fr; 
    gap: 40px; 
  }
  
  .hero-content { 
    text-align: center; 
  }
  
  .hero h1 { 
    font-size: 36px; 
    line-height: 1.2; 
  }
  
  .hero .lead { 
    font-size: 18px; 
  }
  
  .hero-stats { 
    justify-content: center; 
    gap: 24px; 
  }
  
  .hero-stats .stat-number { 
    font-size: 28px; 
  }
  
  .hero-actions { 
    flex-direction: column; 
    align-items: center; 
    gap: 16px; 
  }
  
  .hero-actions .btn { 
    width: 100%; 
    max-width: 300px; 
  }
  
  .hero-visual img { 
    max-width: 100%; 
    height: auto; 
  }
  
  .hero-trust { 
    text-align: center; 
  }
  
  .trust-badges { 
    justify-content: center; 
  }
  
  .section { 
    padding: 48px 0; 
  }
  
  .section-header h2 { 
    font-size: 36px; 
  }
  
  .section-header { 
    margin-bottom: 40px; 
  }
  
  .features-grid { 
    grid-template-columns: 1fr; 
    gap: 24px; 
    margin-bottom: 40px; 
  }
  
  .feature-card { 
    padding: 32px 24px; 
  }
  
  .investment-grid { 
    grid-template-columns: 1fr; 
    gap: 24px; 
    margin-bottom: 40px; 
  }
  
  .investment-card { 
    padding: 24px; 
  }
  
  .investment-metrics { 
    flex-wrap: wrap; 
  }
  
  .cta-section { 
    padding: 40px 24px; 
    margin-top: 40px; 
  }
  
  .cta-section h3 { 
    font-size: 28px; 
  }
  
  .cta-actions { 
    flex-direction: column; 
    align-items: center; 
  }
  
  .cta-actions .btn { 
    width: 100%; 
    max-width: 300px; 
  }
  
  .container { 
    padding: 0 16px; 
  }
  
  .header { 
    padding: 16px 0; 
  }
  
  .footer .container { 
    grid-template-columns: 1fr; 
    gap: 32px; 
    text-align: center; 
  }
  
  .footer h3 { 
    font-size: 20px; 
  }
  
  .footer p, .footer a { 
    font-size: 14px; 
  }
  
  .footer-bottom { 
    flex-direction: column; 
    gap: 16px; 
    text-align: center; 
  }
}

@media (max-width: 640px) {
  .service-category,
  .sector-card,
  .step-content,
  .card,
  .investment-card,
  .contact-method,
  .contact-option,
  .testimonial-card,
  .emergency-card,
  .cta-content {
    padding: 24px;
  }

  .sector-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-stats .stat {
    padding: 14px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 36px 0;
  }
  .hero h1 { 
    font-size: 28px; 
  }
  
  .hero .lead { 
    font-size: 16px; 
  }
  
  .hero-stats { 
    gap: 16px; 
  }
  
  .hero-stats .stat-number { 
    font-size: 24px; 
  }
  
  .hero-stats .stat-label { 
    font-size: 12px; 
  }
  
  .section-header h2 { 
    font-size: 28px; 
  }
  
  .feature-card { 
    padding: 24px 20px; 
  }
  
  .feature-card h3 { 
    font-size: 20px; 
  }
  
  .investment-card { 
    padding: 20px; 
  }
  
  .investment-card h3 { 
    font-size: 20px; 
  }
  
  .cta-section h3 { 
    font-size: 24px; 
  }
  
  .badge { 
    font-size: 11px; 
    padding: 6px 12px; 
  }
  
  .metric { 
    font-size: 11px; 
    padding: 6px 12px; 
  }
}

/* Active link highlight */
.nav-menu a.active { color: var(--blue); font-weight: 600; }

/* New Unique Elements Styling */

/* Success Stats */
.success-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 60px;
  padding: 40px;
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

/* Feature Metrics */
.feature-metric {
  background: var(--gradient-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 16px;
  display: inline-block;
}

/* Market Highlights */
.market-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.highlight-card {
  background: white;
  padding: 32px 24px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.highlight-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--blue);
  margin: 16px 0;
  display: block;
}

/* Investment CTA */
.investment-cta {
  text-align: center;
  background: white;
  padding: 60px 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: 60px;
}

/* Story Timeline */
.story-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 80px;
  bottom: -48px;
  width: 2px;
  background: var(--gradient-primary);
}

.timeline-year {
  background: var(--gradient-primary);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  height: fit-content;
  min-width: 120px;
  text-align: center;
}

.timeline-content {
  flex: 1;
  background: white;
  padding: 32px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.timeline-content h3 {
  color: var(--blue);
  margin-bottom: 16px;
  font-size: 24px;
}

/* Heritage Grid */
.heritage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.heritage-card {
  background: white;
  padding: 32px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
}

.heritage-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.heritage-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}

.heritage-metric {
  background: rgba(30,91,170,0.1);
  color: var(--blue);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 16px;
  display: inline-block;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.team-member {
  background: white;
  padding: 32px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.member-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-placeholder {
  font-size: 48px;
}

.member-title {
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 16px;
}

.member-bio {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.member-credentials {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.credential {
  background: rgba(30,91,170,0.1);
  color: var(--blue);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
}

/* Achievements Grid */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.achievement-card {
  background: white;
  padding: 32px 24px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
}

.achievement-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.achievement-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}

.achievement-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 16px;
  display: block;
}

/* Values Mission Grid */
.values-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.mission-section h3 {
  color: var(--blue);
  margin-bottom: 24px;
  font-size: 28px;
}

.values-section h3 {
  color: var(--blue);
  margin-bottom: 32px;
  font-size: 28px;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.value-icon {
  font-size: 32px;
  margin-top: 8px;
}

.value-item h4 {
  color: var(--text);
  margin-bottom: 8px;
  font-size: 18px;
}

.value-item p {
  color: var(--muted);
  line-height: 1.6;
}

/* Certifications Grid */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.cert-item {
  background: white;
  padding: 32px 24px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
}

.cert-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.cert-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}

/* Service Categories */
.service-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.service-category {
  background: white;
  padding: 40px 32px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.service-category:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.category-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.service-features li {
  padding: 8px 0;
  color: var(--muted);
  position: relative;
  padding-left: 20px;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
}

/* Sector Grid */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.sector-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}

.sector-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.sector-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.sector-icon {
  font-size: 48px;
}

.sector-header h3 {
  flex: 1;
  color: var(--text);
  margin: 0;
}

.sector-roi {
  background: var(--gradient-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.sector-description {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-details h4 {
  color: var(--blue);
  margin-bottom: 16px;
  font-size: 18px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.service-list li {
  padding: 8px 0;
  color: var(--muted);
  position: relative;
  padding-left: 20px;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
}

.case-study {
  background: rgba(30,91,170,0.05);
  padding: 20px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--blue);
}

.case-study h4 {
  color: var(--blue);
  margin-bottom: 12px;
  font-size: 16px;
}

.case-study p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* Process Timeline */
.process-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 60px;
  bottom: -48px;
  width: 2px;
  background: var(--gradient-primary);
}

.step-number {
  background: var(--gradient-primary);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 24px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
  background: white;
  padding: 32px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.step-content h3 {
  color: var(--blue);
  margin-bottom: 16px;
  font-size: 24px;
}

.step-duration {
  background: rgba(30,91,170,0.1);
  color: var(--blue);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-top: 16px;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.testimonial-content {
  margin-bottom: 24px;
}

.testimonial-content p {
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
  font-size: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-info h4 {
  color: var(--text);
  margin-bottom: 4px;
  font-size: 18px;
}

.author-info p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}

/* Contact Methods Grid */
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.contact-method {
  background: white;
  padding: 40px 32px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
}

.contact-method:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.method-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}

.contact-details {
  margin: 24px 0;
  text-align: left;
}

.contact-details p {
  margin-bottom: 12px;
  color: var(--muted);
}

.contact-details a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* Form Styling */
.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.form-row {
  margin-bottom: 24px;
}

.form-row label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: var(--border-radius);
  font-size: 16px;
  transition: var(--transition);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,91,170,0.1);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-label a {
  color: var(--blue);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

/* Location Grid */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.detail-icon {
  font-size: 24px;
  margin-top: 4px;
}

.detail-item h4 {
  color: var(--text);
  margin-bottom: 8px;
  font-size: 18px;
}

.detail-item p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.map-placeholder {
  background: var(--gradient-secondary);
  padding: 60px 40px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.map-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

.map-placeholder h3 {
  color: var(--blue);
  margin-bottom: 16px;
  font-size: 24px;
}

.map-placeholder p {
  color: var(--muted);
  margin-bottom: 24px;
}

/* Emergency Grid */
.emergency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.emergency-card {
  background: white;
  padding: 32px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.emergency-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue);
}

.emergency-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}

.emergency-contact {
  margin: 24px 0;
}

.emergency-contact p {
  margin-bottom: 12px;
  color: var(--muted);
}

.emergency-contact a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

.emergency-contact a:hover {
  text-decoration: underline;
}

/* CTA Content */
.cta-content {
  text-align: center;
  background: white;
  padding: 80px 60px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text);
}

.cta-content .lead {
  font-size: 20px;
  color: var(--muted);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
  .story-timeline .timeline-item {
    flex-direction: column;
    gap: 16px;
  }
  
  .timeline-item::before {
    display: none;
  }
  
  .timeline-year {
    width: 100%;
    text-align: center;
  }
  
  .values-mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .sector-grid {
    grid-template-columns: 1fr;
  }
  
  .process-timeline .process-step {
    flex-direction: column;
    gap: 16px;
  }
  
  .process-step::before {
    display: none;
  }
  
  .step-number {
    align-self: center;
  }
  
  .cta-content {
    padding: 60px 40px;
  }
  
  .cta-content h2 {
    font-size: 36px;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ========================================
   ENHANCED RESPONSIVE DESIGN SYSTEM
   Mobile-First Approach with Touch Optimization
   ======================================== */

/* Extra Small Mobile Devices (320px - 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  
  .hero {
    padding: 80px 0 40px;
    min-height: auto;
  }
  
  .hero-content h1 {
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  
  .hero-content .lead {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 24px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }
  
  .stat {
    padding: 16px;
    text-align: center;
  }
  
  .stat-number {
    font-size: 24px;
  }
  
  .stat-label {
    font-size: 12px;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-actions .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    min-height: 48px;
    touch-action: manipulation;
  }
  
  .hero-trust {
    margin-top: 24px;
  }
  
  .hero-trust p {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 8px;
  }
  
  .badge {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .logo {
    width: 80px;
    height: 27px;
    max-width: 80px;
  }
  
  .footer-logo {
    width: 100px;
    height: 34px;
    max-width: 100px;
  }
  
  .brand {
    gap: 12px;
  }
  
  .brand-acronym {
    font-size: 20px;
  }
  
  .brand-name {
    font-size: 10px;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .section-header h2 {
    font-size: 24px;
    line-height: 1.2;
  }
  
  .section-header .lead {
    font-size: 16px;
    line-height: 1.4;
  }
  
  .card {
    padding: 20px;
    margin-bottom: 16px;
  }
  
  .card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .card p {
    font-size: 14px;
    line-height: 1.4;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 14px;
    min-height: 44px;
    touch-action: manipulation;
  }
  
  .investment-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .contact-options {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .contact-option {
    padding: 20px;
  }
  
  .contact-option h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .contact-option p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 16px;
  }
  
  .professional-icon {
    width: 40px;
    height: 40px;
  }
  
  .professional-icon.large {
    width: 56px;
    height: 56px;
  }
  
  .professional-icon.small {
    width: 28px;
    height: 28px;
  }
  
  /* Touch-friendly navigation - removed duplicate styles, using main mobile nav styles above */
}

/* Small Mobile Devices (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .hero-content h1 {
    font-size: 36px;
    line-height: 1.2;
  }
  
  .hero-content .lead {
    font-size: 18px;
    line-height: 1.4;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .hero-actions {
    flex-direction: row;
    gap: 16px;
  }
  
  .hero-actions .btn {
    flex: 1;
    min-height: 48px;
    touch-action: manipulation;
  }
  
  .logo {
    width: 100px;
    height: 34px;
    max-width: 100px;
  }
  
  .footer-logo {
    width: 120px;
    height: 41px;
    max-width: 120px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .investment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .contact-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .btn {
    min-height: 48px;
    touch-action: manipulation;
  }
}

/* Tablet Portrait (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
  
  .hero {
    padding: 120px 0 80px;
  }
  
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .hero-content h1 {
    font-size: 42px;
  }
  
  .hero-content .lead {
    font-size: 20px;
  }
  
  .logo {
    width: 120px;
    height: 41px;
    max-width: 120px;
  }
  
  .footer-logo {
    width: 150px;
    height: 51px;
    max-width: 150px;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .investment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .contact-options {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* Desktop (1025px - 1440px) */
@media (min-width: 1025px) {
  .container {
    max-width: 1200px;
    padding: 0 24px;
  }
  
  .hero {
    padding: 120px 0 80px;
    min-height: 100vh;
  }
  
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  
  .hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
  }
  
  .hero-content .lead {
    font-size: 22px;
    line-height: 1.4;
  }
  
  .logo {
    width: 120px;
    height: 41px;
    max-width: 120px;
  }
  
  .footer-logo {
    width: 150px;
    height: 51px;
    max-width: 150px;
  }
  
  .section {
    padding: 100px 0;
  }
  
  .cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  
  .investment-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  
  .contact-options {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

/* Large Desktop (1441px+) */
@media (min-width: 1441px) {
  .container {
    max-width: 1400px;
  }
  
  .hero-content h1 {
    font-size: 64px;
  }
  
  .hero-content .lead {
    font-size: 24px;
  }
  
  .section {
    padding: 120px 0;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn {
    min-height: 48px;
    padding: 16px 24px;
    touch-action: manipulation;
  }
  
  .card {
    transition: transform 0.2s ease;
  }
  
  .card:active {
    transform: scale(0.98);
  }
  
  .logo:hover,
  .footer-logo:hover,
  .professional-icon:hover {
    transform: none;
  }
  
  .nav-menu a {
    padding: 16px 24px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  
  /* Remove hover effects on touch devices */
  .card:hover {
    transform: none;
  }
  
  .btn:hover {
    transform: none;
  }
}

/* High DPI Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo,
  .footer-logo {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Landscape Orientation Adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 60px 0 40px;
    min-height: auto;
  }
  
  .hero-content h1 {
    font-size: 28px;
  }
  
  .hero-content .lead {
    font-size: 16px;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* Arabic Language Support (RTL) */
[lang="ar"] {
  direction: rtl;
  text-align: right;
}

[lang="ar"] .hero-content {
  text-align: right;
}

[lang="ar"] .section-header {
  text-align: right;
}

[lang="ar"] .card {
  text-align: right;
}

[lang="ar"] .hero-actions {
  flex-direction: row-reverse;
}

[lang="ar"] .hero-stats {
  direction: ltr; /* Keep numbers LTR */
}

[lang="ar"] .nav-menu {
  text-align: right;
}

[lang="ar"] .footer-content {
  text-align: right;
}

[lang="ar"] .contact-option {
  text-align: right;
}

[lang="ar"] .feature-card {
  text-align: right;
}

[lang="ar"] .investment-card {
  text-align: right;
}

/* Arabic Font Support */
[lang="ar"] body {
  font-family: 'Inter', 'Arial', 'Tahoma', 'Noto Sans Arabic', sans-serif;
}

[lang="ar"] h1, [lang="ar"] h2, [lang="ar"] h3, [lang="ar"] h4, [lang="ar"] h5, [lang="ar"] h6 {
  font-family: 'Inter', 'Arial', 'Tahoma', 'Noto Sans Arabic', sans-serif;
  font-weight: 600;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .btn,
  .hamburger {
    display: none !important;
  }
  
  .hero {
    padding: 20px 0;
    min-height: auto;
  }
  
  .section {
    padding: 20px 0;
    break-inside: avoid;
  }
  
  .card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3 {
    color: #000 !important;
  }
}


