/* Contact Page Specific Styles */

/* Contact Hero Section */
.contact-hero {
  height: 300px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.8) 100%), url('https://images.pexels.com/photos/7925813/pexels-photo-7925813.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  margin-top: 70px;
}

.contact-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.contact-hero-content h1 span {
  color: var(--primary-color);
}

.contact-hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: #ddd;
}

/* Contact Main Section */
.contact-main {
  padding: 80px 0;
  background-color: var(--bg-light);
  position: relative;
}

.contact-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../src/assets/bann.jpg');
  opacity: 0.05;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* Contact Info */
.contact-info {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-header {
  margin-bottom: 30px;
}

.contact-info-header h2 {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.contact-info-header h2 span {
  color: var(--primary-color);
}

.contact-info-header p {
  color: #777;
  font-size: 1rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--border-radius);
  background-color: #f8f8f8;
  transition: var(--transition);
}

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

.contact-card-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.contact-card-content h3 {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.contact-card-content p {
  color: #555;
  margin-bottom: 5px;
}

.contact-card-content .text-muted {
  color: #888;
  font-size: 0.9rem;
}

.contact-text {
  margin-bottom: 30px;
}

.contact-text h3 {
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.contact-text p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

.contact-social h3 {
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  color: var(--secondary-color);
  border-radius: 50%;
  transition: var(--transition);
  font-size: 1.2rem;
}

.social-link:hover {
  background: var(--gradient-gold);
  transform: translateY(-5px);
}

/* Contact Form */
.contact-form-container {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-header {
  margin-bottom: 30px;
}

.contact-form-header h2 {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.contact-form-header h2 span {
  color: var(--primary-color);
}

.contact-form-header p {
  color: #777;
  font-size: 1rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--secondary-color);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
  outline: none;
}

.form-group textarea {
  height: 150px;
  resize: none;
}

.checkbox-group {
  display: flex;
  align-items: center;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
}

.checkbox-group label {
  margin: 0;
  font-weight: normal;
  color: #555;
}

.checkbox-group a {
  color: var(--primary-color);
  text-decoration: underline;
}

.form-submit {
  text-align: center;
}

.btn-submit {
  background: var(--gradient-gold);
  color: var(--text-dark);
  padding: 12px 30px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
  position: relative;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../src/assets/bann.jpg');
  opacity: 0.05;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.faq-header h2 {
  font-size: 2.5rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.faq-header h2 span {
  color: var(--primary-color);
}

.faq-header p {
  color: #aaa;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question h3 {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 500;
}

.faq-icon {
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 20px 20px;
  color: #aaa;
  line-height: 1.7;
}

.faq-item.active .faq-question {
  background-color: rgba(255, 215, 0, 0.1);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-info,
  .contact-form-container {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    height: 250px;
  }
  
  .contact-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .contact-hero-content p {
    font-size: 1rem;
  }
  
  .contact-cards {
    grid-template-columns: 1fr;
  }
  
  .faq-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .contact-hero-content h1 {
    font-size: 2rem;
  }
  
  .contact-info-header h2,
  .contact-form-header h2 {
    font-size: 1.8rem;
  }
  
  .contact-info,
  .contact-form-container {
    padding: 20px;
  }
  
  .faq-header h2 {
    font-size: 1.8rem;
  }
  
  .faq-question h3 {
    font-size: 1.1rem;
  }
}