.contact-hero{
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
    linear-gradient(
        rgba(0,0,0,.10),
        rgba(0,0,0,.10)
    ),
    url("../images/contactus_hero.png");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content{
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-subtitle{
    color: #d4af37;
    letter-spacing: 4px;
    font-size: 14px;
}

.hero-content h1{
    color: #fff;
    font-size: 80px;
    margin: 20px 0;
    font-family: "Playfair Display", serif;
}

.hero-divider{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-divider span{
    width: 100px;
    height: 1px;
    background: #d4af37;
}

.hero-divider i{
    color: #d4af37;
}

.hero-content p{
    color: #ddd;
    line-height: 1.9;
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-btn{
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(
        135deg,
        #f4d03f,
        #d4af37
    );
    color: #000;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: .4s;
}

.hero-btn:hover{
    transform: translateY(-5px);
    box-shadow:
    0 15px 35px rgba(212,175,55,.4);
}

.hero-particles span{
    position: absolute;
    width: 5px;
    height: 5px;
    background: #d4af37;
    border-radius: 50%;
    opacity: .5;
    animation: particles 10s linear infinite;
}

@keyframes particles{
    from{
        transform: translateY(100vh);
    }
    to{
        transform: translateY(-100vh);
    }
}
.gold-wave{
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 250px;
    background:
    radial-gradient(
        ellipse at center,
        rgba(212,175,55,.35),
        transparent 70%
    );

    filter: blur(60px);
}
/* =========================
CONTACT INFO
========================= */

.contact-info{
    padding: 80px 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.contact-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.contact-card{
    background: rgba(10,10,10,.75);
    border: 1px solid rgba(212,175,55,.25);
    border-radius: 25px;
    padding: 45px 30px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: .5s;
    overflow: hidden;
    position: relative;
}

.contact-card::before{
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        rgba(212,175,55,.15),
        transparent 70%
    );
    top: -200px;
    left: -200px;
    transition: .5s;
}

.contact-card:hover::before{
    top: -120px;
    left: -120px;
}

.contact-card:hover{
    transform: translateY(-12px);
    border-color: #d4af37;
    box-shadow:
        0 20px 40px rgba(0,0,0,.4),
        0 0 30px rgba(212,175,55,.2);
}

.contact-card i{
    width: 85px;
    height: 85px;
    line-height: 85px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,.4);
    color: #d4af37;
    font-size: 32px;
    margin-bottom: 30px;
}

.contact-card h3{
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 28px;
}

.contact-card p{
    color: #d9d9d9;
    line-height: 1.9;
}

/* =========================
CONTACT FORM
========================= */

.contact-form-section{
    padding: 100px 0;
}

.form-wrapper{
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
}

.form-left{
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(212,175,55,.2);
    border-radius: 30px;
    padding: 45px;
}

.form-left span{
    color: #d4af37;
    letter-spacing: 2px;
    font-size: 14px;
}

.form-left h2{
    color: #fff;
    font-size: 48px;
    margin: 20px 0;
    font-family: "Playfair Display", serif;
}

.form-left p{
    color: #cfcfcf;
    line-height: 1.9;
    margin-bottom: 35px;
}

.form-left ul{
    list-style: none;
}

.form-left ul li{
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.form-left ul li::before{
    content: "✦";
    position: absolute;
    left: 0;
    color: #d4af37;
}

.form-right{
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(212,175,55,.2);
    border-radius: 30px;
    padding: 45px;
    backdrop-filter: blur(25px);
}

.input-row{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.form-right input,
.form-right textarea{
    width: 100%;
    padding: 18px 22px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(212,175,55,.25);
    border-radius: 15px;
    color: #fff;
    outline: none;
    font-size: 16px;
}

.form-right input:focus,
.form-right textarea:focus{
    border-color: #d4af37;
    box-shadow:
        0 0 20px rgba(212,175,55,.2);
}

.form-right textarea{
    margin-bottom: 30px;
    resize: none;
}
.form-right button{
    background:
        linear-gradient(
            135deg,
            #f5d76e,
            #d4af37
        );

    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: .4s;
}

.form-right button:hover{
    transform: translateY(-5px);
    box-shadow:
        0 15px 35px rgba(212,175,55,.4);
}
.map-section{
    padding-bottom: 100px;
}

.map-box{
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(212,175,55,.25);
}

.map-box iframe{
    width: 100%;
    height: 500px;
    border: none;
}

.social-section{
    padding-bottom: 100px;
    text-align: center;
}

.social-section h2{
    color: #d4af37;
    margin-bottom: 20px;
}

.social-section p{
    color: #d9d9d9;
    margin-bottom: 40px;
}

.social-icons{
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icons a{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,.3);
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: .4s;
}

.social-icons a:hover{
    background: #d4af37;
    color: #000;
    transform: translateY(-8px);
}
@media(max-width:991px){

    .contact-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .form-wrapper{
        grid-template-columns: 1fr;
    }

    .hero-content h1{
        font-size: 55px;
    }
}

@media(max-width:768px){

    .contact-grid{
        grid-template-columns: 1fr;
    }

    .input-row{
        grid-template-columns: 1fr;
    }

    .hero-content h1{
        font-size: 42px;
    }

    .form-left h2{
        font-size: 36px;
    }
}
