/* ============================================
   Google Fonts - Inter
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* ============================================
   CSS Reset & Base Styles
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: #1a1a1a;
  background-attachment: fixed;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

main {
  width: 100%;
  height: 100vh;
  /* Note: Update image cache version when changed: url('images/home-bg.png?v=1.0.0') */
  background-image: url('images/home-bg.png?v=1.0.0');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   CSS Custom Properties (Variables)
   ============================================ */
:root {
  /* Colors - Primary */
  --color-primary: #3b82f6;
  --color-primary-light: #60a5fa;
  --color-primary-dark: #2563eb;
  
  /* Colors - Secondary */
  --color-secondary: #8b5cf6;
  --color-secondary-light: #a78bfa;
  --color-secondary-dark: #7c3aed;
  
  /* Colors - Neutral */
  --color-background: #ffffff;
  --color-surface: #f9fafb;
  --color-text: #111827;
  --color-text-secondary: #6b7280;
  --color-border: #e5e7eb;
  
  /* Colors - Semantic */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Typography */
  --font-family: 'Inter', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  /* Font Weights */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  /* Container */
  --container-max-width: 1200px;
  --container-padding: 1rem;
}

/* Dark Mode Variables */
@media (prefers-color-scheme: dark) {
  :root {
    --color-background: #111827;
    --color-surface: #1f2937;
    --color-text: #f9fafb;
    --color-text-secondary: #9ca3af;
    --color-border: #374151;
  }
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
  margin-bottom: var(--spacing-md);
  color: var(--color-text-secondary);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

strong, b {
  font-weight: var(--font-weight-semibold);
}

small {
  font-size: var(--font-size-sm);
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--container-padding);
}

/* ============================================
   Grid System
   ============================================ */
.grid {
  display: grid;
  gap: var(--spacing-md);
}

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ============================================
   Flexbox Utilities
   ============================================ */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }

.gap-xs { gap: var(--spacing-xs); }
.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }
.gap-xl { gap: var(--spacing-xl); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-lg);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: white;
  border-color: var(--color-secondary);
}

.btn-secondary:hover {
  background-color: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: white;
}

/* ============================================
   Cards
   ============================================ */
.card {
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card-header {
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--spacing-md);
}

.card-body {
  flex: 1;
}

.card-footer {
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--color-border);
  margin-top: var(--spacing-md);
}

/* ============================================
   Forms
   ============================================ */
input, textarea, select {
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-md);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
}

/* ============================================
   Spacing Utilities
   ============================================ */
.m-0 { margin: 0; }
.mt-0 { margin-top: 0; }
.mr-0 { margin-right: 0; }
.mb-0 { margin-bottom: 0; }
.ml-0 { margin-left: 0; }

.m-auto { margin: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }

.p-0 { padding: 0; }
.pt-0 { padding-top: 0; }
.pr-0 { padding-right: 0; }
.pb-0 { padding-bottom: 0; }
.pl-0 { padding-left: 0; }

/* Spacing with scale */
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.p-sm { padding: var(--spacing-sm); }
.p-md { padding: var(--spacing-md); }
.p-lg { padding: var(--spacing-lg); }
.p-xl { padding: var(--spacing-xl); }

/* ============================================
   Text Utilities
   ============================================ */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.text-xs { font-size: var(--font-size-xs); }
.text-sm { font-size: var(--font-size-sm); }
.text-base { font-size: var(--font-size-base); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }
.text-2xl { font-size: var(--font-size-2xl); }
.text-3xl { font-size: var(--font-size-3xl); }

.font-light { font-weight: var(--font-weight-light); }
.font-normal { font-weight: var(--font-weight-normal); }
.font-medium { font-weight: var(--font-weight-medium); }
.font-semibold { font-weight: var(--font-weight-semibold); }
.font-bold { font-weight: var(--font-weight-bold); }

.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-text-secondary); }
.text-success { color: var(--color-success); }
.text-warning { color: var(--color-warning); }
.text-error { color: var(--color-error); }

/* ============================================
   Display Utilities
   ============================================ */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.hidden { display: none; }

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn var(--transition-base);
}

.slide-in-up {
  animation: slideInUp var(--transition-base);
}

/* ============================================
   Accessibility
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus styles for keyboard navigation */
*:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ============================================
   Scrollbar Styling (Webkit browsers)
   ============================================ */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-surface);
}

::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-secondary);
}

/* ============================================
   Hero Section
   ============================================ */
.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 732px;
  max-width: 90%;
  min-height: 400px;
  height: auto;
  margin: auto;
  padding: var(--spacing-lg);
  position: relative;
  gap: var(--spacing-md);
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: var(--spacing-lg);
}

.hero-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--spacing-md);
}

.logo {
  width: 45px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.company-name {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-extrabold);
  color: #ffffff;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1;
}

.tagline {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
}

.language-selector {
  position: relative;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
  white-space: nowrap;
  flex-shrink: 0;
  color: #ffffff;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
}

.language-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.language-btn img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.language-btn span {
  color: #ffffff;
}

.dropdown-arrow {
  transition: transform var(--transition-fast);
}

.language-btn:hover .dropdown-arrow {
  transform: translateY(2px);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 160px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  overflow: hidden;
}

.language-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.15);
}

.lang-option:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-flag {
  font-size: 1.25rem;
  line-height: 1;
}

.stats-container {
  display: flex;
  gap: var(--spacing-2xl);
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}

.stat-number {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1;
}

.stat-label {
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.6);
  font-weight: var(--font-weight-light);
  white-space: nowrap;
  line-height: 1.2;
}

.company-description {
  max-width: 100%;
  font-size: var(--font-size-sm);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl);
  color: #ffffff;
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.contact-btn.icon-only {
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50%;
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  text-decoration: none;
}

.contact-btn:active {
  transform: translateY(0);
}

.contact-btn svg {
  flex-shrink: 0;
}

.contact-btn span {
  line-height: 1;
}

.email-btn:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.5);
}

.phone-btn:hover {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.5);
}

.linkedin-btn:hover {
  background: rgba(10, 102, 194, 0.2);
  border-color: rgba(10, 102, 194, 0.5);
}

.facebook-btn:hover {
  background: rgba(24, 119, 242, 0.2);
  border-color: rgba(24, 119, 242, 0.5);
}

/* ============================================
   RTL Support for Arabic & Hebrew
   ============================================ */
[dir="rtl"] {
  text-align: right;
}

[dir="rtl"] .hero-content {
  flex-direction: row-reverse;
}

[dir="rtl"] .hero-top {
  flex-direction: row-reverse;
}

[dir="rtl"] .language-dropdown {
  right: auto;
  left: 0;
}

[dir="rtl"] .stat-item {
  align-items: flex-end;
}

[dir="rtl"] .company-name,
[dir="rtl"] .tagline,
[dir="rtl"] .company-description {
  text-align: right;
}

[dir="rtl"] .contact-btn {
  flex-direction: row-reverse;
}

/* ============================================
   Responsive Design
   ============================================ */

/* ============================================
   Mobile First - Small Devices (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
  /* CSS Variables Override for Mobile */
  :root {
    --container-padding: 0.75rem;
    --font-size-4xl: 1.75rem;
    --font-size-3xl: 1.375rem;
    --font-size-2xl: 1.125rem;
  }
  
  /* Hero Container */
  .hero-container {
    width: 95%;
    height: auto;
    min-height: 400px;
    padding: var(--spacing-lg);
    gap: var(--spacing-lg);
  }
  
  /* Hero Layout */
  .hero-top {
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-sm);
    align-items: center;
  }
  
  .logo {
    width: 50px;
    height: 50px;
  }
  
  /* Typography */
  .company-name {
    font-size: var(--font-size-xl);
  }
  
  .tagline {
    font-size: var(--font-size-sm);
  }
  
  .company-description {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  /* Language Selector */
  .language-selector {
    align-self: center;
  }
  
  .language-btn {
    padding: 0.5rem 0.85rem;
    gap: 0.45rem;
    font-size: var(--font-size-sm);
  }
  
  .language-btn img {
    width: 18px;
    height: 18px;
  }
  
  .dropdown-arrow {
    width: 11px;
    height: 11px;
  }
  
  .language-dropdown {
    right: 50%;
    left: auto;
    transform: translateX(50%) translateY(-10px);
    min-width: 160px;
  }
  
  .language-dropdown.show {
    transform: translateX(50%) translateY(0);
  }
  
  [dir="rtl"] .language-dropdown {
    right: 50%;
    left: auto;
  }
  
  .lang-option {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
  }
  
  .lang-flag {
    font-size: 1.2rem;
  }
  
  /* Stats Section */
  .stats-container {
    flex-direction: row;
    gap: var(--spacing-lg);
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
  }
  
  .stat-item {
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 80px;
  }
  
  .stat-number {
    font-size: var(--font-size-2xl);
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
  
  /* Contact Buttons */
  .contact-buttons {
    flex-direction: row;
    gap: var(--spacing-md);
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .contact-btn.icon-only {
    width: 56px;
    height: 56px;
  }
  
  .contact-btn.icon-only svg {
    width: 26px;
    height: 26px;
  }
  
  .contact-btn:hover {
    transform: translateY(-1px);
  }
  
  /* Utility Classes */
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }
  
  .hide-mobile {
    display: none;
  }
}

/* ============================================
   Tablet - Medium Devices (481px - 768px)
   ============================================ */
@media (min-width: 481px) and (max-width: 768px) {
  /* CSS Variables Override for Tablet */
  :root {
    --container-padding: 1rem;
    --font-size-4xl: 2rem;
    --font-size-3xl: 1.5rem;
  }
  
  /* Hero Container */
  .hero-container {
    width: 95%;
    height: auto;
    min-height: 280px;
    padding: var(--spacing-lg);
    gap: var(--spacing-xl);
  }
  
  /* Hero Layout */
  .hero-top {
    flex-direction: row;
    gap: var(--spacing-md);
    align-items: center;
  }
  
  .hero-content {
    flex-direction: row;
    justify-content: center;
    gap: var(--spacing-sm);
  }
  
  .logo {
    width: 50px;
    height: 50px;
  }
  
  /* Typography */
  .company-name {
    font-size: var(--font-size-xl);
  }
  
  .tagline {
    font-size: var(--font-size-sm);
  }
  
  .company-description {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  
  /* Language Selector */
  .language-btn {
    padding: 0.45rem 0.85rem;
    gap: 0.4rem;
  }
  
  .language-btn img {
    width: 18px;
    height: 18px;
  }
  
  .dropdown-arrow {
    width: 10px;
    height: 10px;
  }
  
  .language-dropdown {
    min-width: 145px;
  }
  
  .lang-option {
    padding: 0.65rem 0.85rem;
    font-size: 0.8rem;
  }
  
  .lang-flag {
    font-size: 1.1rem;
  }
  
  /* Stats Section */
  .stats-container {
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .stat-number {
    font-size: var(--font-size-4xl);
  }
  
  .stat-label {
    font-size: var(--font-size-sm);
  }
  
  /* Contact Buttons */
  .contact-buttons {
    gap: var(--spacing-sm);
  }
  
  .contact-btn.icon-only {
    width: 48px;
    height: 48px;
  }
  
  .contact-btn.icon-only svg {
    width: 22px;
    height: 22px;
  }
  
  .contact-btn:hover {
    transform: translateY(-1px);
  }
  
  /* Utility Classes */
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }
  
  .hide-mobile {
    display: none;
  }
}

/* ============================================
   Large Tablet - Medium-Large Devices (769px - 1024px)
   ============================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Hero Container */
  .hero-container {
    width: 90%;
    max-width: 732px;
  }
  
  /* Stats Section */
  .stats-container {
    gap: var(--spacing-xl);
  }
  
  /* Contact Buttons */
  .contact-buttons {
    gap: var(--spacing-sm);
  }
  
  .contact-btn.icon-only {
    width: 50px;
    height: 50px;
  }
  
  .contact-btn.icon-only svg {
    width: 22px;
    height: 22px;
  }
  
  .contact-btn:hover {
    transform: translateY(-1px);
  }
  
  /* Utility Classes */
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   Desktop - Large Devices (min-width: 769px)
   ============================================ */
@media (min-width: 769px) {
  .hide-desktop {
    display: none;
  }
}

/* ============================================
   Large Desktop - Extra Large Devices (min-width: 1440px)
   ============================================ */
@media (min-width: 1440px) {
  .hero-container {
    max-width: 800px;
  }
}

