:root {
  --primary-color: #1e90ff;      /* Medicare blue from logo */
  --primary-rgb: 30, 144, 255;   /* RGB values for primary color */
  --secondary-color: #4CAF50;    /* Medicare green accent */
  --secondary-rgb: 76, 175, 80;  /* RGB values for secondary color */
  --accent-color: #FF7F50;       /* Coral for buttons */
  --accent-rgb: 255, 127, 80;    /* RGB values for accent color */
  --text-color: #333;
  --light-bg: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #212529;
}

img {
  max-width: 100%;
  height: auto;
}

/* Parking Instructions */
.parking-instructions {
  height: 100%;
}

.parking-steps {
  padding-left: 1.5rem;
  margin-bottom: 0;
}

.parking-steps li {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.parking-steps li:last-child {
  margin-bottom: 0;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0,0,0,0.70), rgba(30, 144, 255, 0.60)),
              url('../img/clinic-photos/04.jpeg') center/cover no-repeat;
  padding: 3.5rem 1rem;
  color: white;
  text-align: center;
}

.hero-section h1 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: white;
  font-weight: 700;
}

.hero-section p {
  margin-bottom: 1.5rem;
}

.hero-section .hero-subheading {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  display: inline-block;
  padding: 0.5rem 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  position: relative;
  font-weight: 700;
}

.hero-highlight {
  background-color: rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 0.8rem 1.2rem;
  margin: 0.5rem auto 1.5rem;
  display: inline-block;
  border-left: 5px solid #fff;
  position: relative;
  max-width: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transform: translateY(-5px);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-5px);
  }
}

.highlight-badge {
  position: absolute;
  top: -12px;
  right: -10px;
  background-color: #e63946;
  color: white;
  font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transform: rotate(5deg);
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0% {
    transform: rotate(5deg) scale(1);
  }
  50% {
    transform: rotate(5deg) scale(1.1);
  }
  100% {
    transform: rotate(5deg) scale(1);
  }
}

.key-phrase {
  color: #ffeb3b;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Urgency Indicator */
.urgency-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.pulse-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e63946;
  margin-right: 8px;
  box-shadow: 0 0 0 rgba(230, 57, 70, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(230, 57, 70, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
  }
}

.hero-section .hero-subheading strong {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

/* Button Styles */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  margin: 0.25rem;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(30, 144, 255, 0.3);
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: #0d6efd;  /* Darker blue on hover */
  border-color: #0d6efd;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(30, 144, 255, 0.4);
}

.pulse-button {
  animation: pulse-button 1.5s infinite;
}

@keyframes pulse-button {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(30, 144, 255, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(30, 144, 255, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(30, 144, 255, 0.3);
  }
}

.spots-counter {
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  color: #fff;
  background-color: rgba(230, 57, 70, 0.8);
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
}

.count-highlight {
  font-weight: 800;
  color: #ffeb3b;
  font-size: 1.1rem;
}

/* Section Styles */
section {
  padding: 2rem 0;
}

section h2 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}

/* Why Choose Us */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.25rem;
}

.feature-list li.highlighted {
  background: linear-gradient(to right, rgba(30, 144, 255, 0.07), transparent);
  padding: 0.75rem 0.75rem 0.75rem 2rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  border-left: 3px solid var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.feature-list li.highlighted:hover {
  transform: translateX(5px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.key-benefits-intro {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed rgba(var(--primary-rgb), 0.3);
  display: inline-block;
}

.feature-list li:before {
  content: "";  /* Removed checkmark */
  position: absolute;
  left: 0;
  top: 0.5rem;
}

/* Doctor cards */
.doctor-card {
  text-align: left;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
}

.doctor-card img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
  float: none;
  margin-right: 1rem;
  flex-shrink: 0;
  border: 2px solid #f0f0f0;
}

.doctor-card .doctor-info {
  flex-grow: 1;
}

.doctor-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.doctor-card p {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

/* Mobile specific adjustments for doctor cards */
@media (max-width: 576px) {
  .doctor-card {
    align-items: flex-start;
  }
  
  .doctor-card img {
    width: 70px;
    height: 70px;
  }
}

/* Testimonials */
.testimonial {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.testimonial p {
  margin-bottom: 0.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 0.75rem;
}

.testimonial-author cite {
  font-style: normal;
  font-weight: 600;
}

/* Services */
/* Services Section Styles */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 2.5rem;
}

/* Add specific styles for services section */
section.services-section {
  background: linear-gradient(to bottom, #f9f9f9, #ffffff);
  padding: 3rem 0;
}

.section-header {
  margin-bottom: 2.5rem;
  position: relative;
  text-align: center;
}

.section-header h2 {
  display: inline-block;
  margin: 0 auto;
  font-size: 1.5rem;
  text-align: center;
}

.service-header-icon {
  margin-left: 0.5rem;
  color: var(--primary-color);
  font-size: 1.75rem;
}

.section-subtitle {
  color: #555;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  position: relative;
  padding-left: 1rem;
  border-left: 4px solid var(--primary-color);
}

section.services-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

/* Responsive adjustments for services */
@media (max-width: 768px) {
  .services-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 1.25rem;
  }
    .service-img img {
    width: 75px;
    height: 75px;
  }
  
  .service-icon {
    width: 65px;
    height: 65px;
  }
}

@media (max-width: 576px) {
  .services-container {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* Extra small screen adjustments */
@media (max-width: 400px) {
  .services-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 0 0.25rem;
  }
  
  .service-card {
    padding: 1rem;
    min-height: auto;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
    border-radius: 8px;
  }
  
  .service-img {
    width: 90px;
    height: 90px;
    opacity: 1;
    margin-bottom: 1rem;
    border-radius: 50%;
    overflow: hidden;
  }
  
  .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .service-title {
    font-size: 1.1rem;
    word-wrap: break-word;
    margin-bottom: 0.75rem;
  }
  
  .service-text {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

/* Specific adjustments for devices around 738px width */
@media (max-width: 738px) and (min-width: 401px) {
  .services-container {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0 0.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
  }
  
  .service-img {
    width: 110px;
    height: 110px;
    opacity: 1;
    margin-bottom: 1.25rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.15);
  }
  
  .service-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .service-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

/* Phone-specific optimization for both orientations */
@media (max-width: 738px) {
  .btn {
    white-space: normal; /* Allow button text to wrap */
  }
  
  .hero-section h1 {
    font-size: clamp(1.5rem, 4vw, 1.75rem);
  }
  
  .hero-section .hero-subheading {
    font-size: clamp(1rem, 3vw, 1.25rem);
    padding: 0.5rem 1.2rem;
  }
  
  .section-header h2 {
    font-size: clamp(1.3rem, 4vw, 1.5rem);
  }
  
  .metric-value {
    font-size: 1.5rem;
  }
  
  .metric-label {
    font-size: 0.8rem;
  }
  
  .appointment-type-container {
    padding: 0.75rem;
  }
  
  .review-card {
    min-height: 150px;
  }
  
  /* Additional service card improvements for mobile */
  .service-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  
  /* Add bottom spacing before fixed CTA */
  body {
    padding-bottom: 60px;
  }
  
  /* Improve container padding */
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.service-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(var(--primary-rgb, 30, 144, 255), 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(var(--primary-rgb), 0.3);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, rgba(var(--primary-rgb, 30, 144, 255), 0.7), rgba(var(--primary-rgb, 30, 144, 255), 0.3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #f5f9ff;
  box-shadow: 0 5px 15px rgba(var(--primary-rgb, 30, 144, 255), 0.1);
  opacity: 1;
}

.service-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.05) 0%, rgba(255,255,255,0) 70%);
  z-index: 1;
}

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

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  transform: scale(1);
}

.service-card:hover .service-img {
  box-shadow: 0 8px 25px rgba(var(--primary-rgb, 30, 144, 255), 0.2);
}

.service-card:hover .service-img img {
  transform: scale(1.08);
  filter: brightness(1.05) contrast(1.05);
}

/* For backward compatibility */
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: rgba(var(--primary-rgb), 0.1);
  border-radius: 50%;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(var(--primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0);
  }
}

.service-card:hover .service-icon i {
  color: rgba(var(--primary-rgb), 1);
}

.service-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
  position: relative;
  padding-bottom: 0.75rem;
}

.service-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background-color: rgba(var(--primary-rgb, 30, 144, 255), 0.5);
  transition: all 0.3s ease;
}

.service-card:hover .service-title::after {
  width: 60px;
  background-color: rgba(var(--primary-rgb, 30, 144, 255), 0.8);
}

.service-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Keep service-category and service-description for backward compatibility */
.service-category {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.service-description {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Location */
.map-container {
  height: 200px;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.location-info p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-align:left !important;
  direction:ltr !important;
}

/* Languages */
.languages-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.languages-list span {
  padding: 0.25rem 0.75rem;
  background-color: #f0f0f0;
  border-radius: 50px;
  font-size: 0.9rem;
}

/* Footer */
footer {
  background-color: #212529;
  color: white;
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

footer a {
  color: white;
  text-decoration: none;
}

footer .nav {
  justify-content: center;
  margin-bottom: 1rem;
}

footer .nav-link {
  padding: 0.25rem 0.75rem;
  color: white;
}

.social-icons a {
  margin: 0 0.5rem;
}

/* Divider */
.section-divider {
  height: 1px;
  background-color: #e9ecef;
  margin: 0.5rem 0;
}

/* Lab & Diagnostics */
.lab-image {
  margin: 1.5rem auto;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  max-width: 85%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Lab image adjustments for small screens */
@media (max-width: 400px) {
  .lab-image {
    max-width: 100%;
    margin: 1rem auto;
  }
  
  .lab-image img {
    width: 100%;
    border-radius: 6px;
  }
}

/* Lab image adjustments for 738px width devices */
@media (max-width: 738px) and (min-width: 401px) {
  .lab-image {
    max-width: 95%;
    margin: 1.25rem auto;
    border-radius: 10px;
  }
}

/* Metrics and Reviews Section Styles */
.metric-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(30, 144, 255, 0.15);
}

.metric-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.9rem;
  color: #666;
}

.review-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
  height: auto;
  min-height: 180px;
  margin: 0 auto;
  max-width: 90%;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
}

.review-text {
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  flex-grow: 1;
  margin-bottom: 0.5rem;
}

.reviewer-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.2;
}

.reviewer-info {
  margin-top: 1rem;
}

.reviewer-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  background-color: #f5f5f5; /* Light gray background as placeholder */
  min-width: 40px; /* Ensure consistent width even when image is loading */
}

.stars {
  color: #FF9800;
  letter-spacing: 2px;
}

#dynamicReviewsCarousel .carousel-control-prev,
#dynamicReviewsCarousel .carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

#dynamicReviewsCarousel .carousel-control-prev {
  left: 0;
}

#dynamicReviewsCarousel .carousel-control-next {
  right: 0;
}

.reviews-metrics-section {
  background-color: #f8f9fa;
}

/* Call to Action Button Fixed */
.cta-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.cta-fixed .btn {
  width: 100%;
  max-width: 280px;
  padding: 0.8rem 1rem;
  font-size: 1.1rem;
  margin: 0;
}

/* Extra small screen adjustments for CTA button */
@media (max-width: 400px) {
  .cta-fixed {
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.15);
    bottom: 0;
    width: 100%;
  }
  
  .cta-fixed .btn {
    max-width: 100%;
    padding: 0.7rem;
    font-size: 1rem;
    border-radius: 6px;
  }
  
  .phone-number-highlight a {
    font-size: 0.95rem;
  }
  
  .phone-number-highlight i {
    font-size: 1.1rem;
  }
}

/* Specific adjustments for 738px width devices */
@media (max-width: 738px) {
  /* Fixed CTA button */
  .cta-fixed {
    padding: 0.6rem;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.15);
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .cta-fixed .btn {
    max-width: 90%;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
  }
  
  /* Adjust phone number displays */
  .phone-number-highlight {
    padding: 0.7rem 1rem;
    margin: 0 0.25rem;
  }
  
  .phone-number-highlight a {
    font-size: 1.1rem;
  }
  
  /* Improve modal experience */
  .appointment-modal .modal-dialog {
    margin: 0.5rem;
    max-width: calc(100% - 1rem);
  }
  
  .appointment-modal .modal-content {
    border-radius: 8px;
  }
  
  /* Improve general spacing */
  section {
    padding: 1.75rem 0;
  }
  
  .section-divider {
    margin: 0.25rem 0;
  }
  
  /* Optimize doctor cards */
  .doctor-card img {
    width: 70px;
    height: 70px;
  }
  
  .doctor-card h3 {
    font-size: 1.1rem;
  }
  
  /* Improve services section for this specific width */
  .services-section {
    padding-bottom: 2rem;
  }
  
  .section-header h2 {
    margin-bottom: 0.5rem;
  }
}

html {
  scroll-behavior: smooth;
}

/* Modal Styles */
.appointment-modal .modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.appointment-modal .modal-header {
  background-color: var(--primary-color);
  color: white;
  border-radius: 12px 12px 0 0;
  border-bottom: none;
}

.appointment-modal .modal-title {
  font-weight: 600;
}

.appointment-modal .modal-body {
  padding: 1.5rem;
}

.appointment-modal .modal-footer {
  border-top: none;
  padding: 0.75rem 1.5rem 1.5rem 1.5rem;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.appointment-type-container {
  margin-bottom: 1rem;
  background-color: rgba(30, 144, 255, 0.05);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(30, 144, 255, 0.1);
}

/* Phone Number Highlight */
.phone-number-highlight {
  background-color: var(--primary-color);
  border-radius: 50px;
  padding: 0.8rem 1.5rem;
  box-shadow: 0 5px 15px rgba(30, 144, 255, 0.4);
  transition: all 0.3s ease;
  text-align: center;
}

.phone-number-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30, 144, 255, 0.6);
}

.phone-number-highlight a {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  display: block;
}

.phone-number-highlight i {
  font-size: 1.5rem;
  color: white;
}

@media (max-width: 576px) {
  .phone-number-highlight a {
    font-size: 1.1rem;
  }
  
  .phone-number-highlight i {
    font-size: 1.3rem;
  }
}

/* Media Queries */
@media (min-width: 768px) {
  .hero-section h1 {
    font-size: 2.25rem;
  }
  
  .hero-section p {
    font-size: 1.2rem;
  }
  
  .hero-section .hero-subheading {
    font-size: 1.4rem;
    padding: 0.6rem 2rem;
  }
  
  section h2 {
    font-size: 1.75rem;
  }
  
  .feature-list {
    column-count: 2;
  }
  
  .map-container {
    height: 300px;
  }
}

@media (min-width: 992px) {
  .feature-list {
    column-count: 3;
  }
  
  .call-now-btn {
    max-width: 400px;
  }
}

/* Hero Button Styles */
.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.call-now-btn {
  width: 100%;
}

@media (min-width: 768px) {
  .hero-section h1 {
    font-size: 2.25rem;
  }
  
  .hero-section p {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .call-now-btn {
    width: auto;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .call-now-btn {
    max-width: 400px;
  }
}

/* Clinic Gallery */
.clinic-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
@media (max-width: 576px) {
  .clinic-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
