/* Contact Page Specific Styles */

/* Contact Hero Section */
.contact-hero {
  background: linear-gradient(135deg, #133C72 0%, #1f3a8a 100%);
  padding: 50px 3% 80px;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M500,97C126.7,96.3,0.8,19.8,0,0v100l1000,0V1C1000,19.4,873.3,97.8,500,97z" fill="%23ffffff"/></svg>');
  background-size: 100% 100px;
  background-position: bottom;
  background-repeat: no-repeat;
  opacity: 0.1;
}

.contact-hero-container {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
}

.contact-hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

.contact-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-stat i {
  font-size: 32px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stat h4 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 5px;
}

.hero-stat p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.contact-hero-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.contact-hero-image:hover {
  transform: translateY(-10px);
}

.contact-hero-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
}

/* Contact Form Section */
.contact-form-section {
  padding: 100px 5%;
  background-color: #ffffff;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  color: #162c6b;
  margin-bottom: 15px;
  font-weight: 600;
}

.section-subtitle {
  color: #4a5568;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  margin-top: 50px;
}
.reason-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgb(49 99 107 / 20%);
}

.contact-form-container {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 40px;
  border: 1px solid #e2e8f0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #162c6b;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  transition: all 0.3s ease;
  color: #162c6b;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  /* border-color: #1f3a8a; */
  box-shadow: 0 0 0 3px rgba(31, 58, 138, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

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

.submit-btn {
  background: linear-gradient(135deg, #1f3a8a, #133C72);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #133C72, #0b2a5c);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(31, 58, 138, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.form-note {
  font-size: 13px;
  color: #64748b;
  text-align: center;
  margin-top: 20px;
}

.form-note a {
  color: #1f3a8a;
  text-decoration: none;
  font-weight: 500;
}

.form-note a:hover {
  text-decoration: underline;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.info-card h3 {
  font-size: 22px;
  color: #162c6b;
  margin-bottom: 10px;
  font-weight: 600;
}

.info-card > p {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.contact-method {
  display: flex;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid #f1f5f9;
}

.contact-method:last-child {
  border-bottom: none;
}

.method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f0f7ff, #e1eeff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f3a8a;
  font-size: 20px;
  flex-shrink: 0;
}

.method-content h4 {
  font-size: 16px;
  color: #162c6b;
  margin-bottom: 5px;
  font-weight: 600;
}

.method-content p {
  font-size: 14px;
  color: #4a5568;
  margin: 0;
  line-height: 1.5;
}

.method-note {
  display: block;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 5px;
}

.social-contact {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #f1f5f9;
}

.social-contact h4 {
  font-size: 16px;
  color: #162c6b;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.social-link {
  width: 44px;
  height: 44px;
  background: #f8fafc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #1f3a8a;
  color: white;
  transform: translateY(-3px);
}

/* FAQ Section */
.faq-section {
  padding: 100px 5%;
  background-color: #f9fbfe;
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f8fafc;
}

.faq-question h4 {
  font-size: 18px;
  color: #162c6b;
  font-weight: 600;
  margin: 0;
}

.faq-question i {
  color: #64748b;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: #1f3a8a;
}

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

.faq-item.active .faq-answer {
  padding: 0 30px 25px 30px;
  max-height: 500px;
}

.faq-answer p {
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
  font-size: 15px;
}

/* Map Section */
.map-section {
  padding: 100px 5%;
  background-color: #ffffff;
}

.map-header {
  text-align: center;
  margin-bottom: 50px;
}

.map-header h2 {
  font-size: 36px;
  color: #162c6b;
  margin-bottom: 10px;
  font-weight: 600;
}

.map-header p {
  color: #64748b;
  font-size: 18px;
}

.map-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  max-width: 1500px;
  margin: 0 auto;
}

.map-placeholder {
  height: 400px;
  background: #133C72;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-overlay {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
height: 300px;
    width: 720px;}

.map-overlay i {
  font-size: 48px;
  color: #ffffff;
}

.map-overlay h3 {
  font-size: 22px;
  color: #162c6b;
  margin-bottom: 10px;
  font-weight: 600;
}

.map-overlay p {
  color: #64748b;
  font-size: 15px;
  margin-bottom: 20px;
}

.map-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #133C72;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  align-items: center;
  transition: all 0.3s ease;
}
.fa-directions {
  color: red;
  font-size: 28px;
}


.map-directions:hover {
  background: #133C72;
  transform: translateY(-2px);
}

.map-info .info-card {
  height: 100%;
  background: linear-gradient(135deg, #f9fbfe, #eef5ff);
  border: 1px solid #e2e8f0;
}

.collaboration-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.collaboration-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
  color: #4a5568;
  font-size: 15px;
}

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

.collaboration-list i {
  color: #1f3a8a;
  font-size: 16px;
}

/* CTA Section */
.contact-cta {
  padding: 100px 5%;
  background: linear-gradient(135deg, #1f3a8a 0%, #133C72 100%);
  color: white;
  text-align: center;
}

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

}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.cta-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* .btn {
  padding: 16px 35px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px; */


.primary-btn {
  background: white;
  color: #1f3a8a;
}

.primary-btn:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: translateY(-3px);
}

.secondary-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.secondary-btn:hover {
  background: white;
  color: #1f3a8a;
  transform: translateY(-3px);
}

.cta-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
}

/* Active Link */
.nav-links a.active {
  color: #1f3a8a;
  font-weight: 600;
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1f3a8a;
  border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .contact-form-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form-container {
    order: 2;
  }
  
  .contact-info-sidebar {
    order: 1;
  }
  
  .map-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .contact-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .contact-hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-hero-stats {
    justify-content: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 60px 5% 80px;
  }
  
  .contact-hero-content h1 {
    font-size: 36px;
  }
  
  .contact-hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  
  .contact-form-section,
  .faq-section,
  .map-section,
  .contact-cta {
    padding: 60px 5%;
  }
  
  .contact-form-container {
    padding: 30px;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .contact-hero-content h1 {
    font-size: 28px;
  }
  
  .contact-hero-content p {
    font-size: 16px;
  }
  
  .contact-form-container {
    padding: 20px;
  }
  
  .section-header h2 {
    font-size: 26px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
  }
  
  .method-icon {
    margin: 0 auto;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .cta-content h2 {
    font-size: 28px;
  }
}

.contact-reasons {
    flex: 1;
    max-width: 550px;
}
.contact-reasons {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.contact-reasons h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    color: #2d3748;
    border-bottom: 2px solid #e2e8f0;
    font-weight: 700;
}

.reason-item {
    padding: 19px;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.reason-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #3b82f6;
}

.reason-item:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.reason-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    color: #1f2937;
    font-weight: 600;
    gap: 10px;
}

.reason-item h3 i {
    color: #3b82f6;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.reason-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    color: #4b5563;
    padding-left: 34px; /* Align with icon spacing */
}

/* Individual icon colors */
.reason-item:nth-child(2) h3 i { color: #10b981; } /* Support - green */
.reason-item:nth-child(3) h3 i { color: #ef4444; } /* Bug - red */
.reason-item:nth-child(4) h3 i { color: #f59e0b; } /* Feature - amber */
.reason-item:nth-child(5) h3 i { color: #8b5cf6; } /* Advertising - purple */
.reason-item:nth-child(6) h3 i { color: #06b6d4; } /* Feedback - cyan */

/* Add subtle animation on hover for icons */
.reason-item:hover h3 i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Optional: Add a slight background color variation on hover */
.reason-item:hover {
    background-color: #f8fafc;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-reasons h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .reason-item {
        padding: 15px;
    }
    
    .reason-item h3 {
        font-size: 1rem;
    }
    
    .reason-item p {
        font-size: 0.85rem;
    }
}