.branches-section {
  padding: 80px 20px;
  background: #f8fafc;
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2d3748;
  margin-bottom: 50px;
}

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

.branch-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

.branch-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.branch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.branch-card:hover .branch-image img {
  transform: scale(1.05);
}

.branch-details {
  padding: 25px;
}

.branch-name {
  color: #c53030;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.contact-info {
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: #4a5568;
}
.call-now-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 30px;
  background: #c53030;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 1.1rem;
}

.call-now-btn:hover {
  background: #9b2c2c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(197, 48, 48, 0.2);
}
.arrow {
  width: 20px;
  height: 20px;
  fill: white;
  transition: transform 0.3s ease;
}
.call-now-btn:hover .arrow {
  transform: translateX(5px);
}

@media (max-width: 1024px) {
  .branch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .branch-grid {
    grid-template-columns: 1fr;
  }
  
  .branch-image {
    height: 220px;
  }
  
  .branch-details {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .branches-section {
    padding: 60px 15px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .info-item {
    font-size: 0.9rem;
  }
  
 
}.plain-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.plain-link:hover {
  color: #c53030;
  text-decoration: none;
}


.info-item p,
.info-item a {
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .call-now-btn {
    font-size: 1rem;
    padding: 14px 20px;
  }
}