/* ============ CONTACT PAGE STYLES ============ */

/* HERO */
.contact-hero {
  background: linear-gradient(135deg, #ff7a18 0%, #0472c0 55%, #0ca1ba 100%);
  padding: 70px 20px;
  text-align: center;
  color: #fff;
}

.tag-1 {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.contact-hero-content h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 14px;
}

.contact-hero-content h1 span {
  color: #ffe3c4;
}

.contact-hero-content p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.95;
}

/* QUICK CONTACT CARDS */
.quick-contact {
  padding: 45px 20px;
  background: #fdfbf8;
}

.quick-contact-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 26px 22px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.contact-card-icon svg {
  width: 26px;
  height: 26px;
}

.contact-card.orange .contact-card-icon { background: linear-gradient(135deg, #ff7a18, #ff9d4d); }
.contact-card.blue .contact-card-icon   { background: linear-gradient(135deg, #0472c0, #1fa2ff); }
.contact-card.green .contact-card-icon  { background: linear-gradient(135deg, #28a745, #48c964); }
.contact-card.teal .contact-card-icon   { background: linear-gradient(135deg, #0ca1ba, #12d8fa); }

.contact-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.contact-card-main {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  word-break: break-word;
}

.contact-card small {
  font-size: 12px;
  color: #6b7280;
}

/* FORM + COMPANY INFO LAYOUT */
.contact-main {
  padding: 50px 20px;
  background: #f5f0e8;
}

.contact-main-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 30px;
  align-items: start;
}

/* FORM */
.contact-form-wrap {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 34px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.contact-form-wrap h2 {
  font-size: 26px;
  font-weight: 800;
  margin: 6px 0 8px;
  color: #1f2937;
}

.form-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 26px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 7px;
}

.form-group label b {
  color: #e11d48;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: #111827;
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: sans-serif;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ff7a18;
  box-shadow: 0 0 0 3px rgba(255, 122, 24, 0.15);
}

.privacy-note {
  font-size: 12.5px;
  color: #6b7280;
  margin-bottom: 18px;
}

.send-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #ff7a18, #ff9d4d);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 13px 32px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 122, 24, 0.35);
}

.send-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-success {
  display: none;
  margin-top: 18px;
  background: #ecfdf5;
  border: 1px solid #34d399;
  color: #065f46;
  font-size: 14px;
  padding: 13px 16px;
  border-radius: 10px;
}

.form-success.show {
  display: block;
}

/* COMPANY INFO SIDEBAR */
.company-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.info-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #fdfbf8;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #ff7a18;
}

.info-row p {
  font-size: 14px;
  line-height: 1.65;
  color: #4b5563;
  margin: 0;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed #e5e7eb;
  font-size: 13.5px;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list span {
  color: #6b7280;
}

.hours-list b {
  color: #1f2937;
}

.follow-text {
  font-size: 13.5px;
  color: #6b7280;
  margin-bottom: 14px;
}

.company-info .social-icons {
  margin-bottom: 0;
}

/* URGENT HELP BANNER */
.urgent-help {
  background: linear-gradient(90deg, #ff7a18, #0472c0);
  padding: 40px 20px;
}

.urgent-help-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.urgent-text h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
}

.urgent-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14.5px;
}

.urgent-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.urgent-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.urgent-btn.call {
  background: #fff;
  color: #0472c0;
}

.urgent-btn.whatsapp {
  background: #25d366;
  color: #fff;
}

.urgent-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* ACTIVE NAV LINK */
.nav-menu a.active {
  color: #ff7c00;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .quick-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 767px) {
  .contact-hero {
    padding: 50px 20px;
  }

  .contact-hero-content h1 {
    font-size: 28px;
  }

  .contact-hero-content p {
    font-size: 15px;
  }

  .contact-form-wrap {
    padding: 24px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .urgent-help-inner {
    flex-direction: column;
    text-align: center;
  }

  .urgent-actions {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .quick-contact-grid {
    grid-template-columns: 1fr;
  }
}
