/* ===========================
   ADVISOR HERO
=========================== */

.advisor-hero{

    min-height:55vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:140px 8% 80px;

    background:
radial-gradient(
circle at center,
rgba(212,175,55,.14),
transparent 60%
),

linear-gradient(
180deg,
#050505,
#0B0B0B,
#050505
);
}

.advisor-hero h1{

    font-size:72px;

    font-weight:800;

    margin-bottom:20px;

   background:
linear-gradient(
135deg,
#FFFFFF,
#FFF6D5,
#D4AF37,
#B8860B
);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

.advisor-hero p{

    max-width:750px;

    color:#D6D6D6;

    font-size:18px;

    line-height:1.8;
}

/* ===========================
   ADVISOR SECTION
=========================== */

.advisor-section{

    padding:100px 8%;
}

.advisor-card{

    max-width:1000px;

    margin:auto;

    padding:50px;

    border-radius:30px;

    background:#111111;
    border:1px solid rgba(212,175,55,.18);

    backdrop-filter:
    blur(25px);

   box-shadow:

0 20px 60px rgba(0,0,0,.55),

0 0 40px rgba(212,175,55,.08);

    position:relative;

    overflow:hidden;
}

.advisor-card::before{

    content:"";

    position:absolute;

    top:-150px;

    right:-150px;

    width:300px;

    height:300px;

    border-radius:50%;

    background:
radial-gradient(

rgba(212,175,55,.18),

transparent

);
}

.advisor-card h2{

    text-align:center;

    margin-bottom:40px;

    font-size:42px;
    color:#F7D774;
}

/* ===========================
   FORM
=========================== */

#advisorForm{

    display:flex;

    flex-direction:column;

    gap:20px;
}

#advisorForm label{

    font-weight:600;

    color:#F3F3F3;
}

#advisorForm select{

    padding:16px 20px;

    border-radius:15px;

    border:1px solid rgba(212,175,55,.18);

    background:#171717;

    color:white;

    outline:none;

    font-size:15px;
}

#advisorForm option{

    background:#111111;

color:white;
}
#advisorForm select:focus{

border-color:#D4AF37;

box-shadow:

0 0 18px rgba(212,175,55,.20);

}

/* ===========================
   CHECKBOX GRID
=========================== */

.checkbox-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(180px,1fr));

    gap:15px;

    margin-bottom:15px;
}

.checkbox-grid label{

    display:flex;

    align-items:center;

    gap:10px;

    padding:15px;

    border-radius:15px;

    background:#171717;

    border:1px solid rgba(212,175,55,.18);
    cursor:pointer;

    transition:0.4s;
}

.checkbox-grid label:hover{

    border-color:#D4AF37;

box-shadow:

0 0 20px rgba(212,175,55,.15);

    transform:
    translateY(-3px);
}

.checkbox-grid input{

    width:18px;

    height:18px;
}

/* ===========================
   BUTTON
=========================== */

#advisorForm button{

    margin-top:20px;

    padding:18px;

    border:none;

    border-radius:60px;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    color:white;

    background:
linear-gradient(
135deg,

#B8860B,

#D4AF37,

#F7D774

);

color:#111111;
    transition:0.4s;
}

#advisorForm button:hover{

transform:

translateY(-5px);

box-shadow:

0 15px 40px rgba(212,175,55,.35);

}

/* ===========================
   RESULT SECTION
=========================== */

.advisor-result{

    padding:0 8% 120px;
}

.result-card{

    max-width:1100px;

    margin:auto;

    padding:50px;

    border-radius:30px;

   background:#111111;

   border:1px solid rgba(212,175,55,.18);

    backdrop-filter:
    blur(25px);

    box-shadow:
    0 20px 60px rgba(0,0,0,0.35);
}

.result-card h2{

    text-align:center;

    margin-bottom:30px;

    font-size:42px;

    color:#F7D774;
}

/* ===========================
   RESULT INFO
=========================== */

#resultContent{

    display:flex;

    flex-direction:column;

    gap:20px;
}

.result-box{

    padding:25px;

    border-radius:20px;

   background:#171717;

    border:1px solid rgba(212,175,55,.18);

    transition:0.4s;
}

.result-box:hover{

    transform:
    translateX(10px);

    border-color:#D4AF37;

box-shadow:

0 0 20px rgba(212,175,55,.20);
}

.result-box h3{

    color:#F7D774;

    margin-bottom:10px;
}

.result-box p{

    color:#cbd5e1;

    line-height:1.8;
}

/* ===========================
   MATCH SCORE
=========================== */

.match-score{

    text-align:center;

    padding:30px;

    border-radius:25px;

    background:
linear-gradient(
135deg,

rgba(212,175,55,.12),

rgba(184,134,11,.10)

);

    border:1px solid rgba(212,175,55,.25);
}

.match-score span{

    display:block;

    font-size:70px;

    font-weight:800;

   color:#F7D774;
}

/* ===========================
   ROADMAP
=========================== */

.ai-roadmap{

    display:flex;

    flex-direction:column;

    gap:12px;

    margin-top:15px;
}

.ai-step{

    padding:15px 20px;

    border-radius:15px;

   background:#171717;
   border:1px solid rgba(212,175,55,.18);
}

.ai-arrow{

    text-align:center;

    color:#F7D774;

    font-size:22px;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:768px){

    .advisor-hero h1{

        font-size:48px;
    }

    .advisor-card{

        padding:30px;
    }

    .result-card{

        padding:30px;
    }

    .result-card h2{

        font-size:30px;
    }

    .match-score span{

        font-size:50px;
    }

}
#aiBotBtn{

    position:fixed;

    right:30px;

    bottom:30px;

    width:80px;

    height:80px;

    border-radius:50%;

    cursor:pointer;

    z-index:9999;

    animation:floatBot 3s infinite ease-in-out;
}

#aiBotBtn img{

    width:100%;

    height:100%;

    object-fit:cover;
}

#aiChatBox{

    position:fixed;

    right:30px;

    bottom:130px;

    width:380px;

    height:550px;

    background:#111111;

    border-radius:25px;

    overflow:hidden;

    display:none;

    z-index:9999;

    box-shadow:
    0 20px 60px rgba(0,0,0,.4);
}

.chat-header{

    height:70px;
background:
linear-gradient(
135deg,

#B8860B,

#D4AF37,

#F7D774

);

color:#111111;
    color:white;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 20px;
}

#chatBody{

    height:400px;

    overflow-y:auto;

    padding:20px;
}

.bot-msg{

    background:#1A1A1A;

border-left:3px solid #D4AF37;

    color:white;

    padding:12px;

    border-radius:15px;

    margin-bottom:10px;
}

.user-msg{

    background:#D4AF37;

color:#111111;

font-weight:600;

    color:white;

    padding:12px;

    border-radius:15px;

    margin-bottom:10px;

    text-align:right;
}

.chat-footer{

    display:flex;

    padding:15px;
}

.chat-footer input{

    flex:1;

    height:45px;

    border:none;

    border-radius:10px;

    padding:0 15px;
}

.chat-footer button{

    margin-left:10px;

    padding:0 20px;

    border:none;

    border-radius:10px;

    background:#D4AF37;

color:#111111;

font-weight:700;

    color:white;
}

@keyframes floatBot{

    50%{

        transform:
        translateY(-12px);

    }

}
.advisor-card,
.result-card,
.result-box,
.ai-step,
.checkbox-grid label{

backdrop-filter:blur(22px);

-webkit-backdrop-filter:blur(22px);

transition:.35s;

}

.advisor-card:hover,
.result-card:hover{

border-color:#D4AF37;

box-shadow:

0 20px 60px rgba(212,175,55,.20);

}