:root {
  color-scheme: dark;
  font-family: 'Inter', sans-serif;
  background: #070606;
  color: #f7f7f7;
  --red: #d52727;
  --dark: #0f0d0d;
  --surface: #161313;
  --muted: #a3a3a3;
  --border: rgba(255, 255, 255, 0.08);
}

html[lang="ar"] {
  font-family: 'Noto Sans Arabic', 'Inter', sans-serif;
  direction: rtl;
}

html[lang="ka"] {
  font-family: 'Noto Sans Georgian', 'Inter', sans-serif;
}

html[lang="hy"] {
  font-family: 'Noto Sans Armenian', 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-width: 0;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  min-width: 0;
  max-width: 100vw;
  overflow-x: hidden;
  background: radial-gradient(circle at top left, rgba(213, 39, 39, 0.22), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.06), transparent 25%),
    linear-gradient(180deg, #080606 0%, #110f10 100%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container,
.hero-grid,
.about-grid,
.contact-grid,
.stats-grid,
.service-grid,
.hero-copy,
.hero-image,
.service-card,
.contact-form,
.contact-details,
.about-copy,
.stat-card,
.header-inner,
.language-switcher,
.hero-actions,
.footer-inner {
  min-width: 0;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1120px;
  padding: 0 1rem;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(7, 6, 6, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  width: 100%;
}

@media (min-width: 861px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.brand-mark {
  width: 80px;
  height: 80px;
  display: block;
  border-radius: 20px;
  background: var(--red);
  color: white;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 1.8rem;
  flex-shrink: 0;
  object-fit: cover;
}

.brand-name {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.brand-tag {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.language-switcher {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  width: 100%;
  justify-content: flex-start;
}

.lang-button {
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lang-button:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.25);
}

.lang-button.active {
  background: var(--red);
  color: white;
  border-color: var(--red);
}

.header-contact {
  margin-left: auto;
  align-self: center;
}

.contact-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.contact-button,
.button-secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
}

.button-primary {
  background: linear-gradient(135deg, #e13a3a, #bd1515);
  color: white;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
}

.contact-button:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  padding: clamp(2rem, 4vw, 4rem) 0 2rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.hero-image {
  width: 100%;
}

.hero-card {
  min-height: auto;
}

@media (max-width: 860px) {
  .hero-card {
    min-height: 260px;
  }
}

@media (max-width: 860px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .stats-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .language-switcher {
    width: 100%;
  }

  .header-contact {
    position: static;
    width: 100%;
    margin-top: 0.75rem;
    text-align: left;
    justify-content: center;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-card {
    min-height: 260px;
  }

  .hero-actions .button,
  .contact-button,
  .button-secondary,
  .button-primary {
    width: 100%;
  }

  .hero-actions {
    gap: 0.85rem;
  }
}

.eyebrow {
  margin: 0 0 1rem;
  color: #f2bebe;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  max-width: 100%;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.hero-text,
.about-copy p,
.service-card p,
.contact-details p,
.stat-label,
.about-list li {
  color: var(--muted);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
    justify-content: flex-start;
}

.hero-card {
  width: 100%;
  min-height: 300px;
  padding: 2rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.3);
}

.hero-card h2 {
  color: white;
  margin-bottom: 1rem;
}

.stats {
  padding: 2rem 0 1rem;
}

.stats-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  padding: 1.75rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.services {
  padding: 3rem 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  padding: 2rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card h3 {
  margin-bottom: 1rem;
}

.about {
  padding: 3rem 0;
}

.about-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.about-image {
  min-height: 360px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(213, 39, 39, 0.92), rgba(30, 23, 23, 0.95)),
    url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}

.about-copy {
  display: grid;
  gap: 1.25rem;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.about-list li {
  padding-left: 1.2rem;
  position: relative;
}

.about-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--red);
}

.contact {
  padding: 3rem 0 4rem;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1.2fr;
}

.contact-details,
.contact-form {
  padding: 2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-details p {
  margin: 0.6rem 0;
}

.contact-label {
  color: #f2bebe;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: white;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  padding: 1rem;
  margin-bottom: 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.contact-form,
.contact-details,
.service-card,
.about-copy,
.hero-card {
  min-width: 0;
}

a,
button,
input,
textarea,
h1,
h2,
h3,
p,
label {
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.site-footer {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-inner a {
  color: white;
  text-decoration: none;
}

.reveal,
.reveal-image {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible,
.reveal-image.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-float {
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@media (max-width: 680px) {
  .site-header {
    padding: 0.75rem 0;
  }

  .header-inner {
    gap: 0.75rem;
  }

  .header-contact {
    position: static;
    width: 100%;
    margin-top: 0.75rem;
    margin-left: 0;
  }

  .language-switcher {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-grid,
  .contact-grid {
    gap: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-card {
    padding: 1.5rem;
  }

  h1 {
    font-size: clamp(1.8rem, 10vw, 2.8rem);
  }

  h2 {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
  }

  .hero-text,
  .about-copy p,
  .service-card p,
  .contact-details p,
  .stat-label,
  .about-list li {
    line-height: 1.6;
  }

  .brand {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .brand-mark {
    width: 64px;
    height: 64px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-tag {
    font-size: 0.8rem;
  }

  .lang-button {
    font-size: 0.78rem;
    padding: 0.55rem 0.8rem;
  }

  .contact-details,
  .contact-form,
  .service-card,
  .stat-card,
  .about-copy,
  .hero-card {
    padding: 1.2rem;
  }

  .about-image {
    min-height: 220px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  .language-switcher {
    gap: 0.35rem;
  }

  .contact-button,
  .button-secondary,
  .button-primary {
    width: 100%;
    padding: 0.8rem 1rem;
  }

  .footer-inner {
    padding-bottom: 1rem;
  }

  .site-header,
  .hero,
  .contact,
  .services,
  .about,
  .stats {
    padding-left: 0;
    padding-right: 0;
  }
}
