/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */

/* Page Header */
.page-header {
  padding: 150px 0 80px;
  background:     linear-gradient(
      to top, 
      rgba(163, 54, 92, 0.55),   /* soft maroon overlay */
      rgba(163, 54, 92, 0.25),   /* fade upward */
      rgba(255, 255, 255, 0)     /* fully transparent top */
    ),url("../assets/Images/Cropped-images/Contact.png") center/cover no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.page-header h1 {
  font-size: 3rem;
    color: #fff;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.page-header p {
  font-size: 1.3rem;
    color: #f8f8f8;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 2;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: white;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* Contact Form Container */
.contact-form-container {
  background: white;
}

.contact-form-container h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid #F0F0F0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Contact Info Container */
.contact-info-container {
  background: linear-gradient(135deg, #FFF5F7, #FFE4E9);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(255, 182, 193, 0.2);
}

.contact-info-container h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: start;
}

.info-icon {
  width: 55px;
  height: 55px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-icon svg {
  stroke: #FFB6C1;
}

.info-item h4 {
  margin-bottom: 8px;
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
}

.info-item p {
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/* Social Links */
.social-links {
  padding-top: 30px;
  border-top: 2px solid rgba(255, 255, 255, 0.5);
}

.social-links h4 {
  margin-bottom: 20px;
  color: #333;
  font-size: 1.2rem;
}

.social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Map Section */
.map-section {
  margin-top: 80px;
}

.map-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  color: #333;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  display: block;
  width: 100%;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #F9FAFB, #F5F7FA);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #FFB6C1;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 15px;
}

.faq-item p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Form Styling Enhancements */
.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.contact-form .form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E0E0E0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  background-color: #FAFAFA;
}

.contact-form .form-control:focus {
  outline: none;
  border-color: #FFB6C1;
  background-color: white;
  box-shadow: 0 0 0 4px rgba(255, 182, 193, 0.1);
}

.contact-form select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 45px;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.contact-form .btn {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 10px;
}

/* Success Message Animation */
@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.success-message {
  animation: slideInRight 0.5s ease-out;
}

/* Responsive Design */
@media (max-width: 968px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .page-header {
    padding: 120px 0 60px;
  }
  
  .page-header h1 {
    font-size: 2.2rem;
  }
  
  .page-header p {
    font-size: 1.1rem;
  }
  
  .map-container iframe {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .contact-info-container {
    padding: 30px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .map-section {
    margin-top: 60px;
  }
  
  .map-section h2 {
    font-size: 1.8rem;
  }
  
  .map-container iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 100px 0 50px;
  }
  
  .page-header h1 {
    font-size: 1.75rem;
  }
  
  .page-header p {
    font-size: 1rem;
  }
  
  .contact-info-container h2,
  .contact-form-container h2 {
    font-size: 1.5rem;
  }
  
  .info-item {
    flex-direction: column;
  }
  
  .social-icons a {
    width: 45px;
    height: 45px;
  }
}.about-us {
  background: linear-gradient(135deg, #fff6f7 0%, #ffffff 100%);
  padding: 80px 20px;
  text-align: center;
}

.about-us .container {
  max-width: 900px;
  margin: 0 auto;
}

.about-us .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #d94f70; /* your brand pink */
  margin-bottom: 15px;
}

.about-us .section-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto;
}
