footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: 'IRANSans', sans-serif;
    font-size: 15px;
    padding: 40px 20px;
    border-top: 2px solid #444;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }

  .footer-box {
    padding: 15px;
    background-color: #222;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
  }

  .footer-box:hover {
    transform: translateY(-4px);
  }

  .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-logo img {
    height: 80px;
    margin-bottom: 10px;
  }

  .footer-logo h6 {
    font-size: 1.2rem;
    color: #00c3ff;
    font-weight: bold;
    margin-bottom: 6px;
  }

  .footer-subtitle {
    font-size: 16px;
    color: #ffa733;
    font-weight: bold;
    margin-top: 8px;
    text-align: center;
  }

  .footer-social h6 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #f1f1f1;
  }

  .footer-social a {
    font-size: 22px;
    margin: 0 10px;
    color: #ccc;
    transition: color 0.3s ease;
  }

  .footer-social a:hover {
    color: #00c3ff;
  }

  .footer-contact {
    margin-top: 15px;
    font-size: 15px;
    color: #ccc;
  }

  .footer-contact li {
    margin-bottom: 6px;
    list-style: none;
  }

  .footer-feedback h6 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #f1f1f1;
  }

  .footer-feedback textarea {
    width: 100%;
    max-width: 100%;
    height: 120px;
    resize: none;
    padding: 10px;
    border-radius: 6px;
    border: none;
    background-color: #2a2a2a;
    color: #fff;
    font-size: 16px;
  }

  .footer-feedback button {
    width: 100%;
    margin-top: 10px;
    padding: 8px 16px;
    border: none;
    background-color: #00c3ff;
    color: #000;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
  }

  .footer-feedback button:hover {
    background-color: #00a0cc;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #888;
  }

  .status-box {
    margin-top: 10px;
    padding: 12px 16px;
    border-radius: 6px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
  }

  .status-box.success {
    background-color: #e0f8e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
  }

  .status-box.error {
    background-color: #fdecea;
    color: #c62828;
    border: 1px solid #f44336;
  }

  .hidden {
    display: none;
  }

  .close-status {
    background: none;
    border: none;
    font-size: 20px;
    color: inherit;
    cursor: pointer;
    margin-left: 12px;
  }
