/* === CONTACT SECTION STYLES === */
:root {
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #93c5fd;
    --accent-color: #f97316;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-800: #1f2937;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
  }
  
  /* General Styles */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  section {
    padding: 80px 0;
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.2;
  }
  
  p {
    margin-bottom: 16px;
  }
  
  a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--primary-dark);
    /* text-decoration: underline; */
  }
  
  .highlight {
    color: var(--primary-color);
  }
  
  .contact-hero {
    background: linear-gradient(135deg, #4f46e5 0%, #7e22ce 100%);
    color: white;
    padding-top: calc(70px + var(--space-12));
    padding-bottom: var(--space-12);
}

.contact-hero h1 {
    color: white;
}

.contact-hero p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-section {
    padding: var(--space-16) 0;
}

.contact-grid {
    grid-template-columns: 1fr;
}

/* @media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
} */
  
  /* Section Header */
  .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
  }
  
  .section-header .badge {
    display: inline-block;
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
  }
  
  /* Contact Grid Layout */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  @media (min-width: 992px) {
    .contact-grid {
      grid-template-columns: 1fr 1fr;
      display: flex;
      flex-direction: column;
    }
  }
  
  /* Contact Form Container */
  .contact-form-container {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 30px;
    transition: var(--transition);
  }
  
  .contact-form-container:hover {
    box-shadow: var(--shadow-lg);
  }
  
  .form-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .form-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
  }
  
  .form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
  
  /* Contact Form */
  .contact-form {
    margin-top: 30px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
  }
  
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  @media (min-width: 768px) {
    .form-row {
      grid-template-columns: 1fr 1fr;
    }
    
  }
  .contact-grid {
        display: flex;
        justify-content: center;
        flex-wrap: wrap !important;
    }
  
  /* Button Styles */
  .btn {
    display: inline-block;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
    text-decoration: none;
  }
  
  .btn-light {
    background-color: var(--white);
    color: var(--primary-color);
  }
  
  .btn-light:hover {
    background-color: var(--gray-50);
    text-decoration: none;
  }
  
  .btn-outline-light {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
  }
  
  .btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
  }
  
  .btn-loading {
    position: relative;
    pointer-events: none;
  }
  
  .btn-loading:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: btn-spinner 0.8s linear infinite;
  }
  
  @keyframes btn-spinner {
    to {
      transform: rotate(360deg);
    }
  }
  
  /* Contact Information */
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .contact-info-container {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
  }
  
  .contact-info-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
  }
  
  .contact-info-header h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
  }
  
  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-detail-item {
    display: flex;
    align-items: flex-start;
  }
  
  .contact-detail-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
  }
  
  .contact-detail-text h4 {
    font-size: 1.125rem;
    margin-bottom: 5px;
  }
  
  .contact-detail-text p {
    opacity: 0.9;
    margin-bottom: 0;
  }
  
  .contact-detail-text a {
    color: var(--white);
    opacity: 0.9;
    transition: var(--transition);
  }
  
  .contact-detail-text a:hover {
    opacity: 1;
    text-decoration: underline;
  }
  
  /* Social Links */
  .social-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .social-links h4 {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }
  
  .social-icons {
    display: flex;
    gap: 12px;
  }
  
  .social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
  }
  
  .social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
  }
  
  /* CTA Container */
  .cta-container {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
  }
  
  .cta-container h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .cta-container p {
    opacity: 0.9;
    margin-bottom: 25px;
  }
  
  .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  /* Office Locations */
  .contact-section {
    background-color: var(--gray-50);
  }
  
  /* FAQ Section */
  .contact-section-faq {
    background-color: var(--white);
  }
  
  .container-faq {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gray-200);
  }
  
  .faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  .faq-item h3 {
    cursor: pointer;
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-dark);
  }
  
  .faq-item p {
    color: var(--text-light);
  }
  
  /* Form Validation Styles */
  .error-message {
    display: block;
    color: #e53e3e;
    margin-top: 5px;
    font-size: 0.875rem;
  }
  
  input.error,
  textarea.error {
    border-color: #e53e3e;
  }
  
  /* Animation */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  [data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  [data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  [data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  [data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
  }
  
  [data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  [data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Form success message */
  .success-message {
    display: none;
    background-color: #10b981;
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
  }
  
  .success-message.show {
    display: block;
    animation: fadeIn 0.5s ease;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /* Responsive styles */
  @media (max-width: 991px) {
    .contact-hero h1 {
      font-size: 2.5rem;
    }
    
    .section-header h2 {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 767px) {
    section {
      padding: 60px 0;
    }
    
    .contact-hero {
      padding: 80px 0;
    }
    
    .contact-hero h1 {
      font-size: 2rem;
    }
    
    .section-header h2 {
      font-size: 1.75rem;
    }
    
    .cta-buttons {
      flex-direction: column;
    }
    
    .cta-buttons .btn {
      width: 100%;
    }
    .contact-grid{
        display: flex;
        flex-direction: column;
    }
  }