/*==================================================
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{

    --rf-bg:#050505;
    --rf-card:#111111;
    --rf-card2:#181818;

    --rf-gold:#D4AF37;
    --rf-gold-light:#F5D76E;

    --rf-text:#ffffff;
    --rf-muted:#bdbdbd;

    --rf-border:rgba(255,255,255,.08);

    --rf-shadow:
    0 25px 70px rgba(0,0,0,.45);

}

/*==================================================
GLOBAL
==================================================*/

body{

    background:var(--rf-bg);

    color:var(--rf-text);

    font-family:"Inter",sans-serif;

    overflow-x:hidden;

}

.refund-section,
.refund-hero{

    position:relative;

}

.refund-section::before,
.refund-hero::before{

    content:"";

    position:absolute;

    width:520px;
    height:520px;

    border-radius:50%;

    background:rgba(212,175,55,.08);

    filter:blur(120px);

    pointer-events:none;

}

.refund-hero::before{

    top:-180px;
    left:-180px;

}

.refund-section::before{

    bottom:-180px;
    right:-180px;

}

/*==================================================
HERO
==================================================*/

.refund-hero{

    position:relative;

    overflow:hidden;

    padding:180px 0 140px;

    background:
    linear-gradient(rgba(0,0,0,.78),rgba(0,0,0,.88)),
    url("../images/about.png") center/cover no-repeat;

    border-bottom:1px solid var(--rf-border);

}

.refund-overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(212,175,55,.12),
    transparent 42%);

}

.refund-hero .container{

    position:relative;

    z-index:2;

}

/*==================================================
BREADCRUMB
==================================================*/

.refund-breadcrumb{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:35px;

    color:#bdbdbd;

}

.refund-breadcrumb a{

    display:flex;

    align-items:center;

    gap:8px;

    color:var(--rf-gold);

    text-decoration:none;

    transition:.35s;

}

.refund-breadcrumb a:hover{

    color:#fff;

}

.refund-breadcrumb p{

    margin:0;

}

/*==================================================
LABEL
==================================================*/

.refund-label{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:12px 24px;

    border-radius:50px;

    margin-bottom:28px;

    background:rgba(212,175,55,.08);

    border:1px solid rgba(212,175,55,.18);

    color:var(--rf-gold);

    font-weight:600;

    letter-spacing:.5px;

}

.refund-label i{

    font-size:16px;

}

/*==================================================
HERO CONTENT
==================================================*/

.refund-hero h1{

    font-family:"Cormorant Garamond",serif;

    font-size:clamp(60px,8vw,100px);

    line-height:.95;

    margin-bottom:25px;

}

.refund-hero h1 span{

    color:var(--rf-gold);

}

.refund-hero p{

    max-width:760px;

    color:var(--rf-muted);

    font-size:18px;

    line-height:1.9;

}

/*==================================================
BUTTONS
==================================================*/

.refund-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-top:40px;

}

.refund-btn,
.refund-btn-outline{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:16px 34px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.refund-btn{

    background:var(--rf-gold);

    color:#111;

}

.refund-btn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 18px 40px rgba(212,175,55,.30);

}

.refund-btn-outline{

    color:#fff;

    border:1px solid rgba(255,255,255,.12);

    background:rgba(255,255,255,.03);

}

.refund-btn-outline:hover{

    border-color:var(--rf-gold);

    color:var(--rf-gold);

}

/*==================================================
LAST UPDATED
==================================================*/

.refund-update{

    padding:70px 0 20px;

}

.refund-update-box{

    display:inline-flex;

    align-items:center;

    gap:18px;

    padding:22px 28px;

    border-radius:20px;

    background:linear-gradient(145deg,#171717,#101010);

    border:1px solid var(--rf-border);

    box-shadow:var(--rf-shadow);

}

.refund-update-icon{

    width:62px;
    height:62px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(212,175,55,.10);

    color:var(--rf-gold);

    font-size:22px;

}

.refund-update-box span{

    display:block;

    color:var(--rf-muted);

    margin-bottom:6px;

}

.refund-update-box h4{

    margin:0;

    font-size:20px;

}

/*==================================================
LAYOUT
==================================================*/

.refund-wrapper{

    display:grid;

    grid-template-columns:320px minmax(0,1fr);

    gap:45px;

    align-items:start;

    padding:70px 0 120px;

}

/*==================================================
SIDEBAR
==================================================*/

.refund-sidebar{

    position:sticky;

    top:120px;

    height:calc(100vh - 140px);

    overflow-y:auto;

    padding:30px;

    border-radius:28px;

    background:
    linear-gradient(145deg,#171717,#0e0e0e);

    border:1px solid var(--rf-border);

    box-shadow:var(--rf-shadow);

}

.refund-sidebar h3{

    font-family:"Cormorant Garamond",serif;

    font-size:28px;

    margin-bottom:26px;

}

.refund-sidebar ul{

    list-style:none;

    margin:0;

    padding:0;

}

.refund-sidebar li{

    margin-bottom:12px;

}

.refund-sidebar a{

    display:flex;

    align-items:center;

    gap:12px;

    padding:15px 18px;

    border-radius:14px;

    color:#d9d9d9;

    text-decoration:none;

    border:1px solid transparent;

    transition:.35s;

}

.refund-sidebar a i{

    color:var(--rf-gold);

    width:18px;

    text-align:center;

}

.refund-sidebar a:hover{

    background:rgba(212,175,55,.08);

    border-color:rgba(212,175,55,.18);

    color:#fff;

    transform:translateX(8px);

}

/*==================================================
CONTENT
==================================================*/

.refund-content{

    display:flex;

    flex-direction:column;

    gap:30px;

}
/*==================================================
PREMIUM CARDS
==================================================*/

.refund-card{

    position:relative;

    overflow:hidden;

    display:flex;

    gap:28px;

    align-items:flex-start;

    padding:40px;

    border-radius:28px;

    background:
    linear-gradient(
    145deg,
    #171717,
    #0d0d0d);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:var(--rf-shadow);

    transition:.45s;

}

.refund-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:5px;
    height:100%;

    background:
    linear-gradient(
    to bottom,
    var(--rf-gold),
    transparent);

}

.refund-card:hover{

    transform:translateY(-8px);

    border-color:rgba(212,175,55,.25);

    box-shadow:
    0 30px 70px rgba(0,0,0,.45),
    0 0 40px rgba(212,175,55,.08);

}

/*==================================================
NUMBER
==================================================*/

.refund-number{

    width:72px;
    height:72px;

    min-width:72px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20px;

    background:
    linear-gradient(
    145deg,
    rgba(212,175,55,.15),
    rgba(212,175,55,.05));

    border:1px solid rgba(212,175,55,.18);

    color:var(--rf-gold);

    font-size:24px;

    font-weight:700;

    transition:.4s;

}

.refund-card:hover .refund-number{

    transform:rotate(-8deg);

}

/*==================================================
ICON
==================================================*/

.refund-icon{

    width:65px;
    height:65px;

    min-width:65px;

    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);

    transition:.35s;

}

.refund-icon i{

    color:var(--rf-gold);

    font-size:24px;

}

.refund-card:hover .refund-icon{

    background:rgba(212,175,55,.15);

    transform:translateY(-4px);

}

/*==================================================
TEXT
==================================================*/

.refund-text{

    flex:1;

}

.refund-text h2{

    margin-bottom:18px;

    font-family:"Cormorant Garamond",serif;

    font-size:36px;

    color:#fff;

    transition:.35s;

}

.refund-card:hover .refund-text h2{

    color:var(--rf-gold);

}

.refund-text p{

    color:var(--rf-muted);

    font-size:16px;

    line-height:1.9;

    margin-bottom:18px;

}

.refund-text p:last-child{

    margin-bottom:0;

}

/*==================================================
LISTS
==================================================*/

.refund-text ul{

    list-style:none;

    margin:25px 0;

    padding:0;

}

.refund-text ul li{

    position:relative;

    padding-left:34px;

    margin-bottom:16px;

    color:#d5d5d5;

    line-height:1.8;

}

.refund-text ul li:last-child{

    margin-bottom:0;

}

.refund-text ul li::before{

    content:"✓";

    position:absolute;

    left:0;
    top:2px;

    width:22px;
    height:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(212,175,55,.12);

    color:var(--rf-gold);

    font-size:12px;

    font-weight:700;

}

/*==================================================
CTA SECTION
==================================================*/

.refund-cta{

    padding:120px 0;

}

.refund-cta-box{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    padding:60px;

    border-radius:30px;

    background:
    linear-gradient(
    145deg,
    #171717,
    #101010);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:var(--rf-shadow);

}

.refund-cta-left span{

    color:var(--rf-gold);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:14px;

    font-weight:600;

}

.refund-cta-left h2{

    margin:18px 0;

    font-family:"Cormorant Garamond",serif;

    font-size:58px;

    line-height:1.05;

}

.refund-cta-left p{

    max-width:600px;

    color:var(--rf-muted);

    line-height:1.9;

}

.refund-cta-right{

    display:flex;

    flex-wrap:wrap;

    gap:16px;

}

/*==================================================
HOVER EFFECTS
==================================================*/

.refund-card:hover::before{

    width:8px;

}

.refund-card:hover .refund-icon{

    box-shadow:
    0 12px 30px rgba(212,175,55,.25);

}

.refund-card::after{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(212,175,55,.08),
    transparent 45%);

    opacity:0;

    transition:.45s;

    pointer-events:none;

}

.refund-card:hover::after{

    opacity:1;

}

/*==================================================
SCROLLBAR
==================================================*/

.refund-sidebar::-webkit-scrollbar{

    width:6px;

}

.refund-sidebar::-webkit-scrollbar-track{

    background:transparent;

}

.refund-sidebar::-webkit-scrollbar-thumb{

    background:rgba(212,175,55,.35);

    border-radius:20px;

}
/*==================================================
RESPONSIVE
==================================================*/

/*=========================================
LARGE TABLET
=========================================*/
@media (max-width:992px){

.refund-wrapper{
    grid-template-columns:1fr;
    gap:35px;
    padding:90px 0;
}

.refund-sidebar{
    position:relative;
    top:0;
    width:100%;
    height:auto;
    overflow:visible;
    padding:25px;
}

.refund-sidebar ul{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.refund-sidebar li{
    margin:0;
}

.refund-sidebar a{
    justify-content:flex-start;
    text-align:left;
}

.refund-content{
    width:100%;
}

.refund-card{
    padding:34px;
}

.refund-text h2{
    font-size:30px;
}

.refund-cta-box{
    flex-direction:column;
    text-align:center;
    padding:50px 35px;
}

.refund-cta-right{
    justify-content:center;
}

}

/*=========================================
TABLET
=========================================*/
@media (max-width:768px){

.refund-hero{
    padding:130px 0 80px;
    text-align:center;
}

.refund-breadcrumb{
    justify-content:center;
}

.refund-label{
    margin:0 auto 25px;
}

.refund-hero h1{
    font-size:48px;
}

.refund-hero p{
    font-size:15px;
    line-height:1.8;
}

.refund-buttons{
    justify-content:center;
}

.refund-update-box{
    width:100%;
    justify-content:center;
    text-align:center;
    flex-direction:column;
}

.refund-sidebar{
    padding:22px;
}

.refund-sidebar h3{
    text-align:left;
}

.refund-sidebar ul{
    display:flex;
    flex-direction:column;
    gap:10px;
    align-items:flex-start;
}

.refund-sidebar li{
    width:100%;
}

.refund-sidebar a{
    width:100%;
    justify-content:flex-start;
    text-align:left;
    padding-left:16px;
}

.refund-card{
    flex-direction:column;
    align-items:center;
    text-align:center;
    padding:28px 24px;
}

.refund-number{
    width:65px;
    height:65px;
    min-width:65px;
    font-size:22px;
}

.refund-icon{
    width:60px;
    height:60px;
    min-width:60px;
}

.refund-text h2{
    font-size:26px;
}

.refund-text ul{
    text-align:left;
}

.refund-cta{
    padding:90px 0;
}

.refund-cta-left h2{
    font-size:42px;
}

.refund-btn,
.refund-btn-outline{
    width:100%;
    justify-content:center;
}

}

/*=========================================
MOBILE
=========================================*/
@media (max-width:576px){

.refund-hero{
    padding:110px 0 70px;
}

.refund-hero h1{
    font-size:38px;
    line-height:1.05;
}

.refund-hero p{
    font-size:14px;
}

.refund-label{
    font-size:13px;
    padding:10px 18px;
}

.refund-update{
    padding:45px 0;
}

.refund-update-box{
    padding:22px 18px;
}

.refund-update-icon{
    width:58px;
    height:58px;
    font-size:20px;
}

.refund-sidebar{
    padding:18px;
    border-radius:18px;
}

.refund-sidebar h3{
    font-size:22px;
}

.refund-sidebar a{
    font-size:14px;
    padding:14px;
}

.refund-card{
    padding:22px 18px;
    border-radius:20px;
    gap:18px;
}

.refund-number{
    width:56px;
    height:56px;
    min-width:56px;
    font-size:20px;
}

.refund-icon{
    width:55px;
    height:55px;
    min-width:55px;
}

.refund-icon i{
    font-size:20px;
}

.refund-text h2{
    font-size:22px;
}

.refund-text p{
    font-size:14px;
}

.refund-text ul li{
    font-size:14px;
}

.refund-cta-box{
    padding:35px 20px;
    border-radius:22px;
}

.refund-cta-left h2{
    font-size:32px;
}

.refund-cta-left p{
    font-size:14px;
}

}

/*=========================================
SMALL MOBILE
=========================================*/
@media (max-width:390px){

.refund-hero h1{
    font-size:32px;
}

.refund-card{
    padding:18px 16px;
}

.refund-number{
    width:50px;
    height:50px;
    min-width:50px;
    font-size:18px;
}

.refund-icon{
    width:50px;
    height:50px;
    min-width:50px;
}

.refund-text h2{
    font-size:20px;
}

.refund-text p,
.refund-text ul li{
    font-size:13px;
}

.refund-btn,
.refund-btn-outline{
    padding:14px 18px;
    font-size:14px;
}

.refund-cta-left h2{
    font-size:28px;
}

}

/*=========================================
EXTRA SMALL
=========================================*/
@media (max-width:290px){

.container{
    width:94%;
}

.refund-hero{
    padding:95px 0 60px;
}

.refund-hero h1{
    font-size:26px;
}

.refund-hero p{
    font-size:12px;
}

.refund-label{
    font-size:11px;
    padding:8px 14px;
}

.refund-sidebar{
    padding:14px;
}

.refund-sidebar h3{
    font-size:18px;
}

.refund-sidebar a{
    font-size:12px;
    padding:12px;
}

.refund-card{
    padding:14px;
    gap:14px;
}

.refund-number{
    width:42px;
    height:42px;
    min-width:42px;
    font-size:15px;
}

.refund-icon{
    width:42px;
    height:42px;
    min-width:42px;
}

.refund-icon i{
    font-size:16px;
}

.refund-text h2{
    font-size:17px;
}

.refund-text p,
.refund-text ul li{
    font-size:12px;
    line-height:1.7;
}

.refund-cta-left h2{
    font-size:24px;
}

.refund-btn,
.refund-btn-outline{
    padding:12px;
    font-size:12px;
}

}