
/* =========================================================
   ROOT
========================================================= */

:root{
    --black:#050505;
    --black2:#0c0c0c;
    --dark:#111111;
    --white:#ffffff;
    --soft:#e8e8e8;
    --gray:#999999;
    --gold:#d4af37;
    --gold2:#f2d675;
    --green:#16a34a;
    --border:rgba(255,255,255,.11);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'DM Sans',sans-serif;
    background:var(--black);
    color:var(--white);
    overflow-x:hidden;
}

a{
    text-decoration:none;
    color:inherit;
}

button,
input,
textarea,
select{
    font-family:inherit;
}


/* =========================================================
   BACKGROUND MONEY IMAGE
========================================================= */

.money-bg{
    position:fixed;
    inset:0;
    z-index:-5;
    background:
    linear-gradient(
        rgba(0,0,0,.88),
        rgba(0,0,0,.94)
    ),
    url("https://images.unsplash.com/photo-1559526324-593bc073d938?auto=format&fit=crop&w=2200&q=90");

    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}


/* =========================================================
   GOLD LIGHT
========================================================= */

.glow{
    position:fixed;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(212,175,55,.08);
    filter:blur(100px);
    z-index:-2;
}

.glow.one{
    top:-200px;
    right:-150px;
}

.glow.two{
    bottom:-200px;
    left:-150px;
}


/* =========================================================
   NAVBAR
========================================================= */

nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:78px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 7%;

    background:rgba(0,0,0,.78);
    backdrop-filter:blur(18px);

    border-bottom:1px solid var(--border);

    z-index:999;
}

.logo{
    font-family:'Playfair Display',serif;
    font-size:25px;
    font-weight:800;
    letter-spacing:1px;
}

.logo span{
    color:var(--gold);
}

.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-links a{
    font-size:13px;
    color:#cfcfcf;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:var(--gold);
}

.nav-btn{
    padding:11px 19px;
    border:1px solid var(--gold);
    color:var(--gold) !important;
    border-radius:30px;
}

.menu{
    display:none;
    font-size:28px;
    cursor:pointer;
}


/* =========================================================
   HERO
========================================================= */

.hero{
    min-height:100vh;

    display:grid;
    grid-template-columns:1.15fr .85fr;

    align-items:center;

    gap:60px;

    padding:150px 8% 80px;

    position:relative;
}

.hero-content{
    animation:heroIn 1s ease;
}

.eyebrow{
    display:inline-flex;

    padding:9px 16px;

    border:1px solid rgba(212,175,55,.4);

    border-radius:50px;

    color:var(--gold2);

    background:rgba(212,175,55,.07);

    font-size:12px;

    font-weight:800;

    letter-spacing:2px;

    margin-bottom:25px;
}

.hero h1{
    font-family:'Playfair Display',serif;

    font-size:clamp(50px,6vw,88px);

    line-height:1.02;

    margin-bottom:25px;
}

.hero h1 span{
    color:var(--gold);
}

.hero-description{
    max-width:680px;

    color:#bcbcbc;

    line-height:1.9;

    font-size:17px;

    margin-bottom:32px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:15px 25px;

    border-radius:10px;

    font-weight:800;

    transition:.3s;

    cursor:pointer;
}

.btn-gold{
    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold2)
    );

    color:#050505;

    box-shadow:0 12px 35px rgba(212,175,55,.2);
}

.btn-gold:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 45px rgba(212,175,55,.3);
}

.btn-white{
    border:1px solid rgba(255,255,255,.25);
    background:rgba(255,255,255,.04);
}

.btn-white:hover{
    border-color:var(--gold);
    color:var(--gold);
}


/* =========================================================
   HERO CARD
========================================================= */

.hero-card{
    position:relative;
    display:flex;
    justify-content:center;
}

.ca-photo{
    width:420px;
    height:520px;

    object-fit:cover;

    border-radius:25px;

    border:1px solid rgba(255,255,255,.2);

    filter:grayscale(20%);

    box-shadow:
        0 30px 100px rgba(0,0,0,.8),
        0 0 60px rgba(212,175,55,.08);
}

.hero-badge{
    position:absolute;

    bottom:25px;
    left:0;

    background:rgba(5,5,5,.92);

    border:1px solid var(--gold);

    padding:18px 22px;

    border-radius:15px;

    backdrop-filter:blur(15px);
}

.hero-badge strong{
    color:var(--gold);
    font-size:25px;
}

.hero-badge span{
    display:block;
    color:#aaa;
    font-size:12px;
    margin-top:3px;
}


/* =========================================================
   COMMON SECTION
========================================================= */

section{
    padding:110px 8%;
}

.section-head{
    text-align:center;
    margin-bottom:65px;
}

.section-head small{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:11px;
    font-weight:800;
}

.section-head h2{
    font-family:'Playfair Display',serif;
    font-size:48px;
    margin-top:12px;
}

.section-head p{
    max-width:650px;
    margin:15px auto 0;
    color:var(--gray);
    line-height:1.8;
}


/* =========================================================
   ABOUT
========================================================= */

.about{
    background:rgba(255,255,255,.025);
}

.about-grid{
    display:grid;

    grid-template-columns:.9fr 1.1fr;

    gap:70px;

    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    height:480px;

    object-fit:cover;

    border-radius:25px;

    filter:grayscale(100%);

    border:1px solid var(--border);
}

.about-image::after{
    content:"";

    position:absolute;

    width:100%;
    height:100%;

    border:1px solid var(--gold);

    border-radius:25px;

    left:15px;
    top:15px;

    z-index:-1;
}

.about-content h3{
    font-family:'Playfair Display',serif;
    font-size:38px;
    margin-bottom:20px;
}

.about-content p{
    color:#aaa;
    line-height:1.9;
    margin-bottom:18px;
}

.personal-info{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-top:25px;
}

.personal-box{
    padding:17px;

    background:rgba(255,255,255,.035);

    border:1px solid var(--border);

    border-radius:12px;
}

.personal-box small{
    display:block;
    color:var(--gold);
    font-size:10px;
    margin-bottom:5px;
    letter-spacing:1px;
}

.personal-box strong{
    font-size:14px;
}


/* =========================================================
   ACHIEVEMENT SECTION
========================================================= */

.achievement-section{
    background:
    linear-gradient(
        rgba(0,0,0,.88),
        rgba(0,0,0,.92)
    ),
    url("https://images.unsplash.com/photo-1565514020179-026b92b84bb6?auto=format&fit=crop&w=2200&q=85");

    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

.achievement-intro{
    max-width:750px;
    margin:0 auto 60px;
    text-align:center;
}

.achievement-intro h3{
    font-family:'Playfair Display',serif;
    font-size:36px;
    margin-bottom:15px;
}

.achievement-intro p{
    color:#aaa;
    line-height:1.8;
}

.achievement-grid{
    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:20px;
}

.achievement-card{
    padding:30px;

    min-height:220px;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.09),
        rgba(255,255,255,.025)
    );

    border:1px solid rgba(212,175,55,.18);

    border-radius:20px;

    transition:.35s;

    position:relative;

    overflow:hidden;
}

.achievement-card:hover{
    transform:translateY(-9px);

    border-color:var(--gold);

    box-shadow:
        0 20px 50px rgba(0,0,0,.4);
}

.achievement-number{
    font-family:'Playfair Display',serif;

    color:var(--gold);

    font-size:38px;

    font-weight:800;
}

.achievement-card h3{
    margin:12px 0 9px;

    font-size:19px;
}

.achievement-card p{
    color:#aaa;

    line-height:1.65;

    font-size:14px;
}

.achievement-card::after{
    content:"✦";

    position:absolute;

    right:20px;
    top:15px;

    color:rgba(212,175,55,.25);

    font-size:50px;
}


/* =========================================================
   STATS
========================================================= */

.stats{
    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:20px;

    margin-top:25px;
}

.stat{
    text-align:center;

    padding:35px 15px;

    border-top:1px solid var(--gold);

    background:rgba(255,255,255,.035);
}

.stat h3{
    font-family:'Playfair Display',serif;

    color:var(--gold);

    font-size:46px;
}

.stat p{
    color:#999;
    margin-top:5px;
}


/* =========================================================
   SERVICES
========================================================= */

.services-grid{
    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:20px;
}

.service{
    padding:32px;

    border:1px solid var(--border);

    background:rgba(255,255,255,.035);

    border-radius:18px;

    transition:.3s;
}

.service:hover{
    border-color:var(--gold);
    transform:translateY(-6px);
}

.service-icon{
    width:55px;
    height:55px;

    display:grid;
    place-items:center;

    border-radius:14px;

    background:var(--gold);

    color:#000;

    font-size:24px;

    margin-bottom:20px;
}

.service h3{
    font-size:19px;
    margin-bottom:10px;
}

.service p{
    color:#999;
    font-size:14px;
    line-height:1.7;
}


/* =========================================================
   CAREER
========================================================= */

.career{
    background:#090909;
}

.timeline{
    max-width:950px;
    margin:auto;

    position:relative;
}

.timeline::before{
    content:"";

    position:absolute;

    left:50%;

    top:0;
    bottom:0;

    width:1px;

    background:
    linear-gradient(
        var(--gold),
        rgba(212,175,55,.1)
    );
}

.timeline-item{
    width:50%;

    padding:15px 40px;

    position:relative;
}

.timeline-item:nth-child(even){
    margin-left:50%;
}

.timeline-item::after{
    content:"";

    width:14px;
    height:14px;

    background:var(--gold);

    border-radius:50%;

    position:absolute;

    right:-7px;
    top:33px;

    box-shadow:0 0 20px rgba(212,175,55,.5);
}

.timeline-item:nth-child(even)::after{
    left:-7px;
}

.timeline-card{
    padding:25px;

    border:1px solid var(--border);

    border-radius:17px;

    background:rgba(255,255,255,.035);
}

.timeline-card .year{
    color:var(--gold);
    font-size:12px;
    font-weight:800;
}

.timeline-card h3{
    font-family:'Playfair Display',serif;
    font-size:23px;
    margin:8px 0;
}

.timeline-card h4{
    color:#ccc;
    font-size:14px;
    margin-bottom:10px;
}

.timeline-card p{
    color:#999;
    line-height:1.7;
    font-size:14px;
}


/* =========================================================
   CONTACT - PREMIUM
========================================================= */

.contact-section{
    position:relative;
}

.contact-wrapper{
    max-width:1100px;

    margin:auto;

    display:grid;

    grid-template-columns:.75fr 1.25fr;

    border:1px solid rgba(212,175,55,.22);

    border-radius:28px;

    overflow:hidden;

    background:rgba(255,255,255,.035);

    box-shadow:
        0 30px 100px rgba(0,0,0,.5);
}

.contact-left{
    padding:45px;

    background:
    linear-gradient(
        145deg,
        #161616,
        #080808
    );
}

.contact-left h3{
    font-family:'Playfair Display',serif;

    font-size:34px;

    margin-bottom:15px;
}

.contact-left>p{
    color:#999;

    line-height:1.8;

    margin-bottom:35px;
}

.contact-detail{
    display:flex;

    gap:15px;

    align-items:center;

    padding:17px 0;

    border-bottom:1px solid var(--border);
}

.contact-icon{
    width:42px;
    height:42px;

    display:grid;
    place-items:center;

    border-radius:10px;

    background:rgba(212,175,55,.1);

    color:var(--gold);
}

.contact-detail small{
    display:block;
    color:#777;
    font-size:10px;
    margin-bottom:4px;
}

.contact-detail strong{
    font-size:13px;
}

.socials{
    display:flex;
    gap:10px;
    margin-top:30px;
}

.social{
    width:42px;
    height:42px;

    display:grid;
    place-items:center;

    border:1px solid var(--border);

    border-radius:50%;

    transition:.3s;
}

.social:hover{
    border-color:var(--gold);
    color:var(--gold);
}


/* CONTACT FORM */

.contact-form{
    padding:45px;

    background:rgba(255,255,255,.025);
}

.form-title{
    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-bottom:25px;
}

.form-title h3{
    font-size:22px;
}

.secure{
    color:var(--green);
    font-size:11px;
    font-weight:800;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.form-group{
    margin-bottom:17px;
}

.form-group label{
    display:block;

    color:#bbb;

    font-size:11px;

    font-weight:700;

    margin-bottom:8px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;

    padding:15px 16px;

    background:#0a0a0a;

    border:1px solid rgba(255,255,255,.12);

    border-radius:10px;

    color:white;

    outline:none;

    transition:.3s;
}

.form-group select option{
    background:#111;
}

.form-group textarea{
    min-height:130px;
    resize:vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:var(--gold);

    box-shadow:
        0 0 0 3px rgba(212,175,55,.08);
}

.submit-btn{
    width:100%;

    border:0;

    padding:16px;

    border-radius:10px;

    background:
    linear-gradient(
        135deg,
        var(--gold),
        var(--gold2)
    );

    color:#000;

    font-weight:900;

    cursor:pointer;

    transition:.3s;
}

.submit-btn:hover{
    transform:translateY(-3px);

    box-shadow:
        0 15px 35px rgba(212,175,55,.2);
}

.form-note{
    text-align:center;

    color:#666;

    font-size:10px;

    margin-top:12px;
}


/* =========================================================
   FOOTER
========================================================= */

footer{
    padding:30px 8%;

    border-top:1px solid var(--border);

    display:flex;

    justify-content:space-between;

    color:#777;

    font-size:12px;
}

footer strong{
    color:#ddd;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes heroIn{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:950px){

    .nav-links{
        position:absolute;

        top:78px;
        left:0;

        width:100%;

        display:none;

        flex-direction:column;

        padding:25px 8%;

        background:#050505;

        border-bottom:1px solid var(--border);
    }

    .nav-links.active{
        display:flex;
    }

    .menu{
        display:block;
    }

    .hero{
        grid-template-columns:1fr;

        text-align:center;
    }

    .hero-description{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-card{
        margin-top:20px;
    }

    .about-grid{
        grid-template-columns:1fr;
    }

    .achievement-grid,
    .services-grid{
        grid-template-columns:1fr 1fr;
    }

    .stats{
        grid-template-columns:1fr 1fr;
    }

    .contact-wrapper{
        grid-template-columns:1fr;
    }
}


@media(max-width:600px){

    section{
        padding:80px 6%;
    }

    .hero{
        padding:130px 6% 70px;
    }

    .ca-photo{
        width:100%;
        height:430px;
    }

    .achievement-grid,
    .services-grid,
    .stats{
        grid-template-columns:1fr;
    }

    .personal-info,
    .form-row{
        grid-template-columns:1fr;
    }

    .timeline::before{
        left:7px;
    }

    .timeline-item,
    .timeline-item:nth-child(even){
        width:100%;
        margin-left:0;
        padding-left:30px;
        padding-right:0;
    }

    .timeline-item::after,
    .timeline-item:nth-child(even)::after{
        left:0;
        right:auto;
    }

    .contact-left,
    .contact-form{
        padding:30px 23px;
    }

    .section-head h2{
        font-size:37px;
    }

    footer{
        flex-direction:column;
        text-align:center;
        gap:10px;
    }
}

