:root {
  --color-primary: #2563eb;
  --color-secondary: #1e40af;
  --color-dark: #1f2937;
  --color-light: #f3f4f6;
  --color-text: #374151;
  --color-text-light: #6b7280;
  --color-yellow: #fbbf24;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--color-text);
  line-height: 1.6;
}

.top-bar {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: white;
  padding: 0.75rem 0;
  font-size: 0.9rem;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-bar-left span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-left i {
  color: var(--color-yellow);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-link {
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}

.top-bar-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.top-bar-link i {
  color: #25d366;
  font-size: 1.1rem;
}

.top-bar-phone {
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  background: rgba(251, 191, 36, 0.15);
  transition: all 0.3s;
}

.top-bar-phone:hover {
  background: rgba(251, 191, 36, 0.25);
  color: white;
}

.top-bar-phone i {
  color: var(--color-yellow);
  animation: ring 2s infinite;
}

@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-10deg); }
  20%, 40% { transform: rotate(10deg); }
  50% { transform: rotate(0deg); }
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-dark) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand i {
  font-size: 1.75rem;
  color: var(--color-primary);
}

.brand-text {
  font-weight: 700;
}

.brand-highlight {
  color: var(--color-primary);
}

.nav-link {
  font-weight: 500;
  color: var(--color-text) !important;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem !important;
}

.nav-link i {
  font-size: 0.9rem;
  opacity: 0.7;
}

.nav-link:hover {
  color: var(--color-primary) !important;
}

.nav-link:hover i {
  opacity: 1;
}

.btn-call-action {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white !important;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-call-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  color: white !important;
}

.btn-call-action i {
  font-size: 1rem;
}

@media (max-width: 991px) {
  .top-bar {
    font-size: 0.8rem;
    padding: 0.5rem 0;
  }

  .top-bar-content {
    justify-content: center;
    text-align: center;
  }

  .top-bar-left {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .top-bar-right {
    width: 100%;
    justify-content: center;
  }

  .btn-call-action {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
  }
}

.hero-carousel {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-slide-1 {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
  position: relative;
}

.hero-slide-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-slide-2 {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
  position: relative;
}

.hero-slide-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-slide-3 {
  background: linear-gradient(135deg, #172554 0%, #1e3a8a 50%, #1e40af 100%);
  position: relative;
}

.hero-slide-3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  color: white;
  text-align: center;
  padding: 5rem 0;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  opacity: 0.6;
}

.carousel-indicators button.active {
  opacity: 1;
}

.btn-primary-custom {
  background: var(--color-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary-custom:hover {
  background: var(--color-secondary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary-custom {
  background: white;
  color: var(--color-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid var(--color-primary);
}

.btn-secondary-custom:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.service-card .card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.75rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-dark);
}

.service-card p {
  color: var(--color-text-light);
  margin: 0;
}

.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.service-card-link:hover {
  color: inherit;
}

.service-card-arrow {
  margin-top: 1rem;
  color: var(--color-primary);
  font-size: 1.25rem;
  opacity: 0;
  transition: all 0.3s;
}

.service-card-link:hover .service-card-arrow {
  opacity: 1;
  transform: translateX(5px);
}

.service-detail-list {
  list-style: none;
  padding: 0;
}

.service-detail-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.service-detail-list li i {
  color: var(--color-primary);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.bg-light-custom {
  background-color: var(--color-light);
}

.neighborhood-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  text-decoration: none;
  color: var(--color-text);
  height: 100%;
}

.neighborhood-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
  color: var(--color-text);
}

.neighborhood-card i {
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.neighborhood-card span {
  font-weight: 500;
  font-size: 0.95rem;
}

.neighborhood-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem;
  color: var(--color-dark);
}

.neighborhood-card p {
  color: var(--color-text-light);
  margin: 0;
}

.accordion-button:not(.collapsed) {
  background-color: var(--color-primary);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--color-primary);
}

.blog-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  color: inherit;
}

.blog-card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-dark);
}

.blog-card-content p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.blog-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.price-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s;
  text-align: center;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.price-card.featured {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  transform: scale(1.05);
}

.price-card.featured:hover {
  transform: scale(1.08) translateY(-5px);
}

.price-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.price-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1.5rem 0;
}

.price-card .price span {
  font-size: 1rem;
  font-weight: 400;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.price-card ul li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-card ul li i {
  color: var(--color-primary);
}

.price-card.featured ul li i {
  color: white;
}

footer {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: white;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

footer h5 {
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

footer h6 {
  font-weight: 600;
  color: white;
}

footer p {
  line-height: 1.8;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

footer ul {
  padding-left: 0;
}

footer ul li {
  margin-bottom: 0.75rem;
}

footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s;
}

footer a:hover {
  color: var(--color-yellow);
  padding-left: 5px;
}

footer hr {
  border-color: rgba(255, 255, 255, 0.15);
  margin: 2rem 0 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
  font-size: 0.95rem;
}

.footer-links a i {
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-links.footer-locations li {
  font-size: 0.9rem;
}

.btn-footer-more {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(37, 99, 235, 0.4);
  border-radius: 6px;
  color: var(--color-yellow) !important;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-footer-more:hover {
  background: rgba(37, 99, 235, 0.3);
  border-color: var(--color-primary);
  transform: translateX(5px);
  padding-left: 1rem !important;
}

.footer-istanbul-districts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-istanbul-districts a,
.footer-istanbul-districts span {
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  font-size: 0.85rem;
  transition: all 0.3s;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-istanbul-districts a:hover {
  background: rgba(37, 99, 235, 0.2);
  border-color: var(--color-primary);
  color: var(--color-yellow);
  transform: translateY(-2px);
  padding-left: 0.9rem !important;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item a {
  color: var(--color-primary);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--color-text-light);
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.feature-image-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  transition: transform 0.3s;
}

.feature-image:hover {
  transform: scale(1.05);
}

.feature-image-placeholder {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  min-height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 1rem;
  transition: all 0.3s;
}

.feature-image-placeholder i {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.feature-image-placeholder p {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  opacity: 0.9;
}

.feature-image-placeholder:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.3);
}

.mobile-call-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.mobile-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.mobile-btn-call {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.mobile-btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.mobile-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: white;
}

@media (min-width: 769px) {
  .mobile-call-buttons {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

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

  .hero-slide {
    min-height: 450px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .price-card.featured {
    transform: scale(1);
  }

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

  .feature-image-wrapper {
    margin-bottom: 2rem;
  }

  .navbar .btn-primary-custom {
    margin: 1rem 0;
    width: 100%;
    justify-content: center;
  }
}

.hover-card {
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
  text-decoration: none;
  color: inherit;
}

.content-area {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text);
}

.content-area p {
  margin-bottom: 1.5rem;
}

.sidebar-widget {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sidebar-widget h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.sidebar-widget ul {
  margin: 0;
  padding: 0;
}

.sidebar-widget ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #dee2e6;
}

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

.sidebar-widget ul li a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s;
}

.sidebar-widget ul li a:hover {
  color: var(--color-primary);
}

.sidebar-widget ul li a i {
  margin-right: 0.5rem;
  color: var(--color-primary);
}

.service-area-card {
  display: block;
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.service-area-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.15);
  border-color: var(--color-primary);
  color: inherit;
  text-decoration: none;
}

.service-area-card .area-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.service-area-card:hover .area-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-area-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-dark);
}

.service-area-card p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.service-area-card .area-link {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.9rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.service-area-card:hover .area-link {
  opacity: 1;
}

.service-area-card .area-link i {
  transition: transform 0.3s ease;
}

.service-area-card:hover .area-link i {
  transform: translateX(5px);
}

.feature-box {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
  transition: left 0.5s;
}

.feature-box:hover::before {
  left: 100%;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.15);
  border-color: var(--color-primary);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.feature-box:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.feature-box h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.feature-box p {
  color: var(--color-text-light);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.btn-lg {
  padding: 0.9rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin: 0 auto;
}

.location-item {
  background: white;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-weight: 500;
}

.location-item i {
  color: var(--color-primary);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.location-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
  border-color: var(--color-primary);
  color: var(--color-primary);
  text-decoration: none;
}

.location-item:hover i {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.75rem;
  }

  .location-item {
    padding: 1rem;
    font-size: 0.9rem;
  }
}
