/* Om Oss Page Styles - Complete Modern Design */

/* Base Container Styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Alert Bar */
.alert-bar {
  background: #ef4444;
  color: white;
  padding: 8px 0;
  font-size: 14px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.alert-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  text-align: center;
}

.alert-text {
  font-weight: 500;
}

.alert-phone {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}

.alert-phone:hover {
  opacity: 0.8;
  color: white;
  text-decoration: none;
}

.alert-phone svg {
  width: 16px;
  height: 16px;
}

/* Header Modern */
.header-modern {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #1f2937;
}

.logo img {
  width: 40px;
  height: 40px;
}

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

.logo-name {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
}

.logo-tag {
  font-size: 12px;
  color: #00a887;
  font-weight: 500;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #1f2937;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

/* Navigation List */
.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-list li {
  list-style: none;
}

.nav-list a {
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  padding: 5px 0;
}

.nav-list a:hover,
.nav-list a.active {
  color: #00a887;
}

.nav-list a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: #00a887;
}

/* Blog Link */
.blog-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #f3f4f6;
  border-radius: 8px;
  color: #6b7280;
  text-decoration: none;
  transition: all 0.3s;
}

.blog-link:hover {
  background: #e5e7eb;
  color: #00a887;
}

.blog-link.active {
  background: #e5e7eb;
  color: #1f2937;
}

.blog-link svg {
  width: 20px;
  height: 20px;
}

/* About Main Container */
.about-main {
  padding-top: 100px;
  min-height: 100vh;
  background: #f9fafb;
}

/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, #00a887 0%, #00856b 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.about-title {
  font-size: 48px;
  color: white;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Content Section */
.about-content {
  padding: 80px 0;
  /* Убираем grid - контент должен быть в одну колонку */
}

.about-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  /* Контент по центру в одну колонку */
}

/* Info Sections */
.info-section {
  margin-bottom: 50px;
  animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 26px;
  color: #1f2937;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid #00a887;
  font-weight: 600;
}

.section-title svg {
  color: #00a887;
  flex-shrink: 0;
}

/* Info Cards */
.info-card {
  background: white;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #00a887;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 168, 135, 0.05), transparent);
  transition: left 0.6s ease;
}

.info-card:hover::before {
  left: 100%;
}

.info-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.info-card p {
  margin: 12px 0;
  line-height: 1.8;
  color: #4b5563;
  font-size: 16px;
}

.info-card strong {
  color: #1f2937;
  font-weight: 600;
}

.info-card ul {
  margin: 15px 0;
  padding-left: 25px;
}

.info-card li {
  margin: 10px 0;
  line-height: 1.8;
  color: #4b5563;
  font-size: 16px;
  position: relative;
}

.info-card a {
  color: #00a887;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  border-bottom: 2px dotted #00a887;
  display: inline-block;
}

.info-card a:hover {
  color: #00856b;
  border-bottom-style: solid;
  transform: translateY(-1px);
}

/* Values Card Special Styling */
.values-card ul {
  list-style: none;
  padding-left: 0;
}

.values-card li {
  padding-left: 40px;
  position: relative;
  margin: 18px 0;
  padding-top: 2px;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.values-card li:hover {
  transform: translateX(5px);
}

.values-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #00a887, #00856b);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0, 168, 135, 0.3);
}

/* Coverage and Hours Special Lists */
.info-card ul li::before {
  content: "▸";
  position: absolute;
  left: -15px;
  color: #00a887;
  font-weight: bold;
  font-size: 18px;
}

/* Fixed Call Button */
.fixed-call-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #00a887, #00856b);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 25px rgba(0, 168, 135, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 5px 25px rgba(0, 168, 135, 0.4);
  }

  50% {
    box-shadow: 0 5px 35px rgba(0, 168, 135, 0.6);
  }

  100% {
    box-shadow: 0 5px 25px rgba(0, 168, 135, 0.4);
  }
}

.fixed-call-button:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #00856b, #00a887);
}

.fixed-call-button svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: 100px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 100px);
    background: white;
    flex-direction: column;
    padding: 80px 30px;
    gap: 20px;
    align-items: flex-start;
    transition: left 0.3s;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-list.active {
    left: 0;
  }

  .nav-list a {
    font-size: 18px;
    padding: 10px;
  }

  .blog-link {
    display: none;
  }

  .about-main {
    padding-top: 90px;
  }

  .about-hero {
    padding: 60px 0;
  }

  .about-title {
    font-size: 36px;
  }

  .about-subtitle {
    font-size: 18px;
    padding: 0 20px;
  }

  .about-content {
    padding: 60px 20px;
  }

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

  .info-card {
    padding: 25px;
  }

  .info-card p,
  .info-card li {
    font-size: 15px;
  }

  .fixed-call-button {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .fixed-call-button svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .alert-content {
    font-size: 12px;
  }

  .logo-name {
    font-size: 18px;
  }

  .logo-tag {
    font-size: 11px;
  }

  .logo img {
    width: 35px;
    height: 35px;
  }

  .about-main {
    padding-top: 85px;
  }

  .about-hero {
    padding: 50px 0;
  }

  .about-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .about-subtitle {
    font-size: 16px;
    padding: 0 15px;
  }

  .about-content {
    padding: 40px 15px;
  }

  .info-section {
    margin-bottom: 35px;
  }

  .section-title {
    font-size: 18px;
    gap: 8px;
  }

  .section-title svg {
    width: 20px;
    height: 20px;
  }

  .info-card {
    padding: 20px;
    border-radius: 12px;
  }

  .info-card p,
  .info-card li {
    font-size: 14px;
  }

  .values-card li {
    padding-left: 35px;
  }

  .values-card li::before {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }

  .nav-list {
    padding: 60px 20px;
  }

  .fixed-call-button {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }
}

/* Small mobile devices */
@media (max-width: 375px) {
  .container {
    padding: 0 15px;
  }

  .about-main {
    padding-top: 80px;
  }

  .about-hero {
    padding: 40px 0;
  }

  .about-title {
    font-size: 24px;
  }

  .about-subtitle {
    font-size: 14px;
  }

  .section-title {
    font-size: 16px;
    flex-wrap: wrap;
  }

  .info-card {
    padding: 15px 20px;
  }

  .info-card p,
  .info-card li {
    font-size: 13px;
  }
}