@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #121212;
  --bg-card: #161616;
  --bg-card-hover: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --accent: #FFD700;
  --accent-light: #FFEA00;
  --accent-dark: #DAA520;
  --accent-glow: rgba(255, 215, 0, 0.15);
  --border: #2a2a2a;
  --border-accent: rgba(255, 215, 0, 0.4);
  --shadow: rgba(0, 0, 0, 0.6);
  --shadow-gold: rgba(255, 215, 0, 0.15);
  --gradient-gold: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  --gradient-dark: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}

a {
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: var(--accent);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: var(--gradient-gold);
  color: #000000;
  box-shadow: 0 4px 20px var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--shadow-gold);
}

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

.btn-secondary:hover {
  background: var(--accent-glow);
  transform: translateY(-2px);
  border-color: var(--accent-light);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.section {
  padding: 100px 0;
}

.section-title {
  font-size: 42px;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  border-color: var(--border-accent);
  transform: translateY(-8px);
  box-shadow: 0 25px 50px var(--shadow);
}

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

.gold-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
}

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

.logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  box-shadow: 0 4px 20px var(--shadow-gold);
  transition: all 0.3s ease;
}

.logo-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px var(--shadow-gold);
}

.logo-icon img,
.logo-icon span {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.logo-icon span {
  color: #000000;
  font-weight: 800;
  font-size: 20px;
  object-fit: none;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
}

nav {
  display: flex;
  gap: 40px;
}

nav a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

nav a:hover,
nav a.active {
  color: var(--accent);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.language-switcher {
  position: relative;
}

.language-switcher button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--border-accent);
  border-radius: 8px;
  color: var(--accent);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.language-switcher button:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
}

.language-switcher ul {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  list-style: none;
  padding: 8px 0;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 40px var(--shadow);
}

.language-switcher:hover ul,
.language-switcher ul:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-switcher ul li button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 20px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 0;
}

.language-switcher ul li button:hover {
  background: var(--accent-glow);
  color: var(--accent);
}

.language-switcher ul li.active button {
  color: var(--accent);
  background: var(--accent-glow);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 28px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: zoomIn 20s ease-in-out infinite;
}

@keyframes zoomIn {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  animation: fadeInUp 1s ease-out;
}

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

.hero-title {
  font-size: 64px;
  margin-bottom: 24px;
  line-height: 1.1;
  animation: fadeInUp 1s ease-out 0.1s both;
}

.hero-subtitle {
  font-size: 28px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-weight: 300;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.highlights {
  background: var(--bg-secondary);
  position: relative;
}

.highlights::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

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

.highlight-card {
  text-align: center;
  padding: 50px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--shadow);
}

.highlight-card .value {
  font-size: 56px;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.highlight-card .unit {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.highlight-card .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.highlight-card .description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

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

.quick-link-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.9) 70%, rgba(10,10,10,0.95) 100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.quick-link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-link-card:hover::before {
  transform: scale(1.15);
}

.quick-link-card:nth-child(1)::before {
  background-image: url('../images/z1.jpg');
}

.quick-link-card:nth-child(2)::before {
  background-image: url('../images/z2.jpg');
}

.quick-link-card:nth-child(3)::before {
  background-image: url('../images/z3.jpg');
}

.quick-link-card:nth-child(4)::before {
  background-image: url('../images/z4.jpg');
}

.quick-link-card .content {
  position: relative;
  z-index: 1;
}

.quick-link-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.quick-link-card:hover h3 {
  color: var(--accent);
}

.quick-link-card p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.quick-link-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-15px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-link-card:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

.vision-section {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.vision-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,215,0,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.vision-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.vision-content h2 {
  font-size: 36px;
  margin-bottom: 40px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vision-content p {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 2;
}

footer {
  background: var(--bg-secondary);
  padding: 80px 0 40px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.footer-logo .logo-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-logo span {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
}

.footer-about {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.9;
}

.footer-links h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 14px;
}

.footer-links ul li a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact .icon {
  color: var(--accent);
  font-size: 16px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 35px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.company-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.company-intro img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px var(--shadow);
}

.company-intro h2 {
  font-size: 38px;
  margin-bottom: 28px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.company-intro p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 20px;
}

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

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

.mission-card {
  text-align: center;
  padding: 50px 30px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--shadow);
}

.mission-card .icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  transition: all 0.3s ease;
}

.mission-card:hover .icon {
  transform: scale(1.1);
  background: var(--gradient-gold);
}

.mission-card h3 {
  font-size: 22px;
  margin-bottom: 18px;
}

.mission-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.milestones {
  background: var(--bg-secondary);
}

.milestones-list {
  max-width: 700px;
  margin: 0 auto;
}

.milestone-item {
  display: flex;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

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

.milestone-item:hover {
  padding-left: 10px;
}

.milestone-item .year {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  min-width: 100px;
  font-family: 'Inter', sans-serif;
}

.milestone-item .event {
  font-size: 17px;
  color: var(--text-secondary);
  padding-top: 6px;
}

.business-section {
  margin-bottom: 100px;
}

.business-section:last-child {
  margin-bottom: 0;
}

.business-section h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 48px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.business-section h3 {
  font-size: 24px;
  margin-bottom: 24px;
  text-align: center;
  color: var(--accent);
  font-weight: 400;
}

.business-section p {
  font-size: 16px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 50px;
}

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

.feature-card {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-card);
}

.feature-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--shadow);
}

.feature-card .icon {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h4 {
  font-size: 20px;
  margin-bottom: 14px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  text-align: left;
  line-height: 1.8;
}

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

.market-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.market-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--shadow);
}

.market-card .name {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.market-card .revenue {
  font-size: 38px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.market-card .year {
  font-size: 13px;
  color: var(--text-muted);
}

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

.base-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.base-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--shadow);
}

.base-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.base-card:hover img {
  transform: scale(1.05);
}

.base-card .content {
  padding: 30px;
}

.base-card h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.base-card .location {
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 12px;
}

.base-card .focus {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.base-card p {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: left;
  line-height: 1.8;
}

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

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}

.service-item .icon {
  font-size: 28px;
  color: var(--accent);
}

.service-item h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.service-item p {
  font-size: 13px;
  color: var(--text-muted);
  text-align: left;
  line-height: 1.7;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-bottom: 80px;
}

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

.contact-info-item .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-item:hover .icon {
  background: var(--gradient-gold);
  color: #000000;
}

.contact-info-item h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.contact-info-item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto 80px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 50px;
}

.contact-form h3 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form button {
  width: 100%;
  padding: 18px;
  font-size: 15px;
}

@media (max-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

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

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 44px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 32px;
  }

  .company-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission-cards {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
  }

  .language-switcher {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
  }

  .mobile-nav.active {
    display: block;
  }

  .mobile-nav nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .mobile-nav .language-switcher {
    display: block;
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-description {
    font-size: 14px;
  }

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

  .quick-links {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .contact-form {
    padding: 30px 24px;
  }
}