/* ========================== MAIN CONTENT ========================== */
main {
  padding: 50px 20px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

h1 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark-text);
}

.highlight {
  color: var(--orange);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 12px;
  background: rgba(255, 102, 0, 0.15);
  z-index: -1;
  border-radius: 4px;
}

.subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================== CONTACT CARD ========================== */
.card {
  display: flex;
  flex-wrap: wrap;
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 60px;
}

/* ========================== CONTACT INFO SECTION ========================== */
.contact-info {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: #fff;
  padding: 10px 40px;
  flex: 2 1 350px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-info h3 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-info > p {
  font-size: 1rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.info-box {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.info-box:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.info-box i {
  font-size: 1.5rem;
  color: var(--orange);
  background: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.info-box div {
  flex: 1;
}

.info-box strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: white;
}

.info-box p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
}

.schedule-call-btn {
  margin-top: 15px;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 16px 24px;
  cursor: pointer;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.schedule-call-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

.schedule-call-btn i {
  font-size: 1.1rem;
}

/* ========================== FORM SECTION ========================== */
.form-box {
  flex: 2 1 450px;
  padding: 50px 23px;
  background: white;
}

.form-box h3 {
  margin: 0 0 30px 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-text);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.form-row input,
.form-row select {
  flex: 1 1 calc(50% - 10px);
  min-width: 200px;
  padding: 14px 16px;
  font-size: 1rem;
  border-radius: 10px;
  border: 2px solid var(--border-color);
  background: #fafbfd;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-row input:focus,
.form-row select:focus,
textarea:focus {
  border-color: var(--orange);
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

textarea {
  width: 100%;
  min-height: 120px;
  padding: 16px 16px;
  font-size: 1rem;
  border-radius: 10px;
  border: 2px solid var(--border-color);
  background: #fafbfd;
  outline: none;
  resize: vertical;
  font-family: inherit;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.char-count {
  text-align: right;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 20px;
}

.char-count #charCount {
  color: var(--orange);
  font-weight: 600;
}

.send-message-btn {
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  cursor: pointer;
  font-size: 1.05rem;
  float: right;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.send-message-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

.send-message-btn:active {
  transform: translateY(0);
}

.send-message-btn i {
  font-size: 1rem;
}

/* ========================== MAP SECTION ========================== */
.map-section {
  margin-top: 40px;
}

.map-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 25px;
  text-align: center;
}

.map-container {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  background: #e0e0e0;
}
.map-container  iframe {
  width: 100%;
  height: 100%;
  min-height: 250px;
  border: none;
}

/* ========================== TOAST NOTIFICATION ========================== */
.toast {
  position: fixed;
  top: 20px;
  right: -400px;
  background: white;
  color: var(--dark-text);
  padding: 18px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  font-size: 1rem;
  z-index: 10000;
  transition: all 0.5s ease;
  max-width: 350px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast.show {
  right: 20px;
}

.toast.success {
  border-left: 5px solid var(--success-color);
}

.toast.success::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--success-color);
  font-size: 1.3rem;
}

.toast.error {
  border-left: 5px solid var(--error-color);
}

.toast.error::before {
  content: '\f06a';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--error-color);
  font-size: 1.3rem;
}

/* ========================== RESPONSIVE ========================== */
@media (max-width: 900px) {
  .card {
    flex-direction: column;
  }

  .contact-info,
  .form-box {
    min-width: 100%;
    flex: none;
  }

  .send-message-btn {
    width: 100%;
    float: none;
    justify-content: center;
  }

  .form-row {
    flex-direction: column;
  }

  .form-row input {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  main {
    padding: 20px 15px 60px;
  }

  h1 {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1rem;
    margin-bottom: 35px;
  }

  .contact-info,
  .form-box {
    padding: 35px 25px;
  }

  .contact-info h3,
  .form-box h3 {
    font-size: 1.5rem;
  }

  .info-box {
    padding: 16px;
  }

  .info-box i {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .map-container {
    height: 350px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  .contact-info,
  .form-box {
    padding: 30px 20px;
  }

  .form-row input,
  textarea {
    font-size: 0.95rem;
  }

  .map-container {
    height: 300px;
  }
}