/* [project]/styles/globals.css [client] (css) */
* {
  box-sizing: border-box;
}

html, body {
  color: #0f172a;
  background: #f4f8fc;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.header {
  color: #fff;
  z-index: 20;
  background: linear-gradient(135deg, #0b6edc, #2f8fff);
  position: sticky;
  top: 0;
  box-shadow: 0 8px 24px #1018281f;
}

.headerRow {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 88px;
  display: flex;
}

.logoBlock {
  flex-direction: column;
  display: flex;
}

.logoTitle {
  font-size: 28px;
  font-weight: 700;
}

.logoSub {
  opacity: .95;
  max-width: 360px;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.35;
}

.menu {
  flex-wrap: wrap;
  gap: 20px;
  display: flex;
}

.menu a {
  opacity: .95;
  font-weight: 600;
}

.menu a:hover {
  opacity: 1;
}

.hero {
  padding: 30px 0 40px;
}

.heroLayout {
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 40px;
  display: grid;
}

.heroBanner {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 14px 30px #0f172a14;
}

@media (max-width: 900px) {
  .heroLayout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .heroText {
    text-align: center;
    max-width: 100%;
    margin: auto;
  }

  .heroText h1 {
    font-size: 36px;
  }

  .heroButtons {
    justify-content: center;
  }
}

.heroBanner {
  border-radius: 20px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto 30px;
  overflow: hidden;
}

.heroTopImage {
  width: 100%;
  height: auto;
  display: block;
}

.heroText {
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.badge {
  color: #0b6edc;
  background: #dbeafe;
  border-radius: 999px;
  margin-bottom: 20px;
  padding: 10px 16px;
  font-weight: 700;
  display: inline-block;
}

.heroText h1 {
  margin: 0 0 18px;
  font-size: 48px;
  line-height: 1.12;
}

.heroText p {
  color: #475569;
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.7;
}

.heroButtons {
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  display: flex;
}

.primaryBtn, .secondaryBtn {
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  padding: 12px 22px;
  font-weight: 700;
  display: inline-flex;
}

.primaryBtn {
  color: #fff;
  background: #0b6edc;
  box-shadow: 0 10px 24px #0b6edc3d;
}

.primaryBtn:hover {
  background: #0957b3;
}

.secondaryBtn {
  color: #0b6edc;
  background: #fff;
  border: 1px solid #cbd5e1;
}

.secondaryBtn:hover {
  background: #f8fafc;
}

.servicesSection, .pageWrap {
  padding: 40px 0 70px;
}

.sectionTitle, .pageTitle {
  text-align: center;
  margin-bottom: 25px;
  font-size: 36px;
}

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

.card, .doctorCard, .bookingCard, .contactsCard {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 14px 30px #0f172a14;
}

.doctorAvatar {
  color: #fff;
  background: linear-gradient(135deg, #0b6edc, #7dd3fc);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  font-size: 26px;
  font-weight: 700;
  display: flex;
}

.doctorSpec {
  color: #0b6edc;
  margin-bottom: 10px;
  font-weight: 700;
}

.bookingCard {
  max-width: 760px;
  margin: auto;
}

.bookingCard h2 {
  margin-bottom: 20px;
  font-size: 32px;
}

.bookingCard label {
  margin-bottom: 10px;
  font-weight: 700;
  display: block;
}

.bookingCard select {
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  width: 100%;
  height: 48px;
  padding: 0 12px;
  font-size: 16px;
}

.mt {
  margin-top: 22px;
}

.selectedDate {
  color: #0b6edc;
  margin-top: 15px;
  font-weight: 700;
}

.react-calendar {
  border-radius: 18px;
  padding: 16px;
  background: #f8fafc !important;
  border: none !important;
  width: 100% !important;
}

.servicesGlass {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  display: grid;
}

.glassCard {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #ffffff40;
  border: 1px solid #fff6;
  border-radius: 20px;
  min-height: 220px;
  padding: 30px;
  transition: all .3s;
  box-shadow: 0 8px 32px #00000026;
}

.glassCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px #00000040;
}

.glassCard h3 {
  margin: 0 0 10px;
}

.glassCard p {
  color: #334155;
  margin: 0;
  line-height: 1.65;
}

.contactsLayout {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 30px;
  display: grid;
}

.contactsCard {
  flex-direction: column;
  height: 100%;
  display: flex;
}

.mapCard {
  background: #fff;
  border-radius: 20px;
  height: 100%;
  padding: 15px;
  display: flex;
  box-shadow: 0 10px 25px #0000001a;
}

.mapBox {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
}

.addressRow {
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  line-height: 1.6;
  display: flex;
}

.routeMiniButton {
  color: #fff;
  background: #0b6edc;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  transition: all .3s;
  display: inline-flex;
}

.routeMiniButton:hover {
  background: #0957b3;
  transform: translateY(-1px);
}

.contactButtons {
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  display: flex;
}

.tgButton, .maxButton {
  color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  height: 48px;
  padding: 12px 22px;
  font-weight: 600;
  transition: all .3s;
  display: inline-flex;
}

.tgButton {
  background: #229ed9;
}

.tgButton:hover {
  background: #1a8ac4;
  transform: translateY(-2px);
}

.maxButton {
  background: #6b5cff;
}

.maxButton:hover {
  background: #5747ff;
  transform: translateY(-2px);
}

.maxButton img {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: block;
}

.newsCard {
  background: #fff;
  border-radius: 24px;
  max-width: 980px;
  margin: 0 auto;
  padding: 32px;
  box-shadow: 0 14px 30px #0f172a14;
}

.newsBadge {
  color: #0b6edc;
  background: #dbeafe;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
}

.newsTitle {
  color: #0f172a;
  margin: 0 0 22px;
  font-size: 34px;
  line-height: 1.2;
}

.newsSubtitle {
  color: #0f172a;
  margin: 28px 0 14px;
  font-size: 24px;
  line-height: 1.3;
}

.newsContent p {
  color: #475569;
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.8;
}

.footer {
  color: #fff;
  text-align: center;
  background: #0f172a;
  margin-top: 40px;
  padding: 24px 0;
}

@media (max-width: 900px) {
  .heroText h1 {
    font-size: 36px;
  }

  .cards, .doctorGrid, .servicesGlass, .contactsLayout {
    grid-template-columns: 1fr;
  }

  .headerRow {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
  }

  .menu {
    gap: 15px;
  }

  .mapBox {
    height: 320px;
    min-height: 320px;
  }

  .contactButtons {
    flex-direction: column;
  }

  .tgButton, .maxButton {
    width: 100%;
    min-width: unset;
  }

  .logoSub {
    max-width: 100%;
  }

  .newsCard {
    padding: 22px;
  }

  .newsTitle {
    font-size: 28px;
  }

  .newsSubtitle {
    font-size: 22px;
  }

  .newsContent p {
    font-size: 17px;
  }
}

.newsPreviewSection {
  padding: 60px 0;
}

.newsPreviewCard {
  text-align: center;
  background: #fff;
  border-radius: 24px;
  max-width: 820px;
  margin: 0 auto;
  padding: 34px;
  box-shadow: 0 14px 30px #0f172a14;
}

.newsPreviewTitle {
  margin: 14px 0 16px;
  font-size: 28px;
}

.newsPreviewText {
  color: #475569;
  margin-bottom: 22px;
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .newsPreviewCard {
    padding: 24px;
  }

  .newsPreviewTitle {
    font-size: 24px;
  }

  .newsPreviewText {
    font-size: 17px;
  }
}

.aboutCard {
  background: #fff;
  border-radius: 24px;
  max-width: 980px;
  margin: 0 auto;
  padding: 32px;
  box-shadow: 0 14px 30px #0f172a14;
}

.aboutTitle {
  color: #0f172a;
  margin: 0 0 22px;
  font-size: 34px;
  line-height: 1.25;
}

.aboutSubtitle {
  color: #0f172a;
  margin: 28px 0 14px;
  font-size: 24px;
  line-height: 1.3;
}

.aboutContent p {
  color: #475569;
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.8;
}

.aboutList {
  color: #475569;
  margin: 0 0 18px 22px;
  padding: 0;
}

.aboutList li {
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .aboutCard {
    padding: 22px;
  }

  .aboutTitle {
    font-size: 28px;
  }

  .aboutSubtitle {
    font-size: 22px;
  }

  .aboutContent p, .aboutList li {
    font-size: 17px;
  }
}

/*# sourceMappingURL=styles_globals_dc36e6c9.css.map*/