:root {
            --primary-yellow: #ffcc00;
            --dark-bg: #0a0a0a;
            --card-bg: #0d0d0d;
            --neon-glow: 0 0 15px rgba(255, 204, 0, 0.4);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            padding-top:80px;
            background-color: var(--dark-bg);
            color: white;
            font-family: 'Segoe UI', sans-serif;
            overflow-x: hidden;
        }

        /* ================= NAVBAR ================= */
.navbar{
  position:fixed;
  top:0;
  width:100%;
  padding:12px 0;
  z-index:999;
  background:rgba(0,0,0,0.55);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgb(255, 230, 0);
}

.nav-inner{
  max-width:1400px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  padding:0 40px;
}

.nav-logo img{
  height:48px;   /* pehle ~38px tha */
  width:auto;
  filter: drop-shadow(0 0 16px rgb(255, 238, 0));
}

.nav{
  display:flex;
  gap:35px;
  margin:0 auto;
}

.nav a{
  color:rgb(255, 255, 255);
  font-weight:700;
  text-decoration:none;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:10px;
  transition:0.25s;
}

.nav a i{color:rgb(251, 255, 0)}

.nav a:hover{
  color:rgb(255, 238, 0);
  text-shadow:0 0 15px rgb(255, 238, 0);
}

.nav a:hover i{
  transform:scale(1.15);
  text-shadow:0 0 18px rgb(255, 251, 0);
}

.nav a.active{
  color:rgb(255, 238, 0);
  text-shadow:0 0 15px rgb(251, 255, 0);
}

        /* --- CONTACT SECTION --- */
        .contact-section { max-width: 1100px; margin: 60px auto; padding: 0 20px; }

        .header-container { text-align: center; margin-bottom: 60px; }
        .contact-pfp { width: 110px; height: 110px; border-radius: 50%; border: 3px solid var(--primary-yellow); box-shadow: var(--neon-glow); margin-bottom: 15px; transition: all 0.35s ease; }

.contact-pfp:hover {
  transform: scale(1.18);
  box-shadow:
    0 0 35px rgba(255, 204, 0, 0.9),
    0 0 90px rgba(255, 204, 0, 0.85),
    0 0 150px rgba(255, 204, 0, 0.7);
}
        
        h1.title { font-size: 3rem; font-weight: 900; margin-bottom: 10px; }
        .subtitle-main { color: #888; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

        .main-container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; }

        /* Left Side */
        .left-side h2 { font-size: 2.2rem; margin-bottom: 10px; }
        .subtitle-2 { color: #aaa; margin-bottom: 30px; line-height: 1.6; }

        .social-box {
            background: #121212; border-left: 4px solid var(--primary-yellow);
            padding: 18px; margin-bottom: 20px; display: flex; align-items: center; gap: 20px;
            border-radius: 5px; transition: 0.3s; cursor: pointer; text-decoration: none; color: white;
        }
        .social-box:hover { transform: translateX(10px); background: #1a1a1a; box-shadow: var(--neon-glow); }
        .social-box i { font-size: 2.2rem; color: var(--primary-yellow); }
        .count-info span { font-size: 1.6rem; font-weight: bold; display: block; }
        .count-info p { margin: 0; font-size: 0.85rem; color: #777; }

        /* Form Label Styling */
        .form-header-label {
            color: var(--primary-yellow);
            font-weight: 900;
            font-size: 1.2rem;
            letter-spacing: 3px;
            margin-bottom: 15px;
            display: inline-block;
            text-transform: uppercase;
            text-shadow: var(--neon-glow);
        }

        /* Form Card */
        .contact-card {
            background: var(--card-bg); border: 1px solid rgba(255, 204, 0, 0.2);
            padding: 35px; position: relative; border-radius: 8px;
        }

        .input-group {
            background: rgba(255, 255, 255, 0.03); border: 1px solid #222;
            border-radius: 4px; margin-bottom: 20px; display: flex; align-items: center; padding: 12px 18px;
        }
        .input-group i { color: #555; margin-right: 15px; width: 20px; }
        .input-group input, .input-group textarea { background: transparent; border: none; color: white; width: 100%; outline: none; }

        .send-btn {
            width: 100%; background: linear-gradient(90deg, #ffcc00, #ffaa00);
            border: none; padding: 16px; font-weight: 800; color: black; cursor: pointer;
            border-radius: 4px; display: flex; justify-content: space-between; align-items: center; transition: 0.3s;
        }
        .send-btn:hover { box-shadow: 0 0 25px rgba(255, 204, 0, 0.6); }

.contact-warning{
  text-align:center;
  color:#ff0000;
  font-weight:700;
  margin:40px auto 10px auto;
  max-width:900px;
  padding:10px 20px;
}

        /* ================= FOOTER ================= */
.footer { margin-top: 50px; padding: 20px 90px; border-top: 1px solid rgba(255, 0, 0, 0.2); display: flex; justify-content: space-between; align-items: center; background: #050509; }
.footer-left { display: flex; align-items: center; gap: 12px; }
.footer-pfp { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgb(238, 255, 0); }
.copyright { font-size: 13px; color: #777; }
.copyright b { color: rgb(255, 238, 0); }
.footer-right { display: flex; gap: 15px; }
.footer-right a { color: #777; font-size: 16px; transition: 0.3s; }
.footer-right a:hover { color: rgb(255, 251, 0); text-shadow: 0 0 10px red; }

        /* Success Popup */
        .success-popup {
            position: fixed; bottom: -100px; left: 50%; transform: translateX(-50%);
            background: var(--primary-yellow); color: black; padding: 15px 35px;
            border-radius: 50px; font-weight: bold; transition: 0.5s; z-index: 1000;
        }
        .success-popup.show { bottom: 40px; }

        @media (max-width: 850px) { .main-container { grid-template-columns: 1fr; } .nav-links { display: none; } }

/* ===== FINAL MOBILE NAV FIX - CONTACT PAGE ===== */

.menu-toggle{
  display:none;
  font-size:24px;
  color:white;
  cursor:pointer;
}

html, body{
  width:100%;
  overflow-x:hidden !important;
}

@media (max-width:850px){

  .nav-inner{
    justify-content:space-between !important;
    padding:0 20px !important;
  }

  .nav{
    position:fixed !important;
    top:70px !important;
    left:0 !important;
    width:100% !important;
    transform:none !important;
    display:none !important;
    flex-direction:column !important;
    background:#0a0a0a !important;
    padding:20px 0 !important;
    text-align:center !important;
    z-index:9999 !important;
    border-top:1px solid rgba(255,204,0,.3);
  }

  .nav.show{
    display:flex !important;
  }

  .menu-toggle{
    display:block !important;
  }

}

