.body {
		background-color: var(--light);
}

@media (min-width: 992px) {
		#header .header-nav.header-nav-line:not(.header-nav-light-text) nav > ul > li > a {
				color: var(--dark);
				font-weight: 600;
		}
		#header .header-nav.header-nav-line:not(.header-nav-light-text) nav > ul > li > a:before {
				height: 1px !important;
		}
		#header .header-nav-features .header-nav-top-icon {
				color: var(--dark);
		}
		#header .header-nav-features .header-nav-top-icon-img {
				color: var(--dark);
		}
}

.custom-el-pos-1 {
		bottom: -260px;
		left: -15%;
}

@media (min-width: 1600px) {
		.custom-el-pos-1 {
				left: -65px;
		}
}

.custom-el-pos-2 {
		bottom: -155px;
		right: -145px;
}

.custom-min-height-1 {
		min-height: 500px;
}

html .btn-quaternary:hover {
		background: #F0F2FC !important;
}

.owl-carousel-light {
		z-index: initial !important;
}

.owl-carousel-light .owl-stage {
		background: var(--light);
}

.owl-carousel.custom-nav-1 .owl-nav .owl-prev, .owl-carousel.custom-nav-1 .owl-nav .owl-next {
		width: 50px;
		height: 50px;
		background: var(--quaternary) !important;
}

.owl-carousel.custom-nav-1 .owl-nav .owl-prev:before, .owl-carousel.custom-nav-1 .owl-nav .owl-next:before {
		color: var(--dark);
		left: 0 !important;
		top: 1px !important;
		font-size: 16px !important;
}

.owl-carousel.custom-nav-1-pos-1 .owl-nav {
		z-index: 5;
		top: 100%;
		transform: none !important;
}

.owl-carousel.custom-nav-1-pos-1 .owl-nav .owl-prev {
		transform: none !important;
		left: auto;
		top: -62px;
		right: 63px;
}

.owl-carousel.custom-nav-1-pos-1 .owl-nav .owl-next {
		transform: none !important;
		top: -62px;
		right: 12px;
}

.owl-carousel.custom-nav-1-pos-2 .owl-nav .owl-prev {
		margin-left: -25px;
}

.owl-carousel.custom-nav-1-pos-3 .owl-nav {
		margin-top: -45px;
}

.owl-carousel.custom-nav-1-pos-3 .owl-nav .owl-prev {
		margin-left: -25px;
}

.owl-carousel.custom-nav-1-pos-3 .owl-nav .owl-next {
		margin-right: -25px;
}

@media (max-width: 1199px) {
		.owl-carousel.custom-nav-1-pos-4 .owl-nav {
				bottom: 33px;
				top: auto;
		}
}

/* WhatsApp Floating Button */

.whatsapp-float{
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-float img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.whatsapp-float img:hover{
    transform: scale(1.1);
}

/* Mobile */

@media(max-width:700px){

    .whatsapp-float{
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }

}

/* LOCATION SECTION */

.location{
    width:80%;
    margin:auto;
    padding:60px 0;
    text-align:center;
}

.location h1{
    margin-bottom:10px;
}

.location p{
    max-width:600px;
    margin:0 auto 30px;
}

/* MAP */

.map-container{
    width:80%;
    max-width:800px;
    margin:0 auto;
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.map-container iframe{
    width:100%;
    height:350px;
    border:0;
    display:block;
}

/* MOBILE */

@media(max-width:700px){

    .location{
        width:90%;
    }

    .map-container{
        width:100%;
    }

    .map-container iframe{
        height:250px;
    }

}

/* CONTACT FORM */

.contact-form-section{
    width:100%;
    padding:80px 0;
    background:#f8f8f8;
}

.contact-form-container{
    width:80%;
    max-width:700px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    text-align:center;
}

.contact-form-container h1{
    margin-bottom:15px;
}

.contact-form-container p{
    margin-bottom:30px;
}

.form-group{
    margin-bottom:20px;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px;
    outline:none;
    transition:0.3s;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#f44336;
}

.contact-btn{
    background:#f44336;
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
    transition:0.3s;
}

.contact-btn:hover{
    background:#d9372b;
}

@media(max-width:700px){

    .contact-form-container{
        width:90%;
        padding:25px;
    }

    .contact-form-container h1{
        font-size:28px;
    }

}