/* ═══════ CONTACT PAGE SPECIFIC ═══════ */
        .contact-hero {
          padding: 160px 0 80px;
          text-align: center;
          background: var(--bg-dark);
          color: var(--text-on-dark);
          position: relative;
          overflow: hidden;
        }
        .contact-hero::before {
          content: "";
          position: absolute;
          inset: 0;
          background:
            radial-gradient(ellipse 50% 80% at 30% 50%, rgba(0,68,254,0.08) 0%, transparent 100%),
            radial-gradient(ellipse 40% 60% at 70% 30%, rgba(0,182,122,0.05) 0%, transparent 100%);
          pointer-events: none;
        }
        .contact-hero .container {
          position: relative;
          z-index: 1;
        }
        .contact-hero .hero-badge {
          display: inline-flex; align-items: center; gap: 8px;
          padding: 6px 16px 6px 8px;
          background: rgba(255,255,255,0.06);
          border: 1px solid rgba(255,255,255,0.08);
          border-radius: 980px;
          font-size: 13px; font-weight: 500; color: var(--text-muted-dark);
          margin-bottom: 28px;
        }
        .contact-hero-heading {
          font-family: var(--font-heading);
          font-size: clamp(40px, 6vw, 72px);
          font-weight: 800; line-height: 1.08;
          letter-spacing: -0.03em;
          margin-bottom: 20px;
        }
        .contact-hero-sub {
          font-size: clamp(15px, 1.5vw, 18px);
          color: var(--text-muted-dark);
          max-width: 560px;
          margin: 0 auto;
          line-height: 1.7;
        }
        .hero-nav-buttons {
          display: flex; gap: 16px; justify-content: center;
          flex-wrap: wrap; margin-top: 40px;
        }
        .hero-nav-btn {
          display: flex; flex-direction: column; align-items: center; gap: 12px;
          padding: 28px 36px;
          border: 1px solid rgba(255,255,255,0.08);
          border-radius: var(--radius-lg, 24px);
          background: var(--bg-dark-card);
          font-size: 15px; font-weight: 600; color: var(--text-on-dark);
          transition: border-color 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1);
          min-width: 180px;
        }
        .hero-nav-btn:hover {
          border-color: rgba(255,255,255,0.18);
          background: rgba(255,255,255,0.08);
          transform: translateY(-4px);
          box-shadow: 0 12px 36px rgba(0,0,0,0.22);
        }
        .hero-nav-btn svg { width: 28px; height: 28px; color: var(--text-on-dark); }
        .hero-nav-btn-detail { font-size: 13px; color: var(--text-muted-dark); font-weight: 400; }

        .contact-section { padding: 80px 0 120px; }
        .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
        .contact-text h2 {
          font-family: var(--font-heading); font-size: clamp(32px, 4vw, 48px);
          font-weight: 700; line-height: 1.15; margin-bottom: 16px;
        }
        .contact-text p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; }
        .contact-people { display: flex; gap: 16px; margin-bottom: 24px; }
        .contact-person { display: flex; align-items: center; gap: 12px; }
        .contact-person img {
          width: 96px; height: 96px; border-radius: 50%; object-fit: cover; object-position: center 15%;
          border: 2px solid var(--border-subtle); background: var(--bg-secondary);
        }
        .contact-person-name { font-size: 14px; font-weight: 600; }
        .contact-person-role { font-size: 12px; color: var(--text-tertiary); }

        .contact-info-links { display: flex; flex-direction: column; gap: 12px; }
        .contact-info-link {
          display: inline-flex; align-items: center; gap: 10px;
          font-size: 15px; font-weight: 500; color: var(--text-secondary);
          transition: color 0.2s ease;
        }
        .contact-info-link:hover { color: var(--text-primary); }
        .contact-info-link svg { width: 20px; height: 20px; flex-shrink: 0; }

        .contact-form-wrapper {
          padding: 0;
        }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--text-secondary); margin-bottom: 8px; }
        .form-group input, .form-group textarea {
          width: 100%; padding: 14px 16px;
          background: var(--bg-card, #ffffff);
          border: 1px solid var(--border-subtle);
          border-radius: var(--radius-sm, 12px);
          color: var(--text-primary);
          font-family: var(--font-body); font-size: 15px;
          transition: all 0.2s ease;
          outline: none;
        }
        .form-group input:focus, .form-group textarea:focus { border-color: var(--accent-blue); box-shadow: 0 0 0 3px rgba(0,68,254,0.08); }
        .form-group textarea { min-height: 120px; resize: vertical; }
        .form-checkbox {
          display: flex; align-items: flex-start; gap: 10px;
          font-size: 13px; color: var(--text-tertiary);
          margin-bottom: 24px; cursor: pointer;
        }
        .form-checkbox input[type="checkbox"] { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--accent-blue); }
        .contact-form-wrapper .btn-primary { width: 100%; justify-content: center; }

        .section-label {
          font-size: 13px; font-weight: 600; text-transform: uppercase;
          letter-spacing: 0.12em; color: var(--text-tertiary);
          margin-bottom: 16px; text-align: center;
        }
        .section-heading {
          font-family: var(--font-heading);
          font-size: clamp(36px, 5vw, 64px);
          font-weight: 700; line-height: 1.1;
          letter-spacing: -0.02em;
          text-align: center;
          margin-bottom: 64px;
        }
        .btn-primary {
          display: inline-flex; align-items: center; gap: 8px;
          padding: 14px 28px; border-radius: 980px;
          background: var(--text-primary); color: var(--bg-primary);
          font-size: 15px; font-weight: 600;
          transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1);
          border: none; cursor: pointer;
        }
        .btn-primary:hover { transform: scale(1.03); box-shadow: 0 4px 24px rgba(0,0,0,0.12); }

        .meeting-section {
          padding: 120px 0;
          background: var(--bg-warm, #f5f4f1);
          border-top: 1px solid var(--border-subtle);
          border-bottom: 1px solid var(--border-subtle);
        }
        .meeting-embed-wrapper {
          max-width: 800px;
          margin: 0 auto;
          min-height: 600px;
        }

        .custom-design-page-section { padding: 120px 0; }
        .custom-design-features { display: flex; flex-direction: column; gap: 16px; }
        .custom-design-feature {
          display: flex; align-items: center; gap: 12px;
          font-size: 15px; color: var(--text-secondary);
        }
        .custom-design-feature svg { width: 22px; height: 22px; color: var(--text-primary); flex-shrink: 0; }


        @keyframes breathe-glow {
          0%, 100% { box-shadow: 0 0 4px var(--accent-green), 0 0 8px rgba(0,182,122,0.3); }
          50% { box-shadow: 0 0 20px var(--accent-green), 0 0 36px rgba(0,182,122,0.9), 0 0 48px rgba(0,182,122,0.5); }
        }
        .hero-badge-dot {
          width: 8px; height: 8px; border-radius: 50%;
          background: var(--accent-green);
          box-shadow: 0 0 8px var(--accent-green);
          animation: breathe-glow 2.5s ease-in-out infinite;
        }

        @media (max-width: 1024px) {
          .contact-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
          .contact-hero { padding: 140px 0 60px; }
          .hero-nav-buttons { flex-direction: column; align-items: center; }
          .hero-nav-btn { width: 100%; max-width: 300px; }
          .contact-section,
          .meeting-section,
          .custom-design-page-section {
            padding: 80px 0;
          }
          .contact-form-wrapper { padding: 0; }
          .meeting-embed-wrapper { padding: 16px; }
          .section-heading { margin-bottom: 40px; }
        }
        @media (max-width: 480px) {
          .contact-hero { padding-left: 18px; padding-right: 18px; }
          .contact-hero-heading { font-size: 36px; }
          .contact-people {
            flex-direction: column;
          }
          .hero-nav-btn {
            max-width: none;
          }
        }
