body{
      font-family: var(--app-font);
      background: var(--bg);
      color: var(--text-main);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      margin: 0;
    }
    main { flex: 1; }

    /* Header */
    .topbar{
      background:#fff;
      border-bottom: 1px solid #f0f0f0;
    }
    .btn-logout{
      border: 1px solid #222;
      border-radius: 6px;
      padding: 8px 18px;
      background: #fff;
      font-weight: 600;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:800;
      font-size:28px;
    }
    .brand img{ height:32px; }

    /* Page heading row */
    .page-title{
      font-weight: 800;
      font-size: 34px;
      margin: 0;
      letter-spacing: .2px;
    }
    .page-subtitle{
      margin: 8px 0 0;
      color: var(--muted);
      font-size: 14px;
    }
    .back-link{
      color: var(--text-muted);
      text-decoration:none;
      font-weight:600;
      display:inline-flex;
      align-items:center;
      gap:8px;
    }
    .back-link:hover{ color: var(--text-main); }

    /* Main card */
    .contact-card{
        max-width: 920px;
      background: var(--card);
      border-radius: 14px;
      overflow:hidden;
      box-shadow: 0 12px 30px rgba(0,0,0,.06);
    }
    .left-panel{
      background: var(--left-panel);
      min-height: 430px;
      display:flex;
      align-items:center;
      justify-content:center;
      padding: 34px;
    }
    .hero-box{
      position: relative;
      width: 320px;
      max-width: 100%;
      border-radius: 22px;
      /* background: #FFD200;
      border: 6px solid #121212; */
      /* box-shadow: 0 10px 18px rgba(0,0,0,.12); */
      padding: 0;
      aspect-ratio: 1 / 1;
      overflow:hidden;
      display:flex;
      align-items:flex-end;
      justify-content:center;
    }
    .left-panel img{
      width: 92%;
      height: auto;
      transform: translateY(10px);
      /* filter: drop-shadow(0 10px 12px rgba(0,0,0,.18)); */
      user-select:none;
    }
    .bolt{
      position:absolute;
      top: 40px;
      left: 48px; /* because RTL; visually similar */
      width: 22px;
      height: 22px;
      background: #E30613;
      clip-path: polygon(40% 0, 100% 0, 55% 45%, 85% 45%, 20% 100%, 45% 55%, 15% 55%);
      transform: rotate(-12deg);
      opacity:.95;
    }

    .form-panel{
      padding: 34px 40px;
    }

    .form-title{
      font-weight: 800;
      font-size: 26px;
      margin-bottom: 22px;
    }

    .form-label{
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 10px;
    }

    .form-control, .form-select{
      height: 48px;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: var(--card);
      color: var(--text-main);
    }
    .form-control:focus, .form-select:focus{
      box-shadow: 0 0 0 .2rem rgba(227,6,19,.10);
      border-color: rgba(227,6,19,.35);
    }

    .send-btn{
      border: 0;
      border-radius: 4px;
      height: 42px;
      padding: 0 22px;
      font-weight: 800;
      color:#fff;
      background: var(--btn-grad);
      margin-inline-start: auto;
    }

    /* Footer */
    footer{
      background: #1f1f1f;
      color:#d7d7d7;
      padding: 24px 0;
    }
    .contact-footer-inner {
      display:         flex;
      align-items:     center;
      justify-content: space-between;
      flex-wrap:       wrap;
      gap:             16px;
    }
    .ks-link {
      width:           36px;
      height:          36px;
      display:         inline-flex;
      align-items:     center;
      justify-content: center;
      border-radius:   50%;
      background:      rgba(255,255,255,.09);
      color:           #fff;
      text-decoration: none;
      transition:      background .2s, transform .15s;
    }
    .ks-link:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
    .ks-link svg   { display: block; }

    .footer-brand {
      display:     flex;
      align-items: center;
    }
    .footer-brand img { height: 34px; }

    .footer-copy-block {
      display:        flex;
      flex-direction: column;
      align-items:    flex-end;
      gap:            8px;
      font-size:      .82rem;
    }
    .footer-page-links {
      display: flex;
      gap:     14px;
    }
    .footer-page-links a {
      color:           #9ca3af;
      font-size:       .78rem;
      text-decoration: none;
      transition:      color .2s;
    }
    .footer-page-links a:hover { color: #fff; }

    @media (max-width: 640px) {
      .contact-footer-inner { flex-direction: column; align-items: center; text-align: center; }
      .footer-copy-block    { align-items: center; }
    }

    /* Responsive */
    @media (max-width: 991.98px){
      .form-panel{ padding: 26px 22px; }
      .left-panel{ min-height: 360px; }
      .page-title{ font-size: 28px; }
    }