/* Prevent horizontal scroll */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
/* Section 1*/
.contact-section {
  padding: 80px 20px;
  background: #ffffff;
}

/* Container */
.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* Left Side */
.contact-left h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.desc {
  color: #666;
  margin-bottom: 20px;
}

.info {
  font-weight: 500;
  margin-bottom: 10px;
}

/* Support Grid */
.support-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.support-grid h3 {
  margin-bottom: 8px;
}

/* Form */
.contact-form-box {
  background: #f4f4f4;
  padding: 30px;
  border-radius: 20px;
}

.contact-form-box h3 {
  margin-bottom: 5px;
}

.form-sub {
  color: #666;
  margin-bottom: 20px;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 30px;
  border: 1px solid #ccc;
  outline: none;
}

textarea {
  border-radius: 15px;
  resize: none;
}

.row {
  display: flex;
  gap: 15px;
}

.phone-row {
  display: flex;
}

.phone-row select {
  width: 80px;
  border-radius: 30px 0 0 30px;
}

.phone-row input {
  border-radius: 0 30px 30px 0;
}

/* Button */
form button {
  width: 100%;
  padding: 14px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

/* animation  */
/* ===== INITIAL HIDDEN STATE ===== */
.contact-left,
.contact-right,
.support-grid > div {
  opacity: 0;
  transition: all 1s ease;
}

/* Left slide */
.contact-left {
  transform: translateX(-80px);
}

.contact-left.show {
  opacity: 1;
  transform: translateX(0);
}

/* Right slide */
.contact-right {
  transform: translateX(80px);
}

.contact-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* Support cards fade up */
.support-grid > div {
  transform: translateY(40px);
}

.support-grid > div.show {
  opacity: 1;
  transform: translateY(0);
}

/* Social icon animation */
.social-icon {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* section -2  */
/* ===== SECTION ===== */
.location-section {
  background: #ffffff;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

/* ===== CONTAINER ===== */
.location-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ===== MAP ===== */
.location-map {
  width: 100%;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== INFO SIDE ===== */
.location-subtitle {
  font-size: 14px;
  color: #777;
  margin-bottom: 8px;
}

.location-heading {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.location-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.location-address {
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* ===== BUTTON ===== */
.location-btn {
  display: inline-block;
  padding: 12px 20px;
  background: #2563eb;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.location-btn:hover {
  background: #1e40af;
}

.map-animate-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 1s ease;
}

.map-animate-left.show {
  opacity: 1;
  transform: translateX(0);
}

/* section-3  */

/* Responsive */
@media (max-width: 992px) {
 
}

/* Responsive */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .row {
    flex-direction: column;
  }
  .contact-section {
  padding: 33px 20px;
  }
  /* section-2  */
  .location-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .location-map {
    height: 300px;
  }
  .location-section {
  padding: 33px 20px;
}
/* section-3  */
 
}