/* ===========================
   CONTACT PAGE
=========================== */

:root{
    --gold:#c8a46a;
    --black:#0b0b0b;
    --dark:#111111;
    --white:#f8f6f2;
    --text:#d7d7d7;
}

/* ===========================
   HERO
=========================== */

.contact-hero{
    position:relative;
    height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    padding-top:140px;
}

.hero-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,.72),
        rgba(0,0,0,.45),
        rgba(0,0,0,.55)
    );
}

.hero-content{

    position:relative;

    z-index:5;

    max-width:650px;

    padding-left:55px;

    padding-top:80px;

    padding-bottom:140px;

}

.hero-tag{

    color:var(--gold);

    letter-spacing:7px;

    text-transform:uppercase;

    font-size:.9rem;

    margin-bottom:25px;

}

.hero-content h1{

    font-size:4.8rem;

    line-height:1.08;

    color:#F8F6F2;

    margin-bottom:30px;

    font-family:var(--heading-font);

    font-weight:400;

    max-width:650px;

}

.hero-text{

    color:#d6d6d6;

    font-size:1.18rem;

    line-height:2;

    max-width:520px;

    margin-bottom:30px;

}

.hero-btn{

    display:inline-block;

    padding:18px 48px;

    border:1px solid var(--gold);

    color:white;

    text-decoration:none;

    border-radius:60px;

    transition:.4s;

    letter-spacing:1px;

}

.hero-btn:hover{

    background:var(--gold);

    color:black;

}
/*============================
CONTACT CARDS
=============================*/

.contact-cards{

    position:relative;

    margin-top:-90px;

    z-index:20;

}

.cards-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.contact-card{

    background:#121212;

    border:1px solid rgba(200,164,106,.25);

    border-radius:22px;

    padding:45px;

    transition:.45s;

    backdrop-filter:blur(10px);

}

.contact-card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

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

}

.card-icon{

    font-size:34px;

    margin-bottom:22px;

}

.contact-card h3{

    color:white;

    font-size:28px;

    margin-bottom:18px;

}

.highlight{

    color:var(--gold);

    font-size:19px;

    margin-bottom:20px;

}

.contact-card span{

    color:#bcbcbc;

    line-height:1.9;

}
/*============================
CONTACT FORM
=============================*/

.contact-form-section{

    background:#0d0d0d;

    padding:140px 0;

}

.form-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.section-tag{

    color:var(--gold);

    letter-spacing:5px;

    font-size:.9rem;

    text-transform:uppercase;

}

.form-left h2{

    color:white;

    font-size:60px;

    line-height:1.15;

    margin:25px 0;

}

.form-left p{

    color:#b7b7b7;

    font-size:18px;

    line-height:1.9;

    margin-bottom:35px;

}

.form-note{

    border-left:3px solid var(--gold);

    padding-left:22px;

    color:#d8d8d8;

    line-height:1.8;

}

.form-right{

    background:#161616;

    padding:50px;

    border-radius:24px;

    border:1px solid rgba(200,164,106,.18);

}

.input-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:22px;

    margin-bottom:22px;

}

.form-right input,

.form-right textarea{

    width:100%;

    background:#0f0f0f;

    border:1px solid #2a2a2a;

    color:white;

    padding:18px 22px;

    border-radius:14px;

    font-size:16px;

    transition:.35s;

}

.form-right textarea{

    resize:none;

    margin-bottom:30px;

}

.form-right input:focus,

.form-right textarea:focus{

    outline:none;

    border-color:var(--gold);

    box-shadow:0 0 15px rgba(200,164,106,.15);

}

.form-right input::placeholder,

.form-right textarea::placeholder{

    color:#8d8d8d;

}

.form-right button{

    width:100%;

    padding:18px;

    background:#3a2417;

    color:white;

    border:none;

    border-radius:14px;

    font-size:18px;

    cursor:pointer;

    transition:.4s;

}

.form-right button:hover{

    background:var(--gold);

    color:#111;

}
/*======================================
        FINAL CTA
=======================================*/

.final-contact-cta{

    background:#111111;

    padding:140px 0;

}

.cta-wrapper{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:80px;

    align-items:center;

}

.cta-text h2{

    font-family:var(--heading-font);

    font-size:4rem;

    color:#F5F1EA;

    line-height:1.15;

    margin:25px 0;

}

.cta-text p{

    color:#bdbdbd;

    line-height:2;

    font-size:1.05rem;

    max-width:520px;

    margin-bottom:40px;

}

.gold-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 36px;

    border:1px solid var(--gold);

    border-radius:999px;

    text-decoration:none;

    color:#F5F1EA;

    transition:.35s ease;

}

.gold-btn:hover{

    background:var(--gold);

    color:#111111;

}

.cta-image{

    overflow:hidden;

    border-radius:18px;

    border:1px solid rgba(200,164,106,.2);

}

.cta-image img{

    width:100%;

    display:block;

    transition:transform .8s ease;

}

.cta-image:hover img{

    transform:scale(1.05);

}
/*======================================
        RESPONSIVE
=======================================*/

@media(max-width:1100px){

    .cards-grid,
    .form-wrapper,
    .cta-wrapper{

        grid-template-columns:1fr;

    }

    .cta-image{

        order:-1;

    }

}

@media(max-width:768px){

    .hero-content h1{

        font-size:3rem;

    }

    .form-left h2,
    .cta-text h2{

        font-size:2.5rem;

    }

    .input-grid{

        grid-template-columns:1fr;

    }

    .form-right{

        padding:30px;

    }

    .contact-card{

        padding:30px;

    }

}
/* ==========================================
SUCCESS MESSAGE
========================================== */

.success-message{

    display:flex;

    align-items:center;

    gap:20px;

    background:linear-gradient(
        135deg,
        rgba(199,155,99,.12),
        rgba(30,30,30,.95)
    );

    border:1px solid rgba(199,155,99,.35);

    border-left:5px solid #C79B63;

    border-radius:16px;

    padding:22px;

    margin-bottom:30px;

    animation:fadeSuccess .5s ease;

}

.success-icon{

    width:56px;

    height:56px;

    border-radius:50%;

    background:#C79B63;

    color:#111;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.5rem;

    font-weight:700;

    flex-shrink:0;

    box-shadow:0 0 20px rgba(199,155,99,.35);

}

.success-text h4{

    margin:0 0 8px;

    color:#C79B63 !important;

    font-size:1.35rem;

    font-weight:700;

    letter-spacing:0.5px;

}

.success-text p{

    margin:0;

    color:#d8d8d8;

    line-height:1.7;

}

@keyframes fadeSuccess{

    from{

        opacity:0;

        transform:translateY(-10px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
