    /* Contact Hero Section */
    .contact-hero {
      background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
      color: white;
      padding: 120px 0 80px;
      position: relative;
      overflow: hidden;
    }

    .contact-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.08)"/></svg>');
      animation: float 20s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(180deg); }
    }

    .contact-hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
    }

    .contact-hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      background: linear-gradient(45deg, #ffffff, #e3f2fd);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .contact-hero p {
      font-size: 1.25rem;
      opacity: 0.9;
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    .contact-badges {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .contact-badge {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 0.5rem 1.2rem;
      border-radius: 25px;
      font-weight: 600;
      font-size: 0.9rem;
    }

    /* Contact Main Section */
    .contact-main {
      padding: 100px 0;
      background: linear-gradient(135deg, #f8faff 0%, #ffffff 50%, #f0f7ff 100%);
      position: relative;
    }

    .contact-main::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 20% 80%, rgba(25, 118, 210, 0.05) 0%, transparent 50%),
                  radial-gradient(circle at 80% 20%, rgba(21, 101, 192, 0.05) 0%, transparent 50%);
      pointer-events: none;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
      position: relative;
      z-index: 2;
    }

    .contact-info {
      background: white;
      padding: 3rem;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(25, 118, 210, 0.08);
      border: 1px solid rgba(25, 118, 210, 0.1);
      position: relative;
      overflow: hidden;
    }

    .contact-info::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #1976d2, #1565c0);
    }

    .contact-info h2 {
      color: #1976d2;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 2rem;
      padding: 1.5rem;
      background: rgba(25, 118, 210, 0.02);
      border-radius: 12px;
      border: 1px solid rgba(25, 118, 210, 0.08);
      transition: all 0.3s ease;
    }

    .contact-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(25, 118, 210, 0.1);
      border-color: rgba(25, 118, 210, 0.2);
    }

    .contact-icon {
      background: linear-gradient(135deg, #1976d2, #1565c0);
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .contact-details h3 {
      color: #1976d2;
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .contact-details p {
      color: #666;
      margin: 0;
      line-height: 1.6;
    }

    .contact-details a {
      color: #1976d2;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-details a:hover {
      color: #1565c0;
      text-decoration: underline;
    }

    /* Contact Form */
    .contact-form-container {
      background: white;
      padding: 3rem;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(25, 118, 210, 0.08);
      border: 1px solid rgba(25, 118, 210, 0.1);
      position: relative;
      overflow: hidden;
    }

    .contact-form-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #1976d2, #1565c0);
    }

    .contact-form-container h2 {
      color: #1976d2;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    .form-group {
      margin-bottom: 2rem;
    }

    .form-group label {
      display: block;
      color: #333;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 1rem 1.25rem;
      border: 2px solid #e0e0e0;
      border-radius: 12px;
      font-size: 1rem;
      transition: all 0.3s ease;
      background: white;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: #1976d2;
      box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
    }

    .form-group textarea {
      min-height: 120px;
      resize: vertical;
    }

    .submit-btn {
      background: linear-gradient(135deg, #1976d2, #1565c0);
      color: white;
      border: none;
      padding: 1rem 2.5rem;
      border-radius: 12px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(25, 118, 210, 0.3);
    }

    .submit-btn i {
      transition: transform 0.3s ease;
    }

    .submit-btn:hover i {
      transform: translateX(2px);
    }

    /* Social Links */
    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
      justify-content: center;
    }

    .social-link {
      background: linear-gradient(135deg, #1976d2, #1565c0);
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 1.2rem;
      transition: all 0.3s ease;
    }

    .social-link:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 10px 25px rgba(25, 118, 210, 0.3);
    }

    /* Map Section */
    .map-section {
      padding: 80px 0;
      background: white;
    }

    .map-section h2 {
      text-align: center;
      color: #1976d2;
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .map-section p {
      text-align: center;
      color: #666;
      font-size: 1.1rem;
      margin-bottom: 3rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .map-container {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(25, 118, 210, 0.1);
    }

    .map-container iframe {
      width: 100%;
      height: 400px;
      border: none;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .contact-hero {
        padding: 80px 0 60px;
      }

      .contact-hero h1 {
        font-size: 2.5rem;
      }

      .contact-badges {
        justify-content: center;
      }

      .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .contact-info,
      .contact-form-container {
        padding: 2rem;
      }

      .contact-item {
        padding: 1rem;
      }

      .contact-main {
        padding: 60px 0;
      }
    }

    /* Animations */
    .contact-item {
      animation: fadeInUp 0.6s ease forwards;
    }

    .contact-item:nth-child(1) { animation-delay: 0.1s; }
    .contact-item:nth-child(2) { animation-delay: 0.2s; }
    .contact-item:nth-child(3) { animation-delay: 0.3s; }
    .contact-item:nth-child(4) { animation-delay: 0.4s; }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }