/* Contact Page Styles */

/* Hero Section */
.contact-hero {
    background-image: url('https://ik.imagekit.io/LKS08011968/Image%20LKS/image/Contact%20us%20overlay.png');
    height: 70vh;
    min-height: 500px;
  }
  
  /* Contact Info Section */
  .contact-info-section {
    padding: 5rem 0;
  }
  
  .contact-cards {
    margin-top: 2rem;
  }
  
  .contact-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
  }
  
  .contact-card:hover {
    transform: translateY(-5px);
  }
  
  .icon-container {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
  }
  
  .icon-container i {
    color: var(--white);
    font-size: 1.25rem;
  }
  
  .contact-details h4 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
  }
  
  .contact-details p {
    color: var(--gray-dark);
    margin-bottom: 0;
  }

  .contact-btn a{
    text-decoration: none !important;
    color: inherit !important;
  }
  
  /* Social Contact */
  .social-contact {
    margin-top: 3rem;
  }
  
  .social-contact h3 {
    margin-bottom: 1.5rem;
  }
  
  .social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .social-icon {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
  }
  
  .social-icon i {
    font-size: 1.25rem;
  }
  
  .social-icon.whatsapp {
    background-color: #25D366;
  }
  
  .social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  }
  
  .social-icon.tiktok {
    background-color: #000000;
  }
  
  .social-icon.email {
    background-color: var(--primary);
  }
  
  .social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--white);
  }
  
  /* Contact Form */
  .contact-form-wrapper {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form-wrapper h3 {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
  }
  
  .form-control {
    border: 1px solid #e2e8f0;
    padding: 0.75rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
  }
  
  /* Map Section */
  .map-section {
    padding: 0 0 5rem 0;
  }
  
  .map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  }
  
  /* Office Hours Section */
  .office-hours-section {
    padding: 5rem 0;
    background-color: var(--gray-light);
  }
  
  .office-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .hours-content {
    padding: 2rem;
  }
  
  .hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .day-hours {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
  }
  
  .day-hours h4 {
    margin-bottom: 0.5rem;
    color: var(--primary);
  }
  
  .day-hours p {
    margin-bottom: 0;
    font-weight: 600;
  }
  
  /* FAQ Section */
  .faq-section {
    padding: 5rem 0;
  }
  
  .accordion {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  }
  
  .accordion-button {
    font-weight: 600;
    padding: 1.5rem;
    background-color: var(--white);
    box-shadow: none;
  }
  
  .accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: var(--white);
    box-shadow: none;
  }
  
  .accordion-button::after {
    background-size: 1rem;
  }
  
  .accordion-body {
    padding: 1.5rem;
    background-color: var(--white);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 991px) {
    .social-icons {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .contact-form-wrapper {
      padding: 1.5rem;
    }
  }
  
  @media (max-width: 767px) {
    .contact-hero {
      height: 60vh;
    }
    
    .office-image {
      height: 300px;
      margin-bottom: 2rem;
    }
    
    .hours-content {
      padding: 1rem 0;
    }
  }