/* 
 * Contact Page Specific Styles for Shraddha
 * This file contains styles specific to the Contact page
 * It should be included after the main style.css file
 */

/* Hero Banner Section */
.contact-hero-banner {
    position: relative;
    background-color: #000;
    padding-top: 7rem;
    overflow: hidden;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)), 
                      url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
  }
  
  .contact-hero-banner .btn {
    transition: all 0.3s ease;
  }
  
  .contact-hero-banner .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* Contact Image Styling */
  .contact-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  
  .contact-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
    border-radius: 12px;
  }
  
  .contact-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--brand-color);
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
  }
  
  .contact-badge:hover {
    transform: rotate(0deg) scale(1.05);
  }
  
  /* Contact Form Section */
  .form-control, .form-select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
  }
  
  .form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(245, 78, 2, 0.25);
    border-color: var(--brand-color);
  }
  
  .form-check-input:checked {
    background-color: var(--brand-color);
    border-color: var(--brand-color);
  }
  
  .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(245, 78, 2, 0.25);
    border-color: var(--brand-color);
  }
  
  .invalid-feedback {
    font-size: 0.8rem;
  }
  
  /* Contact Cards */
  .contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .contact-card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
  }
  
  /* Contact Hours Badge */
  .contact-hours-badge {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--brand-color);
  }
  
  /* Location Map */
  .location-map-container {
    height: 450px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
  }
  
  /* Social Media Cards */
  .social-card {
    transition: all 0.3s ease;
    overflow: hidden;
  }
  
  .social-card:hover {
    transform: translateY(-10px);
  }
  
  .social-card:hover .social-icon-wrapper i {
    color: var(--brand-color) !important;
  }
  
  .social-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.3s ease;
  }
  
  .social-card:hover .social-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  /* Success Message Animation */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .alert-success {
    animation: fadeIn 0.5s ease forwards;
  }
  
  /* Button Styling */
  .btn-outline-brand {
    color: var(--brand-color);
    border-color: var(--brand-color);
    transition: all 0.3s ease;
  }
  
  .btn-outline-brand:hover {
    background-color: var(--brand-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(245, 78, 2, 0.3);
  }
  
  /* Quick Contact Links */
  .contact-quick-info a {
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
  }
  
  .contact-quick-info a:hover {
    color: var(--brand-color);
  }
  
  /* Contact Info Card */
  .contact-info-card .bg-light {
    transition: all 0.3s ease;
  }
  
  .contact-info-card .bg-light:hover {
    background-color: #f8f9fa !important;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Footer Styling */
  .footer-links a:hover,
  .footer-contact a:hover {
    color: var(--brand-color) !important;
    transform: translateX(3px);
  }
  
  .cert-badge {
    transition: all 0.3s ease;
  }
  
  .cert-badge:hover {
    transform: translateY(-2px);
  }
  
  /* Media Queries */
  @media (max-width: 991.98px) {
    .contact-hero-banner {
      padding-top: 6rem;
    }
    
    .contact-badge {
      bottom: 15px;
      right: 15px;
      padding: 10px 15px;
    }
    
    .contact-quick-info .col-md-6:not(:last-child) {
      margin-bottom: 1.5rem;
    }
  }
  
  @media (max-width: 767.98px) {
    .contact-hero-banner {
      text-align: center;
    }
    
    .contact-image-wrapper {
      margin-top: 2rem;
    }
    
    .location-map-container {
      height: 300px;
    }
  }
  
  @media (max-width: 575.98px) {
    .contact-badge {
      padding: 8px 12px;
      bottom: 10px;
      right: 10px;
    }
    
    .contact-card-icon {
      width: 50px;
      height: 50px;
    }
    
    .social-icon-wrapper {
      width: 60px;
      height: 60px;
    }
    
    .social-icon-wrapper i {
      font-size: 1.5rem !important;
    }
  }