body{
    background: url('../images/home/about-bg.jpg') no-repeat center/cover;
}

.hero{
  min-height: auto;
}

.form-container{
  padding: 40px 100px;
}

form{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label{
  font-weight: 600;
  color: #555;
}

input, textarea{
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s;
}

input:focus, textarea:focus{
  border-color: #2b8cff;
  outline: none;
  box-shadow: 0 0 5px rgba(43,140,255,0.2);
}

textarea{
  min-height: 120px;
  resize: vertical;
}

button{
  background: #2b8cff;
  color: white;
  border: none;
  padding: 12px 15px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover{
  background: #1e6fd1;
}

 /* Modal styles */
.modal-overlay{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.5);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:999;
}

.modal{
  display: flex;
  flex-direction: column;
  gap: 10px;
  background:#fff;
  border-radius:10px;
  padding:30px 25px;
  width:90%;
  max-width:400px;
  text-align:center;
  box-shadow:0 6px 20px rgba(0,0,0,0.2);
  animation: popIn 0.3s ease forwards;
}

@keyframes popIn{
  from{transform:scale(0.8);opacity:0}
  to{transform:scale(1);opacity:1}
}

.modal h3{
  margin-top:0;
  color:#333;
}

.modal p{
  color:#555;
  font-size:15px;
}

.modal button{
  background:#2b8cff;
  border:none;
  color:#fff;
  padding:10px 20px;
  border-radius:6px;
  cursor:pointer;
  margin-top:10px;
  transition:0.3s;
}

.modal button:hover{
  background:#1e6fd1;
}

.modal.error h3{
  color:#c0392b;
}
.modal.success h3{
  color:#16a34a;
}



.locations {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  display: flex;
  gap: 20px;
  width: 100%;
  padding: 20px;
}
.locations-container {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.location-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.location-card.active {
    border-left: 5px solid #1a5d1a;   /* Green left border matching your theme */
    padding-left: 12px;                /* Adjust padding so content doesn't jump */
}

.location-card > div > h3{
  color: #1a5d1a;
  font-size: 1.3rem;
}

.location-card > div > p{
  color: #222;
  font-size: 0.9rem;
}

.side-panel {
  flex: 2;
  background: #fff;
  border-left: 1px solid #ccc;
  padding: 20px;
  overflow-y: auto;
  position: relative;
}
.side-panel h2 {
  margin-top: 0;
  color: #1a5d1a;
}
.side-panel p {
  color: #333;
}
.map-container {
  height: 300px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 15px 0;
}
.direction-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}
.direction-btn:hover {
  background: #0056b3;
}
iframe {
  width: 100%;
  height: 100%;
  border: 0;
}