/*==================================================
DHOM OFFICIAL
Premium Black Gold Landing Page
Part 5A
==================================================*/

/*==========================
GOOGLE FONT
==========================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==========================
RESET
==========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#0F0F0F;
    color:#fff;
    overflow-x:hidden;
    line-height:1.7;

}

/*==========================
ROOT
==========================*/

:root{

    --gold:#D4AF37;
    --gold2:#FFD95A;
    --black:#0F0F0F;
    --dark:#171717;
    --card:#1B1B1B;
    --white:#ffffff;
    --gray:#bfbfbf;

    --shadow:
    0 0 20px rgba(212,175,55,.20);

    --radius:18px;

}

/*==========================
SCROLLBAR
==========================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:var(--gold);
    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:#ffd84d;

}

/*==========================
SELECTION
==========================*/

::selection{

    background:var(--gold);
    color:#000;

}

/*==========================
CONTAINER
==========================*/

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

/*==========================
LINK
==========================*/

a{

    text-decoration:none;
    color:white;

}

img{

    width:100%;
    display:block;

}

ul{

    list-style:none;

}

/*==========================
LOADER
==========================*/

#loader{

    position:fixed;
    inset:0;
    background:#0F0F0F;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;

}

.loader-logo{

    color:var(--gold);

    font-size:34px;

    font-weight:800;

    letter-spacing:3px;

    animation:pulse 1.4s infinite;

}

@keyframes pulse{

0%{

transform:scale(.95);
opacity:.5;

}

50%{

transform:scale(1.1);
opacity:1;

}

100%{

transform:scale(.95);
opacity:.5;

}

}

/*==========================
HEADER
==========================*/

header{

position:fixed;
top:0;
left:0;
width:100%;
z-index:999;

transition:.4s;

background:rgba(15,15,15,.75);

backdrop-filter:blur(14px);

border-bottom:1px solid rgba(212,175,55,.12);

}

header .container{

display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;

}

.logo{

font-size:30px;

font-weight:800;

letter-spacing:2px;

color:white;

}

.logo span{

color:var(--gold);

}

nav ul{

display:flex;

gap:35px;

}

nav a{

font-weight:500;

transition:.3s;

position:relative;

}

nav a:hover{

color:var(--gold);

}

nav a::after{

content:'';

position:absolute;

bottom:-8px;

left:0;

width:0;

height:2px;

background:var(--gold);

transition:.3s;

}

nav a:hover::after{

width:100%;

}

.menu-btn{

display:none;

font-size:28px;

cursor:pointer;

color:white;

}

/*==========================
HERO
==========================*/

.hero{

position:relative;

padding-top:170px;

padding-bottom:120px;

overflow:hidden;

background:

linear-gradient(rgba(15,15,15,.93),rgba(15,15,15,.96)),

url("images/bg.jpg") center/cover;

}

.overlay{

position:absolute;

inset:0;

background:

radial-gradient(circle at top right,

rgba(212,175,55,.18),

transparent 45%);

pointer-events:none;

}

.gold-circle{

position:absolute;

border-radius:50%;

filter:blur(80px);

opacity:.20;

background:var(--gold);

animation:float 8s infinite ease-in-out;

}

.circle1{

width:250px;
height:250px;

top:80px;
left:-60px;

}

.circle2{

width:320px;
height:320px;

right:-120px;
top:120px;

}

.circle3{

width:180px;
height:180px;

bottom:0;
left:40%;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-30px);

}

100%{

transform:translateY(0);

}

}

.hero-content{

display:grid;

grid-template-columns:1.2fr .8fr;

gap:70px;

align-items:center;

position:relative;

z-index:5;

}

.tag{

display:inline-flex;

align-items:center;

gap:10px;

background:rgba(212,175,55,.12);

border:1px solid rgba(212,175,55,.25);

padding:12px 22px;

border-radius:50px;

margin-bottom:28px;

color:var(--gold);

font-size:14px;

}

.hero h1{

font-size:60px;

font-weight:800;

line-height:1.2;

margin-bottom:25px;

}

.hero h1 span{

color:var(--gold);

}

.hero p{

color:#d4d4d4;

font-size:18px;

margin-bottom:35px;

max-width:650px;

}

.hero-check{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

margin-bottom:40px;

}

.hero-check div{

background:#171717;

padding:16px;

border-radius:12px;

border:1px solid rgba(212,175,55,.15);

transition:.3s;

}

.hero-check div:hover{

border-color:var(--gold);

transform:translateY(-4px);

}

.hero-check i{

color:var(--gold);

margin-right:8px;

}

.hero-button{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.btn-gold{

padding:16px 34px;

background:linear-gradient(45deg,#D4AF37,#FFD95A);

color:#000;

font-weight:700;

border-radius:50px;

transition:.35s;

box-shadow:0 0 25px rgba(212,175,55,.30);

}

.btn-gold:hover{

transform:translateY(-5px);

box-shadow:0 0 40px rgba(212,175,55,.50);

}

.btn-dark{

padding:16px 34px;

border:2px solid var(--gold);

border-radius:50px;

color:white;

font-weight:600;

transition:.35s;

}

.btn-dark:hover{

background:var(--gold);

color:#000;

}

.hero-card{

background:rgba(255,255,255,.05);

backdrop-filter:blur(15px);

border:1px solid rgba(212,175,55,.15);

border-radius:25px;

padding:35px;

box-shadow:var(--shadow);

}

.hero-top{

font-size:24px;

font-weight:700;

margin-bottom:25px;

color:var(--gold);

display:flex;

align-items:center;

gap:12px;

}

.hero-box{

padding:22px;

background:#181818;

border-radius:15px;

margin-bottom:18px;

border:1px solid rgba(212,175,55,.12);

transition:.3s;

}

.hero-box:hover{

transform:translateY(-6px);

border-color:var(--gold);

}

.hero-box h2{

font-size:38px;

color:var(--gold);

margin-bottom:6px;

}

.hero-box p{

margin:0;

font-size:15px;

color:#d5d5d5;

}

/*==================================================
PART 5B-1
STATISTIK • SECTION TITLE • WHY US
==================================================*/

/*==========================
STATISTIK
==========================*/

.statistik{
    padding:90px 0;
    background:#111;
}

.statistik .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-card{
    background:#1a1a1a;
    border:1px solid rgba(212,175,55,.12);
    border-radius:18px;
    text-align:center;
    padding:35px 20px;
    transition:.35s;
    box-shadow:0 0 20px rgba(0,0,0,.25);
}

.stat-card:hover{
    transform:translateY(-8px);
    border-color:var(--gold);
    box-shadow:0 0 25px rgba(212,175,55,.25);
}

.stat-card h2{
    font-size:48px;
    color:var(--gold);
    margin-bottom:10px;
    font-weight:800;
}

.stat-card p{
    color:#d5d5d5;
    font-size:16px;
}

/*==========================
SECTION TITLE
==========================*/

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    display:inline-block;
    padding:10px 24px;
    border-radius:50px;
    background:rgba(212,175,55,.12);
    color:var(--gold);
    border:1px solid rgba(212,175,55,.25);
    font-size:14px;
    letter-spacing:1px;
    font-weight:600;
    margin-bottom:18px;
}

.section-title h2{
    font-size:42px;
    line-height:1.3;
    margin-bottom:18px;
    color:#fff;
    font-weight:800;
}

.section-title p{
    max-width:760px;
    margin:auto;
    color:#bfbfbf;
    font-size:17px;
}

/*==========================
WHY US
==========================*/

.why-us{
    padding:110px 0;
    background:#0f0f0f;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.why-card{
    background:#181818;
    border:1px solid rgba(212,175,55,.12);
    border-radius:20px;
    padding:35px;
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.why-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:4px;
    background:linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );
    transition:.5s;
}

.why-card:hover::before{
    left:100%;
}

.why-card:hover{
    transform:translateY(-10px);
    border-color:var(--gold);
    box-shadow:0 0 28px rgba(212,175,55,.20);
}

.why-card .icon{
    width:75px;
    height:75px;
    border-radius:18px;
    background:rgba(212,175,55,.12);
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;
    font-size:32px;
    color:var(--gold);
    transition:.35s;
}

.why-card:hover .icon{
    transform:rotate(8deg) scale(1.08);
    background:var(--gold);
    color:#111;
}

.why-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#fff;
}

.why-card p{
    color:#bfbfbf;
    font-size:15px;
    line-height:1.8;
}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:768px){

.statistik .container{
    grid-template-columns:repeat(2,1fr);
}

.section-title h2{
    font-size:34px;
}

}

@media(max-width:768px){

.statistik{
    padding:70px 0;
}

.statistik .container{
    grid-template-columns:1fr;
}

.section-title{
    margin-bottom:50px;
}

.section-title h2{
    font-size:30px;
}

.why-us{
    padding:80px 0;
}

.why-grid{
    grid-template-columns:1fr;
}

.why-card{
    padding:28px;
}

.why-card h3{
    font-size:22px;
}

}

/*==================================================
PART 5B-2
BENEFIT • PRICING
==================================================*/

/*==========================
BENEFIT
==========================*/

.benefit{
    padding:110px 0;
    background:#111;
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:28px;
}

.benefit-card{
    background:#181818;
    border:1px solid rgba(212,175,55,.12);
    border-radius:20px;
    padding:35px 30px;
    text-align:center;
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.benefit-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );
    transform:translateX(-100%);
    transition:.6s;
}

.benefit-card:hover::before{
    transform:translateX(100%);
}

.benefit-card:hover{
    transform:translateY(-10px);
    border-color:var(--gold);
    box-shadow:0 0 25px rgba(212,175,55,.25);
}

.benefit-card i{
    font-size:42px;
    color:var(--gold);
    margin-bottom:22px;
    transition:.3s;
}

.benefit-card:hover i{
    transform:scale(1.15) rotate(8deg);
}

.benefit-card h3{
    font-size:22px;
    margin-bottom:14px;
    color:#fff;
}

.benefit-card p{
    color:#bfbfbf;
    font-size:15px;
    line-height:1.8;
}

/*==========================
PRICING
==========================*/

.pricing{
    padding:120px 0;
    background:#0f0f0f;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
    align-items:stretch;
}

.price-card{
    background:#181818;
    border:1px solid rgba(212,175,55,.12);
    border-radius:22px;
    padding:35px;
    position:relative;
    overflow:hidden;
    transition:.4s;
}

.price-card:hover{
    transform:translateY(-12px);
    border-color:var(--gold);
    box-shadow:0 0 35px rgba(212,175,55,.22);
}

.price-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(212,175,55,.05),
        transparent 45%
    );
    pointer-events:none;
}

.price-header{
    text-align:center;
    margin-bottom:30px;
}

.price-header h3{
    color:#fff;
    font-size:25px;
    margin-bottom:10px;
}

.price-header h1{
    color:var(--gold);
    font-size:34px;
    font-weight:800;
}

.price-card ul{
    margin:25px 0 35px;
}

.price-card ul li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    color:#d6d6d6;
    margin-bottom:16px;
    line-height:1.7;
}

.price-card ul li i{
    color:var(--gold);
    margin-top:4px;
}

.btn-package{
    display:block;
    width:100%;
    text-align:center;
    padding:16px;
    border-radius:50px;
    background:linear-gradient(
        45deg,
        var(--gold),
        var(--gold2)
    );
    color:#111;
    font-weight:700;
    transition:.35s;
}

.btn-package:hover{
    transform:translateY(-4px);
    box-shadow:0 0 25px rgba(212,175,55,.35);
}

.premium-btn{
    background:linear-gradient(
        45deg,
        #FFD95A,
        #D4AF37
    );
}

/*==========================
RECOMMENDED
==========================*/

.recommended{
    border:2px solid var(--gold);
    transform:scale(1.03);
}

.recommended:hover{
    transform:scale(1.05) translateY(-10px);
}

.recommended-badge{
    position:absolute;
    top:18px;
    right:-42px;
    width:180px;
    text-align:center;
    background:var(--gold);
    color:#111;
    font-weight:700;
    padding:8px 0;
    transform:rotate(45deg);
    font-size:13px;
    letter-spacing:1px;
}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px){

.pricing-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.benefit{
    padding:80px 0;
}

.pricing{
    padding:90px 0;
}

.benefit-grid,
.pricing-grid{
    grid-template-columns:1fr;
}

.price-card{
    padding:28px;
}

.price-header h1{
    font-size:30px;
}

.recommended{
    transform:none;
}

.recommended:hover{
    transform:translateY(-8px);
}

.recommended-badge{
    right:-52px;
    width:170px;
}

}

/*==================================================
PART 5C-1
AGENCY GRID • GALLERY
==================================================*/

/*==========================
AGENCY
==========================*/

.agency{
    padding:120px 0;
    background:#111;
}

.agency-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.agency-card{
    background:#181818;
    border:1px solid rgba(212,175,55,.12);
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    transition:.35s ease;
    position:relative;
    overflow:hidden;
}

.agency-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:4px;
    background:linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );
    transition:.6s;
}

.agency-card:hover::before{
    left:100%;
}

.agency-card:hover{
    transform:translateY(-10px);
    border-color:var(--gold);
    box-shadow:0 0 30px rgba(212,175,55,.22);
}

.agency-logo{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:rgba(212,175,55,.12);
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.35s;
}

.agency-logo i{
    font-size:38px;
    color:var(--gold);
}

.agency-card:hover .agency-logo{
    background:var(--gold);
    transform:rotate(8deg) scale(1.05);
}

.agency-card:hover .agency-logo i{
    color:#111;
}

.agency-card h3{
    font-size:22px;
    margin-bottom:18px;
    color:#fff;
    font-weight:700;
}

.status{
    display:inline-block;
    padding:10px 24px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
}

.status.aktif{
    background:rgba(0,255,120,.12);
    color:#4dff91;
    border:1px solid rgba(0,255,120,.25);
}

/*==========================
GALLERY
==========================*/

.gallery{
    padding:120px 0;
    background:#0f0f0f;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:28px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    border:1px solid rgba(212,175,55,.15);
    background:#181818;
    transition:.35s;
}

.gallery-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.6s;
    display:block;
}

.gallery-item::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.65),
        transparent
    );
    opacity:0;
    transition:.35s;
}

.gallery-item:hover{
    border-color:var(--gold);
    box-shadow:0 0 30px rgba(212,175,55,.22);
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item:hover::after{
    opacity:1;
}

/*==========================
RESPONSIVE
==========================*/

@media (max-width:991px){

    .agency-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:768px){

    .agency{
        padding:80px 0;
    }

    .gallery{
        padding:80px 0;
    }

    .agency-grid,
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:220px;
    }

    .agency-card{
        padding:28px 20px;
    }

}

/*==================================================
PART 5C-2
TIMELINE • TESTIMONIAL
==================================================*/

/*==========================
TIMELINE
==========================*/

.timeline{
    padding:120px 0;
    background:#111;
}

.timeline-wrapper{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    position:relative;
}

.timeline-item{
    position:relative;
    background:#181818;
    border:1px solid rgba(212,175,55,.12);
    border-radius:20px;
    padding:35px 30px;
    text-align:center;
    transition:.35s ease;
    overflow:hidden;
}

.timeline-item:hover{
    transform:translateY(-10px);
    border-color:var(--gold);
    box-shadow:0 0 30px rgba(212,175,55,.25);
}

.timeline-item::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );
}

.timeline-item .number{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(212,175,55,.12);
    color:var(--gold);
    font-size:28px;
    font-weight:700;
    transition:.35s;
}

.timeline-item:hover .number{
    background:var(--gold);
    color:#111;
    transform:scale(1.1);
}

.timeline-item h3{
    font-size:24px;
    margin-bottom:15px;
    color:#fff;
}

.timeline-item p{
    color:#bfbfbf;
    line-height:1.8;
    font-size:15px;
}

/*==========================
TESTIMONIAL
==========================*/

.testimonial{
    padding:120px 0;
    background:#0f0f0f;
}

.testimonial-slider{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.testimonial-card{
    background:#181818;
    border:1px solid rgba(212,175,55,.12);
    border-radius:22px;
    padding:35px;
    transition:.35s;
    position:relative;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    border-color:var(--gold);
    box-shadow:0 0 30px rgba(212,175,55,.25);
}

.testimonial-card::before{
    content:"“";
    position:absolute;
    top:15px;
    right:20px;
    font-size:80px;
    color:rgba(212,175,55,.10);
    font-family:serif;
}

.stars{
    color:#FFD700;
    font-size:20px;
    margin-bottom:18px;
    letter-spacing:3px;
}

.testimonial-card p{
    color:#d6d6d6;
    line-height:1.9;
    margin-bottom:25px;
    font-size:15px;
}

.client{
    border-top:1px solid rgba(212,175,55,.15);
    padding-top:20px;
}

.client h3{
    color:#fff;
    font-size:18px;
    margin-bottom:6px;
}

.client span{
    color:var(--gold);
    font-size:14px;
}

/*==========================
RESPONSIVE
==========================*/

@media (max-width:991px){

    .timeline-wrapper{
        grid-template-columns:repeat(2,1fr);
    }

    .testimonial-slider{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:768px){

    .timeline{
        padding:80px 0;
    }

    .testimonial{
        padding:80px 0;
    }

    .timeline-wrapper,
    .testimonial-slider{
        grid-template-columns:1fr;
    }

    .timeline-item,
    .testimonial-card{
        padding:28px;
    }

    .timeline-item h3{
        font-size:22px;
    }

    .testimonial-card::before{
        font-size:60px;
    }

}

/*==================================================
PART 5D-1
FAQ • CONTACT • CONTACT FORM
==================================================*/

/*==========================
FAQ
==========================*/

.faq{
    padding:120px 0;
    background:#111;
}

.faq-wrapper{
    max-width:900px;
    margin:0 auto;
}

.faq-item{
    background:#181818;
    border:1px solid rgba(212,175,55,.12);
    border-radius:18px;
    margin-bottom:20px;
    overflow:hidden;
    transition:.35s;
}

.faq-item:hover{
    border-color:var(--gold);
    box-shadow:0 0 25px rgba(212,175,55,.18);
}

.faq-question{
    width:100%;
    border:none;
    outline:none;
    cursor:pointer;
    background:transparent;
    color:#fff;
    padding:22px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.faq-question:hover{
    color:var(--gold);
}

.faq-question i{
    transition:.3s;
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}

.faq-answer p{
    padding:0 25px 25px;
    color:#cfcfcf;
    line-height:1.8;
}

/*==========================
CONTACT
==========================*/

.contact{
    padding:120px 0;
    background:#0f0f0f;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

.contact-info span{
    display:inline-block;
    padding:8px 20px;
    background:rgba(212,175,55,.12);
    color:var(--gold);
    border-radius:40px;
    margin-bottom:18px;
    font-size:14px;
}

.contact-info h2{
    font-size:42px;
    margin-bottom:20px;
}

.contact-info>p{
    color:#c8c8c8;
    margin-bottom:35px;
    line-height:1.8;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:25px;
    background:#181818;
    border:1px solid rgba(212,175,55,.12);
    border-radius:16px;
    padding:20px;
    transition:.35s;
}

.contact-item:hover{
    border-color:var(--gold);
    transform:translateX(8px);
}

.contact-item i{
    font-size:28px;
    color:var(--gold);
    min-width:32px;
}

.contact-item h4{
    margin-bottom:6px;
    color:#fff;
}

.contact-item p{
    color:#cfcfcf;
    font-size:15px;
}

/*==========================
FORM
==========================*/

.contact-form{
    background:#181818;
    border:1px solid rgba(212,175,55,.12);
    border-radius:22px;
    padding:35px;
    box-shadow:0 0 25px rgba(0,0,0,.25);
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    background:#111;
    border:1px solid rgba(212,175,55,.15);
    border-radius:14px;
    padding:16px 18px;
    color:#fff;
    font-family:'Poppins',sans-serif;
    font-size:15px;
    transition:.3s;
    resize:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:var(--gold);
    box-shadow:0 0 10px rgba(212,175,55,.20);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#888;
}

.contact-form button{
    border:none;
    cursor:pointer;
    padding:16px;
    border-radius:50px;
    background:linear-gradient(45deg,var(--gold),var(--gold2));
    color:#111;
    font-size:16px;
    font-weight:700;
    transition:.35s;
}

.contact-form button:hover{
    transform:translateY(-4px);
    box-shadow:0 0 25px rgba(212,175,55,.35);
}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px){

    .contact-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .faq{
        padding:80px 0;
    }

    .contact{
        padding:80px 0;
    }

    .faq-question{
        font-size:16px;
        padding:18px;
    }

    .faq-answer p{
        padding:0 18px 20px;
    }

    .contact-info h2{
        font-size:32px;
    }

    .contact-form{
        padding:25px;
    }

    .contact-item{
        padding:18px;
    }

}

/*==================================================
PART 5D-2
CTA • FOOTER • FLOATING • UTILITIES
==================================================*/

/*==========================
CTA
==========================*/

.cta{
    padding:100px 20px;
    text-align:center;
    background:linear-gradient(
        135deg,
        #111,
        #1a1a1a
    );
    border-top:1px solid rgba(212,175,55,.15);
    border-bottom:1px solid rgba(212,175,55,.15);
}

.cta h2{
    font-size:46px;
    margin-bottom:20px;
    color:#fff;
}

.cta p{
    max-width:720px;
    margin:0 auto 35px;
    color:#cfcfcf;
    font-size:17px;
    line-height:1.8;
}

/*==========================
FOOTER
==========================*/

footer{
    background:#090909;
    padding-top:70px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
    padding-bottom:50px;
}

.footer-grid h2,
.footer-grid h3{
    color:var(--gold);
    margin-bottom:18px;
}

.footer-grid p,
.footer-grid li{
    color:#bfbfbf;
    line-height:1.9;
    margin-bottom:10px;
}

.footer-grid ul{
    list-style:none;
}

.footer-grid a{
    color:#bfbfbf;
    transition:.3s;
}

.footer-grid a:hover{
    color:var(--gold);
    padding-left:5px;
}

.copyright{
    text-align:center;
    padding:22px;
    border-top:1px solid rgba(212,175,55,.12);
    color:#888;
    font-size:14px;
}

/*==========================
FLOATING WHATSAPP
==========================*/

.floating-wa{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    z-index:999;
    box-shadow:0 0 20px rgba(37,211,102,.4);
    transition:.3s;
}

.floating-wa:hover{
    transform:scale(1.1);
}

/*==========================
BACK TO TOP
==========================*/

#toTop{
    position:fixed;
    right:25px;
    bottom:100px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:var(--gold);
    color:#111;
    cursor:pointer;
    font-size:20px;
    display:none;
    z-index:999;
    transition:.3s;
    box-shadow:0 0 20px rgba(212,175,55,.35);
}

#toTop:hover{
    transform:translateY(-5px);
}

/*==========================
ANIMATION
==========================*/

.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

@keyframes glow{

    0%{
        box-shadow:0 0 10px rgba(212,175,55,.25);
    }

    50%{
        box-shadow:0 0 30px rgba(212,175,55,.45);
    }

    100%{
        box-shadow:0 0 10px rgba(212,175,55,.25);
    }

}

.btn-gold{
    animation:glow 2.5s infinite;
}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px){

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .cta{
        padding:70px 20px;
    }

    .cta h2{
        font-size:32px;
    }

    .cta p{
        font-size:16px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .floating-wa{
        width:55px;
        height:55px;
        font-size:25px;
        right:18px;
        bottom:18px;
    }

    #toTop{
        width:50px;
        height:50px;
        right:18px;
        bottom:85px;
    }

}

/*==========================
SMOOTH IMAGE
==========================*/

img{
    max-width:100%;
    height:auto;
}

/*==========================
BUTTON TRANSITION
==========================*/

button,
a{
    transition:.3s ease;
}

/*==========================
END STYLE.CSS
==========================*/
section{

position:relative;

overflow:hidden;

}

button{

font-family:'Poppins',sans-serif;

}

input,
textarea{

outline:none;

}

body{

overflow-x:hidden;

}

img{

display:block;

max-width:100%;

}

*{

box-sizing:border-box;

}