/* ===== Contact Page Styles ===== */
.contact-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(135deg, #ffffff 0%, #0066cc 100%), 
                url('contact-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    animation: gradientShift 15s ease infinite alternate;
  }
  
  @keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
  }
  
  .contact-hero .hero-content {
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 2;
  }
  
  .contact-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
  }
  
  .contact-hero p {
    font-size: 1.4rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s forwards;
  }
  
  /* Contact Methods Grid */
  .contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
  }
  
  .method-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,51,102,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,51,102,0.1);
  }
  
  .method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #003366;
    transition: all 0.4s ease;
  }
  
  .method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,51,102,0.15);
  }
  
  .method-card:hover::before {
    height: 100%;
    opacity: 0.08;
  }
  
  .method-card i {
    font-size: 3rem;
    color: #003366;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
  }
  
  .method-card:hover i {
    transform: scale(1.2);
  }
  
  .method-card h3 {
    color: #003366;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
  }
  
  .method-card a, .method-card address {
    color: #003366;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin: 1.5rem 0;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
  }
  
  .method-card:hover a {
    color: #003366;
  }
  
  .method-card p {
    color: #666;
    position: relative;
    z-index: 2;
  }
  
  /* Service Map Section */
  .service-map {
    padding: 6rem 2rem;
    background: #f9fbfe;
  }
  
  .service-map h2 {
    text-align: center;
    color: #003366;
    margin-bottom: 3rem;
    position: relative;
  }
  
  .service-map h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #003366;
  }
  
  .map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
  }
  
  .map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .coverage-list {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  }
  
  .coverage-list h3 {
    color: #003366;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
  }
  
  .coverage-list ul {
    list-style: none;
  }
  
  .coverage-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
  }
  
  .coverage-list li::before {
    content: '✓';
    color: #003366;
    margin-right: 1rem;
    font-weight: bold;
  }
  
  /* Contact Form */
  .contact-form-section {
    padding: 6rem 2rem;
    background: white;
  }
  
  .contact-form-section h2 {
    text-align: center;
    color: #003366;
    margin-bottom: 3rem;
  }
  
  .contact-form {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #003366;
    font-weight: 600;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: #003366;
    box-shadow: #003366;
    outline: none;
 }
  
  .form-group textarea {
    min-height: 180px;
    resize: vertical;
  }
  
  .file-upload {
    display: flex;
    align-items: center;
  }
  
  .file-upload-label {
    background: #f0f4f8;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  .file-upload-label:hover {
    background: #e0e8f0;
  }
  
  .file-upload-label i {
    margin-right: 0.8rem;
    color: #003366;
  }
  
  .submit-btn {
    background: #003366;
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    box-shadow: #003366;
  }
  
  .submit-btn i {
    margin-left: 0.8rem;
    transition: transform 0.3s ease;
  }
  
  .submit-btn:hover {
    background: #003366;
    transform: translateY(-3px);
    box-shadow: #003366;
  }
  
  .submit-btn:hover i {
    transform: translateX(5px);
  }
  
  /* Emergency Callout */
  .emergency-callout {
    background: linear-gradient(135deg, #ffffff 0%, #0066cc 100%);
    color: white;
    padding: 2.5rem;
    margin: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .emergency-callout::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: pulse 4s linear infinite;
  }
  
  @keyframes pulse {
    0% { transform: scale(0.8); opacity: 0; }
    50% { opacity: 0.3; }
    100% { transform: scale(1.4); opacity: 0; }
  }
  
  .callout-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .callout-content i {
    font-size: 2.5rem;
    animation: pulse 2s ease infinite;
  }
  
  .callout-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .emergency-btn {
    background: #003366;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .emergency-btn i {
    margin-right: 0.8rem;
    animation: none;
  }
  
  .emergency-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }
  
  /* Confirmation Steps */
  .confirmation-info {
    padding: 6rem 2rem;
    background: #f9fbfe;
  }
  
  .confirmation-info h2 {
    text-align: center;
    color: #003366;
    margin-bottom: 4rem;
  }
  
  .confirmation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s ease;
  }
  
  .step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    background: #003366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
  }
  
  .step:hover .step-number {
    transform: scale(1.2) rotate(15deg);
  }
  
  .step h3 {
    color: #003366;
    margin-bottom: 1rem;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .map-container {
      grid-template-columns: 1fr;
    }
    
    .coverage-list {
      order: -1;
    }
  }
  
  @media (max-width: 768px) {
    .contact-hero h1 {
      font-size: 2.5rem;
    }
    
    .contact-hero p {
      font-size: 1.2rem;
    }
    
    .callout-content {
      flex-direction: column;
      text-align: center;
    }
    
    .emergency-btn {
      margin-top: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .contact-methods {
      grid-template-columns: 1fr;
    }
    
    .contact-form {
      grid-template-columns: 1fr;
    }
  }