/*==================================================
 GOOGLE FONT
==================================================*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

/*==================================================
 ROOT
==================================================*/
:root{

    --primary-color:#D4AF37;
    --primary-dark:#081F3D;
    --secondary:#12355B;

    --text-dark:#10213A;
    --text-light:#6B7280;

    --white:#ffffff;
    --bg:#F8FAFC;
    --card:#ffffff;

    --border:#E5E7EB;

    --shadow:
    0 10px 30px rgba(8,31,61,.08);

    --shadow-hover:
    0 20px 45px rgba(8,31,61,.15);

    --radius:18px;

    --max-width:1200px;
}

/*==================================================
 RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Roboto",sans-serif;

    background:
    radial-gradient(circle at top right,#FFF9E8,#F8FAFC);

    color:var(--text-dark);

    overflow-x:hidden;

}

img{

    display:block;
    width:100%;

}

ul{
    list-style:none;
}

a{

    text-decoration:none;

    transition:.3s;

}

/*==================================================
 GLOBAL
==================================================*/

.section_container{

    max-width:var(--max-width);

    margin:auto;

    padding:6rem 1rem;

}

.section_header{

    font-size:2.8rem;

    font-weight:800;

    color:var(--primary-dark);

    text-align:center;

    margin-bottom:1rem;

    position:relative;

}

.section_header::after{

    content:"";

    width:90px;

    height:4px;

    background:var(--primary-color);

    display:block;

    margin:18px auto 0;

    border-radius:20px;

}

.section_description{

    max-width:700px;

    margin:auto;

    text-align:center;

    color:var(--text-light);

    line-height:1.8;

}

/*==================================================
 BUTTON
==================================================*/

.btn{

    padding:15px 34px;

    border:none;

    outline:none;

    border-radius:50px;

    cursor:pointer;

    font-size:15px;

    font-weight:700;

    color:var(--primary-dark);

    background:
    linear-gradient(
    135deg,
    #D4AF37,
    #F6DA75);

    transition:.35s;

    box-shadow:
    0 12px 30px rgba(212,175,55,.35);

}

.btn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 18px 40px rgba(212,175,55,.45);

}

/*==================================================
 LOGO
==================================================*/

.logo{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo img{

    width:42px;

}

.logo span{

    font-size:1.45rem;

    font-weight:700;

    color:#fff;

    letter-spacing:1px;

}

/*==================================================
 HEADER
==================================================*/

header{

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #081F3D,
    #102A4C,
    #143A69);

}

header::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    background:
    rgba(212,175,55,.08);

    border-radius:50%;

    top:-250px;

    right:-150px;

}

/*==================================================
 NAVBAR
==================================================*/

nav{

    position:fixed;

    width:100%;

    z-index:999;

    backdrop-filter:blur(15px);

    background:rgba(8,31,61,.92);

    border-bottom:1px solid rgba(212,175,55,.25);

}

.nav_header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px;

}

.nav_menu_btn{

    color:#fff;

    font-size:1.7rem;

    cursor:pointer;

}

.nav_links{

    position:absolute;

    top:100%;

    left:0;

    width:100%;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:25px;

    padding:35px;

    background:#081F3D;

    transform:translateY(-150%);

    transition:.45s;

}

.nav_links.open{

    transform:translateY(0);

}

.nav_links a{

    color:#fff;

    font-weight:500;

    letter-spacing:.5px;

}

.nav_links a:hover{

    color:var(--primary-color);

}

.nav_btns{

    display:none;

}

/*==================================================
 HERO
==================================================*/

.header_container{

    display:grid;

    align-items:center;

    padding-top:120px;

}

.header_content{

    padding:50px 20px;

}

.header_content h2{

    display:inline-block;

    padding:10px 25px;

    background:rgba(212,175,55,.15);

    color:#FFD95A;

    border:1px solid rgba(212,175,55,.35);

    border-radius:50px;

    margin-bottom:25px;

    font-size:15px;

}

.header_content h1{

    font-size:3.5rem;

    color:#fff;

    line-height:1.2;

    margin-bottom:25px;

}

.header_content .section_description{

    color:#D6DEE8;

    text-align:left;

    margin:0 0 35px;

}

.header_image{

    position:relative;

    padding:30px;

}

.header_image img{

    filter:
    drop-shadow(0 25px 40px rgba(0,0,0,.35));

}
/*==================================================
ABOUT
==================================================*/

.about_container .section_description{
    max-width:700px;
    margin:0 auto 3rem;
}

.about_grid,
.pr_about_grid{
    display:grid;
    gap:2rem;
}

.about_card{
    background:var(--card);
    padding:2.5rem 2rem;
    border-radius:24px;
    text-align:center;
    box-shadow:var(--shadow);
    border:1px solid rgba(212,175,55,.15);
    transition:.35s;
    overflow:hidden;
    position:relative;
}

.about_card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#D4AF37,#FFE38A);
}

.about_card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-hover);
}

.about_card span{
    width:80px;
    height:80px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    border-radius:50%;
    color:var(--primary-dark);
    background:linear-gradient(135deg,#D4AF37,#FFE38A);
    margin-bottom:25px;
}

.about_card h4{
    font-size:1.35rem;
    margin-bottom:15px;
    color:var(--primary-dark);
}

.about_card p{
    color:var(--text-light);
    line-height:1.8;
}

/*==================================================
DEALS
==================================================*/

.deals{
    background:#F4F7FB;
}

.deals_container .section_description{
    max-width:700px;
    margin:0 auto 3rem;
}

.deals_tabs{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.deals_tabs .btn{

    background:#fff;

    color:var(--primary-dark);

    border:1px solid rgba(212,175,55,.3);

    box-shadow:none;
}

.deals_tabs .btn.active{

    background:linear-gradient(
    135deg,
    #D4AF37,
    #FFE38A);

    color:var(--primary-dark);

}

/*==================================================
 PREMIUM CAR CATEGORY CARD
==================================================*/


.deals_container .tab_content{

    display:none;

    gap:25px;

    animation:fade .4s;

}


.deals_container .tab_content.active{

    display:grid;

    grid-template-columns:repeat(3,1fr);

}



/* CARD MOBIL */

.deals_card{

    background:#ffffff;

    border-radius:22px;

    overflow:hidden;

    border:1px solid rgba(212,175,55,.18);

    box-shadow:
    0 10px 30px rgba(8,31,61,.08);

    transition:.35s;

    position:relative;

}



.deals_card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 45px rgba(8,31,61,.15);

}



/* GAMBAR */

.deals_card img{

    width:100%;

    height:230px;

    object-fit:cover;

    transition:.4s;

}



.deals_card:hover img{

    transform:scale(1.05);

}



/* RATING */

.deals_rating{

    padding:18px 25px 5px;

    color:#D4AF37;

    font-size:14px;

}



/* NAMA MOBIL */

.deals_card h4{

    padding:10px 25px;

    font-size:1.3rem;

    font-weight:700;

    color:#081F3D;

}



/* INFORMASI MOBIL */

.deals_card_grid{

    padding:0 25px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:12px;

    margin:20px 0;

}



.deals_card_grid div{

    background:#F8FAFC;

    padding:12px;

    border-radius:12px;

    display:flex;

    align-items:center;

    gap:8px;

    color:#6B7280;

    font-size:.9rem;

}



.deals_card_grid span{

    color:#D4AF37;

    font-size:1.1rem;

}



/* FOOTER */

.deals_card_footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 25px;

    border-top:1px solid #eee;

}



.deals_card_footer h3{

    color:#081F3D;

    font-size:1.35rem;

    font-weight:800;

}



.deals_card_footer h3 span{

    font-size:.8rem;

    color:#6B7280;

}



/* BUTTON DETAIL GOLD */

.deals_card_footer a{

    padding:12px 22px;

    border-radius:50px;

    color:#081F3D;

    font-weight:700;

    font-size:14px;

    background:

    linear-gradient(
    135deg,
    #D4AF37,
    #FFE38A
    );

    box-shadow:

    0 10px 25px rgba(212,175,55,.35);

    transition:.35s;

}



.deals_card_footer a:hover{

    transform:translateY(-4px);

    box-shadow:

    0 15px 35px rgba(212,175,55,.45);

}



/* RESPONSIVE */

@media(max-width:1024px){

.deals_container .tab_content.active{

    grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:768px){

.deals_container .tab_content.active{

    grid-template-columns:1fr;

}

}
/*==================================================
CHOOSE
==================================================*/

.choose_container{

    display:grid;

}

.choose_content{

    padding:3rem 1rem;

}

.choose_grid{

    display:grid;

    gap:2rem;

    margin-top:3rem;

}

.choose_card{

    display:flex;

    gap:20px;

    align-items:flex-start;

    background:#fff;

    padding:20px;

    border-radius:18px;

    border:1px solid rgba(212,175,55,.15);

    box-shadow:var(--shadow);

    transition:.3s;

}

.choose_card:hover{

    transform:translateY(-6px);

}

.choose_card span{

    width:55px;

    height:55px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
    135deg,
    #D4AF37,
    #FFE38A);

    color:var(--primary-dark);

    font-size:1.4rem;

    flex-shrink:0;

}

.choose_card h4{

    margin-bottom:8px;

    color:var(--primary-dark);

}

.choose_card p{

    color:var(--text-light);

    line-height:1.7;

}

.choose_image img{

    border-radius:25px;

    box-shadow:0 25px 50px rgba(0,0,0,.2);

}
/*==================================================
RM HEADER
==================================================*/

.rm_header{

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:space-between;

    gap:3rem;

    padding:120px 20px 60px;

    background:
    linear-gradient(
    135deg,
    #081F3D,
    #12355B);

    color:#fff;

}

.rm_header_left{

    flex:1;

}

.rm_header_left h1{

    font-size:3rem;

    line-height:1.2;

    margin-bottom:20px;

}

.rm_header_left p{

    color:#CBD5E1;

    line-height:1.8;

}

.rm_header_right{

    flex:1;
    text-align:center;

}

.rm_header_right img{

    max-width:500px;

    filter:
    drop-shadow(
    0 30px 40px
    rgba(0,0,0,.35));

}

/*==================================================
SERVICES
==================================================*/

.rm_services{

    background:#F7F9FC;

    padding:6rem 1rem;

}

.rm_services_title{

    text-align:center;

    font-size:2.6rem;

    color:var(--primary-dark);

    margin-bottom:3rem;

}

.rm_services_container{

    display:grid;

    gap:2rem;

}

.rm_card{

    position:relative;

    background:#fff;

    border-radius:22px;

    padding:2.5rem 2rem;

    border:1px solid rgba(212,175,55,.18);

    box-shadow:var(--shadow);

    transition:.35s;

    overflow:hidden;

}

.rm_card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    135deg,
    transparent,
    rgba(212,175,55,.06));

    opacity:0;

    transition:.35s;

}

.rm_card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.rm_card:hover::before{

    opacity:1;

}

.rm_icon{

    width:70px;

    height:70px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    margin-bottom:25px;

    background:
    linear-gradient(
    135deg,
    #D4AF37,
    #FFE38A);

    color:#081F3D;

}

.rm_card h3{

    font-size:1.4rem;

    margin-bottom:15px;

    color:var(--primary-dark);

}

.rm_card p{

    color:var(--text-light);

    line-height:1.8;

    margin-bottom:20px;

}

.rm_card a{

    color:var(--primary-color);

    font-weight:700;

}

.rm_card a:hover{

    color:var(--primary-dark);

}

/*==================================================
LOAD MORE
==================================================*/

.load_more_wrapper{

    text-align:center;

    margin-top:40px;

}

#loadMoreBtn{

    padding:15px 35px;

    border:none;

    border-radius:50px;

    cursor:pointer;

    font-weight:700;

    color:#081F3D;

    background:
    linear-gradient(
    135deg,
    #D4AF37,
    #FFE38A);

    transition:.35s;

}

#loadMoreBtn:hover{

    transform:translateY(-4px);

}

#loadMoreBtn.loading,
#loadMoreBtn.disabled{

    background:#cbd5e1;

    color:#555;

    cursor:not-allowed;

}

/*==================================================
CONTACT
==================================================*/

.contact-section{

    background:#fff;

    padding:6rem 1rem;

}

.contact-container{

    display:flex;

    gap:2rem;

    justify-content:center;

    flex-wrap:wrap;

}

.contact-card{

    width:520px;

    background:
    linear-gradient(
    135deg,
    #081F3D,
    #12355B);

    color:#fff;

    border-radius:24px;

    padding:2rem;

    box-shadow:var(--shadow);

}

.contact-card h3{

    color:#FFD76A;

    margin-bottom:15px;

}

.contact-card p{

    line-height:1.8;

    color:#E2E8F0;

}

.map iframe{

    width:100%;

    height:260px;

    border:none;

    border-radius:16px;

    margin-top:20px;

}

/*==================================================
FOOTER
==================================================*/

.footer{

    background:
    linear-gradient(
    135deg,
    #081F3D,
    #102A4C);

}

.footer_container{

    display:grid;

    gap:3rem;

    padding:5rem 1rem;

}

.footer_logo{

    margin-bottom:25px;

}

.footer_logo img{

    width:50px;

}

.footer_col h4{

    color:#FFD76A;

    margin-bottom:20px;

}

.footer_col p{

    color:#CBD5E1;

    line-height:1.8;

}

.footer_links{

    display:grid;

    gap:15px;

}

.footer_links a{

    color:#E2E8F0;

}

.footer_links a:hover{

    color:#FFD76A;

}

.footer_socials{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.footer_socials a{

    width:45px;

    height:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#D4AF37;

    color:#081F3D;

    transition:.3s;

}

.footer_socials a:hover{

    transform:translateY(-5px);

    background:#fff;

}

.footer_bar{

    padding:25px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

    color:#CBD5E1;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(min-width:540px){

.about_grid,
.pr_about_grid{
grid-template-columns:repeat(2,1fr);
}

.deals_container .tab_content{
grid-template-columns:repeat(2,1fr);
}

.rm_services_container{
grid-template-columns:repeat(2,1fr);
}

.footer_container{
grid-template-columns:repeat(2,1fr);
}

}

@media(min-width:768px){

nav{

position:fixed;

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 5%;

}

.nav_header{

padding:0;

background:transparent;

}

.nav_menu_btn{

display:none;

}

.nav_links{

position:static;

flex-direction:row;

transform:none;

background:transparent;

padding:0;

width:auto;

}

.nav_btns{

display:flex;

}

.header_container{

grid-template-columns:1fr 1fr;

align-items:center;

}

.about_grid{

grid-template-columns:repeat(3,1fr);

}

.pr_about_grid{

grid-template-columns:repeat(3,1fr);

}

.deals_container .tab_content{

grid-template-columns:repeat(3,1fr);

}

.choose_container{

grid-template-columns:1fr 1fr;

align-items:center;

}

.rm_header{

flex-direction:row;

text-align:left;

}

.rm_services_container{

grid-template-columns:repeat(3,1fr);

}

.footer_container{

grid-template-columns:repeat(4,1fr);

}

}

@media(min-width:1024px){

.section_container{

padding:7rem 1rem;

}

.section_header{

font-size:3rem;

}

.header_content h1{

font-size:4.5rem;

}

.deals_container .tab_content{

gap:2rem;

}

}

/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#EEF2F7;

}

::-webkit-scrollbar-thumb{

background:#D4AF37;

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#B99122;

}

/*==================================================
SELECTION
==================================================*/

::selection{

background:#D4AF37;

color:#081F3D;

}
.rm_header{
    display:none !important;
}
/*==================================================
 VISI MISI FULL WIDTH
==================================================*/

.pr_about_grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:30px;

    width:100%;

    max-width:100%;

}


.pr_about_grid .about_card{

    width:100%;

}
