/* =========================================================================location-map-main-section=========================================================== */
body{
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* -----------------------------------------------------------------------1----------------------------------------------------------------------------------------- */

.location-map-main-section{
    min-height: 100vh;
    width: 100%;
    border: 2px solid transparent;
    background-color: #ebe3da;
    padding: 20px 0;
    margin-top: 6rem;
  }
  
  .location-map-main-section #location-map-title{
    text-align: center;
    margin-top: 5%;
    margin-bottom: 3%;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    letter-spacing: 0.1rem;
    font-weight: 500;
    padding: 0 20px;
  }
  
  .location-map-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
  }
  
  .location-map-container iframe{
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }
  
  .location-map-container .location {
    margin-bottom: 40px;
    margin-top: 1%;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .location .map-container {
    width: 100%;
    height: 400px;
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .location h2 {
    margin-bottom: 10px;
    margin-top: 0;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #333;
  }

  .location address {
    font-style: normal;
    margin-bottom: 10px;
  }

  .location address p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
  }

  .location p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.6;
    color: #666;
    margin-bottom: 10px;
  }

/* Responsive Design - Large Desktop */
@media (min-width: 1200px) {
  .location-map-container {
    width: 80%;
    padding: 30px;
  }
  
  .location {
    padding: 30px;
  }
  
  .location .map-container {
    height: 450px;
  }
}

/* Responsive Design - Medium Desktop */
@media (max-width: 1199px) and (min-width: 992px) {
  .location-map-container {
    width: 85%;
    padding: 25px;
  }
  
  .location {
    padding: 25px;
  }
  
  .location .map-container {
    height: 400px;
  }
}

/* Responsive Design - Small Desktop/Tablet Landscape */
@media (max-width: 991px) and (min-width: 768px) {
  .location-map-container {
    width: 90%;
    padding: 20px;
  }
  
  .location {
    padding: 20px;
  }
  
  .location .map-container {
    height: 350px;
  }
}

/* Responsive Design - Tablet Portrait */
@media (max-width: 767px) and (min-width: 576px) {
  .location-map-main-section {
    padding: 15px 0;
  }
  
  .location-map-main-section #location-map-title {
    margin-top: 3%;
    margin-bottom: 2%;
    padding: 0 15px;
  }
  
  .location-map-container {
    width: 95%;
    padding: 15px;
  }
  
  .location {
    padding: 15px;
    margin-bottom: 30px;
  }
  
  .location .map-container {
    height: 300px;
    margin-top: 12px;
  }
}

/* Responsive Design - Mobile Large */
@media (max-width: 575px) and (min-width: 480px) {
  .location-map-main-section {
    padding: 10px 0;
  }
  
  .location-map-main-section #location-map-title {
    margin-top: 2%;
    margin-bottom: 2%;
    padding: 0 10px;
  }
  
  .location-map-container {
    width: 98%;
    padding: 10px;
  }
  
  .location {
    padding: 12px;
    margin-bottom: 25px;
  }
  
  .location .map-container {
    height: 250px;
    margin-top: 10px;
  }
  
  .location h2 {
    margin-bottom: 8px;
  }
  
  .location p {
    margin-bottom: 8px;
  }
}

/* Responsive Design - Mobile Medium */
@media (max-width: 479px) and (min-width: 375px) {
  .location-map-main-section {
    padding: 8px 0;
  }
  
  .location-map-main-section #location-map-title {
    margin-top: 2%;
    margin-bottom: 2%;
    padding: 0 8px;
  }
  
  .location-map-container {
    width: 100%;
    padding: 8px;
  }
  
  .location {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 6px;
  }
  
  .location .map-container {
    height: 220px;
    margin-top: 8px;
    border-radius: 6px;
  }
  
  .location h2 {
    margin-bottom: 6px;
  }
  
  .location p {
    margin-bottom: 6px;
    line-height: 1.5;
  }
}

/* Responsive Design - Mobile Small */
@media (max-width: 374px) {
  .location-map-main-section {
    padding: 5px 0;
  }
  
  .location-map-main-section #location-map-title {
    margin-top: 1%;
    margin-bottom: 1%;
    padding: 0 5px;
  }
  
  .location-map-container {
    width: 100%;
    padding: 5px;
  }
  
  .location {
    padding: 8px;
    margin-bottom: 15px;
    border-radius: 4px;
  }
  
  .location .map-container {
    height: 200px;
    margin-top: 6px;
    border-radius: 4px;
  }
  
  .location h2 {
    margin-bottom: 5px;
  }
  
  .location p {
    margin-bottom: 5px;
    line-height: 1.4;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .location-map-container .location {
    transition: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .location {
    border: 2px solid #000;
  }
  
  .location h2 {
    color: #000;
  }
  
  .location p {
    color: #000;
  }
}