/* ============================================
   CURE BATUMI - Treatment Page Styles
   Author: Gocha Shevardnadze
   Company: Fix-Dev.com
   ============================================ */

/* Header Navigation Links - Dark color for light background */
.header .nav-link {
  color: #272727 !important;
}

.header .nav-link:hover {
  color: #5dade2 !important;
}

.header .nav-link.active {
  color: #5dade2 !important;
}

.treatment-page {
  background-color: #eaf7ff;
  min-height: 100vh;
  width: 100%;
}

/* Hero Section */
.treatment-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 170px 50px 80px 50px;
  max-width: 1600px;
  margin: 0 auto;
  gap: 60px;
}

.treatment-hero-content {
  flex: 1;
  max-width: 1035px;
}

.treatment-hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #262626;
  margin-bottom: 24px;
  line-height: 1.2;
}

.treatment-hero-description {
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
}

.treatment-hero-image {
  position: relative;
  width: 451px;
  height: 410px;
  flex-shrink: 0;
}

.treatment-portrait {
  position: absolute;
  top: 0;
  right: 0;
  width: 272px;
  height: 410px;
  border-radius: 500px 500px 0 0;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.treatment-decoration {
  position: absolute;
  top: 151px;
  left: 0;
  width: 239px;
  height: 239px;
  object-fit: cover;
}

/* Treatment Cards */
.treatment-cards-section {
  padding: 40px 50px;
  max-width: 1600px;
  margin: 0 auto;
}

.treatment-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
  justify-items: center;
}

.treatment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 455px;
  min-height: 226px;
  padding: 40px 30px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 4px 16.6px rgba(0, 0, 0, 0.15);
  gap: 20px;
  transition: all 0.3s ease;
}

.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.2);
}

/* Different hover colors for each treatment card */
.treatment-card:nth-child(1):hover {
  background-color: #C1E6F9;
}

.treatment-card:nth-child(2):hover {
  background-color: #FFDBBC;
}

.treatment-card:nth-child(3):hover {
  background-color: #D5EDC4;
}

.treatment-card-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.treatment-card-title {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  text-align: center;
  line-height: 1.2;
}

.treatment-card-description {
  font-size: 20px;
  font-weight: 400;
  color: #666666;
  text-align: center;
  line-height: 1.5;
}

/* Conditions Section */
.conditions-section {
  max-width: 1476px;
  margin: 60px auto;
  padding: 60px 57px;
  background-color: #ffffff;
  border-radius: 46.91px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.conditions-title {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 50px;
  text-align: center;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 100px;
  margin-bottom: 50px;
}

.condition-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.condition-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-top: 5px;
  color: #5dade2;
}

.condition-text {
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  line-height: 1.4;
}

.conditions-note {
  padding: 40px;
  background-color: #eaf7ff;
  border-radius: 30px;
  text-align: center;
}

.conditions-note p {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
}

.conditions-note strong {
  font-weight: 700;
  color: #5dade2;
}

/* Why Choose Section */
.why-choose-section {
  max-width: 1476px;
  margin: 60px auto;
  padding: 60px 57px;
  background-color: #ffffff;
  border-radius: 46.91px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.why-choose-title {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 40px;
  text-align: center;
}

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

.why-choose-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background-color: #f8fbff;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.why-choose-item:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.why-choose-item:nth-child(1) {
  background-color: #C1E6F9;
}

.why-choose-item:nth-child(2) {
  background-color: #FFDBBC;
}

.why-choose-item:nth-child(3) {
  background-color: #D5EDC4;
}

.why-choose-item:nth-child(4) {
  background-color: #FFF5BC;
}

.why-choose-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: #5dade2;
}

.why-choose-text {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  line-height: 1.5;
  display: flex;
  align-items: center;
}

/* CTA Banner */
.treatment-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background-color: #5dade2;
  gap: 50px;
}

.treatment-cta-content {
  flex: 1;
}

.treatment-cta-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
}

.treatment-cta-description {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
}

.treatment-cta-button {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 40px;
  background-color: #ffffff;
  color: #5dade2;
  font-size: 24px;
  font-weight: 700;
  border: none;
  border-radius: 36.58px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.treatment-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.treatment-phone-icon {
  width: 24px;
  height: 24px;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .treatment-hero {
    flex-direction: column;
    align-items: center;
    padding: 100px 40px 60px;
  }

  .treatment-hero-image {
    margin-top: 40px;
  }

  .treatment-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .conditions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }

  .conditions-section,
  .why-choose-section {
    padding: 40px 30px;
    margin: 40px 20px;
  }

  .treatment-hero-title {
    font-size: 36px;
  }

  .treatment-hero-description {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .treatment-hero {
    padding: 100px 20px 40px;
  }

  .treatment-hero-title {
    font-size: 28px;
  }

  .treatment-hero-description {
    font-size: 18px;
  }

  .treatment-hero-image {
    width: 100%;
    max-width: 350px;
    height: 320px;
  }

  .treatment-portrait {
    width: 220px;
    height: 330px;
  }

  .treatment-decoration {
    width: 180px;
    height: 180px;
    top: 120px;
  }

  .treatment-cards-section {
    padding: 20px 15px;
  }

  .treatment-cards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .treatment-card {
    padding: 20px 15px;
    min-height: 150px;
    gap: 15px;
  }

  .treatment-card-title {
    font-size: 24px;
  }

  .treatment-card-description {
    font-size: 16px;
  }

  .conditions-section,
  .why-choose-section {
    padding: 30px 20px;
    margin: 30px 15px;
  }

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

  .why-choose-item {
    flex-direction: column;
    padding: 20px 15px;
    gap: 12px;
    text-align: center;
  }

  .why-choose-icon {
    width: 40px;
    height: 40px;
  }

  .conditions-title,
  .why-choose-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .condition-text,
  .why-choose-text {
    font-size: 16px;
  }

  .conditions-note {
    padding: 25px 20px;
  }

  .conditions-note p {
    font-size: 16px;
  }

  .treatment-cta-banner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 20px 20px;
    min-height: auto;
  }

  .treatment-cta-content {
    padding: 0;
  }

  .treatment-cta-title {
    font-size: 22px;
    margin-bottom: 5px;
    line-height: 1.2;
  }

  .treatment-cta-description {
    font-size: 15px;
    line-height: 1.3;
  }

  .treatment-cta-button {
    font-size: 16px;
    padding: 10px 20px;
    width: 100%;
    max-width: 250px;
    justify-content: center;
    gap: 10px;
  }

  .treatment-phone-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .treatment-hero-title {
    font-size: 24px;
  }

  .conditions-title,
  .why-choose-title {
    font-size: 24px;
  }

  .condition-item,
  .why-choose-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
