/*--------------------------------------------------------------
# Contact Page Section
--------------------------------------------------------------*/

/* Contact Info Cards */
.contact-info-card {
  background: var(--surface-color);
  padding: 35px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border-color: #FFB700;
}

.contact-info-card .icon-box {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #FFB700 0%, #FFA000 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #000;
  font-size: 28px;
}

.contact-info-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.contact-info-card p {
  margin-bottom: 5px;
  font-size: 0.95rem;
  color: var(--default-color);
  line-height: 1.6;
}

.contact-info-card a {
  color: #FFB700;
  font-weight: 500;
}

.contact-info-card a:hover {
  color: #E6A200;
  text-decoration: underline;
}

/* Map Section */
.map-section-wrapper {
  padding: 0;
}

.map-container {
  width: 100%;
  overflow: hidden;
}

.map-container iframe {
  display: block;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.map-container iframe:hover {
  filter: grayscale(0%);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--surface-color);
  padding: 45px 50px;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 30px 25px;
  }
}

.contact-form-wrapper .form-label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.contact-form-wrapper .input-group-text {
  background: #f8f9fa;
  border-color: #dee2e6;
  color: #FFB700;
  padding-left: 15px;
  padding-right: 15px;
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
  border-color: #dee2e6;
  padding: 12px 15px;
  font-size: 0.95rem;
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
  border-color: #FFB700;
  box-shadow: 0 0 0 0.25rem rgba(255, 183, 0, 0.2);
}

.contact-form-wrapper textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.contact-form-wrapper .btn-primary {
  background: linear-gradient(135deg, #FFB700 0%, #FFA000 100%);
  border: none;
  color: #000;
  font-weight: 600;
  padding: 14px 40px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-form-wrapper .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 183, 0, 0.4);
  color: #000;
}

/* Social Links Large */
.social-links-large {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-links-large .social-link {
  width: 55px;
  height: 55px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-links-large .social-link:hover {
  background: #FFB700;
  color: #000;
  border-color: #FFB700;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 183, 0, 0.3);
}
