/*--------------------------------------------------------------
# Contact Section - Map-Based Design
--------------------------------------------------------------*/

/* Contact Section Container */
.contact {
  position: relative;
  padding: 80px 0;
  background: #f8f9fa;
}

/* Section Title */
.contact .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.contact .section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.contact .section-title p {
  font-size: 17px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contact Container */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* Map Section */
.contact-map {
  position: relative;
  min-height: 600px;
  background: #e9ecef;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: none;
}

/* Form Section */
.contact-form-section {
  padding: 50px 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Motivational Text */
.contact-intro {
  margin-bottom: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f4ff 0%, #fff5f7 100%);
  border-left: 4px solid #4b08a1;
  border-radius: 8px;
}

.contact-intro p {
  font-size: 15px;
  color: #555;
  margin: 0;
  line-height: 1.7;
  font-weight: 500;
}

/* Contact Form */
.msg-form {
  margin-bottom: 35px;
}

.msg-form .form-group {
  margin-bottom: 25px;
}

.msg-form input,
.msg-form textarea {
  width: 100%;
  padding: 16px 0;
  font-size: 15px;
  color: #333;
  background: transparent;
  border: none;
  border-bottom: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  font-family: 'Outfit', sans-serif;
}

.msg-form input:focus,
.msg-form textarea:focus {
  outline: none;
  border-bottom-color: #4b08a1;
}

.msg-form input::placeholder,
.msg-form textarea::placeholder {
  color: #aaa;
}

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

.msg-form button[type="submit"] {
  width: 100%;
  padding: 17px 32px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #4b08a1 0%, #6b1fb8 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(75, 8, 161, 0.25);
}

.msg-form button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(75, 8, 161, 0.35);
  background: linear-gradient(135deg, #3d0682 0%, #5a18a0 100%);
}

.msg-form button[type="submit"]:active {
  transform: translateY(-1px);
}

/* Contact Info Items */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 25px;
  border-top: 2px solid #f0f0f0;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}

.contact-info-item:hover {
  transform: translateY(-3px);
}

.contact-info-item .icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #4b08a1 0%, #6b1fb8 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(75, 8, 161, 0.2);
}

.contact-info-item .icon i {
  font-size: 20px;
  color: #ffffff;
}

.contact-info-item .content h4 {
  font-size: 13px;
  font-weight: 700;
  color: #4b08a1;
  margin: 0 0 3px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-item .content p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact {
    padding: 60px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 400px;
  }

  .contact-map iframe {
    min-height: 400px;
  }

  .contact-form-section {
    padding: 40px 35px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 50px 0;
  }

  .contact .section-title h2 {
    font-size: 36px;
  }

  .contact .section-title p {
    font-size: 16px;
  }

  .contact-container {
    border-radius: 15px;
  }

  .contact-map {
    min-height: 350px;
  }

  .contact-map iframe {
    min-height: 350px;
  }

  .contact-form-section {
    padding: 35px 30px;
  }

  .contact-intro {
    padding: 18px;
  }

  .contact-intro p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .contact {
    padding: 40px 0;
  }

  .contact .section-title h2 {
    font-size: 32px;
  }

  .contact .section-title p {
    font-size: 15px;
  }

  .contact-container {
    border-radius: 10px;
  }

  .contact-map {
    min-height: 300px;
  }

  .contact-map iframe {
    min-height: 300px;
  }

  .contact-form-section {
    padding: 30px 25px;
  }

  .msg-form button[type="submit"] {
    padding: 15px 28px;
    font-size: 15px;
  }

  .contact-intro {
    padding: 15px;
  }

  .contact-info-item .icon {
    width: 40px;
    height: 40px;
  }

  .contact-info-item .icon i {
    font-size: 18px;
  }
}
