/**
 * Tedavi Sayfaları CSS
 * Modern, clean tasarım için özel stiller
 */

/* ============================================
   HERO SECTION
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--text-dark) 0%, #334155 100%);
  padding: 80px 0 120px;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero .row {
  position: relative;
  z-index: 2;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  max-height: 400px;
}

.page-hero .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0 0 24px 0;
  font-size: 0.875rem;
  display: inline-flex;
}

.page-hero .breadcrumb-item {
  display: flex;
  align-items: center;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

.page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
}

.page-hero .breadcrumb-item a:hover {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.page-hero .breadcrumb-item a i {
  font-size: 0.875rem;
  opacity: 0.8;
}

.page-hero .breadcrumb-item.active {
  color: white;
  font-weight: 400;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 0;
}

/* ============================================
   QUICK INFO CARDS
   ============================================ */
.quick-info-section {
  padding: 50px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.quick-info-card {
  border-radius: 8px;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  background: white;
  border: 2px solid #f1f5f9;
  border-top: 4px solid #0066CC;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.quick-info-card:hover {
  border-top-color: #0066CC;
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.12);
  transform: translateY(-4px);
}

.quick-info-card h5 {
  color: #64748b;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quick-info-card .info-value {
  color: #0f172a;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
  margin-bottom: 60px;
}

.content-section h2 {
  color: #0f172a;
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 700;
}

.content-section h3,
.content-section h4,
.content-section h5 {
  color: #0f172a;
  font-weight: 600;
}

.content-section p {
  color: #475569;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

/* Info Box */
.info-box {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-left: 4px solid #0066CC;
  padding: 24px;
  border-radius: 8px;
  margin-top: 30px;
}

.info-box strong {
  color: #0f172a;
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.info-box p {
  color: #475569;
  margin: 0;
  line-height: 1.7;
}

/* Advantage Items */
.advantage-item {
  display: flex;
  gap: 15px;
  align-items: start;
  margin-bottom: 20px;
}

.advantage-item h5 {
  margin-bottom: 8px;
}

.advantage-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline-step {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
}

.timeline-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0066CC, #004C99);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.timeline-number.success {
  background: linear-gradient(135deg, #10b981, #059669);
}

.timeline-content {
  flex: 1;
}

.timeline-content h4 {
  margin-bottom: 10px;
}

.timeline-content p {
  margin-bottom: 10px;
}

.timeline-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.timeline-tag {
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.timeline-tag.blue {
  background: #f0f9ff;
  color: #0066CC;
}

.timeline-tag.green {
  background: #f0fdf4;
  color: #10b981;
}

.timeline-tag.yellow {
  background: #fef3c7;
  color: #f59e0b;
}

.timeline-tag.pink {
  background: #fce7f3;
  color: #ec4899;
}

/* ============================================
   ACCORDION (FAQ)
   ============================================ */
.accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-button {
  background: white;
  color: #0f172a;
  padding: 20px;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background: white;
  color: #0066CC;
}

.accordion-body {
  padding: 20px;
  background: #f8fafc;
  color: #475569;
  line-height: 1.7;
}

.accordion-body a {
  color: #0066CC;
  font-weight: 600;
  text-decoration: none;
}

.accordion-body a:hover {
  text-decoration: underline;
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid #e2e8f0;
}

.sidebar-card.gradient {
  background: linear-gradient(135deg, #0066CC, #004C99);
  color: white;
  border: none;
}

.sidebar-card.light {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
}

.sidebar-card.sticky {
  position: sticky;
  top: 100px;
}

.sidebar-card h3,
.sidebar-card h4 {
  margin-bottom: 20px;
}

.sidebar-card h3 {
  font-size: 1.5rem;
  color: white;
}

.sidebar-card h4 {
  font-size: 1.25rem;
}

.sidebar-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.sidebar-card.gradient p {
  color: rgba(255, 255, 255, 0.9);
}

.sidebar-card .form-label {
  color: white;
  margin-bottom: 8px;
}

.sidebar-card .form-control,
.sidebar-card .form-select {
  border-radius: 8px;
  padding: 12px;
}

.sidebar-card .btn {
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Sidebar Links */
.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-links li {
  margin-bottom: 12px;
}

.sidebar-links a {
  color: #64748b;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.sidebar-links a:hover {
  background: #f8fafc;
  color: #0066CC;
}

/* Contact Card */
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-buttons .btn-success {
  background: #25d366;
  border-color: #25d366;
}

.contact-buttons .btn-success:hover {
  background: #1fb855;
  border-color: #1fb855;
}

/* ============================================
   OTHER TREATMENTS MODERN SECTION
   ============================================ */
.other-treatments-modern {
  padding: 80px 0;
  background: #f8fafc;
}

.section-badge {
  display: none;
}

.section-badge i {
  font-size: 1.2rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.treatment-modern-card {
  display: block;
  background: white;
  padding: 30px 25px;
  text-decoration: none;
  color: inherit;
  border: 1px solid #E2E8F0;
  border-left: 3px solid #0066CC;
  border-radius: 8px;
  height: 100%;
}

.treatment-modern-card .card-icon {
  display: none;
}

.treatment-modern-card .card-content {
  position: relative;
}

.treatment-modern-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.treatment-modern-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

.treatment-modern-card .card-arrow {
  display: none;
}

.other-treatments-modern .btn-outline-primary {
  padding: 16px 48px;
  border-width: 2px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.other-treatments-modern .btn-outline-primary:hover {
  transform: translateY(-2px);
}

/* ============================================
   HORIZONTAL APPOINTMENT SECTION
   ============================================ */
.appointment-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
  position: relative;
  overflow: hidden;
}

.appointment-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, transparent 100%);
  z-index: 0;
}

.appointment-section .row {
  position: relative;
  z-index: 1;
}

.appointment-text {
  padding-right: 30px;
}

.appointment-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0066CC 0%, #004C99 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.appointment-badge i {
  font-size: 1.1rem;
}

.appointment-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.appointment-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.7;
}

.appointment-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-dark);
}

.feature-item i {
  font-size: 1.5rem;
  color: #0066CC;
}

.appointment-form-card {
  background: white;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 102, 204, 0.1);
}

.appointment-form-card .form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.appointment-form-card .form-label i {
  color: #0066CC;
  font-size: 1.1rem;
}

.input-with-icon {
  position: relative;
}

.input-with-icon .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.2rem;
  pointer-events: none;
  transition: color 0.3s ease;
  z-index: 2;
}

.input-with-icon .form-control {
  padding-left: 48px;
}

.input-with-icon .form-control:focus ~ .input-icon,
.input-with-icon:focus-within .input-icon {
  color: #0066CC;
}

.appointment-form-card .form-control,
.appointment-form-card .form-select {
  border: 2px solid #E2E8F0;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: #f8fafc;
}

.appointment-form-card .form-control:focus,
.appointment-form-card .form-select:focus {
  border-color: #0066CC;
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
  background: white;
}

.appointment-form-card .btn-primary {
  background: linear-gradient(135deg, #0066CC 0%, #004C99 100%);
  border: none;
  padding: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.appointment-form-card .btn-primary:hover {
  transform: translateY(-2px);
}

/* ============================================
   MODERN CONTENT SECTIONS - CLEAN & SIMPLE
   ============================================ */
.content-section-modern {
  padding: 60px 0;
}

.section-header-modern {
  margin-bottom: 40px;
}

.section-header-modern.centered {
  text-align: center;
}

.section-icon-wrapper {
  display: none;
}

.section-header-modern h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 12px 0;
  padding-bottom: 15px;
  border-bottom: 3px solid #0066CC;
  display: inline-block;
}

.section-header-modern.centered {
  text-align: center;
}

.section-header-modern .section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 15px 0 0 0;
  font-weight: 400;
  display: block;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 15px 0 0 0;
  font-weight: 400;
}

.lead-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 30px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  margin-top: 30px;
}

.highlight-box {
  background: #f8fafc;
  border-left: 4px solid #0066CC;
  border-radius: 8px;
  padding: 25px 30px;
  margin: 25px 0;
}

.highlight-icon {
  display: none;
}

.highlight-content h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.highlight-content p {
  margin: 0;
  line-height: 1.7;
  color: #475569;
  font-size: 1rem;
}

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

.info-mini-card {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border: 1px solid #E2E8F0;
  border-top: 3px solid #0066CC;
  border-radius: 8px;
}

.info-mini-icon {
  display: none;
}

.info-mini-card h5 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.info-mini-card p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Visual Banner with Video */
.info-visual-banner {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #0066CC 0%, #004C99 100%);
  border-radius: 8px;
  margin-top: 25px;
  position: relative;
  overflow: hidden;
}

.info-visual-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.info-visual-banner .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1);
}

.info-visual-banner .banner-overlay i {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 15px;
}

.info-visual-banner .banner-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.5px;
}

.content-sidebar-box {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.stats-card {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 8px;
  padding: 30px 25px;
  color: white;
}

.stat-item {
  text-align: center;
  padding: 15px 0;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.95;
  font-weight: 400;
}

.stat-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: 0;
}

.tech-features {
  background: #f8fafc;
  border: 2px solid #E2E8F0;
  border-radius: 18px;
  padding: 25px;
}

.tech-features h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tech-features h4 i {
  color: #0066CC;
  font-size: 1.3rem;
}

.tech-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-list li {
  padding: 12px 0;
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.tech-list li:last-child {
  border-bottom: none;
}

.tech-list li i {
  color: #10b981;
  font-size: 1.2rem;
}

/* Advantages Section */
.advantages-section {
  background: transparent;
}

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

.advantage-card-modern {
  background: white;
  border: 1px solid #E2E8F0;
  border-left: 3px solid #0066CC;
  border-radius: 8px;
  padding: 30px 25px;
}

.advantage-icon-modern {
  display: none;
}

.advantage-card-modern h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.advantage-card-modern p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 15px;
}

.advantage-badge {
  display: inline-block;
  padding: 4px 12px;
  background: #f0f7ff;
  color: #0066CC;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Modern Comparison Box with Full Width Background */
.comparison-section-fullwidth {
  background: #f8fafc;
  padding: 80px 0;
  margin: 0;
  width: 100%;
}

.comparison-box-modern {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
}

.comparison-header {
  margin-bottom: 50px;
  text-align: center;
}

.comparison-icon-wrapper {
  display: none;
}

.comparison-header h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 12px 0;
}

.comparison-header p {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
}

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

.comparison-treatment-card {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 30px 25px;
  position: relative;
}

.comparison-treatment-card.featured {
  border: 2px solid #0066CC;
  border-top: 3px solid #0066CC;
}

.treatment-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.treatment-badge.featured-badge {
  background: #f59e0b;
  color: white;
}

.treatment-badge i {
  font-size: 0.9rem;
}

.treatment-icon {
  display: none;
}

.comparison-treatment-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 10px;
}

.treatment-price {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #E2E8F0;
}

.treatment-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.feature-row i {
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-row.positive i {
  color: #10b981;
}

.feature-row.negative i {
  color: #ef4444;
}

.feature-row.neutral i {
  color: #f59e0b;
}

.treatment-rating {
  background: #f8fafc;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
}

.rating-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.rating-stars i {
  font-size: 1.2rem;
  color: #d1d5db;
}

.rating-stars i.filled {
  color: #f59e0b;
}

.rating-score {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.comparison-footer {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  padding: 20px 25px;
}

.footer-note {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-note i {
  font-size: 1.8rem;
  color: #3b82f6;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-note p {
  margin: 0;
  line-height: 1.7;
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* ============================================
   MODERN PROCESS TIMELINE
   ============================================ */

.section-icon-wrapper.purple {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
}

.section-icon-wrapper.purple i {
  color: #8b5cf6;
}

.process-timeline-modern {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  margin-bottom: 60px;
}

.process-step-modern {
  position: relative;
}

.step-number-badge {
  display: none;
}

.step-num {
  display: none;
}

.step-label {
  display: none;
}

.step-icon-check {
  display: none;
}

.step-card {
  background: white;
  border: 1px solid #E2E8F0;
  border-left: 3px solid #0066CC;
  border-radius: 8px;
  padding: 25px;
}

.step-card.success-card {
  border-left-color: #10b981;
}

.step-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f1f5f9;
}

.step-icon {
  display: none;
}

.step-header h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 8px 0;
}

.step-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.step-duration i {
  color: #0066CC;
  font-size: 1rem;
}

.step-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.step-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.step-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 8px 12px;
  background: #f8fafc;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.step-feature-item:hover {
  background: #e2e8f0;
  transform: translateX(5px);
}

.step-feature-item i {
  color: #10b981;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #f1f5f9;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}

.info-pill.blue {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 76, 153, 0.1) 100%);
  color: #0066CC;
}

.info-pill.green {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
  color: #10b981;
}

.info-pill.orange {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
  color: #fb923c;
}

.info-pill.pink {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(219, 39, 119, 0.1) 100%);
  color: #ec4899;
}

.info-pill i {
  font-size: 1rem;
}

.success-footer {
  border-top-color: #10b981;
}

.success-message {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
  border-radius: 8px;
  color: #059669;
  font-size: 0.95rem;
  width: 100%;
}

.success-message i {
  font-size: 1.8rem;
}

/* Timeline Summary */
.timeline-summary {
  background: linear-gradient(135deg, #0066CC 0%, #004C99 100%);
  border-radius: 24px;
  padding: 40px;
  color: white;
  text-align: center;
  box-shadow: 0 15px 45px rgba(0, 102, 204, 0.3);
}

.timeline-summary h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.timeline-summary h3 i {
  font-size: 2rem;
}

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

.summary-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 30px 20px;
  transition: all 0.3s ease;
}

.summary-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.summary-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.25);
}

.summary-icon i {
  font-size: 2rem;
  color: white;
}

.summary-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
}

.summary-label {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.summary-desc {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #0066CC 0%, #004C99 100%);
  padding: 60px 0;
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: white;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  color: white;
}

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

.cta-buttons .btn {
  padding: 15px 40px;
  border-radius: 30px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .page-hero {
    padding: 60px 0 80px;
  }
  
  .page-hero .breadcrumb {
    font-size: 0.8rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }
  
  .hero-image-wrapper {
    margin-top: 30px;
  }
  
  .hero-image {
    max-height: 250px;
    border-radius: 8px;
  }

  .content-section h2 {
    font-size: 1.75rem;
  }

  .sidebar-card.sticky {
    position: static;
  }
}

@media (max-width: 767px) {
  .page-hero h1 {
    font-size: 1.75rem;
  }

  .quick-info-card {
    margin-bottom: 15px;
  }

  .timeline-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .appointment-text {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .appointment-text h2 {
    font-size: 1.75rem;
  }

  .appointment-form-card {
    padding: 30px 20px;
  }

  .other-treatments-modern {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .treatment-modern-card {
    padding: 30px 25px;
  }

  .treatment-modern-card .card-icon {
    width: 70px;
    height: 70px;
  }

  .treatment-modern-card .card-icon i {
    font-size: 2rem;
  }

  .treatment-modern-card h3 {
    font-size: 1.2rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .content-sidebar-box {
    order: -1;
  }

  .info-cards-grid {
    grid-template-columns: 1fr;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .section-header-modern {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .section-header-modern h2 {
    font-size: 1.75rem;
  }

  .stats-card {
    padding: 25px 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .comparison-cards {
    grid-template-columns: 1fr;
  }

  .comparison-box-modern {
    padding: 40px 25px;
  }

  .comparison-header {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .comparison-header h3 {
    font-size: 1.5rem;
  }

  .treatment-icon {
    width: 70px;
    height: 70px;
  }

  .treatment-icon i {
    font-size: 2rem !important;
  }

  .comparison-treatment-card h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .info-cards-grid {
    grid-template-columns: 1fr;
  }

  .highlight-box {
    flex-direction: column;
    padding: 20px;
  }

  .section-header-modern h2 {
    font-size: 1.5rem;
  }

  .lead-text {
    font-size: 1rem;
  }

  .advantage-card-modern {
    padding: 25px 20px;
  }

  .comparison-box-modern {
    padding: 30px 20px;
  }

  .comparison-header {
    margin-bottom: 35px;
  }

  .comparison-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .comparison-icon-wrapper i {
    font-size: 1.8rem;
  }

  .comparison-header h3 {
    font-size: 1.3rem;
  }

  .comparison-header p {
    font-size: 0.9rem;
  }

  .comparison-treatment-card {
    padding: 30px 20px;
  }

  .feature-row {
    font-size: 0.9rem;
  }

  .footer-note {
    flex-direction: column;
    gap: 10px;
  }

  .footer-note i {
    font-size: 1.5rem;
  }

  .process-timeline-modern {
    padding-left: 0;
  }

  .process-timeline-modern::before {
    display: none;
  }

  .step-number-badge {
    position: static;
    margin-bottom: 15px;
  }

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

  .summary-cards {
    grid-template-columns: 1fr;
  }

  .summary-card {
    padding: 25px;
  }

  .timeline-summary {
    padding: 30px 20px;
  }

  .timeline-summary h3 {
    font-size: 1.4rem;
    flex-direction: column;
  }
}
