/* 
 * Google Map Component - Additional Styling Options
 * File: public/css/google-map.css
 * 
 * Include this file in your layout if you want additional map styles
 */

/* Enhanced Map Container */
.google-map-container {
  padding: 60px 20px;
}

/* Animated Title */
.google-map-container .map-title {
  animation: fadeInDown 0.8s ease-in-out;
  position: relative;
}

.google-map-container .map-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #03a4e3, #0066cc);
  border-radius: 2px;
}

/* Enhanced Map Wrapper */
.map-wrapper {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Loading Animation */
.map-wrapper iframe {
  animation: fadeIn 1s ease-in-out;
}

/* Alternative Style - Dark Theme */
.google-map-dark .map-title {
  color: #ffffff;
}

.google-map-dark .google-map-container {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

/* Alternative Style - Minimal */
.google-map-minimal .map-wrapper {
  border-radius: 0;
  box-shadow: none;
  border: 2px solid #e0e0e0;
}

.google-map-minimal .map-title {
  font-weight: 400;
  color: #666;
}

/* Alternative Style - Bordered */
.google-map-bordered .map-wrapper {
  border: 5px solid #03a4e3;
  padding: 10px;
  background: white;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Icon before title (optional) */
.map-title-with-icon::before {
  content: "📍";
  margin-right: 10px;
  font-size: 1.2em;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
  .google-map-container {
    padding: 30px 10px;
  }

  .google-map-container .map-title::after {
    width: 60px;
    height: 3px;
  }
}

/* Print Styles */
@media print {
  .google-map-container {
    page-break-inside: avoid;
  }
}

/* RTL Support (if needed) */
[dir="rtl"] .google-map-container .map-title::after {
  right: 50%;
  left: auto;
}
/* Contact Location Section - Grid Layout */
.contact-location-section {
  padding: 60px 20px;
}
.contact-details-inner {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.contact-location-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.location-map {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.location-map:hover {
  transform: translateY(-5px);
}

.location-details {
  background: white;
  border-radius: 15px;
  padding: 20px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-heading {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 10px;
}

.contact-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #03a4e3, #0066cc);
  border-radius: 2px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: #e9f5ff;
  transform: translateX(5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #03a4e3, #0066cc);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 22px;
  color: white;
}

.contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.contact-text p {
  font-size: 15px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-location-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .location-details {
    padding: 30px;
  }

  .contact-heading {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .contact-location-section {
    padding: 40px 15px;
  }

  .location-details {
    padding: 25px;
  }

  .contact-heading {
    font-size: 24px;
  }

  .contact-info-item {
    padding: 15px;
    margin-bottom: 20px;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
  }

  .contact-icon i {
    font-size: 18px;
  }

  .contact-text h4 {
    font-size: 16px;
  }

  .contact-text p {
    font-size: 14px;
  }
}
