*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:Arial, Helvetica, sans-serif;
    background:#111;
    color:white;

}

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 8%;

    background:rgba(0,0,0,.75);

    backdrop-filter:blur(8px);

    z-index:999;

}

.logo{

    font-size:28px;

    font-weight:bold;

    letter-spacing:1px;

    color:#d6b46a;

}

nav{

    display:flex;
    gap:35px;

}

nav a{

    color:white;

    text-decoration:none;

    transition:.3s;

}

nav a:hover{

    color:#d6b46a;

}

.hero{
    position:relative;
    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    background-image:url("images/hero.jpg");

    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;

    background-color:#111;
}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

}

.hero-content{

    position:relative;

    z-index:2;

    width:min(90%,900px);

}

.emblem{

    width:220px;

    max-width:75%;

    margin-bottom:30px;

}

.hero h1{

    font-size:60px;

    margin-bottom:15px;

}

.hero h2{

    color:#d6b46a;

    margin-bottom:25px;

    font-size:28px;

}

.hero p{

    font-size:20px;

    line-height:1.8;

    margin-bottom:40px;

}

.button{

    display:inline-block;

    padding:16px 38px;

    background:#d6b46a;

    color:black;

    text-decoration:none;

    font-weight:bold;

    border-radius:6px;

    transition:.3s;

}

.button:hover{

    transform:translateY(-3px);

    background:white;

}

@media(max-width:768px){

header{

    flex-direction:column;

    gap:20px;

}

nav{

    gap:18px;

    flex-wrap:wrap;

    justify-content:center;

}

.hero h1{

    font-size:38px;

}

.hero h2{

    font-size:20px;

}

.hero p{

    font-size:17px;

}

.emblem{

    width:160px;

}

}
/* ========================= */
/* ABOUT SECTION */
/* ========================= */

.about{

    background:#181818;

    padding:100px 10%;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;

    color:#d6b46a;

    margin-bottom:15px;

}

.section-title p{

    color:#bdbdbd;

    font-size:18px;

}

.about-text{

    max-width:900px;

    margin:auto;

    text-align:center;

    line-height:1.9;

    font-size:18px;

}

.about-text p{

    margin-bottom:25px;

}

.cards{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.card{

    background:#222;

    padding:35px;

    border-radius:10px;

    border:1px solid rgba(214,180,106,.25);

    transition:.35s;

}

.card:hover{

    transform:translateY(-8px);

    border-color:#d6b46a;

    box-shadow:0 15px 35px rgba(0,0,0,.4);

}

.card h3{

    color:#d6b46a;

    margin-bottom:20px;

    font-size:24px;

}

.card p{

    line-height:1.8;

    color:#d6d6d6;

}
/* ========================= */
/* PRICING */
/* ========================= */

.pricing{

    padding:100px 10%;

    background:#111;

}

.pricing-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:35px;

    margin-top:60px;

}

.price-card{

    background:#1d1d1d;

    border-radius:12px;

    padding:45px 35px;

    text-align:center;

    border:1px solid rgba(214,180,106,.2);

    transition:.35s;

}

.price-card:hover{

    transform:translateY(-10px);

    border-color:#d6b46a;

    box-shadow:0 20px 45px rgba(0,0,0,.45);

}

.featured{

    border:2px solid #d6b46a;

}

.price-icon{

    font-size:48px;

    margin-bottom:20px;

}

.price-card h3{

    color:#d6b46a;

    font-size:28px;

    margin-bottom:20px;

}

.price{

    font-size:48px;

    font-weight:bold;

    margin-bottom:30px;

}

.price-card ul{

    list-style:none;

    margin-bottom:35px;

}

.price-card li{

    padding:10px 0;

    color:#d8d8d8;

}

.price-button{

    display:inline-block;

    padding:14px 28px;

    background:#d6b46a;

    color:#111;

    font-weight:bold;

    border-radius:6px;

    text-decoration:none;

    transition:.3s;

}

.price-button:hover{

    background:white;

    transform:translateY(-2px);

}
/* ========================= */
/* PROCESS */
/* ========================= */

.process{

    background:#181818;

    padding:100px 10%;

}

.timeline{

    max-width:900px;

    margin:auto;

}

.step{

    display:flex;

    gap:25px;

    margin-bottom:35px;

    align-items:flex-start;

}

.step span{

    width:50px;

    height:50px;

    background:#d6b46a;

    color:#111;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:bold;

    font-size:22px;

    flex-shrink:0;

}

.step h3{

    color:#d6b46a;

    margin-bottom:8px;

}

/* FAQ */

.faq{

    padding:100px 10%;

    background:#111;

}

.faq-item{

    max-width:900px;

    margin:20px auto;

}

.faq-question{

    width:100%;

    text-align:left;

    background:#1d1d1d;

    color:white;

    padding:20px;

    border:none;

    font-size:18px;

    cursor:pointer;

    border-left:5px solid #d6b46a;

}

.faq-answer{

    display:none;

    padding:20px;

    background:#222;

    line-height:1.8;

}

.faq-answer.active{

    display:block;

}

/* CONTACT */

.contact{

    padding:100px 10%;

    background:#181818;

}

.contact-box{

    max-width:700px;

    margin:auto;

    background:#222;

    padding:40px;

    border-radius:10px;

    text-align:center;

    border:1px solid rgba(214,180,106,.25);

}

.contact-box h3{

    color:#d6b46a;

    margin-bottom:20px;

}

.contact-box p{

    margin:15px 0;

    line-height:1.8;

}
/* ========================= */
/* CONTACT FORM (PREMIUM STYLE) */
/* ========================= */

.contact-form{
    background:#111;
    padding:100px 10%;
}

.form-container{
    max-width:850px;
    margin:auto;
    background:#1d1d1d;
    padding:40px;
    border-radius:12px;
    border:1px solid rgba(214,180,106,.25);
    box-shadow:0 20px 50px rgba(0,0,0,.4);
}

form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

input,
textarea{
    width:100%;
    padding:16px;
    background:#222;
    color:white;
    border:1px solid #444;
    border-radius:6px;
    font-size:16px;
}

input:focus,
textarea:focus{
    outline:none;
    border-color:#d6b46a;
}

textarea{
    resize:none;
}

form button{
    padding:16px;
    background:#d6b46a;
    color:#111;
    font-weight:bold;
    border:none;
    border-radius:6px;
    cursor:pointer;
    transition:.3s;
    font-size:16px;
}

form button:hover{
    background:white;
    transform:translateY(-2px);
}
.nav{
    display:flex;
    gap:18px;
}

nav a{
    color:white;
    text-decoration:none;

    padding:10px 14px;
    border-radius:6px;

    transition:.25s ease;

    font-weight:500;
}

nav a:hover{
    color:#d6b46a;
    background:rgba(214,180,106,.12);
    border:1px solid rgba(214,180,106,.35);
}
}

/* MOBILE FIX */
@media(max-width:768px){

    .form-grid{
        grid-template-columns:1fr;
    }

}.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:white;
    font-size:30px;
    cursor:pointer;
}

/* MOBILE */
@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    nav{
        display:none;
        flex-direction:column;
        width:100%;
        margin-top:15px;
        gap:10px;
    }

    nav.show{
        display:flex;
    }

    header{
        flex-direction:column;
        align-items:flex-start;
    }

    nav a{
        width:100%;
        padding:12px;
    }
}
.discount-note{
    text-align:center;
    color:white;
    font-size:16px;
    margin-top:20px;
    opacity:0.9;
    letter-spacing:0.3px;
}
@media (max-width: 768px){

    .form-grid{
        grid-template-columns: 1fr;
    }

    input,
    textarea{
        font-size:16px; /* prevents iPhone zoom + improves readability */
    }

}
