   /* ========== INDEPENDENT STYLES (Contact page only) ========== */

    /* Page header */
    .page-header {
      margin-top: 120px;
      margin-bottom: 2rem;
      text-align: center;
    }
    .page-header h1 {
      font-size: 3.5rem;
      font-weight: 800;
      background: linear-gradient(135deg, #0a1a2f, #0066cc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: -0.02em;
    }
    .page-header p {
      font-size: 1.3rem;
      color: #3a4e6b;
      max-width: 700px;
      margin: 1rem auto 0;
    }

    /* Contact card (glass) - contains QR code and details, no map/form */
    .contact-card {
      background: rgba(255, 255, 255, 0.65);
      backdrop-filter: blur(12px);
      border-radius: 48px;
      padding: 3rem 4rem;
      border: 1px solid rgba(0,160,255,0.3);
      box-shadow: 0 25px 45px rgba(0,100,200,0.2);
      margin: 3rem auto 5rem;
      max-width: 1000px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 3rem;
      justify-content: center;
    }

    /* QR code area (large) */
    .qr-large {
      flex: 0 0 280px;
      text-align: center;
    }
    .qr-large .qr-img-large {
      width: 250px;
      height: 250px;
      background: #fff;
      padding: 1rem;
      border-radius: 32px;
      box-shadow: 0 20px 35px rgba(0,100,200,0.25);
      margin: 0 auto 1.5rem;
      border: 2px solid rgba(0,160,255,0.2);
      transition: transform 0.3s;
    }
    .qr-large .qr-img-large:hover {
      transform: scale(1.02);
    }
    .qr-large .qr-img-large img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }
    .qr-large p {
      font-size: 1.2rem;
      font-weight: 500;
      color: #0066cc;
    }
    .qr-large p i {
      color: #00a0ff;
      margin-right: 0.5rem;
    }

    /* Contact details (no email, no map) */
    .contact-details {
      flex: 1;
      min-width: 280px;
    }
    .detail-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 2rem;
    }
    .detail-icon {
      width: 50px;
      height: 50px;
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(4px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: #0066cc;
      border: 1px solid rgba(0,160,255,0.4);
      box-shadow: 0 5px 15px rgba(0,160,255,0.2);
    }
    .detail-text h4 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
      color: #0a1a2f;
    }
    .detail-text p {
      color: #2c405c;
      font-size: 1.1rem;
      line-height: 1.4;
    }
    .social-links {
      display: flex;
      gap: 1.5rem;
      margin-top: 2rem;
    }
    .social-links a {
      width: 50px;
      height: 50px;
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(4px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      color: #0066cc;
      border: 1px solid rgba(0,160,255,0.3);
      transition: 0.3s;
      text-decoration: none;
    }
    .social-links a:hover {
      background: white;
      border-color: #00a0ff;
      transform: translateY(-5px);
      box-shadow: 0 15px 25px rgba(0,160,255,0.3);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .contact-card {
        padding: 2rem 1.5rem;
        flex-direction: column;
        text-align: center;
      }
      .detail-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .social-links {
        justify-content: center;
      }
      .page-header h1 {
        font-size: 2.5rem;
      }
    }