/*======================================
Aarohan Wealth
Legal Pages CSS
======================================*/
/*==============================
Legal Hero
==============================*/
.legal-hero{
    position: relative;
    overflow: hidden;
    padding: 160px 0 90px;
    background: linear-gradient(135deg,#0d2240 0%,#123c73 55%,#1d4f95 100%);
    color:#fff;
    }
    .legal-hero::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    top:-180px;
    right:-120px;
    }
    .legal-hero::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(200,155,60,.08);
    border-radius:50%;
    left:-120px;
    bottom:-120px;
    }
    .legal-hero .container{
    position:relative;
    z-index:2;
    }
    .legal-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.20);
    backdrop-filter:blur(12px);
    font-size:.9rem;
    font-weight:600;
    letter-spacing:.5px;
    }
    .legal-hero h1{
    font-size:clamp(1.7rem,5vw,2.4rem);
    font-weight:700;
    margin:28px 0 20px;
    color:#fff;
    }
    .legal-hero p{
    max-width:760px;
    margin:auto;
    font-size:1.1rem;
    line-height:1.9;
    color:rgba(255,255,255,.90);
    }
    /*==============================
    Breadcrumb
    ==============================*/
    .breadcrumb{
    margin-top:30px;
    }
    .breadcrumb-item{
    font-size:.95rem;
    }
    .breadcrumb-item a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
    }
    .breadcrumb-item a:hover{
    color:#C89B3C;
    }
    .breadcrumb-item.active{
    color:rgba(255,255,255,.75);
    }
    .breadcrumb-item + .breadcrumb-item::before{
    color:rgba(255,255,255,.45);
    }
    /*==============================
    Legal Content
    ==============================*/
    .legal-content{
    background:#F7F9FC;
    padding:90px 0;
    }
    /*==============================
    Cards
    ==============================*/
    .legal-card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    margin-bottom:28px;
    border:1px solid #edf2f7;
    box-shadow:0 12px 35px rgba(15,35,60,.06);
    transition:.35s ease;
    }
    .legal-card:hover{
    transform:translateY(-6px);
    box-shadow:0 25px 55px rgba(18,60,115,.12);
    }
    .legal-card h2{
    position:relative;
    margin-bottom:22px;
    padding-bottom:15px;
    color:#123C73;
    font-size:1.65rem;
    font-weight:700;
    }
    .legal-card h2::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:75px;
    height:4px;
    border-radius:20px;
    background:#C89B3C;
    }
    .legal-card p{
    color:#4B5563;
    font-size:1rem;
    line-height:1.9;
    margin-bottom:18px;
    }
    .legal-card p:last-child{
    margin-bottom:0;
    }
    .legal-card ul{
    padding-left:22px;
    margin-top:15px;
    }
    .legal-card li{
    margin-bottom:12px;
    color:#4B5563;
    line-height:1.8;
    }
    /*==============================
    CTA
    ==============================*/
    .legal-cta{
    margin-top:60px;
    background:linear-gradient(135deg,#123C73,#1E5BB8);
    border-radius:22px;
    padding:55px;
    color:#fff;
    box-shadow:0 25px 60px rgba(18,60,115,.18);
    }
    .legal-cta h2{
    color:#fff;
    font-size:2rem;
    margin-bottom:15px;
    }
    .legal-cta p{
    color:rgba(255,255,255,.85);
    margin-bottom:0;
    line-height:1.8;
    }
    .legal-cta .btn{
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    }
    /*==============================
    Selection
    ==============================*/
    ::selection{
    background:#123C73;
    color:#fff;
    }
    /*==============================
    Responsive
    ==============================*/
    @media(max-width:991.98px){
    .legal-hero{
    padding:160px 0 80px;
    }
    .legal-card{
    padding:35px;
    }
    .legal-cta{
    padding:40px;
    text-align:center;
    }
    }
    @media(max-width:767.98px){
    .legal-hero{
    padding:160px 0 70px;
    }
    .legal-hero h1{
    font-size:2.4rem;
    }
    .legal-hero p{
    font-size:1rem;
    }
    .legal-card{
    padding:28px;
    }
    .legal-card h2{
    font-size:1.35rem;
    }
    .legal-cta{
    padding:30px;
    }
    .legal-cta h2{
    font-size:1.6rem;
    }
    }
    @media(max-width:575.98px){
    .legal-badge{
    font-size:.8rem;
    padding:8px 18px;
    }
    .legal-card{
    border-radius:16px;
    }
    .legal-cta{
    border-radius:18px;
    }
    }