/* Modern Hospital Website Design */

/* Base reset and variables */
:root {
  --primary-blue: #0ea5e9;
  --primary-blue-dark: #0284c7;
  --secondary-blue: #3b82f6;
  --accent-green: #10b981;
  --text-dark: #0f172a;
  --text-gray: #475569;
  --text-light: #64748b;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-gray: #f1f5f9;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 50px;
  height: 50px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: #1e293b;
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 13px;
  color: #64748b;
  font-weight: 400;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 15px;
}

.nav a:hover {
  color: var(--primary-blue);
  background: var(--bg-light);
}

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-toggle::after {
  content: '▼';
  font-size: 10px;
  margin-left: 4px;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.nav-dropdown:hover .nav-dropdown-menu {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
  padding: 6px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-size: 12px;
  white-space: nowrap;
  line-height: 1.3;
}

.dropdown-item:hover {
  background: var(--bg-light);
  color: var(--primary-blue);
}

.dropdown-item span {
  flex: 1;
}

@media (max-width: 768px) {
  .nav-dropdown-menu {
    grid-template-columns: 1fr;
    min-width: 200px;
  }
}

/* Language Switcher */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 16px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 4px;
  background: var(--bg-white);
}

.lang-btn {
  padding: 6px 12px;
  border: none;
  background: transparent;
  color: var(--text-gray);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-family: inherit;
}

.lang-btn:hover {
  background: var(--bg-light);
  color: var(--text-dark);
}

.lang-btn.active {
  background: var(--primary-blue);
  color: white;
}

@media (max-width: 768px) {
  .language-switcher {
    margin-left: 8px;
    gap: 2px;
    padding: 2px;
  }
  
  .lang-btn {
    padding: 4px 8px;
    font-size: 12px;
  }
}

.btn-contact {
  background: var(--primary-blue);
  color: white !important;
  margin-left: 8px;
}

.btn-contact:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  position: relative;
  color: white;
  padding: 80px 0;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: white;
  font-size: 48px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.hero-nav-prev {
  left: 20px;
}

.hero-nav-next {
  right: 20px;
}

.hero-boxes {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-box {
  background: rgba(14, 165, 233, 0.3);
  backdrop-filter: blur(8px);
  padding: 24px;
  border-radius: 8px;
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: white;
}

.hero-box p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 10px 0;
  color: rgba(255, 255, 255, 0.95);
}

.hero-box p:last-of-type {
  margin-bottom: 16px;
}

.hero-link {
  display: inline-block;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hero-slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.hero-slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-slider-dots .dot.active {
  background: white;
  width: 32px;
  border-radius: 6px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero .lead {
  font-size: 20px;
  margin: 0 0 32px 0;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-info {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.info-icon {
  font-size: 20px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: white;
  color: var(--primary-blue);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Features Section */
.features {
  padding: 80px 0;
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.feature-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 20px;
  margin: 0 0 12px 0;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-gray);
  margin: 0;
  font-size: 15px;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--text-dark);
}

.section-header p {
  font-size: 18px;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

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

.service-card {
  background: var(--bg-light);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.service-card:hover {
  background: white;
  border-color: var(--primary-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: var(--text-dark);
}

.service-card p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

/* About Preview */
/* Teams and Equipment Section */
.teams-equipment-section {
  padding: 0 0 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
}

.teams-equipment-wrapper {
  margin-top: 60px;
}

.teams-equipment-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.teams-equipment-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.teams-equipment-text h3:not(:first-child) {
  margin-top: 40px;
}

.teams-equipment-text p {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.8;
  margin: 0 0 24px 0;
}

.teams-equipment-image {
  position: relative;
  display: flex;
  align-items: center;
}

.teams-equipment-slider {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.teams-equipment-slide {
  display: none;
  width: 100%;
}

.teams-equipment-slide.active {
  display: block;
}

.teams-equipment-image-wrapper {
  position: relative;
  width: 100%;
  max-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.teams-equipment-image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.teams-equipment-image-wrapper:hover img {
  transform: scale(1.05);
}

.teams-equipment-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 32px;
  color: var(--primary-blue);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.teams-equipment-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.teams-equipment-nav-prev {
  left: 16px;
}

.teams-equipment-nav-next {
  right: 16px;
}

.teams-equipment-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.teams-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.teams-dot.active {
  background: white;
  width: 32px;
  border-radius: 6px;
  border-color: white;
}

.teams-equipment-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  pointer-events: none;
}

.stats-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.stat-item-modern {
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.stat-item-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-blue) 0%, var(--accent-green) 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.stat-item-modern:hover::before {
  transform: scaleY(1);
}

.stat-item-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.15);
  border-color: var(--primary-blue);
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  color: var(--primary-blue);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.stat-item-modern:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
}

.stat-icon svg {
  width: 32px;
  height: 32px;
}

.stat-content {
  flex: 1;
}

.stat-number-modern {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  line-height: 1;
}

.stat-label-modern {
  font-size: 15px;
  color: var(--text-gray);
  font-weight: 600;
  line-height: 1.4;
}

/* News Section */
.news-section {
  padding: 0 0 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

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


.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.news-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.news-card:hover {
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
  transform: translateY(-8px);
  border-color: rgba(14, 165, 233, 0.2);
}

.news-card-image {
  height: 180px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

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

.news-card:hover .news-card-image img {
  transform: scale(1.1);
}

.news-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.news-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: rgba(255, 255, 255, 0.3);
}

.news-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--primary-blue);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.news-card:hover .news-badge {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.news-badge-event {
  background: rgba(16, 185, 129, 0.98);
  color: white;
}

.news-badge-greeting {
  background: rgba(245, 158, 11, 0.98);
  color: white;
}

.news-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.news-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

.news-icon {
  font-size: 14px;
  opacity: 0.7;
}

.news-category {
  display: inline-block;
  font-size: 11px;
  color: var(--primary-blue);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  padding: 6px 14px;
  border-radius: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.news-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--text-dark);
  line-height: 1.4;
  flex: 1;
  transition: color 0.3s ease;
}

.news-card:hover h3 {
  color: var(--primary-blue);
}

.news-card p {
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0 0 16px 0;
  font-size: 14px;
  flex: 1;
}

.news-footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.news-link svg {
  transition: transform 0.3s ease;
}

.news-link:hover {
  color: var(--primary-blue-dark);
  gap: 12px;
}

.news-link:hover svg {
  transform: translateX(4px);
}

.news-read-time {
  font-size: 13px;
  color: var(--text-light);
}

.news-actions {
  text-align: center;
  margin-top: 48px;
}

.news-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
}

.news-actions .btn svg {
  transition: transform 0.3s ease;
}

.news-actions .btn:hover svg {
  transform: translateX(4px);
}

/* About Section */
.about-section {
  padding: 100px 0 0 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.about-wrapper {
  margin-top: 60px;
}

.about-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 24px 0;
  line-height: 1.3;
}

.about-text p {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.8;
  margin: 0 0 20px 0;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.about-feature-item:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
  transform: translateY(-2px);
}

.about-feature-item svg {
  color: var(--primary-blue);
  flex-shrink: 0;
}

.about-feature-item span {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.about-image {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.05);
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  pointer-events: none;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.value-card {
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.15);
  border-color: var(--primary-blue);
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  color: var(--primary-blue);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
}

.value-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 12px 0;
}

.value-card p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

/* Contact Section */
.contact-section {
  padding: 60px 0;
  background: white;
  position: relative;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-card:hover {
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.12);
  transform: translateY(-2px);
  border-color: var(--primary-blue);
}

.contact-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-card-phone .contact-icon-wrapper {
  background: rgba(14, 165, 233, 0.1);
  color: var(--primary-blue);
}

.contact-card-address .contact-icon-wrapper {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-green);
}

.contact-card-emergency .contact-icon-wrapper {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.contact-card:hover .contact-icon-wrapper {
  transform: scale(1.1);
}

.contact-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.contact-content {
  flex: 1;
}

.contact-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: var(--text-dark);
}

.contact-card p {
  color: var(--text-gray);
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}

.contact-card a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-card a:hover {
  color: var(--primary-blue-dark);
}

.contact-form-wrapper {
  display: flex;
  align-items: flex-start;
}

.contact-form-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  width: 100%;
}

.contact-form-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 24px 0;
  color: var(--text-dark);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
  color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  margin-top: 4px;
}

.btn-submit svg {
  transition: transform 0.3s ease;
}

.btn-submit:hover svg {
  transform: translate(2px, -2px);
}

/* Footer */
.site-footer {
  background: var(--text-dark);
  color: white;
  padding: 40px 0;
  margin-top: 80px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand .brand-title {
  color: white;
  font-size: 18px;
  margin-bottom: 4px;
}

.footer-brand .brand-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.footer-info {
  text-align: right;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.footer-info div {
  margin-bottom: 4px;
}

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

  .nav {
    display: none;
  }

  .hero {
    padding: 60px 0;
    min-height: 500px;
  }

  .hero-boxes {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-nav {
    width: 40px;
    height: 40px;
    font-size: 36px;
  }

  .hero-nav-prev {
    left: 10px;
  }

  .hero-nav-next {
    right: 10px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero .lead {
    font-size: 18px;
  }

  .hero-info {
    flex-direction: column;
    gap: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .features-grid,
  .services-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-card {
    padding: 32px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-info {
    text-align: center;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .contact-form-card h3 {
    font-size: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-card {
    padding: 20px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .about-values {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-text h3 {
    font-size: 28px;
  }

  .teams-equipment-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-item-modern {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }

  .stat-icon {
    margin-bottom: 16px;
  }

  .teams-equipment-text h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 28px;
  }

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

  .section-header h2 {
    font-size: 24px;
  }

  .service-card,
  .feature-card,
  .contact-card {
    padding: 20px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.feature-card,
.news-card,
.contact-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Article Page Styles */
.article-page {
  padding: 40px 0 80px 0;
  background: white;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.back-link:hover {
  color: var(--primary-blue-dark);
  gap: 12px;
}

.article-header {
  margin-bottom: 32px;
}

.article-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--primary-blue);
}

.article-badge-event {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-green);
}

.article-badge-greeting {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-light);
}

.article-date,
.article-read-time {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-category {
  display: inline-block;
  font-size: 11px;
  color: var(--primary-blue);
  background: rgba(14, 165, 233, 0.1);
  padding: 6px 14px;
  border-radius: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  color: var(--text-dark);
  line-height: 1.3;
}

.article-image {
  margin: 40px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.article-image img {
  width: 100%;
  height: auto;
  display: block;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-gray);
}

.article-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 40px 0 20px 0;
  color: var(--text-dark);
}

.article-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 32px 0 16px 0;
  color: var(--text-dark);
}

.article-content p {
  margin: 0 0 24px 0;
}

.article-content ul,
.article-content ol {
  margin: 24px 0;
  padding-left: 32px;
}

.article-content li {
  margin: 12px 0;
  line-height: 1.8;
}

.article-content strong {
  color: var(--text-dark);
  font-weight: 600;
}

.article-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

@media (max-width: 768px) {
  .article-header h1 {
    font-size: 28px;
  }

  .article-content {
    font-size: 16px;
  }

  .article-content h2 {
    font-size: 24px;
  }

  .article-content h3 {
    font-size: 20px;
  }

  .article-image {
    margin: 32px 0;
  }
}

/* Pagination Styles */
.pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: white;
  color: var(--primary-blue);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--primary-blue);
  transition: all 0.3s ease;
}

.pagination-btn:hover:not(.disabled) {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.pagination-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: var(--border-color);
  color: var(--text-light);
}

.pagination-numbers {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pagination-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
  background: white;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.pagination-number:hover:not(.active) {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: translateY(-2px);
}

.pagination-number.active {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .pagination-controls {
    gap: 8px;
  }

  .pagination-btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  .pagination-number {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}
