/* ===== CONTACT PAGE SPECIFIC STYLES ===== */

/* Contact Hero */
.contact-hero {
  padding: 4rem 0 5rem;
  background: linear-gradient(135deg, #754174 0%, #5a3a5a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path d="M0 0h1000v1000H0z" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="2"/><path d="M0 500h1000M500 0v1000" stroke="rgba(255,255,255,0.03)" stroke-width="2"/></svg>') repeat;
  background-size: 200px 200px;
}

.contact-hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 auto;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(241, 186, 166, 0.15);
  color: #f1baa6;
  padding: 0.3rem 1.2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.contact-hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.contact-hero .highlight {
  color: #f1baa6;
}

.contact-hero-desc {
  font-size: 1.15rem;
  color: #b885a4;
  max-width: 90%;
  margin: 0 auto;
  line-height: 1.7;
}

/* Contact Info Cards */
.contact-info-section {
  padding: 4rem 0 3rem;
  background: #ffffff;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.contact-info-card {
  background: #f8f1f2;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid #e8e0e2;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(117, 65, 116, 0.08);
  border-color: #e15b40;
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: rgba(225, 91, 64, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #e15b40;
  margin: 0 auto 1rem;
}

.contact-info-card h3 {
  font-size: 1.1rem;
  color: #754174;
  margin-bottom: 0.8rem;
}

.contact-info-card p {
  color: #5a4a5a;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.2rem;
}

.contact-info-card p a {
  color: #2d1a2d;
  transition: color 0.3s ease;
}

.contact-info-card p a:hover {
  color: #e15b40;
}

.contact-label {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.2rem 0.8rem;
  background: rgba(225, 91, 64, 0.10);
  color: #c34e59;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Contact Form Section */
.contact-form-section {
  padding: 3rem 0 5rem;
  background: #f8f1f2;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-wrapper {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(117, 65, 116, 0.06);
  border: 1px solid #e8e0e2;
}

.form-header {
  margin-bottom: 2rem;
}

.form-header .section-tag {
  display: inline-block;
  background: rgba(225, 91, 64, 0.08);
  color: #754174;
  padding: 0.2rem 1.2rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2d1a2d;
  margin-bottom: 0.3rem;
}

.form-header h2 .highlight {
  color: #e15b40;
}

.form-header p {
  color: #8a7a8a;
  font-size: 1rem;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2d1a2d;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.form-group label i {
  color: #e15b40;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group .form-select {
  padding: 0.75rem 1rem;
  border: 2px solid #e8e0e2;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: #2d1a2d;
  background: #f8f1f2;
  transition: all 0.3s ease;
  width: 100%;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group .form-select:hover {
  border-color: #e15b40;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group .form-select:focus {
  outline: none;
  border-color: #e15b40;
  box-shadow: 0 0 0 4px rgba(225, 91, 64, 0.10);
  background: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0a0b0;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a7a8a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #e15b40;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: 0.9rem;
  font-weight: 400;
  color: #5a4a5a;
  cursor: pointer;
}

.submit-btn {
  padding: 0.85rem 2.5rem;
  background: #e15b40;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Inter', sans-serif;
  width: 100%;
}

.submit-btn:hover {
  background: #c34e59;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(225, 91, 64, 0.30);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Map & Quick Contact */
.contact-map-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e8e0e2;
  box-shadow: 0 10px 30px rgba(117, 65, 116, 0.06);
}

.map-container iframe {
  display: block;
}

.quick-contact {
  background: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid #e8e0e2;
  box-shadow: 0 10px 30px rgba(117, 65, 116, 0.06);
}

.quick-contact h3 {
  font-size: 1.2rem;
  color: #754174;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quick-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid #f0e8ea;
}

.quick-contact-item:last-child {
  border-bottom: none;
}

.quick-contact-item i {
  width: 20px;
  color: #e15b40;
  font-size: 1rem;
}

.quick-contact-item div {
  display: flex;
  flex-direction: column;
}

.quick-contact-item strong {
  font-size: 0.8rem;
  color: #8a7a8a;
  font-weight: 600;
}

.quick-contact-item a,
.quick-contact-item span {
  color: #2d1a2d;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.quick-contact-item a:hover {
  color: #e15b40;
}

.quick-contact-social {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid #f0e8ea;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quick-contact-social span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #754174;
}

.quick-contact-social .social-icons {
  display: flex;
  gap: 0.8rem;
}

.quick-contact-social .social-icons a {
  width: 38px;
  height: 38px;
  background: #f8f1f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #754174;
  transition: all 0.3s ease;
}

.quick-contact-social .social-icons a:hover {
  background: #e15b40;
  color: #fff;
  transform: translateY(-3px);
}

/* Contact FAQ */
.contact-faq {
  padding: 4.5rem 0 5rem;
  background: #ffffff;
}

.contact-faq-grid {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-faq .faq-item {
  background: #f8f1f2;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8e0e2;
  transition: all 0.3s ease;
}

.contact-faq .faq-item:hover {
  border-color: #e15b40;
}

.contact-faq .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.8rem;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease;
}

.contact-faq .faq-question:hover {
  background: #ffffff;
}

.contact-faq .faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #2d1a2d;
  margin: 0;
}

.contact-faq .faq-question i {
  color: #8a7a8a;
  transition: transform 0.3s ease;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-faq .faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.contact-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.8rem;
}

.contact-faq .faq-answer p {
  color: #5a4a5a;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Contact Final CTA */
.contact-final-cta {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(135deg, #754174 0%, #5a3a5a 100%);
  color: #fff;
  text-align: center;
}

.contact-final-cta .cta-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.contact-final-cta .cta-wrapper h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-final-cta .cta-wrapper .highlight {
  color: #f1baa6;
}

.contact-final-cta .cta-wrapper p {
  color: #b885a4;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.contact-final-cta .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-hero h1 {
    font-size: 2.5rem;
  }
  
  .contact-map-wrapper {
    order: -1;
  }
}

@media (max-width: 700px) {
  .contact-hero h1 {
    font-size: 2rem;
  }
  
  .contact-hero-desc {
    max-width: 100%;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .form-header h2 {
    font-size: 1.6rem;
  }
  
  .quick-contact-social {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .contact-final-cta .cta-wrapper h2 {
    font-size: 2rem;
  }
  
  .contact-final-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-final-cta .cta-buttons .btn-primary,
  .contact-final-cta .cta-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .contact-faq .faq-question {
    padding: 1rem 1.2rem;
  }
  
  .contact-faq .faq-answer {
    padding: 0 1.2rem;
  }
  
  .quick-contact {
    padding: 1.5rem;
  }
}
/* Footer Logo */
.footer-brand .brand-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.footer-brand .brand-row img {
  height: 45px;
  width: auto;
}

.footer-brand .brand-name {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-brand .brand-sub {
  background: rgba(255, 255, 255, 0.10);
  color: #f1baa6;
  font-size: 0.75rem;
  padding: 0.1rem 0.6rem;
  border-radius: 20px;
  margin-left: 0.3rem;
}

.footer-brand .tagline {
  font-size: 0.85rem;
  color: #f1baa6;
  font-style: italic;
  margin-top: 0.2rem;
}

.footer-brand .description {
  color: #b885a4;
  font-size: 0.9rem;
  margin-top: 0.3rem;
}