/*=====================================
        CONTACT HEADER
======================================*/

.contact-header{
    width:100%;
    padding:90px 8% 60px;
    background:#faf7f2;
}

.contact-title{
    max-width:750px;
    margin:auto;
    text-align:center;
}

.contact-title span{
    display:inline-block;
    font-size:14px;
    font-weight:600;
    letter-spacing:5px;
    text-transform:uppercase;
    color:#b8860b;
    margin-bottom:18px;
}

.contact-title h1{
    font-family:'Cinzel',serif;
    font-size:52px;
    color:#5b102d;
    font-weight:700;
    margin-bottom:22px;
}

.contact-title p{
    font-size:17px;
    line-height:1.9;
    color:#666;
}

/* Decorative Gold Line */

.contact-title::after{
    content:"";
    display:block;
    width:90px;
    height:3px;
    background:#d4af37;
    margin:35px auto 0;
    border-radius:20px;
}

/*=====================================
        Responsive
======================================*/

@media(max-width:768px){

.contact-header{
    padding:70px 5% 50px;
}

.contact-title h1{
    font-size:38px;
}

.contact-title p{
    font-size:15px;
    line-height:1.8;
}

.contact-title span{
    letter-spacing:3px;
    font-size:12px;
}

}

/*=====================================
        CONTACT INFORMATION
======================================*/

.contact-info{
    width:100%;
    padding:30px 8% 90px;
    background:#faf7f2;
}

.contact-info-container{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.info-card{

    background:#ffffff;

    border:1px solid #ece4d9;

    border-radius:18px;

    padding:40px 30px;

    text-align:center;

    transition:.4s ease;

    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.info-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 35px rgba(0,0,0,.12);

    border-color:#d4af37;
}

/*=========================
          ICON
=========================*/

.info-icon{

    width:75px;

    height:75px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#5b102d;

    color:#d4af37;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    transition:.4s;
}

.info-card:hover .info-icon{

    background:#d4af37;

    color:#5b102d;

    transform:rotate(8deg);
}

/*=========================
        CONTENT
=========================*/

.info-card h3{

    font-family:'Cinzel',serif;

    font-size:24px;

    color:#5b102d;

    margin-bottom:15px;
}

.info-card p{

    font-size:15px;

    color:#666;

    line-height:1.8;
}

/*=========================
      RESPONSIVE
=========================*/

@media(max-width:1100px){

.contact-info-container{

    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.contact-info{

    padding:20px 5% 70px;
}

.contact-info-container{

    grid-template-columns:1fr;
}

.info-card{

    padding:35px 25px;
}

.info-card h3{

    font-size:22px;
}

.info-icon{

    width:65px;
    height:65px;

    font-size:24px;
}

}


/*=====================================
        CONTACT FORM SECTION
======================================*/

.contact-form-section{
    width:100%;
    padding:90px 8%;
    background:#ffffff;
}

.contact-form-container{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

/*=========================
      LEFT CONTENT
=========================*/

.contact-left span{
    display:inline-block;
    color:#b8860b;
    font-size:14px;
    font-weight:600;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.contact-left h2{
    font-family:'Cinzel',serif;
    font-size:42px;
    color:#5b102d;
    margin-bottom:25px;
    line-height:1.3;
}

.contact-left > p{
    color:#666;
    font-size:16px;
    line-height:1.9;
    margin-bottom:35px;
}

.contact-feature{
    padding:18px 0;
    border-bottom:1px solid #ece4d9;
}

.contact-feature:last-child{
    border-bottom:none;
}

.contact-feature h4{
    color:#5b102d;
    font-size:18px;
    margin-bottom:8px;
}

.contact-feature p{
    color:#777;
    font-size:15px;
    line-height:1.7;
}

/*=========================
      CONTACT FORM
=========================*/

.contact-right{
    background:#faf7f2;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.input-group{
    margin-bottom:20px;
}

.input-group input,
.input-group textarea{
    width:100%;
    padding:16px 18px;
    border:1px solid #ddd;
    border-radius:12px;
    background:#fff;
    font-size:15px;
    font-family:'Poppins',sans-serif;
    outline:none;
    transition:.3s;
}

.input-group textarea{
    resize:none;
}

.input-group input:focus,
.input-group textarea:focus{
    border-color:#b8860b;
    box-shadow:0 0 10px rgba(212,175,55,.2);
}

.send-btn{
    width:100%;
    padding:16px;
    background:#5b102d;
    color:#fff;
    border:none;
    border-radius:12px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.send-btn:hover{
    background:#d4af37;
    color:#5b102d;
}

/*=========================
        RESPONSIVE
=========================*/

@media(max-width:992px){

.contact-form-container{
    grid-template-columns:1fr;
    gap:50px;
}

}

@media(max-width:768px){

.contact-form-section{
    padding:70px 5%;
}

.contact-left h2{
    font-size:34px;
}

.contact-right{
    padding:30px 25px;
}

}


/*=====================================
        STORE LOCATION
======================================*/

.store-location{
    width:100%;
    padding:90px 8%;
    background:#faf7f2;
}

.location-title{
    max-width:700px;
    margin:0 auto 60px;
    text-align:center;
}

.location-title span{
    display:inline-block;
    font-size:14px;
    font-weight:600;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#b8860b;
    margin-bottom:15px;
}

.location-title h2{
    font-family:'Cinzel',serif;
    font-size:42px;
    color:#5b102d;
    margin-bottom:20px;
}

.location-title p{
    font-size:16px;
    line-height:1.8;
    color:#666;
}

/*=========================
        MAP
=========================*/

.map-container{
    max-width:1200px;
    margin:auto;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.12);
}

.map-container iframe{
    width:100%;
    height:500px;
    border:0;
    display:block;
}

/*=========================
        RESPONSIVE
=========================*/

@media(max-width:768px){

.store-location{
    padding:70px 5%;
}

.location-title h2{
    font-size:34px;
}

.location-title p{
    font-size:15px;
}

.map-container iframe{
    height:350px;
}

}