/* ================= GLOBAL ================= */
*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:'Segoe UI',sans-serif;
    background:linear-gradient(135deg,#050505,#111);
    color:white;
}

/* ===== MENU BASE ===== */
.main-menu li{
    position:relative;
    list-style:none;
}

/* FIRST DROPDOWN */
.dropdown{
    position:absolute;
    top:100%;
    left:0;
    background:#111;
    min-width:220px;
    display:none;
    padding:10px 0;
    border-radius:6px;
}

.has-dropdown:hover > .dropdown{
    display:block;
}

/* ===== RIGHT SIDE SUBMENU ===== */
.submenu{
    position:absolute;
    top:0;
    left:100%;   /* RIGHT SIDE OPEN */
    background:#111;
    min-width:220px;
    display:none;
    border-radius:6px;
}

.has-submenu:hover > .submenu{
    display:block;
}

.has-submenu > a::after{
    content:" ▸";
    float:right;
}
/* LINKS STYLE */
.dropdown a,
.submenu a{
    display:block;
    padding:10px 15px;
    color:#fff;
    text-decoration:none;
}

.dropdown a:hover,
.submenu a:hover{
    background:#1a1a1a;
    color:#d4af37;
}
/* Container */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ================= HEADER ================= */
.header{
    
    
    padding:15px 0;
    border-bottom:1px solid #222;
    top:0;
    z-index:999;
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:55px;
}

nav ul{
    list-style:none;
    display:flex;
    gap:28px;
}

nav a{
    text-decoration:none;
    color:#ddd;
    font-weight:500;
    transition:.3s;
}

nav a:hover,
.active a{
    color:#d4af37;
}

/* ================= FORM SECTION ================= */

.form-section{
    padding:80px 15px;
}

/* Glass Card */
.form-container{
    max-width:750px;
    margin:auto;
    padding:45px;
    border-radius:14px;
    background:rgba(20,20,20,0.85);
    backdrop-filter:blur(12px);
    box-shadow:
        0 0 40px rgba(212,175,55,0.15),
        inset 0 0 20px rgba(255,255,255,0.03);
}

/* Header */
.form-header{
    text-align:center;
    margin-bottom:25px;
}

.form-header h1{
    color:#d4af37;
    margin-bottom:8px;
}

.form-header p{
    color:#aaa;
    font-size:14px;
}

/* Inputs */
form input,
form textarea,
form select{
    width:100%;
    padding:14px;
    margin:12px 0;
    border-radius:8px;
    border:1px solid #2a2a2a;
    background:#0f0f0f;
    color:white;
    transition:0.3s;
    font-size:14px;
}

/* Focus Animation */
form input:focus,
form textarea:focus,
form select:focus{
    outline:none;
    border-color:#d4af37;
    box-shadow:0 0 10px rgba(212,175,55,0.3);
}

/* Label */
label{
    color:#bbb;
    font-size:14px;
}

/* Button */
button{
    width:100%;
    padding:16px;
    margin-top:15px;
    border:none;
    border-radius:8px;
    background:linear-gradient(45deg,#d4af37,#f1c94a);
    color:#000;
    font-weight:bold;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(212,175,55,0.4);
}

/* Success Message */
#msg{
    text-align:center;
    margin-top:12px;
    font-weight:500;
    color:#d4af37;
}

/* ================= FOOTER ================= */

.footer{
    background:#000;
    padding:60px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.footer h5{
    color:#d4af37;
}

.footer a{
    text-decoration:none;
    color:#ccc;
    transition:.3s;
}

.footer a:hover{
    color:#d4af37;
}

.social a{
    margin-right:12px;
    font-size:18px;
}

.copyright{
    text-align:center;
    margin-top:35px;
    border-top:1px solid #222;
    padding-top:15px;
    color:#aaa;
    font-size:14px;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

nav ul{
    gap:15px;
    font-size:14px;
}

.form-container{
    padding:25px;
}

}
