/* 
  File: styles.css
  Project: Panorama Radiology Center Website
*/

/* --- Global Styles & Resets --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cairo', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  -webkit-text-size-adjust: 100%; /* Prevent font scaling on iOS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
  position: relative;
  z-index: 10;
}

a:hover {
  color: #b71c1c;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  pointer-events: none; /* Prevent images from interfering with clicks */
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.3;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Buttons --- */
.btn, .btn-main {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border-radius: 30px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}

.btn-main {
  background: #ffc107;
  color: #333 !important;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-main:hover {
  background: #e0a800;
  transform: translateY(-2px);
}

/* --- Header & Navigation --- */
.main-header {
  background: linear-gradient(135deg, #dc3545, #c82333);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: 10px;
}

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

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #ffc107;
}

.nav-links .btn-main {
  background: #ffc107;
  color: #333 !important;
  padding: 8px 20px;
  border-radius: 25px;
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px 0;
  transition: 0.3s;
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(rgba(220, 53, 69, 0.8), rgba(200, 35, 51, 0.8)), url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 60px 0;
  margin-bottom: 40px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/hero-bg.jpg') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  font-weight: bold;
}

.hero-content p {
  font-size: 1rem;
  margin-bottom: 0;
}

/* --- Page Sections --- */
.page-section {
  padding: 40px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #b71c1c;
  font-size: 2.5rem;
  font-weight: 700;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

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

.service-card .content {
  padding: 20px;
}

.service-card h3 {
  color: #b71c1c;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

.service-card .price {
  color: #b71c1c;
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 15px;
}

.service-card .discount {
  background: #dc3545;
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.9rem;
  display: inline-block;
  margin-top: 10px;
}

/* --- Doctors Section --- */
.doctors-section {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.doctors-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.doctors-slider::-webkit-scrollbar {
  height: 8px;
}

.doctors-slider {
  scrollbar-width: thin;
  scrollbar-color: #b71c1c #f0f0f0;
}

.doctor-slide {
  min-width: 280px;
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.doctor-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #b71c1c, #d32f2f);
}

.doctor-slide:hover {
  transform: translateY(-5px);
}

.doctor-slide img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 15px;
  object-fit: cover;
  border: 4px solid #f0f0f0;
}

.doctor-slide h3 {
  color: #333;
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.doctor-slide .specialty {
  color: #b71c1c;
  font-weight: 500;
  margin-bottom: 15px;
}

.doctor-slide .phone {
  background: #28a745;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  display: inline-block;
  margin: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.doctor-slide .phone:hover {
  background: #218838;
  transform: translateY(-2px);
}

.doctor-slide .whatsapp {
  background: #25d366;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  display: inline-block;
  margin: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.doctor-slide .whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
}

/* --- Specialties Grid --- */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.specialty-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.specialty-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.specialty-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.specialty-card .content {
  padding: 20px;
  position: relative;
  z-index: 10;
}

.specialty-card h3 {
  color: #b71c1c;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.specialty-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.specialty-card .doctors-count {
  background: #b71c1c;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 15;
  pointer-events: auto;
}

.specialty-card .doctors-count:hover {
  background: #d32f2f;
  transform: translateY(-2px);
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.contact-info h2,
.contact-form h2 {
  color: #b71c1c;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.contact-item {
  margin-bottom: 15px;
}

.contact-item strong {
  color: #b71c1c;
  display: block;
  margin-bottom: 5px;
}

.contact-item p {
  color: #666;
  margin: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #333;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #b71c1c;
}

/* --- Footer --- */
.footer {
  background: #333;
  color: white;
  padding: 40px 0 20px;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h4 {
  color: #ffc107;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-col p,
.footer-col li {
  color: #ccc;
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-col a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #ffc107;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #ccc;
  margin-bottom: 5px;
}

.footer-bottom a {
  color: #ffc107;
  text-decoration: none;
}

/* --- Animations --- */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .navbar {
    padding: 10px 0;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .nav-links {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .services-grid,
  .specialties-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .doctors-slider {
    gap: 15px;
  }
  
  .doctor-slide {
    min-width: 250px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .specialty-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .specialty-content h2 {
    font-size: 1.3rem;
  }
  
  .specialty-doctors h2 {
    font-size: 1.5rem;
  }
  
  .service-card img,
  .specialty-card img {
    height: 180px;
  }
  
  .doctor-card {
    min-width: 250px;
  }
  
  .doctor-card img {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 0;
  }
  
  .hero-content h1 {
    font-size: 1.5rem;
  }
  
  .page-section {
    padding: 30px 0;
  }
  
  .service-card,
  .specialty-card {
    margin-bottom: 20px;
  }
  
  .services-grid,
  .specialties-grid {
    gap: 15px;
  }
  
  .doctor-slide {
    min-width: 220px;
    padding: 15px;
  }
  
  .doctor-slide img {
    width: 100px;
    height: 100px;
  }
}

/* --- Doctors Grid for Specialty Pages --- */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.doctor-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.doctor-card:hover {
  transform: translateY(-5px);
}

.doctor-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 15px;
  object-fit: cover;
  border: 4px solid #f0f0f0;
}

.doctor-card h3 {
  color: #333;
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.doctor-card .specialty {
  color: #b71c1c;
  font-weight: 500;
  margin-bottom: 10px;
}

.doctor-card .description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.doctor-card .phone,
.doctor-card .whatsapp {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 20px;
  margin: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.9rem;
}

.doctor-card .phone {
  background: #28a745;
  color: white;
}

.doctor-card .phone:hover {
  background: #218838;
  transform: translateY(-2px);
}

.doctor-card .whatsapp {
  background: #25d366;
  color: white;
}

.doctor-card .whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
}

.no-doctors {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  padding: 40px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- Specialty Pages --- */
.specialty-info {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  margin-bottom: 40px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.specialty-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.specialty-content {
  padding: 25px;
}

.specialty-content h2 {
  color: #dc3545;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.specialty-content h3 {
  color: #333;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.specialty-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.specialty-content ul {
  list-style: none;
  padding: 0;
}

.specialty-content li {
  color: #666;
  margin-bottom: 8px;
  padding-right: 20px;
  position: relative;
}

.specialty-content li:before {
  content: "•";
  color: #dc3545;
  font-weight: bold;
  position: absolute;
  right: 0;
}

.specialty-doctors h2 {
  color: #b71c1c;
  margin-bottom: 2rem;
  font-size: 2rem;
  text-align: center;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background: #343a40;
  color: white;
  padding: 40px 20px;
  z-index: 1001;
  transition: left 0.3s ease-in-out;
  box-shadow: 2px 0 10px rgba(0,0,0,0.2);
}

.sidebar.active {
  left: 0;
}

.sidebar .close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  margin-bottom: 30px;
  -webkit-tap-highlight-color: transparent;
}

.sidebar .nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* --- Instructions Section --- */
.instructions-section {
  background: #f8f9fa;
  padding: 40px 0;
  margin-top: 40px;
}

.instructions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.instruction-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.instruction-card:hover {
  transform: translateY(-5px);
}

.instruction-card .icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.instruction-card h3 {
  color: #b71c1c;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.instruction-card ul {
  text-align: right;
}

.instruction-card li {
  color: #666;
  margin-bottom: 8px;
  padding-right: 15px;
  position: relative;
}

.instruction-card li:before {
  content: "•";
  color: #b71c1c;
  position: absolute;
  right: 0;
}

/* --- Fix for Image Overlay Issues --- */
.specialty-card img {
  pointer-events: none;
}

.specialty-card .content {
  position: relative;
  z-index: 10;
}

.specialty-card .doctors-count {
  position: relative;
  z-index: 15;
  pointer-events: auto;
}

.doctor-card img {
  pointer-events: none;
}

.doctor-card .phone,
.doctor-card .whatsapp {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.service-card img {
  pointer-events: none;
}

.service-card .content {
  position: relative;
  z-index: 10;
}

/* Ensure all buttons and links are clickable */
.btn, .btn-main, a[href] {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

/* Additional fixes for specialty cards */
.specialty-card {
  position: relative;
}

.specialty-card a {
  position: relative;
  z-index: 20;
  pointer-events: auto;
}

/* Fix for any overlapping elements */
.specialty-card * {
  position: relative;
}

.specialty-card .doctors-count {
  position: relative;
  z-index: 25;
  pointer-events: auto;
  cursor: pointer;
}

/* Additional fixes for specialty cards */
.specialty-card a { 
  position: relative; 
  z-index: 20; 
  pointer-events: auto; 
}

.specialty-card .doctors-count { 
  position: relative; 
  z-index: 25; 
  pointer-events: auto; 
  cursor: pointer; 
}

/* Force all clickable elements to be on top */
a, button, .btn, .btn-main { 
  position: relative !important; 
  z-index: 100 !important; 
  pointer-events: auto !important; 
}

img { 
  pointer-events: none !important; 
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .btn, .btn-main, a[href], button {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    padding: 10px;
  }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .instructions-section {
    padding: 2rem 0;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 1.5rem 0;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .services-list li {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-category:hover,
  .service-card:hover,
  .specialty-card:hover,
  .doctor-card:hover,
  .doctor-slide:hover {
    transform: none;
  }
  
  .services-list li:hover {
    transform: none;
  }
  
  .btn-main:hover,
  .doctor-card .phone:hover,
  .doctor-card .whatsapp:hover,
  .specialty-card .doctors-count:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn, .btn-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 0;
  }
  
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .instruction-card {
    padding: 20px;
  }
  
  .instruction-card .icon {
    font-size: 2.5rem;
  }
  
  .services-detailed {
    padding: 2rem 0;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-content {
    padding: 1.5rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .services-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  