


body {
      background-color: #000;
      color: #fff;
    }

    /* Main navbar */
    nav {
      width: 100%;
      background-color: #00000046;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 40px;
      position: fixed;
      top: 0;
      z-index: 1000;
    }

    .logo {
      color: white;
      font-size: 24px;
      font-weight: bold;
      cursor: pointer;
    }

    .nav-links {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      font-size: 16px;
      padding: 6px 18px;
      border-radius: 5px;
      transition: 0.3s;
    }

    .nav-links a:hover {
      color: white;
      background-color: #222;
    }

    .nav-links a.active {
      color: white;
      border-bottom: 2px solid #fff;
    }

    .search-box {
      position: relative;
    }

    .search-box .input1 {
      padding: 6px 30px 6px 10px;
      border: none;
      border-radius: 20px;
      outline: none;
      background-color: #ffffffc4;
    }

    .search-box button {
      position: absolute;
      right: 5px;
      top: 3px;
      background: none;
      border: none;
      color: #555;
      cursor: pointer;
      font-size: 16px;
    }

    /* Hamburger icon */
    .menu-icon {
      display: none;
      font-size: 26px;
      cursor: pointer;
      color: white;
    }

    /* Mobile menu overlay */
    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 100%;
      background: linear-gradient(to right,rgb(0, 0, 0),rgb(44, 43, 43), rgb(2, 2, 2));
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 30px;
      transform: translateX(-100%);
      transition: 0.4s ease;
      z-index: 99;
    }

    .mobile-menu.active {
      transform: translateX(0);
    }

    .mobile-menu a {
      color: #ffffff;
      font-size: 26px;
      text-decoration: none;
      transition: 0.3s;
      border-bottom: 1px solid #444;
      padding-bottom: 8px;
    }

    .mobile-menu a:hover {
      color: white;
    }

    .close-icon {
  position: absolute;
  top: 70px;
  right: 25px;
  font-size: 38px;
  color: #f8f8f8;
  cursor: pointer;
}

    /* Responsive */
    @media (max-width: 900px) {
      .nav-links, .search-box {
        display: none;
      }
      .menu-icon {
        display: block;
      }
    }

    /* home */
    :root{
      --bg: #f4f5f6;
      --card: #ffffff;
      --muted: #ffffff;
      --accent: #111217;
      --accent-2: #ffffff;
      --btn-bg: #797575;
      --radius: 18px;
      --shadow: 0 10px 30px rgba(17,18,23,0.08);
      --form-width: 520px;
      font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    }

    html,body{
      height:100%;
      margin:0;
      color:var(--accent-2);
    }

    /* left: photo */
    .photo-card{
      background:var(--card);
      /* border-radius:var(--radius); */
      overflow:hidden;
      box-shadow:var(--shadow);
      display:flex;
      align-items:center;
      justify-content:center;
      min-height:420px;
    }

    .photo-card img{
      width:100%;
      height:80vh;
      object-fit:cover;
      display:block;
    }

    /* right: contact card */
    .contact-card{
      background:var(--card);
      box-shadow:var(--shadow);
      padding:34px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      min-height:420px;
      background:black;
      box-shadow: inset 0px -1px 14px 0px #958a8a;
    }

    .contact-top{
      display:flex;
      gap:18px;
      align-items:flex-start;
    }

    .contact-left{
      flex:1;
    }

    .contact-right{
      width:220px;
      min-width:160px;
      display:flex;
      flex-direction:column;
      gap:12px;
      align-items:flex-start;
      color:var(--muted);
      font-size:14px;
    }

    .contact-right .contact-title{
      font-weight:700;
      color:var(--accent-2);
      margin-bottom:6px;
      font-size:16px;
    }

    .form{
      margin-top:8px;
    }

    .row{
      display:flex;
      gap:16px;
    }

    .field{
      flex:1;
      display:flex;
      flex-direction:column;
    }

    label{
      font-size:13px;
      color:var(--muted);
      margin-bottom:8px;
    }

    input[type="text"], input[type="email"], textarea{
    padding: 5px;
      border: none;
      border-bottom:2px solid rgba(59, 62, 80, 0.08);
      outline:none;
      border-radius:8px;
      background: #f7f3f3;
      font-size:15px;
      box-shadow: inset 0 -1px 0 rgba(17,18,23,0.02);
      width: 100%;
    }

    input:focus, textarea:focus{
      border-bottom-color: rgba(34,36,39,0.22);
      box-shadow: 0 6px 20px rgba(34,36,39,0.04);
    }

    textarea{
      min-height:90px;
      resize:vertical;
      padding-top:10px;
    }

    .submit-row{
      display:flex;
      align-items:center;
      gap:18px;
      margin-top:12px;
    }

    .btn{
      background:var(--btn-bg);
      color:white;
      border:none;
      padding:8px 10px;
      border-radius:999px;
      font-weight:600;
      cursor:pointer;
      box-shadow:0 8px 22px rgba(34,36,39,0.12);
      transition: transform .12s ease, box-shadow .12s;
    }

    .btn:hover{ transform: translateY(-2px); }
    /* lateral small social & info area at bottom */
    .contact-bottom{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      margin-top:18px;
      border-top:1px solid rgba(17,18,23,0.04);
      padding-top:18px;
      color:var(--muted);
      font-size:13px;
    }

    .socials{ display:flex; gap:12px; align-items:center; }
    .socials a{
      display:inline-flex;
      width:36px;
      height:36px;
      border-radius:10px;
      align-items:center;
      justify-content:center;
      text-decoration:none;
      background: #1a191900;
      box-shadow: inset 0 -1px 0 rgba(17,18,23,0.02);
      color: #f4f5f6;
    }

    /* small screen layout adjustments */
    @media (max-width: 980px){
      .stage{ grid-template-columns: 1fr; max-width:900px; gap:18px; padding:0 8px;}
      .vertical-text{ right:8px; top:auto; bottom:-28px; transform: rotate(0deg); font-size:36px; left:auto;}
      .contact-right{ width:180px; order:2; }
      .contact-top{ flex-direction:column; gap:18px; }
      .photo-card{ min-height:360px; }
      .contact-card{ padding:20px; min-height:unset; }
    }

    @media (max-width:560px){
      .vertical-text{ display:none; }
      .photo-card{ min-height:240px; }
      .contact-card{ padding:18px;  }
      .row{ flex-direction:column; }
      .contact-right{ width:100%;}
      .contact-bottom{ flex-direction:column; align-items:flex-start; gap:8px;}
    }

    /* small helpers */
    .muted{ color:var(--muted); font-size:13px; }
    .h1-like{ font-size:28px; font-weight:700; letter-spacing:0.6px; margin:0; }
    .subtle{ color:var(--muted); font-size:14px; margin-top:6px; }

    
    /* footer */
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
      box-shadow: none;
    }

    footer {
      background:black;
      color: #fff;
      padding: 40px 20px;
      box-shadow: inset -1px -1px 15px 11px #958a8a !important;
    }

    .footer-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
    }

    .footer-section {
      flex: 1 1 220px;
      min-width: 200px;
    }

    .footer-section h3 {
      margin-bottom: 15px;
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #ffffff; /* رنگ طلایی-خاکی */
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section ul li {
      margin-bottom: 8px;
    }

    .footer-section ul li a {
      color: #ffffff;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-section ul li a:hover {
      color: #8b8b88;
    }

    .payment-logos img {
      width: 45px;
      margin: 5px;
      filter: brightness(0) invert(1);
    }

    .social-icons a {
      color: #fff;
      margin-right: 12px;
      font-size: 20px;
      text-decoration: none;
      transition: color 0.3s;
    }

    .social-icons a:hover {
      color: #8b8b88;
    }

    .newsletter {
      display: flex;
      flex-direction: column;
      margin-top: 10px;
    }

    .newsletter p {
      font-size: 14px;
      margin-bottom: 10px;
      color: #ddd;
    }

    .newsletter input[type="email"] {
      padding: 10px;
      border: 1px solid #fff;
      border-radius: 3px;
      margin-bottom: 10px;
      background-color: #000;
      color: #fff;
      outline: none;
      width: 90%;
      margin-left: 20px;
    }

    .newsletter button {
      background-color: #000;
      color: #fff;
      border: 1px solid #fff;
      padding: 8px;
      cursor: pointer;
      transition: all 0.3s;
      width: 90%;
      margin-left: 20px;
    }

    .newsletter button:hover {
      background-color:#8b8b88;
      border-color: #8b8b88;
      color: #000;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 30px;
      font-size: 14px;
      color: #8b8b88;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        text-align: center;
      }
      .social-icons {
        justify-content: center;
      }
    }
 