/* Sidebar Styles - Specific to sidebar only */
.sidebar {
  padding: 20px 0;
}

.sidebar .sidebar-widget {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.sidebar .sidebar-widget:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.sidebar .widget-header {
  background: linear-gradient(135deg, #009688 0%, #004d40 100%);
  color: #fff;
  padding: 20px;
  position: relative;
}

.sidebar .widget-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.sidebar .widget-title i {
  font-size: 20px;
  color: #fff;
}

.sidebar .title-separator {
  width: 40px;
  height: 3px;
  background: #fff;
  margin-top: 8px;
  border-radius: 2px;
}

.sidebar .widget-content {
  padding: 20px;
}

/* Sidebar Menu Styles */
.sidebar .sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar .sidebar-menu li {
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.sidebar .sidebar-menu li:last-child {
  border-bottom: none;
}

.sidebar .sidebar-menu li:hover {
  background: #f8f9fa;
}

.sidebar .sidebar-menu a {
  display: flex;
  align-items: center;
  padding: 12px 0;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.sidebar .sidebar-menu a:hover {
  color: #009688;
  padding-left: 5px;
}

.sidebar .sidebar-menu i {
  margin-right: 10px;
  color: #009688;
  font-size: 12px;
  transition: all 0.3s ease;
}

.sidebar .sidebar-menu a:hover i {
  transform: translateX(3px);
}

/* Appointment Widget Styles */
.sidebar .appointment-info {
  margin-bottom: 20px;
}

.sidebar .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.sidebar .contact-item:hover {
  background: #e3f2fd;
}

.sidebar .contact-item i {
  font-size: 18px;
  color: #009688;
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

.sidebar .contact-details {
  flex: 1;
}

.sidebar .contact-details strong {
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 2px;
}

.sidebar .contact-details span {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.sidebar .btn-appointment {
  width: 100%;
  background: linear-gradient(135deg, #009688 0%, #004d40 100%);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.sidebar .btn-appointment:hover {
  background: linear-gradient(135deg, #004d40 0%, #009688 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 150, 136, 0.3);
}

/* Video Widget Styles */
.sidebar .video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.sidebar .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.sidebar .video-info h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.sidebar .video-info p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Contact Widget Styles */
.sidebar .location-item {
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #009688;
}

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

.sidebar .location-item h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar .location-item h6 i {
  color: #009688;
}

.sidebar .location-item p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* Social Widget Styles */
.sidebar .social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar .social-link {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.sidebar .social-link:hover {
  color: #fff;
  transform: translateX(5px);
}

.sidebar .social-link.facebook:hover {
  background: #1877f2;
  border-left-color: #1877f2;
}

.sidebar .social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-left-color: #dc2743;
}

.sidebar .social-link.youtube:hover {
  background: #ff0000;
  border-left-color: #ff0000;
}

.sidebar .social-link i {
  font-size: 18px;
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

.sidebar .social-link span {
  font-weight: 500;
}

/* Emergency Widget Styles */
.sidebar .emergency-widget {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: #fff;
}

.sidebar .emergency-widget .widget-content {
  padding: 25px 20px;
}

.sidebar .emergency-info {
  text-align: center;
}

.sidebar .emergency-info i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #fff;
}

.sidebar .emergency-info h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.sidebar .emergency-info p {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.sidebar .btn-emergency {
  background: #fff;
  color: #dc3545;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.sidebar .btn-emergency:hover {
  background: #f8f9fa;
  color: #dc3545;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

/* Doctor Profile Widget Styles */
.sidebar .doctor-profile {
  text-align: center;
  margin-bottom: 20px;
}

.sidebar .doctor-image {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #009688;
}

.sidebar .doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar .doctor-info h5 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.sidebar .specialty {
  font-size: 13px;
  color: #009688;
  font-weight: 500;
  margin-bottom: 12px;
}

.sidebar .credentials {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sidebar .credential-item {
  font-size: 12px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.sidebar .credential-item i {
  color: #009688;
}

.sidebar .btn-profile {
  width: 100%;
  background: #009688;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.sidebar .btn-profile:hover {
  background: #004d40;
  color: #fff;
  transform: translateY(-2px);
}

/* Testimonial Widget Styles */
.sidebar .testimonial-card {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 4px solid #009688;
}

.sidebar .testimonial-quote {
  position: relative;
  margin-bottom: 15px;
}

.sidebar .testimonial-quote i {
  color: #009688;
  font-size: 20px;
  margin-bottom: 10px;
}

.sidebar .testimonial-quote p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  font-style: italic;
  margin: 0;
}

.sidebar .testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar .author-info h6 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: #333;
}

.sidebar .rating {
  color: #ffc107;
  font-size: 12px;
}

.sidebar .btn-testimonial {
  width: 100%;
  background: #009688;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.sidebar .btn-testimonial:hover {
  background: #004d40;
  color: #fff;
  transform: translateY(-2px);
}

/* Resources Widget Styles */
.sidebar .resources-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar .resource-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.sidebar .resource-item:last-child {
  border-bottom: none;
}

.sidebar .resource-item:hover {
  color: #009688;
  padding-left: 5px;
}

.sidebar .resource-item i {
  font-size: 18px;
  color: #009688;
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

.sidebar .resource-info h6 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 2px 0;
}

.sidebar .resource-info span {
  font-size: 12px;
  color: #666;
}

/* Hours Widget Styles */
.sidebar .hours-list {
  margin-bottom: 15px;
}

.sidebar .hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.sidebar .hours-item:last-child {
  border-bottom: none;
}

.sidebar .day {
  font-weight: 500;
  color: #333;
}

.sidebar .time {
  font-weight: 600;
  color: #009688;
}

.sidebar .emergency-notice {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar .emergency-notice i {
  color: #856404;
  font-size: 16px;
}

.sidebar .emergency-notice p {
  font-size: 13px;
  color: #856404;
  margin: 0;
  font-weight: 500;
}

/* Quick Contact Widget Styles */
.sidebar .quick-contact-widget {
  background: linear-gradient(135deg, #009688 0%, #004d40 100%);
  color: #fff;
}

.sidebar .quick-contact-info {
  text-align: center;
  padding: 25px 20px;
}

.sidebar .quick-contact-info h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sidebar .quick-contact-info p {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.9;
}

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

.sidebar .btn-call, 
.sidebar .btn-whatsapp {
  flex: 1;
  background: #fff;
  color: #333;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.3s ease;
  font-size: 13px;
}

.sidebar .btn-call:hover {
  background: #f8f9fa;
  color: #333;
  transform: translateY(-2px);
}

.sidebar .btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.sidebar .btn-whatsapp:hover {
  background: #128c7e;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .sidebar {
    padding: 15px 0;
  }
  
  .sidebar .sidebar-widget {
    margin-bottom: 20px;
  }
  
  .sidebar .widget-header {
    padding: 15px;
  }
  
  .sidebar .widget-content {
    padding: 15px;
  }
  
  .sidebar .contact-buttons {
    flex-direction: column;
  }
  
  .sidebar .doctor-image {
    width: 80px;
    height: 80px;
  }
} 