/* Hero Section */
  .hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #357abd 100%);
    color: white;
    padding: 100px 0 80px 0;
    position: relative;
    overflow: hidden;
  }

  .hero-section .container {
    position: relative;
    z-index: 1;
  }

  .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  }

  .hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
  }

  .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
  }

  .hero-cta-btn {
    background: white;
    color: var(--primary-color);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }

  .hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
    color: var(--primary-color);
  }

/* About section */
.about-section {
  background: #f9fbfd;
  position: relative;
  z-index: 1;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(71,159,248,0.05), rgba(255,255,255,0.9));
  z-index: -1;
}

.about-content {
  max-width: 800px;
  color: var(--secondary-color);
  font-size: 1.05rem;
  line-height: 1.8;
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.about-content h2 {
  color: var(--primary-color);
  font-weight: 600;
}

.about-content p {
  margin-bottom: 1.2rem;
}

  /* Locations Section */
.locations-section {
    background: var(--white);
}

.location-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(71, 159, 248, 0.2);
}

.location-title {
    background: linear-gradient(135deg, var(--primary-color) 0%, #357abd 100%);
    color: var(--white);
    padding: 1.5rem;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-title i {
    font-size: 2rem;
}

.map-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.map-container iframe {
    border: none;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.location-card:hover .map-container iframe {
    filter: grayscale(0%) brightness(1.05);
}

.location-info {
    padding: 2rem;
}

.location-address {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.location-address i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.location-phone {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-phone i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.location-phone a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-phone a:hover {
    color: #357abd;
}

.location-directions {
    text-align: center;
}

.directions-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(71, 159, 248, 0.3);
}

.directions-btn:hover {
    background: #357abd;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(71, 159, 248, 0.4);
}

.directions-btn i {
    font-size: 1.2rem;
}


@media (max-width: 768px) {
    .location-title {
    font-size: 1.5rem;
    padding: 1.2rem;
    }
    
    .location-info {
    padding: 1.5rem;
    }
    
    .map-container {
    height: 250px;
    }
}