/* ====================================
   CONTACT PAGE STYLES
   ==================================== */

/* Main Contact Section */
.contact-main-section {
  padding: 60px 20px 80px;
  background-color: #ffffff;
}

.contact-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
}

/* Left Side - Image */
.contact-image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background: transparent;
}

.contact-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 0;
}

/* Right Side - Form */
.contact-form-wrapper {
  padding: 0;
  position: relative;
  top: 0;
}

.contact-form-title {
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 18px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.3;
}

.contact-form-description {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0 0 30px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Form Styles */
.contact-form {
  width: 100%;
}

.form-group {
  margin-bottom: 25px;
}

.form-group:last-of-type {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin: 0 0 8px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
  background-color: #ffffff;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #0066CC;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.form-submit-wrapper {
  margin-top: 30px;
}

.form-submit-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background-color: #0066CC;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit-button:hover {
  background-color: #004499;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.form-submit-button:active {
  transform: translateY(0);
}

.submit-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Contact Info Section */
.contact-info-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0066CC;
  border-radius: 50%;
  color: #ffffff;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
}

.contact-info-text {
  flex: 1;
}

.contact-info-value {
  font-size: 17px;
  font-weight: 600;
  color: #333;
  margin: 0 0 6px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.contact-info-label {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Map Section */
.contact-map-section {
  width: 100%;
  padding: 0;
}

.map-wrapper {
  width: 100%;
  position: relative;
}

.contact-map {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .contact-form-title {
    font-size: 26px;
  }
}

@media screen and (max-width: 768px) {
  .contact-main-section {
    padding: 50px 15px 60px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-image-wrapper {
    order: 2;
  }
  
  .contact-form-wrapper {
    order: 1;
  }
  
  .contact-form-title {
    font-size: 26px;
    margin-bottom: 18px;
  }
  
  .contact-form-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  
  .contact-info-section {
    padding: 50px 15px;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-map {
    height: 350px;
  }
}

@media screen and (max-width: 480px) {
  .contact-main-section {
    padding: 50px 10px;
  }
  
  .contact-form-title {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .contact-form-description {
    font-size: 14px;
    margin-bottom: 25px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-input,
  .form-textarea {
    padding: 11px 14px;
    font-size: 14px;
  }
  
  .form-textarea {
    min-height: 120px;
  }
  
  .form-submit-button {
    padding: 12px 28px;
    font-size: 15px;
    width: 100%;
  }
  
  .contact-info-section {
    padding: 40px 10px;
  }
  
  .contact-info-item {
    gap: 15px;
  }
  
  .contact-info-icon {
    width: 40px;
    height: 40px;
  }
  
  .contact-info-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .contact-info-value {
    font-size: 16px;
  }
  
  .contact-info-label {
    font-size: 13px;
  }
  
  .contact-map {
    height: 300px;
  }
}
