/*==================================================
    KURUNJI MASALA
    CONTACT PAGE
==================================================*/


/*==================================================
    CONTACT HERO
==================================================*/

.contact-hero{
    position:relative;
    padding:110px 0;
    background:
        linear-gradient(
            90deg,
            rgba(18,53,36,.68),
            rgba(18,53,36,.34)
        ),
        url("../images/contact/contact-banner.png")
        center/cover no-repeat;
    color:#fff;
}

.contact-hero-content{
    max-width:850px;
}

.contact-hero-content > span{
    display:inline-block;
    margin-bottom:18px;
    padding:8px 18px;
    border:1px solid rgba(255,255,255,.4);
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
}

.contact-hero h1{
    margin:0 0 22px;
    font-size:56px;
    line-height:1.15;
}

.contact-hero h1 strong{
    display:block;
    color:#f0c75e;
}

.contact-hero p{
    max-width:700px;
    margin:0 0 30px;
    color:rgba(255,255,255,.9);
    font-size:17px;
    line-height:1.85;
}


/*==================================================
    BREADCRUMB
==================================================*/

.contact-breadcrumb{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:14px;
}

.contact-breadcrumb a{
    color:#fff;
    text-decoration:none;
}

.contact-breadcrumb a:hover{
    color:#f0c75e;
}

.contact-breadcrumb i{
    font-size:11px;
    opacity:.7;
}

.contact-breadcrumb span{
    color:#f0c75e;
}


/*==================================================
    CONTACT SECTION
==================================================*/

.contact-section{
    padding:100px 0;
    background:#fff;
}

.contact-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:70px;
    align-items:start;
}


/*==================================================
    CONTACT INFO
==================================================*/

.contact-info .section-label{
    display:inline-block;
    margin-bottom:15px;
    padding:8px 18px;
    border-radius:30px;
    background:#f5ead0;
    color:#8a6500;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
}

.contact-info h2{
    margin:0 0 18px;
    color:#222;
    font-size:43px;
    line-height:1.2;
}

.contact-info > p{
    max-width:600px;
    margin:0 0 35px;
    color:#666;
    font-size:15px;
    line-height:1.85;
}


/*==================================================
    CONTACT INFO ITEM
==================================================*/

.contact-info-item{
    display:flex;
    align-items:flex-start;
    gap:16px;
    margin-bottom:24px;
}

.contact-icon{
    width:48px;
    height:48px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:#eef8ef;
    color:var(--primary);
    font-size:18px;
}

.contact-info-item h3{
    margin:0 0 5px;
    color:#222;
    font-size:16px;
}

.contact-info-item p,
.contact-info-item a{
    margin:0;
    color:#666;
    font-size:14px;
    line-height:1.7;
}

.contact-info-item a{
    text-decoration:none;
}

.contact-info-item a:hover{
    color:var(--primary);
}


/*==================================================
    SOCIAL
==================================================*/

.contact-social{
    display:flex;
    gap:10px;
    margin-top:30px;
}

.contact-social a{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #e1e8e2;
    border-radius:10px;
    background:#fff;
    color:#555;
    text-decoration:none;
    transition:.3s ease;
}

.contact-social a:hover{
    background:var(--primary);
    border-color:var(--primary);
    color:#fff;
    transform:translateY(-3px);
}


/*==================================================
    CONTACT FORM CARD
==================================================*/

.contact-form-card{
    padding:40px;
    border:1px solid #e3eae4;
    border-radius:25px;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.contact-form-header{
    margin-bottom:28px;
}

.contact-form-header > span{
    color:#8a6500;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
}

.contact-form-header h2{
    margin:8px 0 10px;
    color:#222;
    font-size:30px;
}

.contact-form-header p{
    margin:0;
    color:#777;
    font-size:14px;
    line-height:1.7;
}


/*==================================================
    FORM GRID
==================================================*/

.contact-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group.full-width{
    grid-column:1 / -1;
}

.form-group label{
    margin-bottom:8px;
    color:#333;
    font-size:13px;
    font-weight:600;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:13px 15px;
    border:1px solid #dfe6e1;
    border-radius:9px;
    outline:none;
    background:#fff;
    color:#333;
    font-family:inherit;
    font-size:14px;
    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.form-group textarea{
    resize:vertical;
    min-height:140px;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color:#aaa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 3px rgba(31,107,45,.08);
}


/*==================================================
    SUBMIT
==================================================*/

.contact-submit{
    margin-top:25px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-width:180px;
    border:0;
    cursor:pointer;
}

.contact-form-status{
    display:none;
    margin-top:15px;
    padding:12px 15px;
    border-radius:9px;
    font-size:13px;
    line-height:1.6;
}

.contact-form-status.success{
    display:block;
    background:#eaf7ed;
    color:#24733a;
}

.contact-form-status.error{
    display:block;
    background:#fff0f0;
    color:#a33a3a;
}


/*==================================================
    BUSINESS HOURS
==================================================*/

.business-hours{
    padding:80px 0;
    background:#f8faf7;
}

.business-hours-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.business-hours-wrapper > div:first-child{
    max-width:700px;
}

.business-hours-wrapper > div:first-child > span{
    color:#8a6500;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
}

.business-hours-wrapper h2{
    margin:10px 0 12px;
    color:#222;
    font-size:38px;
    line-height:1.2;
}

.business-hours-wrapper p{
    margin:0;
    color:#666;
    font-size:15px;
    line-height:1.8;
}

.hours-card{
    min-width:310px;
    padding:25px;
    border:1px solid #e1e8e2;
    border-radius:20px;
    background:#fff;
}

.hours-card > div{
    display:flex;
    justify-content:space-between;
    gap:25px;
    padding:13px 0;
}

.hours-card > div + div{
    border-top:1px solid #edf0ed;
}

.hours-card span{
    color:#666;
    font-size:13px;
}

.hours-card strong{
    color:#222;
    font-size:13px;
}


/*==================================================
    MAP
==================================================*/

.contact-map{
    padding:100px 0;
    background:#fff;
}

.contact-map .section-header{
    max-width:700px;
    margin:0 auto 40px;
    text-align:center;
}

.contact-map .section-header > span{
    display:inline-block;
    margin-bottom:15px;
    padding:8px 18px;
    border-radius:30px;
    background:#f5ead0;
    color:#8a6500;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
}

.contact-map .section-header h2{
    margin:0;
    color:#222;
    font-size:42px;
}

.map-wrapper{
    width:100%;
    height:450px;
    overflow:hidden;
    border-radius:25px;
    border:1px solid #e3eae4;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
}

.map-wrapper iframe{
    width:100%;
    height:100%;
    display:block;
    border:0;
}


/*==================================================
    WHATSAPP
==================================================*/

.contact-whatsapp{
    padding:75px 0;
    background:
        linear-gradient(
            135deg,
            #e0e5e2,
            #1f6b2d
        );
    color:#fff;
}

.contact-whatsapp-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.contact-whatsapp-wrapper > div{
    max-width:700px;
}

.contact-whatsapp-wrapper > div > span{
    color:#f0c75e;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
}

.contact-whatsapp-wrapper h2{
    margin:10px 0 12px;
    font-size:38px;
}

.contact-whatsapp-wrapper p{
    margin:0;
    color:rgba(255,255,255,.85);
    font-size:15px;
}

.whatsapp-large-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-width:190px;
    padding:14px 25px;
    border-radius:9px;
    background:#fff;
    color:#16743a;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    transition:.3s ease;
}

.whatsapp-large-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.18);
}

.whatsapp-large-btn i{
    font-size:20px;
}


/*==================================================
    TABLET
==================================================*/

@media(max-width:1100px){

    .contact-grid{
        gap:45px;
    }

}

@media(max-width:992px){

    .contact-hero{
        padding:90px 0;
    }

    .contact-hero h1{
        font-size:46px;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-info{
        max-width:750px;
        margin:0 auto;
    }

    .business-hours-wrapper,
    .contact-whatsapp-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .business-hours-wrapper > div:first-child,
    .contact-whatsapp-wrapper > div{
        max-width:750px;
    }

}


/*==================================================
    MOBILE
==================================================*/

@media(max-width:768px){

    .contact-hero{
        padding:70px 0;
    }

    .contact-hero-content{
        text-align:center;
        margin:0 auto;
    }

    .contact-hero h1{
        font-size:36px;
    }

    .contact-hero p{
        font-size:15px;
    }

    .contact-breadcrumb{
        justify-content:center;
    }

    .contact-section,
    .contact-map{
        padding:70px 0;
    }

    .contact-info h2{
        font-size:34px;
    }

    .contact-form-card{
        padding:30px 22px;
    }

    .contact-form-grid{
        grid-template-columns:1fr;
    }

    .form-group.full-width{
        grid-column:auto;
    }

    .business-hours{
        padding:65px 0;
    }

    .business-hours-wrapper h2,
    .contact-whatsapp-wrapper h2{
        font-size:32px;
    }

    .hours-card{
        width:100%;
        min-width:0;
    }

    .map-wrapper{
        height:350px;
        border-radius:18px;
    }

    .contact-whatsapp{
        padding:65px 0;
    }

}


/*==================================================
    SMALL MOBILE
==================================================*/

@media(max-width:480px){

    .contact-hero h1{
        font-size:30px;
    }

    .contact-hero-content > span{
        font-size:11px;
    }

    .contact-info h2{
        font-size:29px;
    }

    .contact-form-card{
        padding:25px 18px;
        border-radius:18px;
    }

    .contact-form-header h2{
        font-size:25px;
    }

    .contact-info-item{
        gap:12px;
    }

    .contact-icon{
        width:43px;
        height:43px;
    }

    .business-hours-wrapper h2,
    .contact-whatsapp-wrapper h2{
        font-size:28px;
    }

    .map-wrapper{
        height:300px;
    }

}

/*==================================================
    HERO IMAGE CLARITY FIX
==================================================*/

.contact-hero h1{
    color:#fff;
    text-shadow:0 2px 5px rgba(0,0,0,.18);
}

.contact-hero p{
    color:#fff;
    text-shadow:0 1px 3px rgba(0,0,0,.25);
}