:root {
  --primary: #153c33;
  --bg-color: #f7f9fa;
  --orange: #f28c54;
  --text-main: #2b3941;
  --text-light: #7b8a96;
  --border-color: #eaeef1;
}


.logo-icon-wrap {
  background: var(--primary);
  width: 90px;
  margin-right: -20px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1.9);
  background-color: transparent;
}

.tabibi {
  font-weight: 700;
  font-size: 1.5rem;
  margin-right: 10px;
}

.nav-links {
  display: flex;
  gap: 36px;
  margin-left: auto;
  margin-right: 48px;
}

.nav-links a {
  text-decoration: none;
  color: #72818c;
  font-weight: 500;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  cursor: pointer;
  border: none;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-login {
  text-decoration: none;
  background: var(--orange);
  color: white;
  padding: 10px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.back-link {
  padding: 24px 20px;
}

.back-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #72818c;
  font-size: 0.9rem;
  font-weight: 500;
}

.profile-header {
  background: var(--primary);
  padding: 40px 0;
}

.header-container {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.avatar {
  width: 120px;
  height: 120px;
  background: #46605a;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.2rem;
  font-weight: 600;
}

.doctor-info {
  padding-top: 8px;
}

.doctor-info h1 {
  color: white;
  font-size: 2rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.specialty {
  color: var(--orange);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.meta {
  display: flex;
  gap: 28px;
  color: white;
  font-size: 0.9rem;
}

.meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating {
  font-weight: 500;
}

.layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  padding-top: 40px;
  padding-bottom: 80px;
  align-items: start;
}

.left-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  padding: 32px;
}

.card h2 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.card p {
  color: #5c6b75;
  line-height: 1.8;
  font-size: 0.95rem;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.card-header h2 {
  margin-bottom: 0;
}

.icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-green {
  background: rgba(21, 60, 51, 0.05);
  color: var(--primary);
}

.icon-orange {
  background: rgba(242, 140, 84, 0.1);
  color: var(--orange);
}

.card-booking {
  padding: 32px;
}

.card-booking h2 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.av-times-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.av-times-header svg {
  color: var(--primary);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s;
}

.radio-label:hover {
  border-color: #d1d8dd;
}

.radio-label input {
  display: none;
}

.custom-radio {
  width: 18px;
  height: 18px;
  border: 1px solid #c2c9d1;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.radio-label input:checked+.custom-radio {
  border-color: var(--orange);
}

.radio-label input:checked+.custom-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.btn-book {
  width: 100%;
  background: var(--orange);
  color: white;
  padding: 16px;
  border-radius: 8px;
  font-size: 1rem;
}

.booking-note {
  text-align: center;
  font-size: 0.8rem;
  color: #a4b2bc;
  margin-top: 16px;
  line-height: 1.5;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 30px;
}

footer {
  background: linear-gradient(to right, #0F3D3E, #145A5C);
  color: white;
  padding-top: 64px;
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-white {
  color: white;
  margin-bottom: 16px;
}

.bg-orange {
  background: var(--orange);
}

.footer-desc {
  color: #b2c2bc;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h3 {
  font-size: 1.05rem;
  margin-bottom: 24px;
  font-weight: 600;
  color: white;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  color: #b2c2bc;
  font-size: 0.95rem;
}

.footer-col ul a {
  color: #b2c2bc;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-col ul a:hover {
  color: var(--orange);
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  color: #b2c2bc;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .header-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .meta {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}

