/* ==========================================================================
   AI Medicus - Consolidated WordPress Theme Stylesheet
   ========================================================================== */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --container-pad: 140px;
}

/* ===== WORDPRESS-SPECIFIC OVERRIDES ===== */

/* Phone input field inside form */
.phone-input-field {
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  font-family: 'Inter', 'Lexend', sans-serif;
  color: #131313;
  width: 160px;
  padding: 0;
  margin: 0;
}

.phone-input-field::placeholder {
  color: #B0B0B0;
}

/* Form message */
.form-message {
  margin-top: 12px;
  font-size: 14px;
  text-align: center;
  padding: 8px;
  border-radius: 8px;
}

.form-message.success {
  background: #E8F5E9;
  color: #2E7D32;
}

.form-message.error {
  background: #FFE0E0;
  color: #C62828;
}

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

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1B396D;
  transition: all 0.3s;
}

/* Page content */
.page-content {
  padding: 60px 0;
}

.entry-content {
  max-width: 800px;
  line-height: 1.7;
  font-size: 16px;
}

.entry-content h1 {
  font-size: 36px;
  margin-bottom: 24px;
  color: #1A1A1A;
}

/* Legal disclaimer */
.legal-disclaimer {
  background: #FFF8E1;
  padding: 24px 0;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* SEO text section */
.seo-text-section {
  padding: 40px 0;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* WordPress pagination */
.nav-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 40px 0;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 14px;
  color: #3A4563;
  transition: all 0.2s;
}

.page-numbers.current {
  background: #1B396D;
  color: #fff;
}

.page-numbers:hover {
  background: #EDF4FC;
}

/* Fix: WP nav menu list items */
.nav-links li {
  list-style: none;
}

/* Blog listing fix */
.blog-listing {
  padding: 40px 0 80px;
}

.blog-listing h1 {
  font-size: 40px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 40px;
}
.breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-list li {
  display: inline;
  font-size: 14px;
  color: #5D5A73;
  line-height: 1.64;
}

.breadcrumb-list li a {
  color: #5D5A73;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-list li a:hover {
  color: #1580EB;
}

.breadcrumb-list li.current {
  color: #1A1A1A;
}

.breadcrumb-list li .sep {
  color: #A2A2A2;
  margin: 0 4px;
}

/* WordPress image alignment */
.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1em;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
}

/* WordPress screen reader text */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

/* ==========================================================================
   BASE / SHARED STYLES (from styles.css)
   ========================================================================== */

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

body {
  font-family: 'Lexend', sans-serif;
  color: #3A4563;
  background: #fff;
  overflow-x: hidden;
}

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

.page-wrap {
  max-width: 1600px;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}

.container {
  width: 100%;
  padding: 0 var(--container-pad, 140px);
}

/* ===== 1. TOP BAR ===== */
.top-bar {
  background: #fff;
  height: 56px;
}

.top-bar .container {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
  font-size: 13px;
  gap: 20px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 1;
  min-width: 0;
}

.top-bar-left .icon {
  color: #1B396D;
  font-size: 16px;
  flex-shrink: 0;
}

.top-bar-left .address {
  color: #3A4563;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-bar-left .more-link {
  color: #1580EB;
  white-space: nowrap;
  margin-left: 8px;
  cursor: pointer;
}

.breadcrumb {
  background: #fff;
  padding: 10px 0;
}

.breadcrumb .container {
  font-size: 14px;
  color: #5D5A73;
  line-height: 1.64;
}

.breadcrumb a {
  color: #5D5A73;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #1580EB;
}

.breadcrumb .current {
  color: #1A1A1A;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.top-bar-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.top-bar-phone .icon {
  color: #1B396D;
  font-size: 14px;
}

.top-bar-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border: 1.5px solid #FF5050;
  border-radius: 100px;
  color: #FF5050;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.top-bar-btn:hover {
  background: #FF5050;
  color: #fff;
}

/* ===== 2. NAVBAR ===== */
.navbar {
  background: #FCFCFC;
  height: 76px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .container {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #1B396D;
  cursor: pointer;
}

.logo-crescent {
  width: 36px;
  height: 36px;
  position: relative;
  flex-shrink: 0;
}

.logo-crescent svg {
  width: 100%;
  height: 100%;
}

.logo-text span {
  font-size: 12px;
  font-weight: 400;
  color: #1B396D;
  display: block;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 16px;
  font-weight: 400;
  color: #3A4563;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: #1580EB;
}

/* ===== 3. HERO ===== */
.hero {
  background: #FCFCFC;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-left: var(--container-pad, 140px);
  padding-right: 0;
  padding-top: 45px;
  padding-bottom: 90px;
  max-width: 1560px;
}

.hero-left {
  flex: 1;
  min-width: 0;
  max-width: 643px;
  display: flex;
  flex-direction: column;
  padding-top: 51px;
}

.hero-left h1 {
  font-size: 44px;
  font-weight: 600;
  color: #000;
  line-height: normal;
  margin-bottom: 16px;
  width: 640px;
}

.hero-left .subtitle {
  font-size: 18px;
  color: #3A4563;
  line-height: 1.5;
  margin-bottom: 28px;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 46px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #3A4563;
  line-height: 1.5;
}

.hero-bullets li::before {
  content: '';
  width: 12px;
  height: 12px;
  background: #008BFF;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  background: #1B396D;
  color: #FAFAFA;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
  letter-spacing: 0.16px;
  line-height: 24px;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #152d57;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 46px;
  background: transparent;
  color: #1B396D;
  border: 1px solid #1B396D;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
  letter-spacing: 0.16px;
  line-height: 24px;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: #1B396D;
  color: #fff;
}

.hero-right {
  width: 740px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  margin-left: 36px;
}

.hero-photo-wrap {
  position: relative;
  width: 740px;
  height: 501px;
}

.hero-photo-bg {
  position: absolute;
  top: -36px;
  left: -36px;
  width: 656px;
  height: 482px;
  background: #EDF4FC;
  z-index: 0;
}

.hero-photo {
  position: relative;
  width: 740px;
  height: 500px;
  background: #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #888;
  z-index: 1;
  overflow: hidden;
}

.hero-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 108px;
  background: linear-gradient(to top, #00447D 9%, rgba(115,115,115,0) 100%);
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 0 156px 4px;
  z-index: 2;
}

.hero-dots {
  display: flex;
  gap: 12px;
  justify-content: center;
  background: #fff;
  border-radius: 33px;
  padding: 5px 14px;
  z-index: 2;
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #6A6A6A;
}

.hero-dots .dot.active {
  background: #1580EB;
}

.hero-phone-btn {
  position: absolute;
  top: calc(501px + 20px);
  right: 30px;
  width: 100px;
  height: 86px;
  z-index: 5;
  cursor: pointer;
}

/* ===== 4. ACHIEVEMENTS BAR ===== */
.achievements {
  background: #EDF4FC;
  height: 87px;
}

.achievements .container {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #1B396D;
}

.achievement-icon {
  width: 54px;
  height: 54px;
  background: #F3E825;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.achievement-icon img {
  flex-shrink: 0;
  filter: brightness(0);
}

.achievement-item .blue-link {
  color: #1580EB;
  cursor: pointer;
}

/* ===== 5. APPOINTMENT FORM ===== */
.appointment-section {
  background: #FCFCFC;
  padding: 80px 0;
}

.appointment-block {
  background: #1B396D;
  border-radius: 40px;
  padding: 50px 60px;
  display: flex;
  gap: 50px;
  align-items: center;
}

.appointment-photos {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  height: 301px;
}

.appointment-photos .photo-1 {
  width: 258px;
  height: 301px;
  border-radius: 100px 100px 5px 100px;
  overflow: hidden;
  flex-shrink: 0;
}

.appointment-photos .photo-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-col-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.appointment-photos .photo-2 {
  width: 99px;
  height: 157px;
  border-radius: 50px;
  overflow: hidden;
}

.appointment-photos .photo-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.appointment-photos .photo-3 {
  width: 291px;
  height: 132px;
  border-radius: 5px 80px 80px 5px;
  overflow: hidden;
}

.appointment-photos .photo-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.appointment-form {
  flex: 1;
  max-width: 480px;
}

.appointment-form h2 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}

.appointment-form .form-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin-bottom: 28px;
}

.phone-input-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid #DDD;
  border-radius: 99px;
  padding: 0 12px;
  margin-bottom: 16px;
  height: 54px;
  overflow: hidden;
}

.phone-input-left {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 48px;
  border-right: 1px solid #DDD;
  height: 46px;
  flex-shrink: 0;
}

.phone-input-left .phone-icon-red {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.phone-input-left .prefix {
  font-size: 16px;
  color: #131313;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.phone-input-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  padding-left: 48px;
}

.phone-input-right .city-label {
  font-size: 16px;
  color: #131313;
  font-family: 'Inter', sans-serif;
}

.phone-input-right .city-arrow {
  width: 20px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 40px;
}

.phone-input-right .city-arrow svg {
  width: 12px;
  height: 8px;
}

.btn-yellow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 36px;
  background: #FFD000;
  color: #1B396D;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
  transition: background 0.2s;
}

.btn-yellow:hover {
  background: #F3E825;
}

.appointment-buttons {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.appointment-buttons .btn-yellow {
  flex: 1;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 24px;
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: #20bd5a;
}

/* ===== 6. SYMPTOMS HEADER ===== */
.symptoms-header {
  background: #FAFAFA;
  padding: 60px 0 40px;
}

.symptoms-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.symptoms-header-left h2 {
  font-size: 40px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.symptoms-header-left p {
  font-size: 16px;
  color: #3A4563;
  max-width: 500px;
}

.symptoms-header-right {
  width: 418px;
  height: 178px;
  flex-shrink: 0;
  overflow: hidden;
}

.symptoms-header-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== 7. SYMPTOM CARDS ===== */
.symptom-cards {
  background: #EDF4FC;
  padding: 0 0 60px;
}

.symptom-cards .container {
  padding-top: 40px;
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px 28px;
}

.symptom-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: box-shadow 0.2s;
  font-family: 'Manrope', sans-serif;
}

.symptom-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.symptom-card-icon {
  width: 59px;
  height: 59px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.symptom-card-icon img {
  width: 59px;
  height: 59px;
}

.symptom-card-content {
  flex: 1;
  min-width: 0;
}

.symptom-card-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 4px;
}

.symptom-card-content p {
  font-size: 14px;
  color: #3A4563;
  line-height: 1.4;
}

.symptom-card-arrow {
  font-size: 18px;
  color: #1B396D;
  flex-shrink: 0;
}

.symptom-card.cta-card {
  background: #1B396D;
}

.symptom-card.cta-card h4 {
  color: #fff;
}

.symptom-card.cta-card p {
  color: rgba(255,255,255,0.7);
}

.symptom-card.cta-card .symptom-card-icon {
  background: transparent;
}

.symptom-card.cta-card .symptom-card-arrow {
  color: #fff;
}

/* ===== 8. WHY AI-MEDICUS ===== */
.why-section {
  background: #F8F8F8;
  padding: 80px 0;
}

.why-section h2 {
  font-size: 40px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 40px;
}

.why-section .section-subtitle {
  font-size: 16px;
  color: #3A4563;
  margin-bottom: 48px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  height: 282px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.why-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.why-card-icon {
  width: 52px;
  height: 52px;
  background: #F3E825;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.why-card h4 {
  font-size: 22px;
  font-weight: 500;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: rgba(0,0,0,0.6);
  line-height: 1.6;
  flex: 1;
}

.why-card .card-link {
  font-size: 14px;
  color: #1B396D;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  margin-top: auto;
}

.why-card .card-link:hover {
  color: #1580EB;
}

/* ===== 9. CTA BLOCK ===== */
.cta-section {
  background: #FCFCFC;
  padding: 58px 0;
  display: flex;
  justify-content: center;
}

.cta-block {
  background: #1B396D;
  border-radius: 40px;
  padding: 60px 60px 60px 110px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.cta-left {
  flex-shrink: 0;
  width: 459px;
}

.cta-left h2 {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.cta-left p {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 42px;
  line-height: 1.2;
}

.cta-buttons {
  display: flex;
  gap: 10px;
}

.btn-yellow-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 45px;
  background: #FFD000;
  color: #000;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
  transition: background 0.2s;
}

.btn-yellow-lg:hover {
  background: #F3E825;
}

.btn-white-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  background: transparent;
  color: #fff;
  border: 1px solid #E3E6ED;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
  transition: background 0.2s, color 0.2s;
}

.btn-white-outline:hover {
  background: #fff;
  color: #1B396D;
}

.cta-right {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  width: 433px;
  height: 290px;
  align-items: flex-start;
  justify-content: flex-end;
}

.cta-photo-1 {
  width: 201px;
  height: 132px;
  border-radius: 5px 80px 5px 80px;
  align-self: flex-end;
  overflow: hidden;
}

.cta-photo-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-photo-2 {
  width: 178px;
  height: 290px;
  border-radius: 100px;
  overflow: hidden;
}

.cta-photo-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== 10. DOCTORS ===== */
.doctors-section {
  background: #FCFCFC;
  padding: 80px 0;
}

.doctors-section .container {
  max-width: none;
  width: auto;
  padding: 0 var(--container-pad, 140px);
}

.doctors-header {
  margin-bottom: 28px;
}

.doctors-header-left h2 {
  font-size: 40px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.doctors-header-left p {
  font-size: 18px;
  color: #3A4563;
  margin-bottom: 24px;
}

.doctors-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 485px;
}

.city-toggle {
  display: flex;
  align-items: center;
}

.city-toggle button {
  padding: 6px 24px;
  height: 36px;
  border: 1px solid #A2A2A2;
  background: transparent;
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  cursor: pointer;
  transition: all 0.2s;
}

.city-toggle button:first-child {
  border-radius: 99px 0 0 99px;
  border-right: none;
}

.city-toggle button:last-child {
  border-radius: 0 66px 66px 0;
  border-left: none;
}

.city-toggle button.active {
  background: #1B396D;
  color: #fff;
  border-color: #1B396D;
  font-weight: 600;
}

.nav-arrows {
  display: flex;
  gap: 12px;
}

.nav-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #1B396D;
  background: #1B396D;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: all 0.2s;
}

.nav-arrow svg {
  width: 12px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.doctors-grid {
  display: flex;
  gap: 50px;
}

.doctor-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 0 14px rgba(0,0,0,0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  padding: 16px 18px 22px;
}

.doctor-photo-area {
  display: flex;
  gap: 38px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.doctor-photo {
  width: 151px;
  height: 164px;
  background: #D9D9D9;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 12px;
  flex-shrink: 0;
  position: relative;
}

.doctor-spec-icons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.doctor-spec-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.doctor-spec-icon img {
  width: 100%;
  height: 100%;
}

.doctor-info {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.doctor-info h4 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.doctor-info .doctor-desc {
  font-size: 14px;
  color: #535353;
  line-height: 1.5;
  margin-bottom: 8px;
}

.doctor-info .doctor-exp {
  font-size: 14px;
  color: #535353;
  font-weight: 600;
  margin-bottom: 16px;
}

.doctor-info .doctor-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.doctor-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1.5px solid #1B396D;
  border-radius: 100px;
  color: #1B396D;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
  transition: all 0.2s;
}

.doctor-book-btn:hover {
  background: #1B396D;
  color: #fff;
}

.doctor-profile-link {
  font-size: 14px;
  color: #1580EB;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

/* ===== 11. PRICING + REVIEWS ===== */
.pricing-section {
  background: #EDF4FC;
  padding: 80px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.pricing-left h2 {
  font-size: 28px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 24px;
}

.price-list {
  list-style: none;
  margin-bottom: 24px;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #E0E5ED;
  font-size: 16px;
}

.price-list li .price-name {
  color: #1A1A1A;
}

.price-list li .price-value {
  font-weight: 600;
  color: #1B396D;
  white-space: nowrap;
}

.price-info-box {
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 14px;
  color: #3A4563;
  line-height: 1.5;
  margin-bottom: 24px;
  border-left: 3px solid #FFD000;
}

.pricing-buttons {
  display: flex;
  gap: 12px;
}

.reviews-card {
  background: #fff;
  border-radius: 15px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.reviews-header h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1A1A1A;
}

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

.google-rating .stars {
  color: #FFD000;
  font-size: 18px;
}

.google-rating .rating-num {
  font-size: 18px;
  font-weight: 600;
  color: #1A1A1A;
}

.review-item {
  padding: 16px 0;
  border-top: 1px solid #F0F0F0;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: #D9D9D9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #888;
}

.review-name {
  font-size: 15px;
  font-weight: 600;
  color: #1A1A1A;
}

.review-date {
  font-size: 12px;
  color: #999;
}

.review-text {
  font-size: 14px;
  color: #3A4563;
  line-height: 1.6;
}

.review-stars {
  color: #FFD000;
  font-size: 14px;
  margin-bottom: 6px;
}

/* Blue CTA bar */
.blue-cta-bar {
  background: #1B396D;
  border-radius: 40px;
  padding: 30px 35px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.blue-cta-avatar {
  width: 169px;
  height: 169px;
  flex-shrink: 0;
  background: #D9D9D9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 14px;
  overflow: hidden;
}

.blue-cta-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.blue-cta-title {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.32px;
}

.blue-cta-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-cta-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 29px;
  background: #FFD000;
  color: #000;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 400;
  border: none;
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 38px;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
  gap: 14px;
}

.btn-cta-outline svg,
.btn-cta-outline img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ===== 12. Q&A ===== */
.qa-section {
  background: #F8F8F8;
  padding: 80px 0;
}

.qa-section h2 {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
}

.qa-section .section-subtitle {
  font-size: 18px;
  color: #000;
  margin-bottom: 0;
}

.qa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
}

.qa-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.qa-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
}

.qa-question {
  padding: 20px 20px 0;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  position: relative;
  padding-right: 56px;
}

.qa-q-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.qa-icon {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  border: 2px solid #3A4563;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #3A4563;
  flex-shrink: 0;
  font-weight: 400;
}

.qa-toggle-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1B396D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
  right: 20px;
  top: 20px;
}

.qa-toggle-btn::after {
  content: '';
  width: 14px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
}

.qa-card:not(.open) .qa-toggle-btn::before {
  content: '';
  width: 3px;
  height: 14px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
}

.qa-card .qa-divider {
  height: 1px;
  background: #E0E0E0;
  margin: 14px 20px 0;
}

.qa-answer {
  display: none;
}

.qa-card.open .qa-answer {
  display: block;
  padding: 0 20px 20px;
}

.qa-card.open .qa-question {
  padding-bottom: 0;
}

.qa-card.open .qa-question::after {
  content: '';
  display: block;
}

.qa-answer-inner {
  background: #F3F5F4;
  border-radius: 15px;
  padding: 12px 16px;
  font-size: 16px;
  color: #000;
  line-height: 1.5;
  font-weight: 400;
  margin-top: 14px;
}

.qa-cta-card {
  border: 1px solid #C0C0C0;
  border-radius: 15px;
  padding: 20px 36px;
  text-align: center;
}

.qa-cta-card h4 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 26px;
}

.btn-qa-call {
  background: #1B396D;
  color: #fff;
  border: none;
  border-radius: 15px;
  padding: 12px 47px;
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  cursor: pointer;
}

/* ===== 13. CONTACTS MAP ===== */
.contacts-section {
  position: relative;
  min-height: 911px;
  overflow: visible;
}

.map-placeholder {
  width: 100%;
  height: 911px;
  background: url('images/map.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-bg-text {
  color: rgba(0,0,0,0.15);
  font-size: 48px;
  font-weight: 600;
}

.map-pin {
  position: absolute;
  top: 35%;
  right: 35%;
}

.contacts-card {
  position: absolute;
  top: 80px;
  left: var(--container-pad, 140px);
  width: 619px;
  background: #fff;
  border-radius: 15px;
  padding: 80px 69px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  z-index: 10;
}

.contacts-card h2 {
  font-size: 40px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 20px;
}

.contacts-city-toggle {
  display: flex;
  background: #EDF4FC;
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 24px;
  width: fit-content;
}

.contacts-city-toggle button {
  padding: 10px 24px;
  border: none;
  background: transparent;
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #3A4563;
  cursor: pointer;
}

.contacts-city-toggle button.active {
  background: #1B396D;
  color: #fff;
  border-radius: 100px;
}

.contacts-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.loc-icon-yellow {
  width: 44px;
  height: 44px;
  background: #F3E825;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contacts-address .addr-text {
  font-size: 16px;
  color: #000;
  line-height: 1.5;
}

.contacts-more {
  color: #1580EB;
  font-size: 18px;
  margin-bottom: 24px;
  margin-left: 60px;
  cursor: pointer;
}

.contacts-call-center {
  margin-bottom: 24px;
}

.contacts-social-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-social-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.cs-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cs-text {
  font-size: 20px;
  color: #1580EB;
  line-height: 2.4;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1580EB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.social-icon:hover {
  opacity: 0.8;
}

.social-icon.whatsapp {
  background: #25D366;
}

.social-icon.instagram {
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
}

.social-icon.facebook {
  background: #1877F2;
}

.social-icon.email {
  background: #1B396D;
}

/* ===== 14. FOOTER ===== */
.footer {
  background: #1B396D;
  padding: 80px 0 0;
  color: #fff;
}

.footer .container {
  display: grid;
  grid-template-columns: 351px 1fr 256px;
  gap: 58px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.footer-logo-crescent svg {
  width: 32px;
  height: 32px;
}

.footer-desc {
  font-size: 18px;
  font-weight: 300;
  color: #D1D1D1;
  line-height: 28px;
  margin-bottom: 46px;
}

.footer-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-stat {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

.footer-stat .stat-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.footer-middle {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.footer-col h5 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0;
}

.footer-col ul li a {
  font-size: 16px;
  font-weight: 300;
  color: #D1D1D1;
  line-height: 1.5;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  gap: 0 18px;
}

.footer-services-grid li {
  margin-bottom: 0;
}

.footer-addresses {
  list-style: none;
}

.footer-addresses li {
  font-size: 16px;
  font-weight: 400;
  color: #D1D1D1;
  margin-bottom: 25px;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}

.footer-addresses li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 15px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23F3E825' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.footer-right {
  width: 256px;
}

.footer-right h5 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
}

.footer-nav {
  list-style: none;
  margin-bottom: 36px;
}

.footer-nav li {
  margin-bottom: 0;
}

.footer-nav li a {
  font-size: 16px;
  font-weight: 300;
  color: #D1D1D1;
  line-height: 2;
  transition: color 0.2s;
}

.footer-nav li a:hover {
  color: #fff;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #D1D1D1;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social-link:hover {
  color: #fff;
}

.footer-social-link .fsi {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 29px;
  background: #FFD000;
  color: #000;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 400;
  border: none;
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
}

.footer-copyright {
  background: #1F2332;
  margin-top: 40px;
  padding: 18px var(--container-pad, 140px);
  font-size: 14px;
  color: #9B9B9B;
  font-weight: 400;
  line-height: 21px;
}


/* ==========================================================================
   CATALOG PAGE (catalog.html)
   ========================================================================== */

/* Breadcrumb overrides for catalog */
.breadcrumb span {
  color: #5d5a73;
}

/* Hero catalog */
.catalog-hero {
  background: #fff;
  padding: 18px 0 48px;
  position: relative;
}

.catalog-hero .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.catalog-hero-left {
  width: 643px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
}

.catalog-hero-left h1 {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  line-height: normal;
  margin-bottom: 20px;
  width: 640px;
}

.catalog-hero-left .subtitle {
  font-size: 18px;
  color: #3A4563;
  line-height: 1.5;
  margin-bottom: 0;
}

.catalog-hero-buttons {
  display: flex;
  gap: 24px;
  align-items: center;
}

.catalog-hero-right {
  width: 488px;
  display: flex;
  gap: 10px;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
}

.catalog-call-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 86px;
  z-index: 5;
  cursor: pointer;
}

.collage-col-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.collage-col-left-top {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  justify-content: flex-end;
}

.collage-shapes {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.collage-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1580EB;
}

.collage-shape-dark {
  width: 100%;
  height: 65px;
  border-radius: 40px 5px 40px 5px;
  background: #1B396D;
}

.collage-img-1 {
  flex: 1;
  height: 177px;
  border-radius: 40px;
  overflow: hidden;
}

.collage-img-2 {
  width: 100%;
  height: 103px;
  border-radius: 50px 5px 50px 5px;
  overflow: hidden;
}

.collage-img-3 {
  width: 220px;
  height: 340px;
  flex-shrink: 0;
  border-radius: 80px 5px 80px 5px;
  overflow: hidden;
}

.collage-img-1 img,
.collage-img-2 img,
.collage-img-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Filters section */
.catalog-filters-section {
  background: #F8F8F8;
  padding: 48px 0;
}

.catalog-filters-bar {
  background: #fff;
  border-radius: 15px;
  padding: 19px 35px;
  display: inline-flex;
  align-items: center;
  gap: 36px;
  margin: 0 auto 40px;
  font-family: 'Manrope', sans-serif;
}

.catalog-filters-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.filter-label {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.filter-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
}

.filter-item-label {
  color: #000;
  font-weight: 400;
}

.filter-item-value {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
}

.filter-item-value .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 12px;
}

.filter-item-value .arrow svg {
  width: 12px;
  height: 8px;
}

/* Category tabs */
.catalog-tabs {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.catalog-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 100px;
  background: #fff;
  border: 1.5px solid #E3E6ED;
  font-size: 16px;
  font-weight: 500;
  color: #3A4563;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Lexend', sans-serif;
  white-space: nowrap;
}

.catalog-tab:hover {
  border-color: #1B396D;
  color: #1B396D;
}

.catalog-tab.active {
  background: #1B396D;
  color: #fff;
  border-color: #1B396D;
}

.catalog-tab-icon {
  width: 59px;
  height: 50px;
  background: #F4F9FF;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.catalog-tab.active .catalog-tab-icon {
  background: rgba(255,255,255,0.15);
}

/* Service cards grid */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 62px 31px;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 404px;
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.service-card-img {
  width: 100%;
  aspect-ratio: 411/180;
  background: #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 14px;
  flex-shrink: 0;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 16px;
}

.service-card-top {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.service-card-category-icon {
  width: 59px;
  height: 50px;
  flex-shrink: 0;
}

.service-card-category-icon img {
  width: 100%;
  height: 100%;
}

.service-card-info {
  flex: 1;
  min-width: 0;
}

.service-card-info h4 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-card-info p {
  font-size: 14px;
  color: #535353;
  line-height: 1.4;
}

.service-card-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-card-bottom .btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 43px;
  background: #1B396D;
  color: #FAFAFA;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
  box-shadow: 2px 2px 6px rgba(27,57,109,0.5);
  transition: background 0.2s;
  white-space: nowrap;
}

.service-card-bottom .btn-book:hover {
  background: #152d57;
}

.service-card-bottom .btn-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1.5px solid #1B396D;
  color: #1B396D;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
  transition: all 0.2s;
  white-space: nowrap;
}

.service-card-bottom .btn-detail:hover {
  background: #1B396D;
  color: #fff;
}

/* Conditions section */
.conditions-section {
  background: #F8F8F8;
  padding: 80px 0;
}

.conditions-section h2 {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  margin-bottom: 40px;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px 40px;
}

.condition-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  height: 230px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.2s;
}

.condition-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.condition-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.condition-card-icon img {
  width: 100%;
  height: 100%;
}

.condition-card h4 {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  line-height: 1.2;
  margin-top: auto;
}

/* CTA "Не знаете что выбрать?" inline */
.condition-card.cta-condition {
  background: #1B396D;
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  height: 290px;
  padding: 40px;
}

.cta-condition-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-condition-left h3 {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.cta-condition-left p {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.2;
}

.cta-condition-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cta-condition-right {
  width: 433px;
  height: 290px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-shrink: 0;
}

.cta-img-left {
  width: 201px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cta-img-left-shape {
  width: 100%;
  height: 132px;
  background: #D9D9D9;
  border-radius: 5px 80px 80px 5px;
}

.cta-img-right-shape {
  width: 222px;
  height: 290px;
  background: #D9D9D9;
  border-radius: 5px 5px 80px 80px;
  flex-shrink: 0;
}


/* ==========================================================================
   SERVICE PAGE (service.html)
   ========================================================================== */

/* Breadcrumb overrides for service */
.breadcrumb .sep {
  color: #A2A2A2;
}

/* Показания section */
.indications-section {
  background: #555;
  padding: 80px var(--container-pad, 140px);
  position: relative;
  overflow: hidden;
}

.indications-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/pokazaniya-bg.png') center/cover no-repeat;
  opacity: 0.4;
  z-index: 0;
}

.indications-section > * {
  position: relative;
  z-index: 1;
}

.indications-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 85px;
}

.indications-left {
  width: 768px;
}

.indications-section h2 {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 52px;
  letter-spacing: -0.4px;
}

.indications-subtitle {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 32px;
  letter-spacing: -0.24px;
}

.indications-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 87px;
  margin-bottom: 29px;
}

.indication-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.indication-item-icon {
  width: 59px;
  height: 59px;
  flex-shrink: 0;
}

.indication-item-icon img {
  width: 100%;
  height: 100%;
}

.indication-item-text {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.18px;
  line-height: 1.2;
  width: 252px;
}

.indications-note {
  background: #FDFFD2;
  border-radius: 15px;
  padding: 8px 15px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: #000;
  letter-spacing: -0.14px;
}

.indications-note-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.indications-photos {
  width: 435px;
  height: 493px;
  position: relative;
  flex-shrink: 0;
}

.indications-photo-big {
  position: absolute;
  left: 53px;
  top: 94px;
  width: 382px;
  height: 399px;
  border-radius: 500px;
  border: 8px solid #EDF4FC;
  background: #D9D9D9;
  overflow: hidden;
}

.indications-photo-small {
  position: absolute;
  left: 0;
  top: 0;
  width: 210px;
  height: 210px;
  border-radius: 500px;
  border: 8px solid #EDF4FC;
  background: #D9D9D9;
  overflow: hidden;
}

.indications-photo-big img,
.indications-photo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Противопоказания */
.contra-section {
  margin-top: 85px;
}

.contra-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.24px;
  margin-bottom: 19px;
}

.contra-desc {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  letter-spacing: -0.16px;
  margin-bottom: 37px;
}

.contra-items {
  display: flex;
  gap: 99px;
  margin-bottom: 37px;
}

.contra-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contra-item-icon {
  width: 59px;
  height: 59px;
  flex-shrink: 0;
}

.contra-item-icon img {
  width: 100%;
  height: 100%;
}

.contra-item-text {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.18px;
  line-height: 1.2;
  width: 252px;
}

.contra-note {
  background: #FFE0E0;
  border-radius: 15px;
  padding: 8px 15px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: #000;
  letter-spacing: -0.14px;
}

/* Steps section */
.steps-section {
  background: #EDF4FC;
  padding: 100px var(--container-pad, 140px);
  position: relative;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 75px;
  position: relative;
}

.steps-row:last-child {
  margin-bottom: 0;
}

.step-card {
  display: flex;
  gap: 46px;
  align-items: flex-start;
}

.step-photo {
  width: 271px;
  height: 181px;
  border-radius: 0 25px 0 25px;
  background: #D9D9D9;
  flex-shrink: 0;
  overflow: hidden;
}

.step-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-content {
  width: 293px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-badge {
  display: flex;
  align-items: center;
  gap: 18px;
}

.step-badge-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.step-badge-icon img {
  width: 100%;
  height: 100%;
}

.step-badge-label {
  font-size: 16px;
  color: #000;
  text-transform: uppercase;
  font-weight: 400;
}

.step-text {
  color: #222;
  line-height: 1.4;
}

.step-text strong {
  font-size: 22px;
  font-weight: 700;
}

.step-text span {
  font-size: 18px;
  font-weight: 400;
}

.step-arrow {
  position: absolute;
  left: 50%;
  bottom: -75px;
  transform: translateX(-50%);
  width: 40px;
  height: 75px;
}

.step-arrow img {
  width: 100%;
  height: 100%;
}

.steps-row-single {
  display: flex;
  justify-content: center;
}

/* Длительность приёма */
.duration-section {
  background: #FCFCFC;
  padding: 64px var(--container-pad, 140px);
}

.duration-layout {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.duration-photos {
  width: 644px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 387px;
}

.duration-photos-top {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex: 1;
}

.duration-photo-1 {
  width: 388px;
  height: 288px;
  border-radius: 40px 5px 40px 5px;
  background: #D9D9D9;
  overflow: hidden;
}

.duration-photo-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.duration-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #2DDFCC;
  flex-shrink: 0;
}

.duration-photo-2 {
  width: 100%;
  height: 177px;
  border-radius: 5px 80px 5px 80px;
  background: #D9D9D9;
  overflow: hidden;
}

.duration-photo-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.duration-content {
  width: 539px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.duration-title {
  font-size: 32px;
  color: #000;
  letter-spacing: -0.32px;
  line-height: 1.35;
  width: 492px;
}

.duration-title strong {
  font-weight: 700;
}

.duration-prep-title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.24px;
  line-height: 1.35;
  margin-bottom: 24px;
}

.duration-prep-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.duration-prep-item {
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 18px;
  color: #000;
  letter-spacing: -0.18px;
  line-height: 1.2;
}

.duration-prep-dot {
  width: 16px;
  height: 16px;
  border-radius: 20px;
  background: #F3E825;
  flex-shrink: 0;
}

.duration-note {
  background: #1B396D;
  border-radius: 0 0 25px 0;
  border-top-left-radius: 25px;
  padding: 16px 47px 28px;
  color: #fff;
  width: 100%;
}

.duration-note strong {
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.duration-note span {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.service-info-photos .photo-2 {
  background: #D9D9D9;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 14px;
}

.service-info-photos .photo-3 {
  background: #D9D9D9;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 14px;
}

/* Результат section */
.results-section {
  background: #FCFCFC;
  padding: 72px var(--container-pad, 140px);
}

.results-section h2 {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.4px;
  margin-bottom: 52px;
}

.results-subtitle {
  font-size: 24px;
  color: #000;
  letter-spacing: -0.24px;
  margin-bottom: 52px;
}

.results-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.results-row {
  display: flex;
  gap: 30px;
}

.result-card {
  background: #EDF4FC;
  border-radius: 20px;
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 248px;
}

.result-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.result-card-icon img {
  width: 100%;
  height: 100%;
}

.result-card h4 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.24px;
  line-height: 1.2;
}

.result-card p {
  font-size: 18px;
  color: #000;
  line-height: 1.5;
  letter-spacing: -0.24px;
}

.result-card-dark {
  background: #1B396D;
  border-radius: 20px;
  padding: 31px 40px;
  width: 625px;
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.result-card-dark .star-icon {
  font-size: 32px;
}

.result-card-dark p {
  font-size: 18px;
  color: #fff;
  line-height: 1.5;
  letter-spacing: -0.18px;
}

.results-photo {
  background: #D9D9D9;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 13px;
}

.results-photo-1 {
  height: 220px;
}

.results-photo-2 {
  height: 180px;
}

/* Equipment section */
.equipment-section {
  background: #EDF4FC;
  padding: 80px var(--container-pad, 140px);
}

.equipment-section h2 {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.4px;
  margin-bottom: 38px;
}

.equipment-subtitle {
  font-size: 24px;
  color: #000;
  letter-spacing: -0.24px;
  margin-bottom: 40px;
}

.equipment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 71px;
  margin-bottom: 40px;
}

.equipment-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.equipment-item-photo {
  width: 285px;
  height: 185px;
  border-radius: 25px;
  background: #D9D9D9;
  flex-shrink: 0;
  overflow: hidden;
}

.equipment-item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.equipment-item-text {
  flex: 1;
}

.equipment-item-text h4 {
  font-size: 24px;
  font-weight: 600;
  color: #222;
  letter-spacing: 0.24px;
  line-height: 1.5;
  margin-bottom: 4px;
}

.equipment-item-text p {
  font-size: 18px;
  font-weight: 400;
  color: #222;
  line-height: 1.5;
  letter-spacing: 0.24px;
}

.equipment-note {
  background: #FDFFD2;
  border-radius: 15px;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: #000;
  letter-spacing: -0.16px;
}

.equipment-note-icon {
  font-size: 24px;
  flex-shrink: 0;
}

/* Сертификаты и лицензии (service page variant) */
.cert-section {
  background: #FAFBFC;
  padding: 70px var(--container-pad, 140px);
  position: relative;
  overflow: hidden;
}

.cert-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.cert-photos {
  width: 628px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.cert-photos-stack {
  position: relative;
  width: 628px;
  height: 470px;
}

.cert-img-1 {
  position: absolute;
  left: 0;
  top: 70px;
  width: 231px;
  height: 330px;
  background: #E8E0D0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 12px;
}

.cert-img-2 {
  position: absolute;
  left: 156px;
  top: 0;
  width: 328px;
  height: 470px;
  background: #E8E0D0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 12px;
  z-index: 1;
}

.cert-img-3 {
  position: absolute;
  left: 379px;
  top: 57px;
  width: 249px;
  height: 353px;
  background: #E8E0D0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 12px;
}

.cert-dots {
  display: flex;
  gap: 12px;
}

.cert-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #6A6A6A;
}

.cert-dots .dot.active {
  background: #1580EB;
}

.cert-right {
  width: 543px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.cert-right h2 {
  font-size: 40px;
  font-weight: 600;
  color: #333;
  line-height: normal;
}

.cert-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cert-stat {
  display: flex;
  align-items: center;
  gap: 17px;
}

.cert-stat-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
}

.cert-stat-icon img {
  width: 100%;
  height: 100%;
}

.cert-stat span {
  font-size: 18px;
  color: #000;
  font-weight: 400;
}

.cert-thumbs {
  display: flex;
  gap: 16px;
}

.cert-thumb {
  width: 120px;
  height: 160px;
  background: #D9D9D9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 12px;
}


/* ==========================================================================
   DOCTOR PAGE (doctor.html)
   ========================================================================== */

/* Doctor Profile Header */
.doctor-profile {
  background: #fff;
  padding: 35px 0 70px;
}

.doctor-profile .container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.doctor-profile-photo {
  width: 501px;
  height: 569px;
  background: #D9D9D9;
  border-radius: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 16px;
}

.doctor-profile-info {
  display: flex;
  flex-direction: column;
  gap: 45px;
  width: 719px;
}

.doctor-profile-bio {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.doctor-profile-fio {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.doctor-profile-name-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.doctor-profile-name {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
}

.doctor-profile-specialty {
  font-size: 20px;
  font-weight: 600;
  color: #1B396D;
  line-height: 1.5;
}

.doctor-profile-desc {
  font-size: 18px;
  font-weight: 400;
  color: #3A4563;
  line-height: 1.5;
}

.doctor-education {
  background: #EDF4FC;
  border-radius: 15px;
  padding: 32px 24px 27px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #3A4563;
  font-size: 18px;
  line-height: 1.5;
}

.doctor-education .year {
  font-size: 24px;
  font-weight: 600;
  color: #1B396D;
}

.doctor-profile-buttons {
  display: flex;
  gap: 24px;
  align-items: center;
}

/* Certificates Section */
.certificates-section {
  background: #FAFBFC;
  padding: 70px 0;
}

.certificates-section .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.certificates-left {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  width: 628px;
}

.certificates-gallery {
  width: 628px;
  height: 470px;
  position: relative;
}

.cert-img {
  position: absolute;
  background: #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 12px;
}

/* Directions Section */
.directions-section {
  background: #F8F8F8;
  padding: 48px 0;
}

.directions-section .container {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.directions-title {
  font-size: 40px;
  font-weight: 600;
  color: #333;
}

.directions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px 40px;
}

.direction-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  height: 230px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.2s;
}

.direction-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.direction-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.direction-card-icon img {
  width: 100%;
  height: 100%;
}

.direction-card-icon.with-bg {
  background: #F3E825;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.direction-card-icon.with-bg img {
  width: 24px;
  height: 24px;
}

.direction-card-title {
  font-size: 24px;
  font-weight: 400;
  color: #000;
  line-height: 1.2;
  letter-spacing: -0.24px;
}

/* Procedures Section */
.procedures-section {
  background: #fff;
  padding: 48px 0;
}

.procedures-section .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.procedures-title {
  font-size: 40px;
  font-weight: 600;
  color: #333;
}

.procedures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 62px 31px;
}

.procedure-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 404px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.procedure-card-img {
  width: 100%;
  height: 180px;
  flex-shrink: 0;
  overflow: hidden;
}

.procedure-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.procedure-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 16px;
}

.procedure-card-top {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.procedure-card-icon {
  width: 59px;
  height: 50px;
  flex-shrink: 0;
}

.procedure-card-icon img {
  width: 100%;
  height: 100%;
}

.procedure-card-text h4 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.procedure-card-text p {
  font-size: 14px;
  color: #535353;
}

.procedure-card-actions {
  display: flex;
  gap: 12px;
}

.btn-procedure-primary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  background: #1B396D;
  color: #FAFAFA;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
  box-shadow: 2px 2px 6px rgba(27,57,109,0.5);
  transition: background 0.2s;
}

.btn-procedure-primary:hover {
  background: #152d57;
}

.btn-procedure-secondary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  background: transparent;
  color: #1B396D;
  border: 1px solid #1B396D;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
  transition: background 0.2s, color 0.2s;
}

.btn-procedure-secondary:hover {
  background: #1B396D;
  color: #fff;
}

/* Reviews Section */
.doctor-reviews-section {
  background: #F8F8F8;
  padding: 120px var(--container-pad, 140px);
}

.doctor-reviews-section .dr-reviews-inner {
  display: flex;
  flex-direction: column;
  gap: 128px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.reviews-layout {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: flex-start;
}

.reviews-decoration {
  width: 548px;
  height: 490px;
  position: relative;
  flex-shrink: 0;
}

.reviews-shapes {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  left: 0;
}

.review-shape-1 {
  width: 150px;
  height: 286px;
  background: #3167D9;
  border-radius: 5px 80px 5px 80px;
}

.review-shape-2 {
  width: 150px;
  height: 106px;
  background: #1B396D;
  border-radius: 40px 5px 40px 5px;
}

.review-avatar-circle {
  position: absolute;
  border-radius: 100px;
  background: #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 10px;
  overflow: hidden;
}

.review-avatar-1 {
  width: 132px; height: 132px;
  left: 170px; top: 153px;
}

.review-avatar-2 {
  width: 107px; height: 107px;
  left: 302px; top: 46px;
}

.review-avatar-3 {
  width: 80px; height: 80px;
  left: 90px; top: 48px;
}

.review-avatar-4 {
  width: 80px; height: 80px;
  left: 435px; top: 164px;
}

.review-avatar-5 {
  width: 80px; height: 80px;
  left: 340px; top: 285px;
}

.dr-review-card {
  width: 624px;
  flex-shrink: 0;
}

.dr-review-card .reviews-card {
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.dr-review-card .reviews-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.dr-review-card .reviews-header h3 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

.dr-review-card .more-reviews-link {
  font-size: 14px;
  color: #008BFF;
  text-decoration: none;
  white-space: nowrap;
}

.dr-review-card .more-reviews-link:hover {
  text-decoration: underline;
}

.dr-review-card .review-avatar {
  width: 64px;
  height: 63px;
  font-size: 12px;
}

.dr-review-card .review-author {
  gap: 12px;
}

.dr-review-card .review-meta {
  font-size: 12px;
  color: #999;
}


/* ==========================================================================
   SYMPTOM PAGE (symptom.html)
   ========================================================================== */

.symptom-hero {
  background: #FCFCFC;
  position: relative;
  overflow: hidden;
}

.symptom-hero .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  padding-left: var(--container-pad, 140px);
  padding-right: 0;
  padding-top: 45px;
  padding-bottom: 90px;
  max-width: 1600px;
}

.symptom-hero-left {
  flex: 1;
  min-width: 0;
  max-width: 643px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 51px;
}

.symptom-hero-left h1 {
  font-size: 44px;
  font-weight: 600;
  color: #1A1A1A;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 640px;
}

.symptom-hero-left .subtitle {
  font-size: 18px;
  color: #3A4563;
  line-height: 1.5;
  margin-bottom: 28px;
}

.symptom-hero-note {
  background: #FDFFD2;
  border-radius: 15px;
  padding: 11px 15px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
  max-width: 620px;
}

.symptom-hero-note .note-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
}

.symptom-hero-note p {
  font-size: 14px;
  color: #000;
  line-height: 1.2;
  letter-spacing: -0.14px;
}

.symptom-hero-buttons {
  display: flex;
  gap: 24px;
  align-items: center;
}

.symptom-hero-right {
  width: 740px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 36px;
}

.symptom-hero-photo-wrap {
  position: relative;
  width: 100%;
  height: 500px;
}

.symptom-hero-photo-bg {
  position: absolute;
  top: -36px;
  left: -36px;
  width: 656px;
  height: 482px;
  background: #EDF4FC;
  z-index: 0;
}

.symptom-hero-photo {
  position: relative;
  width: 100%;
  height: 500px;
  background: #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #888;
  z-index: 1;
}

/* ===== WHAT IT COULD BE ===== */
.what-section {
  background: #F4F9FF;
  padding: 82px var(--container-pad, 140px) 50px;
}

.what-layout {
  display: flex;
  gap: 35px;
  align-items: flex-start;
}

.what-left {
  width: 686px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 62px;
}

.what-left h2 {
  font-size: 40px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
}

.what-causes-title {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 30px;
}

.what-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.what-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 20px;
  color: #222;
  line-height: 1.4;
  font-family: 'Lexend', sans-serif;
}

.what-list li .item-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.what-note {
  background: #1B396D;
  border-radius: 0 0 25px 0;
  border-top-left-radius: 25px;
  padding: 30px 32px 30px 47px;
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.18px;
}

.what-right {
  width: 556px;
  height: 712px;
  flex-shrink: 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-end;
}

.what-right-col {
  width: 271px;
  height: 100%;
  position: relative;
}

.what-circle-blue {
  position: absolute;
  left: 173px;
  top: 228px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1580EB;
}

.what-circle-green {
  position: absolute;
  left: 135px;
  top: 190px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2DDFCC;
}

.what-photo-small {
  position: absolute;
  left: 0;
  top: 543px;
  width: 258px;
  height: 169px;
  border-radius: 5px 80px 5px 80px;
  background: #D9D9D9;
  overflow: hidden;
}

.what-photo-mid {
  position: absolute;
  left: 0;
  top: 334px;
  width: 258px;
  height: 180px;
  border-radius: 0 75px 0 75px;
  background: #D9D9D9;
  overflow: hidden;
}

.what-photo-tall {
  width: 288px;
  height: 100%;
  border-radius: 100px;
  background: #D9D9D9;
  overflow: hidden;
  flex-shrink: 0;
}

/* ===== URGENCY SECTION ===== */
.urgency-section {
  background: #F4F9FF;
  padding: 80px 0;
}

.urgency-section h2 {
  font-size: 40px;
  font-weight: 600;
  color: #222;
  margin-bottom: 16px;
  letter-spacing: -0.4px;
}

.urgency-section > .container > h3 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 40px;
}

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

.urgency-card {
  background: #F4F9FF;
  border-radius: 24px;
  padding: 64px;
  height: 230px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  box-shadow: -4px -4px 8px 0px #fff, 4px 4px 4px 0px rgba(25, 90, 255, 0.15);
  overflow: hidden;
}

.urgency-card-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.urgency-card-icon img {
  width: 100%;
  height: 100%;
}

.urgency-card p {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #031E2D;
  line-height: 28px;
  max-width: 265px;
}

.urgency-cta-card {
  background: #1B396D;
  border-radius: 15px;
  padding: 28px 27px 37px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}

.urgency-cta-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #FAFAFA;
  line-height: 32px;
}

.urgency-cta-card .cta-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #FAFAFA;
  letter-spacing: 0.16px;
}

.urgency-warning {
  background: #FDFFD2;
  border-radius: 15px;
  padding: 11px 15px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.urgency-warning .note-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
}

.urgency-warning p {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
  letter-spacing: -0.14px;
}

/* ===== WHEN TO SEE DOCTOR (photo+text) ===== */
.exam-alt-section {
  background: #F8F8F8;
  padding: 82px 0 50px var(--container-pad, 140px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.exam-alt-left {
  flex-shrink: 0;
  width: 588px;
}

.exam-alt-left h2 {
  font-size: 40px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
  margin-bottom: 20px;
}

.exam-alt-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 44px;
}

.exam-alt-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 44px;
}

.exam-alt-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #031E2D;
  line-height: 43px;
}

.diamond-icon {
  width: 12px;
  height: 12px;
  background: #008BFF;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.exam-alt-note {
  background: #1B396D;
  border-radius: 25px 0 25px 0;
  padding: 30px 32px 30px 47px;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.18px;
}

.exam-alt-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.doctor-visit-section {
  display: none;
}

.doctor-visit-section .container {
  display: flex;
  gap: 60px;
  align-items: center;
}

.doctor-visit-photo {
  width: 500px;
  height: 400px;
  background: #D9D9D9;
  border-radius: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #888;
}

.doctor-visit-content {
  flex: 1;
}

.doctor-visit-content h2 {
  font-size: 32px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 20px;
  line-height: 1.3;
}

.doctor-visit-content p {
  font-size: 16px;
  color: #3A4563;
  line-height: 1.6;
  margin-bottom: 16px;
}

.doctor-visit-content .visit-list {
  list-style: none;
  margin-bottom: 28px;
}

.doctor-visit-content .visit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #3A4563;
  padding: 8px 0;
}

.doctor-visit-content .visit-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #1580EB;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== EXAMINATIONS ===== */
.exam-section {
  background: #F8F8F8;
  padding: 80px 0;
}

.exam-section h2 {
  font-size: 40px;
  font-weight: 600;
  color: #222;
  margin-bottom: 16px;
  letter-spacing: -0.4px;
}

.exam-section > .container > h3 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 40px;
}

.exam-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.exam-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.exam-card-icon {
  width: 52px;
  height: 52px;
  background: #EDF4FC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.exam-card-icon svg {
  width: 24px;
  height: 24px;
  fill: #1B396D;
}

.exam-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.exam-card p {
  font-size: 14px;
  color: #3A4563;
  line-height: 1.5;
}

.exam-note {
  font-size: 16px;
  color: #3A4563;
  line-height: 1.35;
}

.exam-note strong {
  color: #1A1A1A;
}

/* ===== DOCTOR RECOMMENDATION ===== */
.doctor-rec-section {
  background: #FCFCFC;
  padding: 80px 0;
}

.doctor-rec-section h2 {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  margin-bottom: 24px;
  letter-spacing: -0.4px;
}

.doctor-rec-section > .container > p.section-desc {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  line-height: 1.5;
  margin-bottom: 28px;
}

.doctor-rec-grid {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* ===== RECOMMENDED SERVICES (shared across symptom/article) ===== */
.rec-services-section {
  background: #FCFCFC;
  padding: 48px 0 0;
}

.rec-services-section h2 {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  margin-bottom: 16px;
  letter-spacing: -0.4px;
}

.rec-services-section > .container > p.section-desc {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 40px;
}

.rec-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 31px;
}

.rec-service-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 4px 4px 4px 0px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  height: 404px;
}

.rec-service-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.rec-service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rec-service-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 16px;
}

.rec-service-card-top {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.rec-service-card-icon {
  width: 59px;
  height: 50px;
  flex-shrink: 0;
}

.rec-service-card-icon img {
  width: 100%;
  height: 28px;
  stroke: #1B396D;
  fill: none;
  stroke-width: 1.5;
}

.rec-service-card-text h4 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.rec-service-card-text p {
  font-size: 14px;
  color: #535353;
}

.rec-service-card-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-right: 22px;
}

.btn-rec-primary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  background: #1B396D;
  color: #FAFAFA;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
  box-shadow: 2px 2px 6px rgba(27,57,109,0.5);
}

.btn-rec-outline {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  background: transparent;
  color: #1B396D;
  border: 1px solid #1B396D;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
}

/* ===== SELF-DIAGNOSIS BANNER ===== */
.selfdiag-banner {
  padding: 40px var(--container-pad, 140px) 48px;
}

.selfdiag-banner .container {
  background: #FDFFD2;
  border-radius: 15px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.selfdiag-banner .banner-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.selfdiag-banner p {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
}


/* ==========================================================================
   ARTICLE PAGE (article.html)
   ========================================================================== */

/* Article header */
.article-header-section {
  background: #fff;
  padding: 40px 0 0;
}

.article-header-top {
  display: flex;
  gap: 42px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.article-title {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
  width: 640px;
  flex-shrink: 0;
}

.article-intro {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
  flex: 1;
}

.article-author {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-bottom: 36px;
}

.article-author-photo {
  width: 80px;
  height: 80px;
  border-radius: 100px;
  background: #d9d9d9;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 12px;
}

.article-author-info {
  width: 343px;
}

.article-author-name {
  font-size: 24px;
  font-weight: 600;
  color: #1580EB;
  line-height: 1.5;
}

.article-author-name a {
  color: #1580EB;
}

.article-author-spec {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  line-height: 1.5;
}

/* TOC + main image row */
.article-toc-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.article-toc {
  width: 522px;
  flex-shrink: 0;
}

.article-toc-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  line-height: 2.12;
  margin-bottom: 8px;
}

.article-toc-list {
  list-style: none;
}

.article-toc-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-toc-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1580EB;
  flex-shrink: 0;
}

.article-toc-list li a {
  font-size: 18px;
  color: #1580EB;
  line-height: 2.12;
}

.article-toc-list li a:hover {
  text-decoration: underline;
}

.article-main-image {
  width: 645px;
  height: 428px;
  background: #d9d9d9;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

/* Article body */
.article-body {
  background: #fff;
  padding: 75px 0 75px;
}

.article-body .container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.article-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 878px;
}

.article-section-full {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}

.article-section h2 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  line-height: 1.5;
}

.article-section-full h2 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  line-height: 1.8;
}

.article-section p,
.article-section-full p {
  font-size: 18px;
  color: #000;
  line-height: 1.6;
}

/* Image + quote row */
.article-media-row {
  display: flex;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.article-inline-image {
  width: 511px;
  height: 209px;
  background: #d9d9d9;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

.article-blockquote {
  display: flex;
  gap: 22px;
  align-items: center;
  height: 208px;
}

.article-blockquote-mark {
  font-size: 150px;
  color: #1580EB;
  line-height: 1.8;
  width: 68px;
  flex-shrink: 0;
  font-family: 'Lexend', sans-serif;
}

.article-blockquote-text {
  font-size: 18px;
  color: #000;
  line-height: 1.8;
  flex: 1;
  min-width: 0;
}

/* Article lists */
.article-list {
  list-style: disc;
  padding-left: 27px;
  margin: 0;
}

.article-list li {
  font-size: 18px;
  color: #000;
  line-height: 1.6;
}

/* Warning banner */
.warning-banner {
  background: #fff;
  padding: 40px 0;
}

.warning-banner-inner {
  background: #FFF8E1;
  border-left: 4px solid #FFD000;
  border-radius: 12px;
  padding: 24px 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.warning-banner-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.warning-banner-text {
  font-size: 16px;
  color: #3A4563;
  line-height: 1.6;
}

.warning-banner-text strong {
  color: #000;
}


/* ==========================================================================
   PRICES PAGE (prices.html)
   ========================================================================== */

/* Prices page hero */
.prices-hero-wrapper {
  background: #FCFCFC;
  padding: 58px var(--container-pad, 140px);
  display: flex;
  justify-content: center;
  position: relative;
}

.prices-hero {
  background: #1B396D;
  border-radius: 40px;
  padding: 60px 60px 60px 110px;
  display: inline-flex;
  align-items: center;
  gap: 86px;
}

.prices-hero-call {
  position: absolute;
  bottom: 120px;
  right: 40px;
  width: 65px;
  height: 65px;
}

.prices-hero-left {
  width: 459px;
  flex-shrink: 0;
}

.prices-hero-left h1 {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.prices-hero-left .subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 28px;
}

.prices-hero-left .btn-yellow {
  background: #FFD000;
  color: #1A1A1A;
  border: none;
  border-radius: 100px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: auto;
  display: inline-flex;
}

.prices-hero-photo {
  width: 400px;
  height: 304px;
  background: #D9D9D9;
  border-radius: 0 75px 0 75px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.3);
  font-size: 14px;
}

/* Full price list */
.prices-full-section {
  background: #EEF4FC;
  padding: 60px var(--container-pad, 140px);
  position: relative;
}

.prices-full-section .prices-illustration {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 66px;
  width: 342px;
  height: 176px;
  object-fit: cover;
  z-index: 1;
}

.prices-full-section h2 {
  font-size: 40px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.prices-full-section .section-subtitle {
  font-size: 18px;
  color: #3A4563;
  margin-bottom: 40px;
  max-width: 600px;
}

.prices-table-wrap {
  position: relative;
  background: #fff;
  border: 10px solid #fff;
  border-radius: 20px;
  overflow: visible;
}

.prices-table {
  width: 100%;
  border-collapse: collapse;
}

.prices-table th {
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #2F4D95;
  padding: 18px 30px;
  background: #EBF1FA;
  border-bottom: 1px solid #E0E5ED;
}

.prices-table th:last-child {
  text-align: right;
}

.prices-table td {
  padding: 18px 30px;
  font-size: 20px;
  vertical-align: middle;
}

.prices-table tr:nth-child(even) td {
  background: #EBF1FA;
}

.prices-table tr:nth-child(odd) td {
  background: #fff;
}

.prices-table td.price-name {
  font-weight: 600;
  color: #1A1A1A;
}

.prices-table td.price-value {
  color: #3A4563;
  font-size: 20px;
  white-space: nowrap;
}

.prices-table td.price-action {
  text-align: right;
}

.prices-table td.price-action a {
  color: #1580EB;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.prices-table td.price-action a:hover {
  text-decoration: underline;
}

/* Included info block */
.included-section {
  background: #FCFCFC;
  padding: 60px var(--container-pad, 140px);
}

.included-layout {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}

.included-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.included-left h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 0;
}

.included-prep-title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.included-prep-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 24px;
}

.included-prep-item {
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 16px;
  color: #1A1A1A;
  line-height: 1.3;
}

.included-prep-dot {
  width: 16px;
  height: 16px;
  border-radius: 20px;
  background: #F3E825;
  flex-shrink: 0;
}

.included-note {
  background: #1B396D;
  border-radius: 25px 0 25px 0;
  color: #fff;
  padding: 24px 28px;
  font-size: 14px;
  line-height: 1.5;
}

.included-note strong {
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.included-photos {
  width: 644px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 387px;
}

.included-photos-top {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex: 1;
}

.included-photo-1 {
  width: 388px;
  height: 253px;
  border-radius: 40px 5px 40px 5px;
  overflow: hidden;
}

.included-photo-1 img,
.included-photo-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.included-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #7ED4C8;
  flex-shrink: 0;
}

.included-photo-2 {
  width: 100%;
  height: 177px;
  border-radius: 5px 80px 5px 80px;
  overflow: hidden;
}

/* Cost factors */
.factors-section {
  background: #F8F8F8;
  padding: 48px var(--container-pad, 140px);
}

.factors-section h2 {
  font-size: 40px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.factors-section .section-subtitle {
  font-size: 18px;
  color: #3A4563;
  margin-bottom: 40px;
}

.factors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px 40px;
}

.factor-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.factor-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.factor-card-icon {
  width: 44px;
  height: 44px;
  background: #FFD000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.factor-card h4 {
  font-size: 24px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0;
}

.factor-card p {
  font-size: 14px;
  color: rgba(0,0,0,0.6);
  line-height: 1.6;
}

.factor-photo-placeholder {
  background: #D9D9D9;
  border-radius: 25px;
  width: 100%;
  height: 100%;
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.3);
  font-size: 14px;
}

/* Packages */
.packages-section {
  background: #fff;
  padding: 80px var(--container-pad, 140px);
}

.packages-section h2 {
  font-size: 40px;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
}

.packages-section .section-subtitle {
  font-size: 18px;
  color: #222;
  margin-bottom: 48px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.package-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #E0E5ED;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.package-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.package-card-photo {
  width: 100%;
  height: 282px;
  position: relative;
  overflow: hidden;
}

.package-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-card-tag {
  position: absolute;
  top: 225px;
  left: 0;
  background: #F3E825;
  border-radius: 0 100px 100px 0;
  padding: 5px 10px;
  font-size: 16px;
  color: #000;
}

.package-card-body {
  padding: 32px 40px;
}

.package-card-body h4 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.package-card-body .included-label {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-top: 24px;
  margin-bottom: 8px;
}

.package-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.package-card-body ul li {
  font-size: 16px;
  color: #031E2D;
  padding-left: 24px;
  position: relative;
}

.package-card-body ul li::before {
  content: '\25C6';
  position: absolute;
  left: 0;
  color: #008BFF;
  transform: rotate(45deg);
  display: inline-block;
}

.package-card-price-label {
  font-size: 14px;
  font-weight: 600;
  color: #1580EB;
  margin-bottom: 4px;
}

.package-card-price-value {
  font-size: 32px;
  font-weight: 600;
  color: #1580EB;
  margin-bottom: 24px;
}

.package-card-buttons {
  display: flex;
  gap: 12px;
}

.package-card-buttons .btn-book {
  background: #1B396D;
  color: #FAFAFA;
  border: none;
  border-radius: 100px;
  padding: 12px 43px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 2px 2px 6px rgba(27,57,109,0.5);
}

.package-card-buttons .btn-details {
  background: transparent;
  color: #1B396D;
  border: 1px solid #1B396D;
  border-radius: 100px;
  padding: 12px 45px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}


/* ==========================================================================
   CONTACTS PAGE (contacts.html)
   ========================================================================== */

.contacts-page-section {
  position: relative;
  min-height: 911px;
  overflow: visible;
}

.contacts-page-section .map-placeholder {
  height: 911px;
}

.contacts-page-section .contacts-card {
  top: 80px;
}
