html{
    scroll-behavior: smooth;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    background-color: #0d0d0d;
    color: white;
}

/* NAVBAR */

nav{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    position: fixed;
    top: 0;
    background-color: rgba(0,0,0,0.85);
    z-index: 1000;
}

/* LOGO */

.logo{
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img{
    height: 65px;
    width: auto;
}

.logo-text h1{
    color: #d4af37;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 2px;
}

.logo-text p{
    color: #cfcfcf;
    font-size: 11px;
    letter-spacing: 2px;
    margin-top: 4px;
}

nav ul{
    display: flex;
    list-style: none;
    gap: 35px;
}

nav a{
    color: white;
    text-decoration: none;
    font-size: 16px;
}

/* HERO */

.hero{
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 8% 100px;
    background: linear-gradient(to right, #000000, #1a1a1a);
}
.hero-content{
    max-width: 900px;
}

.hero h1{
    font-size: 68px;
    line-height: 1.05;
    margin-bottom: 30px;
}

.hero p{
    font-size: 20px;
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 35px;
}

button{
    padding: 16px 38px;
    border: none;
    background-color: #d4af37;
    color: black;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

/* PRACTICE SECTION */

.practice{
    padding: 120px 8%;
    background-color: #111111;
}

.practice h2{
    text-align: center;
    font-size: 50px;
    margin-bottom: 60px;
}

.cards{
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.card{
    width: 350px;
    background-color: #1b1b1b;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(212,175,55,0.2);
}

.card h3{
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 28px;
}

.card p{
    color: #cfcfcf;
    line-height: 1.8;
}

/* MOBILE */

@media(max-width: 900px){

    nav{
        flex-direction: column;
        gap: 20px;
    }

    nav ul{
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1{
        font-size: 55px;
    }

}
/* ABOUT */

.about{
    padding: 120px 8%;
    background-color: #0d0d0d;
}

.about h2{
    font-size: 50px;
    margin-bottom: 30px;
    color: #d4af37;
}

.about p{
    max-width: 900px;
    line-height: 2;
    color: #cfcfcf;
    font-size: 18px;
}

/* ADVOCATES */

.advocates{
    padding: 120px 8%;
    background-color: #111111;
}

.advocates h2{
    text-align: center;
    font-size: 50px;
    margin-bottom: 60px;
}

.advocate-box{
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(212,175,55,0.15);
}

.advocate-box h3{
    color: #d4af37;
    margin-bottom: 20px;
}

/* CONTACT */

.contact{
    padding: 120px 8%;
    text-align: center;
}

.contact h2{
    font-size: 50px;
    margin-bottom: 30px;
}

.contact p{
    color: #cfcfcf;
    margin-bottom: 30px;
}
/* CONSULT BUTTON */

.consult-btn{
    display: inline-block;
    margin-top: 20px;
    padding: 18px 42px;
    background-color: #d4af37;
    color: black;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s ease;
}

.consult-btn:hover{
    transform: translateY(-5px);
    background-color: #f0c94a;
    box-shadow: 0 0 25px rgba(212,175,55,0.35);
}
/* AI CHAT ASSISTANT */

.chat-toggle{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background-color: #d4af37;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    cursor: pointer;
    z-index: 2000;
    box-shadow: 0 0 20px rgba(212,175,55,0.4);
}

.chat-box{
    position: fixed;
    bottom: 105px;
    right: 25px;
    width: 350px;
    background-color: #111111;
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 15px;
    overflow: hidden;
    display: none;
    z-index: 2000;
}

.chat-header{
    background-color: #d4af37;
    color: black;
    padding: 18px;
    font-weight: 700;
}

.chat-body{
    height: 320px;
    padding: 20px;
    overflow-y: auto;
}

/* CHAT INPUT */

.chat-input{
    display: flex;
    align-items: center;
    background-color: #111111;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.chat-input input{
    flex: 1;
    height: 60px;
    padding: 0 18px;
    background-color: #1a1a1a;
    border: none;
    outline: none;
    color: white;
    font-size: 16px;
}

.chat-input button{
    width: 110px;
    height: 60px;
    background-color: #d4af37;
    border: none;
    color: black;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.chat-input button:hover{
    background-color: #f0c94a;
}

/* CHAT MESSAGES */

.user-message{
    background-color: #d4af37;
    color: black;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
    margin-left: 50px;
    font-weight: 500;
}

.bot-message{
    background-color: #1a1a1a;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
    color: white;
}

.chat-body{
    overflow-y: auto;
}
/* FOOTER */

footer{
    background-color: #080808;
    padding: 70px 8% 30px;
    border-top: 1px solid rgba(212,175,55,0.12);
}

.footer-logo{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.footer-logo img{
    height: 60px;
}

.footer-logo-text h2{
    color: #d4af37;
    letter-spacing: 2px;
}

.footer-logo-text p{
    color: #cfcfcf;
    font-size: 11px;
    letter-spacing: 2px;
}

.footer-content{
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #cfcfcf;
    line-height: 1.8;
}

.footer-bottom{
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #777;
    font-size: 14px;
    text-align: center;
}
/* HAMBURGER MENU */

.menu-toggle{
    display: none;
    font-size: 32px;
    color: white;
    cursor: pointer;
}

/* MOBILE RESPONSIVE */

@media(max-width: 900px){

    .menu-toggle{
        display: block;
    }

    nav ul{
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background-color: #0a0a0a;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 35px 0;
        display: none;
    }

    nav ul.active{
        display: flex;
    }

    .hero h1{
        font-size: 70px;
        line-height: 1.1;
    }

    .hero p{
        width: 100%;
    }

    .chat-box{
        width: 90%;
        right: 5%;
    }

    .footer-logo{
        flex-direction: column;
        align-items: flex-start;
    }

}
/* DISCLAIMER */

.disclaimer{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5000;
}

.disclaimer-box{
    width: 90%;
    max-width: 700px;
    background-color: #111111;
    padding: 45px;
    border-radius: 18px;
    border: 1px solid rgba(212,175,55,0.2);
    text-align: center;
}

.disclaimer-box h2{
    color: #d4af37;
    margin-bottom: 25px;
    font-size: 38px;
}

.disclaimer-box p{
    color: #cfcfcf;
    line-height: 1.9;
    margin-bottom: 35px;
}

.disclaimer-box button{
    padding: 16px 35px;
    background-color: #d4af37;
    border: none;
    font-weight: 700;
    cursor: pointer;
}
/* ADVOCATES */

.advocates{
    padding: 120px 8%;
    background-color: #111111;
}

.advocates h2{
    text-align: center;
    color: #d4af37;
    font-size: 52px;
    margin-bottom: 70px;
}

.advocate-card{
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    background: #0d0d0d;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212,175,55,0.1);
}

.advocate-card img{
    width: 320px;
    height: 420px;
    object-fit: cover;
    border-radius: 15px;
}

.advocate-info{
    flex: 1;
}

.advocate-info h3{
    color: #ffffff;
    font-size: 38px;
    margin-bottom: 15px;
}

.advocate-info h4{
    color: #d4af37;
    margin-bottom: 30px;
    font-size: 20px;
}

.advocate-info p{
    color: #d0d0d0;
    line-height: 2;
    font-size: 17px;
}

/* MOBILE */

@media(max-width:900px){

    .advocate-card{
        flex-direction: column;
    }

    .advocate-card img{
        width: 100%;
        height: auto;
    }

}