/* ==========================================
   DMH About - НОВАЯ СТРАНИЦА "О НАС"
   ✅ Идеальные армянские шрифты
   ✅ Mobile-first (320px+)
   ✅ Все по центру
   ✅ DOMSTROY стиль
========================================== */

/* Armenian Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Armenian:wght@400;600;700;900&family=Noto+Serif+Armenian:wght@400;600;700;900&display=swap');

/* Reset & Base */
.dmh-about-new {
  --primary-color: #e01616;
  --secondary-color: #111827;
  font-family: 'Noto Sans Armenian', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  color: var(--secondary-color);
  line-height: 1.7;
  text-align: center;
}

.dmh-about-new *,
.dmh-about-new *::before,
.dmh-about-new *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans Armenian', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* Container - ВСЕ ПО ЦЕНТРУ */
.dmh-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .dmh-container {
    padding: 0 40px;
  }
}

/* ==========================================
   HERO SECTION - ПО ЦЕНТРУ
========================================== */

.dmh-hero {
  padding: 50px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.dmh-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(224, 22, 22, 0.08), transparent 70%);
  border-radius: 50%;
}

@media (min-width: 768px) {
  .dmh-hero {
    padding: 70px 0;
  }
  .dmh-hero::before {
    width: 600px;
    height: 600px;
  }
}

@media (min-width: 1024px) {
  .dmh-hero {
    padding: 90px 0;
  }
}

.dmh-hero-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
  position: relative;
  z-index: 1;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .dmh-hero-content {
    gap: 45px;
  }
}

.dmh-hero-text {
  flex: 1;
  text-align: center;
}

.dmh-hero-title {
  font-family: 'Noto Serif Armenian', sans-serif !important;
  font-size: 38px;
  font-weight: 900;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .dmh-hero-title {
    font-size: 56px;
    margin-bottom: 24px;
  }
}

@media (min-width: 1024px) {
  .dmh-hero-title {
    font-size: 68px;
  }
}

.dmh-hero-subtitle {
  font-family: 'Noto Sans Armenian', sans-serif !important;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

@media (min-width: 768px) {
  .dmh-hero-subtitle {
    font-size: 26px;
  }
}

.dmh-hero-desc {
  font-family: 'Noto Sans Armenian', sans-serif !important;
  font-size: 17px;
  color: #4b5563;
  line-height: 1.9;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .dmh-hero-desc {
    font-size: 19px;
  }
}

.dmh-hero-image {
  flex: 1;
  max-width: 550px;
  margin: 0 auto;
}

.dmh-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

/* ==========================================
   STATS SECTION - ПО ЦЕНТРУ
========================================== */

.dmh-stats {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #c71313 100%);
  color: white;
  text-align: center;
}

@media (min-width: 768px) {
  .dmh-stats {
    padding: 80px 0;
  }
}

.dmh-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .dmh-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}

.dmh-stat-item {
  text-align: center;
  padding: 15px;
  transition: transform 0.3s ease;
}

.dmh-stat-item:hover {
  transform: translateY(-5px);
}

.dmh-stat-number {
  font-family: 'Noto Sans Armenian', sans-serif !important;
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .dmh-stat-number {
    font-size: 62px;
  }
}

.dmh-stat-label {
  font-family: 'Noto Sans Armenian', sans-serif !important;
  font-size: 15px;
  font-weight: 600;
  opacity: 0.97;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .dmh-stat-label {
    font-size: 17px;
  }
}

/* ==========================================
   ABOUT SECTION - ПО ЦЕНТРУ
========================================== */

.dmh-about-section {
  padding: 70px 0;
  background: white;
  text-align: center;
}

@media (min-width: 768px) {
  .dmh-about-section {
    padding: 90px 0;
  }
}

.dmh-section-title {
  font-family: 'Noto Serif Armenian', sans-serif !important;
  font-size: 36px;
  font-weight: 900;
  color: var(--secondary-color);
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  padding-bottom: 28px;
  letter-spacing: -0.3px;
}

.dmh-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), #c71313);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(224, 22, 22, 0.3);
}

@media (min-width: 768px) {
  .dmh-section-title {
    font-size: 46px;
    padding-bottom: 32px;
  }
  .dmh-section-title::after {
    width: 80px;
  }
}

.dmh-section-desc {
  font-family: 'Noto Sans Armenian', sans-serif !important;
  font-size: 17px;
  color: #4b5563;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.9;
}

@media (min-width: 768px) {
  .dmh-section-desc {
    font-size: 19px;
  }
}

/* ==========================================
   FEATURES SECTION - ПО ЦЕНТРУ
========================================== */

.dmh-features {
  padding: 70px 0;
  background: #f8f9fa;
  text-align: center;
}

@media (min-width: 768px) {
  .dmh-features {
    padding: 90px 0;
  }
}

.dmh-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .dmh-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .dmh-features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
  }
}

.dmh-feature-item {
  background: white;
  padding: 40px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.dmh-feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(224, 22, 22, 0.15);
  border-color: rgba(224, 22, 22, 0.1);
}

.dmh-feature-icon {
  font-size: 58px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.dmh-feature-title {
  font-family: 'Noto Sans Armenian', sans-serif !important;
  font-size: 21px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 14px;
  line-height: 1.4;
}

.dmh-feature-desc {
  font-family: 'Noto Sans Armenian', sans-serif !important;
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
}

/* ==========================================
   CTA SECTION - ПО ЦЕНТРУ
========================================== */

.dmh-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #b10f0f 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dmh-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
  border-radius: 50%;
}

@media (min-width: 768px) {
  .dmh-cta {
    padding: 100px 0;
  }
}

.dmh-cta-content {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.dmh-cta-title {
  font-family: 'Noto Serif Armenian', sans-serif !important;
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .dmh-cta-title {
    font-size: 52px;
  }
}

.dmh-cta-text {
  font-family: 'Noto Sans Armenian', sans-serif !important;
  font-size: 18px;
  margin-bottom: 38px;
  opacity: 0.98;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .dmh-cta-text {
    font-size: 20px;
  }
}

.dmh-cta-button {
  display: inline-block;
  padding: 18px 48px;
  background: white;
  color: var(--primary-color);
  font-family: 'Noto Sans Armenian', sans-serif !important;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 60px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.3px;
}

.dmh-cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  color: var(--primary-color);
  text-decoration: none;
  background: #fff;
}

@media (min-width: 768px) {
  .dmh-cta-button {
    padding: 20px 56px;
    font-size: 19px;
  }
}

/* ==========================================
   ANIMATIONS
========================================== */

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

.dmh-hero-text,
.dmh-hero-image,
.dmh-stat-item,
.dmh-feature-item {
  animation: fadeInUp 0.6s ease-out;
}

.dmh-stat-item:nth-child(1) { animation-delay: 0.1s; }
.dmh-stat-item:nth-child(2) { animation-delay: 0.2s; }
.dmh-stat-item:nth-child(3) { animation-delay: 0.3s; }
.dmh-stat-item:nth-child(4) { animation-delay: 0.4s; }

.dmh-feature-item:nth-child(1) { animation-delay: 0.1s; }
.dmh-feature-item:nth-child(2) { animation-delay: 0.2s; }
.dmh-feature-item:nth-child(3) { animation-delay: 0.3s; }
.dmh-feature-item:nth-child(4) { animation-delay: 0.4s; }

/* ==========================================
   ACCESSIBILITY
========================================== */

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Focus styles */
.dmh-cta-button:focus {
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: 4px;
}

/* ==========================================
   PRINT STYLES
========================================== */

@media print {
  .dmh-about-new {
    background: white !important;
  }
  .dmh-hero::before {
    display: none;
  }
  .dmh-cta-button {
    display: none;
  }
}
