.contact-section {
  padding: 120px 0 60px;
}

.contact-container {
  width: 100vw;      
  margin-left: 0;     
  margin-right: 0;    
  padding: 20px;     
  background-color: var(--gray-color);
}

.arrow-container {
  text-align: center;
  margin: 20px 0;
  margin-top: -2px;
}

.bouncing-arrow {
  font-size: 3rem;
  color: var(--primary-color);
  animation: bounce 1.2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.query-button {
  display: inline-block;
  padding: 8px 32px;
  border-radius: var(--radius-xl);
  background: var(--primary-color);
  color: var(--light-color);
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.query-button#planTripBtn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.contact-card {
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 30px #00000014;
  overflow: hidden;
  height: 100%;
  background: var(--primary-color);
  color: var(--light-color);
  padding: 28px;
}

.contact-card .icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff1f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.social-media {
  justify-content: space-between;
  font-size: 1.2rem;
  padding: 0px 10px;
}

.info-card .icon i {
  color: var(--light-color);
}

.info-card .social {
  font-size: 1.1rem;
  opacity: 0.9;
}

.info-card .social:hover {
  opacity: 1;
}

.info-item {
  font-size: 15px;
}

.location-card {
  position: relative;
}

.location-embed {
  position: relative;
  width: 100%;
  height: 400px;
}

.location-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.location-embed .view-maps {
  position: absolute;
  bottom: 10px; 
  left: 50%;
  padding: 8px 20px;
  transform: translateX(-50%);
  z-index: 10;
  border-radius: 30px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  font-size: 1rem;
  font-weight: 600;
}

.location-embed .view-maps:hover {
  background: var(--secondary-color);
}