/* Contact Page Specific Styles */
    .contact-card {
      border: none;
      border-radius: 20px;
      background: white;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .contact-card:hover {
      transform: translateY(-5px);
    }

    .contact-header {
      background: linear-gradient(135deg, #1abc9c 0%, #3498db 100%);
      padding: 2.5rem;
      color: white;
      text-align: center;
    }

    .contact-header h1 {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }

    .contact-header p {
      opacity: 0.9;
      font-size: 1.1rem;
    }

    .contact-body {
      padding: 2.5rem;
    }

    /* Form Styles */
    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-label {
      font-weight: 600;
      color: #2c3e50;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .form-label i {
      color: #1abc9c;
    }

    .form-control, .form-select {
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 12px;
      padding: 0.85rem 1rem;
      font-size: 1rem;
      transition: all 0.3s ease;
      background: #f8f9fa;
    }

    .form-control:focus, .form-select:focus {
      border-color: #1abc9c;
      box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.15);
      background: white;
    }

    .form-control-lg {
      min-height: 120px;
      resize: vertical;
    }

    .submit-btn {
      background: linear-gradient(135deg, #1abc9c 0%, #3498db 100%);
      border: none;
      border-radius: 12px;
      padding: 1rem 2rem;
      font-size: 1.1rem;
      font-weight: 600;
      color: white;
      width: 100%;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 1rem;
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(26, 188, 156, 0.3);
    }

    /* Contact Info Cards */
    .info-card {
      background: white;
      border-radius: 16px;
      padding: 1.5rem;
      border: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      height: auto;
      transition: all 0.3s ease;
    }

    .info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .info-icon {
      width: 50px;
      height: 50px;
      border-radius: 16px;
      background: rgba(26, 188, 156, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      color: #1abc9c;
      font-size: 1.8rem;
    }

    .info-card h3 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 0.5rem;
      font-size: 1.2rem;
    }

    .info-card p {
      color: #666;
      margin-bottom: 0.5rem;
      line-height: 1.5;
    }

    .info-link {
      color: #1abc9c;
      text-decoration: none;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
    }

    .info-link:hover {
      color: #3498db;
      transform: translateX(5px);
    }

    /* Map Container */
    .map-container {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      margin-top: 2rem;
    }

    .map-container iframe {
      width: 100%;
      height: 300px;
      border: none;
      display: block;
    }

    /* Contact Methods */
    .contact-methods {
      background: rgba(26, 188, 156, 0.03);
      border-radius: 16px;
      padding: 2rem;
      margin-top: 2rem;
    }

    .method-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem;
      border-radius: 12px;
      background: white;
      margin-bottom: 1rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    }

    .method-icon {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      background: rgba(26, 188, 156, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #1abc9c;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .method-content h4 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 0.25rem;
      font-size: 1.1rem;
    }

    /* Success Message */
    .alert-success {
      background: rgba(46, 204, 113, 0.1);
      border: 1px solid rgba(46, 204, 113, 0.2);
      border-radius: 12px;
      color: #27ae60;
      padding: 1.5rem;
      margin-bottom: 2rem;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .contact-header {
        padding: 2rem 1.5rem;
      }
      
      .contact-header h1 {
        font-size: 2rem;
      }
      
      .contact-body {
        padding: 1.5rem;
      }
      
      .info-card {
        margin-bottom: 1.5rem;
      }
      
      .method-item {
        flex-direction: column;
        text-align: center;
      }
    }

    @media (max-width: 576px) {
      
      
      .contact-header h1 {
        font-size: 1.8rem;
      }
    }

    /* Loading State */
    .loading {
      position: relative;
      pointer-events: none;
      opacity: 0.7;
    }

    .loading::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 20px;
      height: 20px;
      border: 2px solid #f3f3f3;
      border-top: 2px solid #1abc9c;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0% { transform: translate(-50%, -50%) rotate(0deg); }
      100% { transform: translate(-50%, -50%) rotate(360deg); }
    }