*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    min-height: 100vh;
    color: white;
    font-family: Arial, sans-serif;
    background:
        linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.88)),
        url("images/bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow-x: hidden;
}

/* NAVBAR */

.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,215,0,0.18);
    z-index: 9999;
}

.logo{
    color: gold;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 0 0 14px rgba(255,215,0,0.7);
}

.nav-links{
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a,
.dropdown-btn{
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.nav-links a:hover,
.dropdown-btn:hover{
    color: gold;
}

.menu-toggle{
    display: none;
    background: gold;
    color: black;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 22px;
    cursor: pointer;
}

/* DROPDOWN CLICK */

.dropdown{
    position: relative;
}

.dropdown-content{
    display: none;
    position: absolute;
    top: 34px;
    right: 0;
    min-width: 170px;
    background: rgba(0,0,0,0.96);
    border: 1px solid gold;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(255,215,0,0.25);
    z-index: 10000;
}

.dropdown-content.show{
    display: block;
}

.dropdown-content a{
    display: block;
    padding: 14px 18px;
    color: white;
}

.dropdown-content a:hover{
    background: gold;
    color: black;
}

/* HERO */

.hero{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 150px 20px 90px;
    animation: fadeIn 1.4s ease;
}

.badge{
    padding: 10px 20px;
    border: 1px solid rgba(255,215,0,0.45);
    border-radius: 50px;
    background: rgba(255,215,0,0.08);
    color: gold;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 28px;
    box-shadow: 0 0 20px rgba(255,215,0,0.15);
}

.hero h1{
    max-width: 950px;
    color: gold;
    font-size: clamp(44px, 8vw, 92px);
    line-height: 1.05;
    text-shadow: 0 0 30px rgba(255,215,0,0.75);
}

.hero p{
    max-width: 730px;
    margin-top: 25px;
    font-size: clamp(17px, 2vw, 24px);
    line-height: 1.6;
    color: rgba(255,255,255,0.88);
}

.hero-buttons,
.contact-buttons{
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn{
    padding: 15px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.primary-btn{
    background: gold;
    color: black;
}

.secondary-btn{
    border: 1px solid gold;
    color: gold;
    background: rgba(0,0,0,0.35);
}

.primary-btn:hover,
.secondary-btn:hover{
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 28px rgba(255,215,0,0.5);
}

/* GENERAL SECTIONS */

section{
    padding: 90px 20px;
}

.section-title{
    text-align: center;
    margin-bottom: 55px;
}

.section-title span,
.about-box span{
    color: gold;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
}

.section-title h2,
.about-box h2,
.contact-section h2{
    margin-top: 12px;
    color: white;
    font-size: clamp(32px, 5vw, 50px);
}

/* CARDS */

.cards,
.steps{
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.card,
.step,
.about-box{
    background: rgba(0,0,0,0.48);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,215,0,0.35);
    border-radius: 24px;
    padding: 34px;
    transition: 0.35s;
}

.card:hover,
.step:hover,
.about-box:hover{
    transform: translateY(-10px);
    border-color: gold;
    box-shadow: 0 0 35px rgba(255,215,0,0.28);
}

.card h3,
.step h3{
    color: gold;
    margin-bottom: 15px;
    font-size: 23px;
}

.card p,
.step p,
.about-box p,
.contact-section p,
footer p{
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
}

/* PROCESS */

.step span{
    color: gold;
    font-size: 34px;
    font-weight: bold;
}

/* ABOUT */

.about{
    display: flex;
    justify-content: center;
}

.about-box{
    max-width: 820px;
    text-align: center;
}

/* CONTACT */

.contact-section{
    text-align: center;
}

.contact-section p{
    margin-top: 18px;
    font-size: 18px;
}

/* FOOTER */

footer{
    text-align: center;
    padding: 45px 20px;
    margin-top: 60px;
    background: rgba(0,0,0,0.7);
    border-top: 1px solid rgba(255,215,0,0.2);
}

footer h3{
    color: gold;
    margin-bottom: 10px;
}

/* ANIMATION */

@keyframes fadeIn{
    from{
        opacity: 0;
        transform: translateY(40px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* TABLET */

@media(max-width: 1024px){

    .cards,
    .steps{
        grid-template-columns: repeat(2, 1fr);
    }

    .navbar{
        padding: 20px 35px;
    }
}

/* MOBILE */

@media(max-width: 768px){

    .navbar{
        padding: 18px 22px;
    }

    .menu-toggle{
        display: block;
    }

    .nav-links{
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        flex-direction: column;
        gap: 20px;
        padding: 25px;
        background: rgba(0,0,0,0.97);
        border-bottom: 1px solid rgba(255,215,0,0.25);
    }

    .nav-links.active{
        display: flex;
    }

    .dropdown{
        width: 100%;
        text-align: center;
    }

    .dropdown-content{
        position: static;
        margin-top: 12px;
        width: 100%;
    }

    .hero{
        min-height: 90vh;
        padding-top: 160px;
    }

    .cards,
    .steps{
        grid-template-columns: 1fr;
    }

    .card,
    .step,
    .about-box{
        padding: 28px;
    }

    section{
        padding: 70px 18px;
    }
}