/*==================================================
GOOGLE FONT
==================================================*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Cormorant+Garamond:wght@500;600;700&display=swap');

/*==================================================
ROOT
==================================================*/
:root{

    --pp-bg:#050505;
    --pp-card:#111111;
    --pp-card2:#181818;

    --pp-gold:#D4AF37;
    --pp-gold-light:#F6D878;

    --pp-text:#ffffff;
    --pp-muted:#bcbcbc;

    --pp-border:rgba(255,255,255,.08);

    --pp-shadow:
    0 20px 60px rgba(0,0,0,.45);

}

/*==================================================
GLOBAL
==================================================*/

body{

    background:var(--pp-bg);
    color:var(--pp-text);
    overflow-x:hidden;
    font-family:"Inter",sans-serif;

}

.terms-section,
.terms-hero{

    position:relative;

}

.terms-section::before,
.terms-hero::before{

    content:"";

    position:absolute;

    width:480px;
    height:480px;

    border-radius:50%;

    background:rgba(212,175,55,.08);

    filter:blur(120px);

    pointer-events:none;

}

.terms-hero::before{

    top:-170px;
    left:-170px;

}

.terms-section::before{

    right:-170px;
    bottom:-170px;

}

/*==================================================
HERO
==================================================*/

.terms-hero{

    position:relative;

    overflow:hidden;

    padding:180px 0 140px;

    border-bottom:1px solid var(--pp-border);

    background:
    linear-gradient(rgba(0,0,0,.78),rgba(0,0,0,.88)),
    url("../images/about.png") center/cover no-repeat;

}

.terms-hero::after{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(212,175,55,.14),
    transparent 42%);

}

.terms-hero .container{

    position:relative;
    z-index:2;

}

/*==================================================
BADGE
==================================================*/

.terms-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    margin-bottom:30px;

    border-radius:60px;

    background:rgba(212,175,55,.08);

    border:1px solid rgba(212,175,55,.18);

    color:var(--pp-gold);

    font-size:14px;

    font-weight:600;

    letter-spacing:.5px;

}

.terms-badge::before{

    content:"";

    width:10px;
    height:10px;

    border-radius:50%;

    background:var(--pp-gold);

    box-shadow:
    0 0 12px var(--pp-gold);

}

/*==================================================
HERO TEXT
==================================================*/

.terms-hero h1{

    font-family:"Cormorant Garamond",serif;

    font-size:clamp(60px,8vw,100px);

    line-height:.95;

    margin-bottom:28px;

}

.terms-hero p{

    max-width:760px;

    color:var(--pp-muted);

    font-size:18px;

    line-height:1.9;

}

/*==================================================
MAIN LAYOUT
==================================================*/

.terms-grid{

    display:grid;

    grid-template-columns:320px minmax(0,1fr);

    gap:45px;

    align-items:start;

    padding:120px 0;

}

/*==================================================
SIDEBAR
==================================================*/

.terms-sidebar{

    position:sticky;

    top:120px;

    height:calc(100vh - 140px);

    overflow-y:auto;

    padding:30px;

    border-radius:28px;

    background:
    linear-gradient(
    145deg,
    #151515,
    #0d0d0d);

    border:1px solid var(--pp-border);

    box-shadow:var(--pp-shadow);

}

.terms-sidebar h3{

    font-family:"Cormorant Garamond",serif;

    font-size:28px;

    margin-bottom:28px;

}

.terms-sidebar ul{

    list-style:none;

    padding:0;

    margin:0;

}

.terms-sidebar li{

    margin-bottom:12px;

}

.terms-sidebar a{

    display:flex;

    align-items:center;

    gap:12px;

    padding:15px 18px;

    border-radius:14px;

    color:#d9d9d9;

    text-decoration:none;

    transition:.35s;

    border:1px solid transparent;

}

.terms-sidebar a i{

    color:var(--pp-gold);

    width:18px;

    text-align:center;

}

.terms-sidebar a:hover{

    background:rgba(212,175,55,.08);

    border-color:rgba(212,175,55,.18);

    color:#fff;

    transform:translateX(8px);

}

/*==================================================
CONTENT
==================================================*/

.terms-content{

    display:flex;

    flex-direction:column;

    gap:30px;

}
/*==================================================
PREMIUM CARDS
==================================================*/

.terms-card{

    position:relative;

    overflow:hidden;

    padding:40px;

    border-radius:28px;

    background:
    linear-gradient(
    145deg,
    #171717,
    #0e0e0e);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:var(--pp-shadow);

    transition:.45s;

}

.terms-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:5px;
    height:100%;

    background:
    linear-gradient(
    to bottom,
    var(--pp-gold),
    transparent);

}

.terms-card:hover{

    transform:translateY(-8px);

    border-color:rgba(212,175,55,.25);

    box-shadow:
    0 30px 70px rgba(0,0,0,.45),
    0 0 45px rgba(212,175,55,.08);

}

/*==================================================
CARD HEADINGS
==================================================*/

.terms-card h2{

    display:flex;

    align-items:center;

    gap:16px;

    margin-bottom:24px;

    font-family:"Cormorant Garamond",serif;

    font-size:36px;

    color:#fff;

    transition:.35s;

}

.terms-card:hover h2{

    color:var(--pp-gold);

}

.terms-card h2 i{

    width:62px;
    height:62px;

    min-width:62px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:rgba(212,175,55,.08);

    border:1px solid rgba(212,175,55,.15);

    color:var(--pp-gold);

    font-size:24px;

    transition:.35s;

}

.terms-card:hover h2 i{

    transform:rotate(-8deg);

    background:rgba(212,175,55,.15);

}

/*==================================================
PARAGRAPH
==================================================*/

.terms-card p{

    color:var(--pp-muted);

    font-size:16px;

    line-height:1.95;

    margin-bottom:18px;

}

.terms-card p:last-child{

    margin-bottom:0;

}

/*==================================================
LISTS
==================================================*/

.terms-card ul{

    list-style:none;

    margin:25px 0;

    padding:0;

}

.terms-card ul li{

    position:relative;

    padding-left:34px;

    margin-bottom:16px;

    color:#d5d5d5;

    line-height:1.8;

}

.terms-card ul li:last-child{

    margin-bottom:0;

}

.terms-card ul li::before{

    content:"✓";

    position:absolute;

    left:0;
    top:2px;

    width:22px;
    height:22px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(212,175,55,.12);

    color:var(--pp-gold);

    font-size:12px;

    font-weight:700;

}

/*==================================================
NOTICE BOX
==================================================*/

.notice-box{

    margin-top:35px;

    display:flex;

    align-items:flex-start;

    gap:20px;

    padding:28px;

    border-radius:22px;

    background:
    linear-gradient(
    145deg,
    rgba(212,175,55,.08),
    rgba(255,255,255,.02));

    border:1px solid rgba(212,175,55,.15);

}

.notice-box i{

    width:60px;
    height:60px;

    min-width:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(212,175,55,.12);

    color:var(--pp-gold);

    font-size:24px;

}

.notice-box h4{

    margin-bottom:10px;

    font-size:22px;

    color:#fff;

    font-family:"Cormorant Garamond",serif;

}

.notice-box p{

    margin:0;

    color:var(--pp-muted);

    line-height:1.8;

}

/*==================================================
LAST UPDATE
==================================================*/

.last-update{

    margin-top:60px;

    padding:24px 30px;

    text-align:center;

    border-radius:20px;

    background:
    linear-gradient(
    145deg,
    #171717,
    #0f0f0f);

    border:1px solid rgba(255,255,255,.08);

    color:var(--pp-gold);

    font-weight:600;

    letter-spacing:.5px;

    box-shadow:var(--pp-shadow);

}

/*==================================================
HOVER EFFECTS
==================================================*/

.terms-card:hover h2 i{

    box-shadow:
    0 12px 30px rgba(212,175,55,.25);

}

.terms-card:hover::before{

    width:7px;

    transition:.35s;

}

.terms-sidebar::-webkit-scrollbar{

    width:6px;

}

.terms-sidebar::-webkit-scrollbar-thumb{

    background:rgba(212,175,55,.35);

    border-radius:20px;

}

.terms-sidebar::-webkit-scrollbar-track{

    background:transparent;

}
/*==================================================
RESPONSIVE
==================================================*/

/*=========================================
LARGE TABLET
=========================================*/
@media (max-width:992px){

.terms-grid{
    grid-template-columns:1fr;
    gap:35px;
    padding:90px 0;
}

.terms-sidebar{
    position:relative;
    top:0;
    width:100%;
    height:auto;
    overflow:visible;
    padding:25px;
}

.terms-sidebar ul{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.terms-sidebar li{
    margin:0;
}

.terms-sidebar a{
    justify-content:flex-start;
    text-align:left;
}

.terms-content{
    width:100%;
}

.terms-card{
    padding:34px;
}

.terms-card h2{
    font-size:30px;
}

.notice-box{
    padding:24px;
}

.last-update{
    margin-top:40px;
}

}

/*=========================================
TABLET
=========================================*/
@media (max-width:768px){

.terms-hero{
    padding:130px 0 80px;
    text-align:center;
}

.terms-badge{
    margin:0 auto 25px;
}

.terms-hero h1{
    font-size:48px;
}

.terms-hero p{
    font-size:15px;
}

.terms-grid{
    padding:70px 0;
}

.terms-sidebar{
    padding:22px;
}

.terms-sidebar h3{
    text-align:center;
    margin-bottom:20px;
}

.terms-sidebar ul{
    display:flex;
    flex-direction:column;
    gap:10px;
    align-items:flex-start;
}

.terms-sidebar li{
    width:100%;
}

.terms-sidebar a{
    width:100%;
    justify-content:flex-start;
    text-align:left;
    padding-left:16px;
}

.terms-card{
    padding:28px 24px;
}

.terms-card h2{
    font-size:26px;
    flex-direction:column;
    text-align:center;
    gap:15px;
}

.terms-card h2 i{
    width:60px;
    height:60px;
    min-width:60px;
}

.terms-card p{
    font-size:15px;
}

.notice-box{
    flex-direction:column;
    text-align:center;
    align-items:center;
}

.notice-box i{
    margin-bottom:10px;
}

}

/*=========================================
MOBILE
=========================================*/
@media (max-width:576px){

.terms-hero{
    padding:110px 0 70px;
}

.terms-hero h1{
    font-size:38px;
    line-height:1.1;
}

.terms-hero p{
    font-size:14px;
}

.terms-badge{
    font-size:13px;
    padding:10px 18px;
}

.terms-sidebar{
    padding:18px;
    border-radius:20px;
}

.terms-sidebar h3{
    font-size:22px;
    text-align:left;
}

.terms-sidebar a{
    font-size:14px;
    padding:14px;
}

.terms-card{
    padding:22px 18px;
    border-radius:20px;
}

.terms-card h2{
    font-size:22px;
}

.terms-card h2 i{
    width:54px;
    height:54px;
    min-width:54px;
    font-size:20px;
}

.terms-card p{
    font-size:14px;
}

.terms-card ul{
    margin-top:18px;
}

.terms-card ul li{
    font-size:14px;
    padding-left:30px;
}

.notice-box{
    padding:20px;
}

.notice-box h4{
    font-size:20px;
}

.notice-box p{
    font-size:14px;
}

.last-update{
    padding:20px;
    font-size:14px;
}

}

/*=========================================
SMALL MOBILE
=========================================*/
@media (max-width:390px){

.terms-hero h1{
    font-size:32px;
}

.terms-badge{
    font-size:12px;
}

.terms-sidebar{
    padding:16px;
}

.terms-sidebar h3{
    font-size:20px;
}

.terms-sidebar a{
    padding:12px;
    font-size:13px;
}

.terms-card{
    padding:18px 16px;
}

.terms-card h2{
    font-size:20px;
}

.terms-card h2 i{
    width:48px;
    height:48px;
    min-width:48px;
    font-size:18px;
}

.terms-card p,
.terms-card ul li{
    font-size:13px;
}

.notice-box{
    padding:18px;
}

.notice-box h4{
    font-size:18px;
}

.notice-box p{
    font-size:13px;
}

}

/*=========================================
EXTRA SMALL
=========================================*/
@media (max-width:290px){

.container{
    width:94%;
}

.terms-hero{
    padding:95px 0 55px;
}

.terms-hero h1{
    font-size:26px;
}

.terms-hero p{
    font-size:12px;
}

.terms-badge{
    font-size:10px;
    padding:8px 14px;
}

.terms-sidebar{
    padding:14px;
}

.terms-sidebar h3{
    font-size:18px;
}

.terms-sidebar a{
    font-size:12px;
    padding:10px;
}

.terms-sidebar a i{
    width:15px;
}

.terms-card{
    padding:15px;
}

.terms-card h2{
    font-size:17px;
}

.terms-card h2 i{
    width:42px;
    height:42px;
    min-width:42px;
    font-size:16px;
}

.terms-card p,
.terms-card ul li{
    font-size:12px;
    line-height:1.7;
}

.notice-box{
    padding:14px;
}

.notice-box i{
    width:45px;
    height:45px;
    min-width:45px;
    font-size:18px;
}

.notice-box h4{
    font-size:16px;
}

.notice-box p{
    font-size:12px;
}

.last-update{
    padding:16px;
    font-size:12px;
}

}
/*======================================
WHATSAPP FLOAT BUTTON
======================================*/

.whatsapp-float{
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37,211,102,.45);
    z-index: 9999;
    transition: .35s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    transform: translateY(-6px) scale(1.08);
    color: #fff;
    box-shadow: 0 15px 40px rgba(37,211,102,.6);
}

@keyframes whatsappPulse{
    0%{
        box-shadow: 0 0 0 0 rgba(37,211,102,.55);
    }
    70%{
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

@media (max-width:768px){

    .whatsapp-float{
        width:58px;
        height:58px;
        right:18px;
        bottom:18px;
        font-size:1.8rem;
    }

}