/*=========================================
            CONTACT SECTION
=========================================*/

.contact {

    background: #05070D;

    padding: 120px 0;

}

/*=========================
      TITLE
=========================*/

.contact .section-title {

    text-align: center;

    max-width: 850px;

    margin: 0 auto 70px;

}

.contact .section-tag {

    display: inline-block;

    color: #D4AF37;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 4px;

    text-transform: uppercase;

    margin-bottom: 18px;

}

.contact .section-title h2 {

    color: #fff;

    font-size: 52px;

    margin-bottom: 20px;

}

.contact .section-title p {

    color: #BFC5CC;

    font-size: 17px;

    line-height: 1.8;

    max-width: 760px;

    margin: auto;

}

/*=========================
      LAYOUT GRID (2-ROW / 2-COLUMN)
=========================*/

.contact-wrapper {

    display: grid;

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

    gap: 30px;

    max-width: 1000px;

    margin: 0 auto;

}

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

.contact-card {

    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 30px;

    border-radius: 18px;

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .08);

    transition: .35s ease;

}

.contact-card:hover {

    transform: translateY(-6px);

    border-color: #D4AF37;

    box-shadow: 0 18px 40px rgba(212, 175, 55, .15);

}

.contact-card i {

    width: 55px;

    height: 55px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 50%;

    background: #D4AF37;

    color: #111;

    font-size: 22px;

    flex-shrink: 0;

}

.contact-card h3 {

    color: #fff;

    font-size: 21px;

    margin-bottom: 10px;

}

.contact-card p {

    color: #C9CED6;

    line-height: 1.8;

    font-size: 15px;

}

/*=========================
      CONTACT LINKS
=========================*/

.contact-card a {

    color: inherit;

    text-decoration: none;

    transition: .3s ease;

}

.contact-card a:hover {

    color: #D4AF37;

}

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

@media(max-width: 850px) {

    .contact-wrapper {

        grid-template-columns: 1fr;

        max-width: 550px;

    }

}

@media(max-width: 768px) {

    .contact {

        padding: 80px 0;

    }

    .contact .section-title h2 {

        font-size: 40px;

    }

}

@media(max-width: 480px) {

    .contact .section-title h2 {

        font-size: 32px;

    }

    .contact-card {

        flex-direction: column;

    }

    .contact-card i {

        width: 50px;

        height: 50px;

    }

}
/*=========================================
      CONTACT DETAILS CARD
=========================================*/

.contact-details{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;

    width:100%;

}

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

    flex:1;

}

.contact-item i{

    width:58px;

    height:58px;

    border-radius:50%;

    background:#D4AF37;

    color:#111;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    flex-shrink:0;

}

.contact-divider{

    width:1px;

    align-self:stretch;

    background:rgba(255,255,255,.15);

}

@media(max-width:768px){

    .contact-details{

        flex-direction:column;

        align-items:flex-start;

    }

    .contact-divider{

        width:100%;

        height:1px;

    }

}