@import url("https://fonts.googleapis.com/css?family=Inter:400,500,600,700&display=swap");

.contact-left-box,.contact-form-box {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 12px 30px rgba(0,0,0,.08);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
}

	/* Left Image */

.contact-img {
	width: 100%;
	height: 280px;
	object-fit: cover;
}

	/* Left Content */

.contact-content {
	padding: 30px;
	text-align: center;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.contact-content h3 {
	font-size: 30px;
	font-weight: 400;
	color: #D4AF37;
	margin-bottom: 15px;
	line-height: 1.3;
}

.contact-content p {
	color: #666;
	font-size: 15px;
	line-height: 28px;
}

	/* Button always bottom */

.btn-contact {
	margin-top: auto;
	display: inline-flex; 
	align-items: center;
	justify-content: center;
	gap: 8px;
	align-self: center;
	background: #550923;
	color: #fff;
	padding: 13px 32px;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none;
	transition: .3s;
}

.btn-contact:hover {
	background: #D4AF37;
	color: #fff;
}

	/* Right Form */

.contact-form-box {
	padding: 35px;
}

.contact-form-box .section-header {
	margin-bottom: 25px;
}

.contact-form-box h2 {
	margin-bottom: 0;
	font-size: 30px;
	font-weight: 400;
}

.contact-form-box .form-group {
	margin-bottom: 18px;
}

.contact-form-box label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: #222;
}

.contact-form-box .form-control {
	height: 50px;
	border-radius: 6px;
	border: 1px solid #ddd;
	box-shadow: none;
}

.contact-form-box textarea.form-control {
	height: 165px;
	resize: none;
	padding-top: 12px;
}

.contact-form-box .btn-custom {
	margin-top: 5px;
}

	/* Responsive */

@media (max-width:991px) {

	.contact-left-box {
		margin-bottom: 30px;
	}

	.contact-img {
		height: 240px;
	}

	.contact-content {
		padding: 25px;
	}

	.contact-content h3 {
		font-size: 28px;
	}

	.contact-form-box {
		padding: 25px;
	}
}

.contact-info-section .contact-info-card {
   padding: 30px;
   background: #fff;
   border: 1px solid #D4AF37;
   border-radius: 16px;
   box-shadow: 0 5px 20px rgba(34, 12, 43, 0.06);
   transition: .3s;
   min-height: 260px;
}

.contact-info-section .contact-info-card:hover {
   transform: translateY(-5px);
   border-color: #A9365B;
   box-shadow: 0 10px 25px rgba(169, 54, 91, 0.15);
}

.contact-info-section .contact-info-card > i {
   color: #A9365B;
   font-size: 42px;
   margin-right: 25px;
   margin-bottom: 0;
   transition: .3s;
}

.contact-info-section .contact-info-card:hover > i {
   color: #A9365B;
}

.contact-info-section .contact-info-card h5 {
   margin-bottom: 10px;
}

.contact-info-section .contact-info-card p {
   margin-bottom: 20px;
}

.contact-info-section .contact-info-card .btn-custom {
   margin-top: 5px;
}

/***** For Contact Page Css *****/

/***** For Login Page Css *****/

/*====================================================
LOGIN PAGE
====================================================*/

.login-page {
	font-family: "Poppins", sans-serif;
}


/*====================================================
MAIN CONTAINER
====================================================*/

.login-page.acr-auth-container {
	display: flex;
	min-height: calc(100vh - 83px);
	margin-top: 78px;
}


/*====================================================
LEFT SIDE
====================================================*/

.login-page .acr-auth-content {
	width: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
}

.login-page .acr-auth-content form {
	width: 100%;
	max-width: 470px;
}


/*====================================================
HEADING
====================================================*/

.login-page .auth-text {
	margin-bottom: 40px;
}

.login-page .auth-text h2 {
	font-size: 30px;
	font-weight: 400;
	line-height: 50px;
	color: #D4AF37;
	margin: 0 0 20px;
}

.login-page .auth-text p {
	font-size: 18px;
	line-height: 25px;
	color: #666;
	margin: 0;
}


/*====================================================
FORM
====================================================*/

.login-page .form-group {
	margin-top: 10px;
	margin-bottom: 0;
}

.login-page .form-group label {
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: #222;
	margin-bottom: 10px;
}

.login-page .form-control {
	width: 100%;
	height: 58px;
	border: 1px solid #ddd;
	border-radius: 12px;
	padding: 0 18px;
	font-size: 15px;
	transition: 0.3s;
	box-shadow: none;
	background: #fff;
}

.login-page .form-control:focus {
	border-color: #965956;
	box-shadow: 0 0 0 3px rgba(150, 89, 86, 0.15);
}

.login-page .form-control:hover {
	border-color: #c9a998;
}

.login-page .form-control::placeholder {
	color: #b0b0b0;
}


/*====================================================
FORGOT PASSWORD
====================================================*/

.login-page .forgot-row {
	text-align: right;
	margin: 10px 0 10px;
}

.login-page .forgot-row a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 400;
    font-size: 18px;
}

.login-page .forgot-row a:hover {
	text-decoration: none;
}


/*====================================================
LOGIN BUTTON
====================================================*/

.login-page .btn-login {
	width: 100%;
	height: 58px;
	border: none;
	border-radius: 12px;
	background: #550923;
	color: #fff;
	font-size: 17px;
	font-weight: 600;
	cursor: pointer;
	transition: 0.3s;
	outline:none!important;
}

.login-page .btn-login:hover {
	background: #D4AF37;
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(105, 61, 57, 0.25);
}


/*====================================================
RIGHT SIDE
====================================================*/

.login-page .acr-auth-bg {
	width: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;	
	background-size: cover;
	overflow: hidden;
}


/*====================================================
OVERLAY
====================================================*/

.login-page .overlay {
	position: absolute;
	inset: 0;
	background: rgba(150, 89, 86, 0.90);
}


/*====================================================
RIGHT CONTENT
====================================================*/

.login-page .right-content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 470px;
	color: #fff;
}

.login-page .right-content h1 {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 20px;
	color: #fff;
}

.login-page .right-content p {
	font-size: 18px;
	line-height: 32px;
	margin: 0 0 35px;
	color: rgba(255, 255, 255, 0.95);
}


/*====================================================
FEATURES
====================================================*/

.login-page .feature {
	font-size: 18px;
	line-height: 15px;
	margin-bottom: 16px;
}


/*====================================================
HERO BUTTON
====================================================*/

.login-page .hero-btn {
	display: inline-block;
	margin-top: 18px;
	padding: 15px 34px;
	border-radius: 50px;
	background: #550923;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	transition: 0.3s;
}

.login-page .hero-btn:hover {
	background: #D4AF37;
	color: #fff;
}


/*====================================================
ALERTS
====================================================*/

.login-page .alert {
	border-radius: 12px;
	margin-bottom: 20px;
}


/*====================================================
AUTOFILL
====================================================*/

.login-page input:-webkit-autofill,
.login-page input:-webkit-autofill:hover,
.login-page input:-webkit-autofill:focus,
.login-page input:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 1000px #fff inset !important;
	-webkit-text-fill-color: #333 !important;
	transition: background-color 5000s ease-in-out 0s;
}


/*====================================================
RESPONSIVE - 991px
====================================================*/

@media (max-width: 991px) {

	.login-page.acr-auth-container {
		flex-direction: column;
		min-height: auto;
		margin-top: 100px;
	}

	.login-page .acr-auth-content,
	.login-page .acr-auth-bg {
		width: 100%;
	}

	.login-page .acr-auth-content {
		padding: 50px 25px;
	}

	.login-page .acr-auth-bg {
		min-height: 600px;
		padding: 50px 25px;
	}

	.login-page .right-content,
	.login-page .acr-auth-content form {
		max-width: 100%;
	}

	.login-page .auth-text h2,
	.login-page .right-content h1 {
		font-size: 38px;
	}

	.login-page .auth-text p,
	.login-page .right-content p {
		font-size: 17px;
		line-height: 30px;
	}

}


/*====================================================
RESPONSIVE - 576px
====================================================*/

@media (max-width: 576px) {

	.login-page.acr-auth-container {
		margin: 90px 15px 15px;
	}

	.login-page .acr-auth-content {
		padding: 35px 20px;
	}

	.login-page .acr-auth-bg {
		min-height: 500px;
		padding: 35px 20px;
	}

	.login-page .auth-text h2,
	.login-page .right-content h1 {
		font-size: 30px;
	}

	.login-page .auth-text p,
	.login-page .right-content p {
		font-size: 16px;
		line-height: 28px;
	}

	.login-page .feature {
		font-size: 16px;
	}

	.login-page .btn-login {
		height: 54px;
	}

}

/***** For Register Page Css ******/

/*==================================================
WEDSPARK REGISTER PAGE
==================================================*/

.register-page {
    font-family: "Poppins", sans-serif;
    color: #333;
}

/*==================================================
MAIN CONTAINER
==================================================*/

.register-page.acr-auth-container {
    display: flex;
    max-width: 1320px;
    margin: 78px auto 0px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    min-height: 760px;
}

/*==================================================
LEFT SIDE
==================================================*/

.register-page .acr-auth-content {
    width: 48%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
    background: #fff;
}

.register-page .acr-auth-content form {
    width: 100%;
    max-width: 470px;
}

/*==================================================
HEADING
==================================================*/

.register-page .auth-text {
    margin-bottom: 35px;
}

.register-page .auth-text h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 400;
    color: #D4AF37;
    margin: 0 0 18px;
}

.register-page .auth-text p {
    font-size: 17px;
    line-height: 30px;
    color: #6b6b6b;
    margin: 0;
}

/*==================================================
FORM
==================================================*/

.register-page .form-group {
    margin-bottom: 22px;
}

.register-page .form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

/*==================================================
INPUT ICON
==================================================*/

.register-page .input-icon {
    position: relative;
}

.register-page .input-icon > i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #9d7a6d;
    font-size: 17px;
}

/*==================================================
FORM CONTROL
==================================================*/

.register-page .form-control {
    width: 100%;
    height: 56px;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding-left: 52px;
    padding-right: 50px;
    font-size: 15px;
    background: #fff;
    transition: 0.3s;
    box-shadow: none;
}

.register-page .form-control:focus {
    border-color: #965956;
    box-shadow: 0 0 0 4px rgba(150, 89, 86, 0.12);
}

.register-page .form-control::placeholder {
    color: #b0b0b0;
}

.register-page .form-control:hover {
    border-color: #c9a998;
}

/*==================================================
PASSWORD
==================================================*/

.register-page .password-box {
    position: relative;
}

.register-page .toggle-password {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
    font-size: 18px;
}

/*==================================================
BUTTON
==================================================*/

.register-page .btn-custom.secondary {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 12px;
    background: #8d103d;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    transition: 0.3s;
}

.register-page .btn-custom.secondary i {
    margin-left: 10px;
}

.register-page .btn-custom.secondary:hover {
    background: #965956;
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(105, 61, 57, 0.25);
}

/*==================================================
LOGIN LINK
==================================================*/

.register-page .login-text {
    text-align: center;
    margin-top: 25px;
    font-size: 15px;
    color: #666;
}

.register-page .login-text a {
    color: #8d103d;
    font-weight: 600;
    text-decoration: none;
}

.register-page .login-text a:hover {
    color: #965956;
}

/*==================================================
ALERTS
==================================================*/

.register-page .alert {
    border-radius: 12px;
    margin-bottom: 20px;
}

/*==================================================
RIGHT PANEL
==================================================*/

.register-page .acr-auth-bg {
    width: 52%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-page .acr-auth-bg-slider,
.register-page .acr-auth-bg-item {
    width: 100%;
    height: 100%;
}

.register-page .acr-auth-bg-item {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/*==================================================
DARK OVERLAY
==================================================*/

.register-page .acr-auth-bg-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(30, 20, 18, 0.3), rgba(30, 20, 18, 0.45));
}

/*==================================================
RIGHT CONTENT
==================================================*/

.register-page .right-content {
    position: absolute;
    bottom: 70px;
    left: 60px;
    right: 60px;
    z-index: 5;
    color: #fff;
}

.register-page .right-content h2 {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.register-page .right-content p {
    font-size: 17px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.register-page .right-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.register-page .right-content ul li {
    margin-bottom: 16px;
    font-size: 17px;
    font-weight: 500;
}

.register-page .right-content ul li i {
    color: #ffd76b;
    margin-right: 12px;
}

/*==================================================
FORM ERRORS
==================================================*/

.register-page .text-danger {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #dc3545;
}

/*==================================================
SMOOTH ANIMATION
==================================================*/

.register-page .form-control,
.register-page .btn-custom,
.register-page .input-icon i {
    transition: 0.3s ease;
}

/*==================================================
RESPONSIVE - 1200px
==================================================*/

@media (max-width: 1200px) {
    .register-page.acr-auth-container {
        margin: 20px;
    }

    .register-page .acr-auth-content {
        padding: 45px;
    }

    .register-page .right-content {
        left: 40px;
        right: 40px;
        bottom: 45px;
    }

    .register-page .auth-text h2,
    .register-page .right-content h2 {
        font-size: 40px;
    }
}

/*==================================================
RESPONSIVE - 991px
==================================================*/

@media (max-width: 991px) {
    .register-page.acr-auth-container {
        flex-direction: column;
        min-height: auto;
    }

    .register-page .acr-auth-content,
    .register-page .acr-auth-bg {
        width: 100%;
    }

    .register-page .acr-auth-content {
        padding: 40px 25px;
    }

    .register-page .acr-auth-bg {
        min-height: 500px;
    }

    .register-page .right-content {
        left: 30px;
        right: 30px;
        bottom: 35px;
    }

    .register-page .auth-text h2,
    .register-page .right-content h2 {
        font-size: 34px;
    }
}

/*==================================================
RESPONSIVE - 576px
==================================================*/

@media (max-width: 576px) {
    .register-page.acr-auth-container {
        margin: 15px;
        border-radius: 16px;
    }

    .register-page .acr-auth-content {
        padding: 30px 20px;
    }

    .register-page .auth-text h2,
    .register-page .right-content h2 {
        font-size: 25px;
    }

    .register-page .auth-text p,
    .register-page .right-content p {
        font-size: 15px;
        line-height: 28px;
    }

    .register-page .form-control {
        height: 52px;
    }

    .register-page .btn-custom.secondary {
        height: 52px;
        font-size: 16px;
    }

    .register-page .right-content {
        left: 20px;
        right: 20px;
        bottom: 25px;
    }

    .register-page .right-content ul li {
        font-size: 15px;
    }
}

/* =========================================================
   WEDSPARK VENDOR SHOWCASE
   Primary  : #550923
   Hover    : #D4AF37
   Light    : #A9365B
========================================================= */


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

.ws-vendors-section {
    position: relative;
    padding: 45px 0 35px;
    background: #ffffff;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.ws-vendors-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
}

.ws-vendors-heading-content {
    max-width: 650px;
}

.ws-vendors-eyebrow {
    display: block;
    margin-bottom: 5px;
    color: #A9365B;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.ws-vendors-heading h2 {
    margin: 0;
    color: #550923;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.2;
}

.ws-vendors-heading p {
    margin: 8px 0 0;
    color: #D4AF37;
    font-size: 19px;
    line-height: 1.6;
    font-weight: 400;
    font-family: Poppins, serif;
}

.wedspark-faq-answer,
.wedspark-faq-answer p {
    text-align: left!important;
}

/* =========================================================
   MAIN SLIDER ARROWS
========================================================= */

.ws-vendors-navigation {
    display: flex;
    gap: 8px;
}

.ws-vendors-navigation button {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #D4AF37;
    border-radius: 6px;
    background: #D4AF37;
    color: #ffffff;
    font-size: 12px;
    cursor: pointer;
    transition: all .3s ease;
}

.ws-vendors-navigation button:hover {
    background: #550923;
    border-color: #550923;

    transform: translateY(-2px);
}


/* =========================================================
   SLIDER
========================================================= */

.ws-vendor-slider {
    margin: 0 -8px;
}

.ws-vendor-slide {
    padding: 0 8px;
}


/* =========================================================
   VENDOR CARD
========================================================= */

.ws-vendor-card {
    position: relative;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e8e2e5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 14px rgba(85, 9, 35, 0.06);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.ws-vendor-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, .55);
    box-shadow: 0 14px 32px rgba(85, 9, 35, .12);
}


/* =========================================================
   IMAGE FRAME

   Important:
   Image has margin so it does NOT touch the card/header.
========================================================= */

.ws-vendor-image {
    position: relative;
    width: calc(100% - 28px);
    height: 245px;
    margin: 14px;
    overflow: hidden;
    background: #f5f1f3;
    border-radius: 7px;
}


/* Image link */

.ws-vendor-image > a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 7px;
}


/* Actual image */

.ws-vendor-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 7px;
    transition: transform .6s ease;
}


/* Image hover */

.ws-vendor-card:hover .ws-vendor-image img {
    transform: scale(1.045);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.ws-vendor-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70px;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(85, 9, 35, .28),
        rgba(85, 9, 35, 0)
    );

    opacity: 0;
    transition: opacity .3s ease;
}

.ws-vendor-card:hover .ws-vendor-image::after {
    opacity: 1;
}


/* =========================================================
   FEATURED / TOP BADGES
========================================================= */

.ws-vendor-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    display: flex;
    gap: 6px;
}

.ws-vendor-badge {
    display: inline-flex;
    align-items: center;    gap: 4px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, .96);
    border-radius: 20px;
    color: #550923;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
}

.ws-vendor-badge i {
    color: #D4AF37;
    font-size: 9px;
}


/* =========================================================
   HEART
========================================================= */

.ws-vendor-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 6;

    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, .96);
    color: #550923;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
    transition: all .3s ease;
}

.ws-vendor-heart:hover {
    background: #550923;
    color: #ffffff;

    transform: scale(1.06);
}

.ws-vendor-heart i {
    font-size: 14px;
}


/* =========================================================
   IMAGE ARROWS + DOTS
========================================================= */

.ws-image-controls {
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: 10px;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ws-image-controls button {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: #550923;
    font-size: 9px;
    cursor: pointer;
    transition: all .25s ease;
}

.ws-image-controls button:hover {
    background: #D4AF37;
    color: #ffffff;
}

.ws-image-dots {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ws-image-dots span {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .85);
}

.ws-image-dots span.active {
    width: 7px;
    height: 7px;
    background: #D4AF37;
}


/* =========================================================
   CARD BODY
========================================================= */

.ws-vendor-body {
    padding: 5px 18px 18px;
}


/* =========================================================
   VENDOR NAME
========================================================= */

.ws-vendor-body h3 {
    margin: 0 0 10px;
    min-height: 42px;
    color: #550923;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.ws-vendor-body h3 a {
    color: #550923;
    text-decoration: none;
    transition: color .25s ease;
}

.ws-vendor-body h3 a:hover {
    color: #A9365B;
}


/* =========================================================
   RATING + LOCATION
========================================================= */

.ws-vendor-meta {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    min-height: 24px;
    color: #555;
    font-size: 13px;
}

.ws-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.ws-rating i {
    color: #550923;
    font-size: 13px;
}

.ws-rating strong {
    color: #550923;

    font-size: 13px;
    font-weight: 600;
}

.ws-rating small {
    color: #777;
    font-size: 11px;
}

.ws-meta-divider {
    width: 1px;
    height: 17px;
    flex-shrink: 0;
    background: #d8d2d5;
}

.ws-location {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
    color: #666;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ws-location i {
    flex-shrink: 0;
    color: #A9365B;
    font-size: 11px;
}


/* =========================================================
   PRICE + SERVICE
========================================================= */

.ws-vendor-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 10px 0;
    border-top: 1px solid rgba(169, 54, 91, .45);
    border-bottom: 1px solid rgba(169, 54, 91, .45);
    color: #555;
    font-size: 15px;
}

.ws-vendor-info > span {
    display: inline-flex;

    align-items: center;
    gap: 6px;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ws-vendor-info i {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(169, 54, 91, .08);
    color: #A9365B;
    font-size: 10px;
}

.ws-info-divider {
    width: 1px;
    height: 20px;
    flex-shrink: 0;
    background: rgba(169, 54, 91, .45);
}


/* =========================================================
   REQUEST PRICING BUTTON
========================================================= */

.ws-request-btn {
    display: flex;

    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    height: 44px;
    margin-top: 16px;
    padding: 8px 15px;
    border: 1px solid #550923;
    border-radius: 24px;
    background: #fff8f9;
    color: #550923;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.ws-request-btn i {
    font-size: 12px;
    transition: transform .25s ease;
}

.ws-request-btn:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #ffffff;
}

.ws-request-btn:hover i {
    transform: translate(2px, -2px);
}


/* =========================================================
   RESPONSE
========================================================= */

.ws-response {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: #666;
    font-size: 15px; 
}

.ws-response i {
    color: #D4AF37;
    font-size: 10px;
}

/* =========================================================
   SLICK STRUCTURE
========================================================= */

.ws-vendor-slider .slick-list {
    margin: 0;

    padding: 5px 0 12px;
}

.ws-vendor-slider .slick-track {
    display: flex;
}

.ws-vendor-slider .slick-slide {
    height: auto;
}

.ws-vendor-slider .slick-slide > div {
    height: 100%;
}

.ws-vendor-slider .slick-dots {
    display: none !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .ws-vendors-section {
        padding: 40px 0 30px;
    }

    .ws-vendors-heading h2 {
        font-size: 25px;
    }

    .ws-vendor-image {
        height: 220px;
    }

    .ws-vendor-body {
        padding: 5px 17px 18px;
    }

    .ws-vendor-body h3 {
        font-size: 17px;
    }

    .ws-vendor-info {
        font-size: 11px;
    }

}

/* Vendors arrow */
.ws-vendor-arrow {
    margin-left: 8px;
    font-size: 10px;
    transition: transform 0.25s ease;
}


/* Mobile arrow */
@media (max-width: 991px) {

    .sigma_aside .ws-vendors-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .sigma_aside .ws-vendor-arrow {
        display: inline-block;
        margin-left: auto;
        font-size: 10px;
        color: #D4AF37;
        transition: transform 0.25s ease;
    }

    /* Rotate when submenu is open */
    .sigma_aside .ws-mobile-vendors.ws-vendors-open
    .ws-vendor-arrow {
        transform: rotate(180deg);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .ws-vendors-section {
        padding: 35px 0 30px;
    }

    .ws-vendors-heading {
        align-items: flex-start;

        margin-bottom: 22px;
    }

    .ws-vendors-heading h2 {
        font-size: 25px;
    }

    .ws-vendors-heading p {
        font-size: 13px;
    }

    .ws-vendors-navigation {
        gap: 6px;
    }

    .ws-vendors-navigation button {
        width: 38px;
        height: 38px;
    }

    .ws-vendor-slide {
        padding: 0 7px;
    }

    .ws-vendor-image {
        height: 230px;

        margin: 12px;

        width: calc(100% - 24px);
    }

    .ws-vendor-body {
        padding: 5px 16px 17px;
    }

    .ws-vendor-body h3 {
        font-size: 17px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .ws-vendors-heading {
        display: block;
    }

    .ws-vendors-navigation {
        margin-top: 15px;
    }

    .ws-vendors-heading h2 {
        font-size: 25px;
    }

    .ws-vendor-image {
        height: 235px;
    }

    .ws-vendor-meta {
        font-size: 12px;
    }

    .ws-location {
        font-size: 11px;
    }

    .ws-vendor-info {
        font-size: 11px;
    }

    .ws-request-btn {
        height: 43px;
        font-size: 12px;
    }

}
/* =========================================
   MOBILE VENDORS SUBMENU
========================================= */

@media (max-width: 991px) {

    .sigma_aside .ws-mobile-vendors > .sub-menu {
        display: none;
        margin: 0;
        padding-left: 15px;
    }

    .sigma_aside .ws-mobile-vendors.ws-vendors-open > .sub-menu {
        display: block;
    }

    .sigma_aside .ws-mobile-vendors > .sub-menu li {
        margin: 0;
    }

    .sigma_aside .ws-mobile-vendors > .sub-menu li a {
        display: block;
        padding: 8px 15px;
    }

}

/* =========================================
How It Works Section
========================================= */

.how-it-works-section {
    background: #fff;
}

.how-it-works-item {
    position: relative;
    padding: 40px 30px;
    margin: 0 8px 30px;
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    overflow: hidden;
}

/* Hover */
.how-it-works-item:hover {
    background: #a9365bd6;
    border-color: #a9365b;
    box-shadow: 0 12px 35px rgba(169, 54, 91, 0.25);
    transform: translateY(-6px);
}

/* Icon */
.how-it-works-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #a9365b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.35s ease;
}

.how-it-works-icon i {
    font-size: 28px;
}

/* Number */
.how-it-works-icon span {
    position: absolute;
    right: -4px;
    top: -4px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 50%;
    background: #fff;
    color: #a9365b;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    transition: all 0.35s ease;
}

/* Heading */
.how-it-works-item h4 {
    margin-bottom: 12px;
    font-size: 21px;
    transition: all 0.35s ease;
}

/* Description */
.how-it-works-item p {
    margin: 0 auto;
    max-width: 330px;
    line-height: 1.7;
    transition: all 0.35s ease;
}

/* Hover Text */
.how-it-works-item:hover h4,
.how-it-works-item:hover p {
    color: #fff;
}

/* Hover Icon */
.how-it-works-item:hover .how-it-works-icon {
    background: #fff;
    color: #a9365b;
}

.how-it-works-item:hover .how-it-works-icon span {
    background: #a9365b;
    color: #fff;
}

/* Closing Text */
.how-it-works-bottom {
    margin-top: 10px;
}

.how-it-works-bottom p {
    margin: 0;
    font-weight: 500;
    color: #a9365b;
}

/* Remove unwanted focus/outline */
.how-it-works-item:focus,
.how-it-works-item:active {
    outline: none;
    border-color: #eeeeee;
}

/* Mobile */
@media (max-width: 767px) {
    .how-it-works-item {
        padding: 32px 22px;
        margin: 0 0 20px;
        border-radius: 16px;
    }

    .how-it-works-icon {
        width: 68px;
        height: 68px;
    }

    .how-it-works-icon i {
        font-size: 24px;
    }

    .how-it-works-item h4 {
        font-size: 19px;
    }
}

/* =========================================
Built for Mehendi Artists
========================================= */

.built-mehendi-section {
    background: #fff;
}

.mehendi-feature-card {
    position: relative;
    padding: 35px 30px;
    background: #fff;
    border: 1px solid #f0e5e9;
    border-radius: 16px;
    text-align: center;
    overflow: hidden;
    transition: 0.3s;
}

.mehendi-feature-card:hover {
    transform: translateY(-6px);
    background: #a9365b;
    border-color: #a9365b;
    box-shadow: 0 12px 30px rgba(169, 54, 91, 0.18);
}

.mehendi-feature-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #a9365b;
    opacity: 0.5;
}

.mehendi-feature-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(169, 54, 91, 0.08);
    color: #a9365b;
    font-size: 25px;
    transition: 0.3s;
}

.mehendi-feature-card h5 {
    margin-bottom: 12px;
    transition: 0.3s;
}

.mehendi-feature-card p {
    margin: 0;
    line-height: 1.7;
    transition: 0.3s;
}

.mehendi-feature-card:hover .mehendi-feature-icon {
    background: #fff;
    color: #a9365b;
}

.mehendi-feature-card:hover .mehendi-feature-number,
.mehendi-feature-card:hover h5,
.mehendi-feature-card:hover p {
    color: #fff;
}

@media (max-width: 767px) {
    .mehendi-feature-card {
        padding: 30px 22px;
    }
}

/* =========================================
   HOW IT WORKS - PROCESS STYLE
========================================= */

.how-it-works-section {
   overflow: hidden;
}

.how-it-works-process {
   position: relative;
   padding: 20px 0 10px;
}

.process-line {
   position: absolute;
   top: 49px;
   left: 16.66%;
   width: 66.68%;
   height: 3px;
   background: linear-gradient(
      90deg,
      #A9365B 0%,
      #D9A441 50%,
      #A9365B 100%
   );
   border-radius: 10px;
   z-index: 0;
}

.process-step {
   position: relative;
   z-index: 1;
   padding: 0 35px;
}

/* Number Circle */
.step-number {
   width: 78px;
   height: 78px;
   margin: 0 auto 22px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;

   background: linear-gradient(
      135deg,
      #A9365B,
      #D9A441
   );

   box-shadow: 0 10px 25px rgba(169, 54, 91, 0.20);

   transition: all .4s ease;
}

.step-number span {
   width: 64px;
   height: 64px;
   border-radius: 50%;
   background: #fff;
   display: flex;
   align-items: center;
   justify-content: center;

   color: #A9365B;
   font-size: 25px;
   font-weight: 700;

   transition: all .4s ease;
}

/* Icon */
.step-icon {
   width: 48px;
   height: 48px;
   margin: 0 auto 18px;

   display: flex;
   align-items: center;
   justify-content: center;

   color: #A9365B;
   font-size: 35px;

   transition: all .4s ease;
}

.process-step h4 {
   margin-bottom: 12px;
   transition: all .3s ease;
}

.process-step p {
   max-width: 310px;
   margin: 0 auto;
   color: #666;
   line-height: 1.8;
}

/* Hover Animation */
.process-step:hover .step-number {
   transform: translateY(-7px) scale(1.05);
   box-shadow: 0 15px 30px rgba(169, 54, 91, 0.30);
}

.process-step:hover .step-number span {
   background: linear-gradient(
      135deg,
      #A9365B,
      #D9A441
   );
   color: #fff;
}

.process-step:hover .step-icon {
   color: #D9A441;
   transform: scale(1.15);
}

.process-step:hover h4 {
   color: #A9365B;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

   .process-line {
      top: 45px;
      left: 50%;
      width: 3px;
      height: calc(100% - 90px);

      transform: translateX(-50%);

      background: linear-gradient(
         180deg,
         #A9365B 0%,
         #D9A441 50%,
         #A9365B 100%
      );
   }

   .process-step {
      padding: 0 20px;
   }

   .step-number {
      position: relative;
      z-index: 2;
   }

}

@media (max-width: 575px) {

   .how-it-works-process {
      padding-top: 10px;
   }

   .process-step {
      padding: 0 10px;
   }

   .step-number {
      width: 70px;
      height: 70px;
   }

   .step-number span {
      width: 56px;
      height: 56px;
      font-size: 22px;
   }

   .process-step p {
      max-width: 290px;
   }

}

/* =========================================
   Wedspark Custom FAQ
========================================= */

.wedspark-faq-section {
    padding: 30px 0;
    background: #fdf7f9;
}

.wedspark-faq-heading {
    max-width: 750px;
    margin: 0 auto 45px;
}

.wedspark-faq-heading h5 {
    color: #a9365b!important;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.wedspark-faq-heading h2 {
    margin-bottom: 12px;
}

.wedspark-faq-heading p {
    color: #666;
    margin-bottom: 0;
}

/* FAQ List */

.wedspark-faq-list {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* FAQ Item */

.wedspark-faq-item {
    background: #fff;
    border: 1px solid #f0dce3;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: 0.3s ease;
}

.wedspark-faq-item:hover {
    border-color: #d99aae;
    box-shadow: 0 8px 25px rgba(169, 54, 91, 0.08);
}

/* Question */

.wedspark-faq-question {
    width: 100%;
    border: 0;
    outline: none!important;
    background: transparent;
    padding: 22px 75px 22px 25px;
    text-align: left;
    position: relative;
    cursor: pointer!important;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.wedspark-faq-question:hover {
    color: #a9365b;
}

/* Circle */

.wedspark-faq-icon {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #a9365b;
    color: #a9365b;
    background: #fff;
    font-size: 21px;
    font-weight: 400;
    transition: 0.3s ease;
}

/* Active Circle */

.wedspark-faq-item.active .wedspark-faq-icon {
    background: #a9365b;
    color: #fff;
    transform: translateY(-50%) rotate(180deg);
}

/* Answer */

.wedspark-faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.4s ease,
        opacity 0.3s ease;
}

.wedspark-faq-answer p {
    padding: 0 25px 25px;
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

/* Active Answer */

.wedspark-faq-item.active .wedspark-faq-answer {
    max-height: 500px;
    opacity: 1;
}

/* Mobile */

@media (max-width: 767px) {
    .wedspark-faq-section {
        padding: 60px 15px;
    }

    .wedspark-faq-heading {
        margin-bottom: 30px;
    }

    .wedspark-faq-heading h2 {
        font-size: 28px;
    }

    .wedspark-faq-question {
        padding: 18px 65px 18px 18px;
        font-size: 15px;
    }

    .wedspark-faq-icon {
        right: 15px;
        width: 34px;
        height: 34px;
        font-size: 19px;
    }

    .wedspark-faq-answer p {
        padding: 0 18px 20px;
        font-size: 14px;
    }
}

.mehndi-artists-banner {
    padding: 220px 0 !important;
    margin-top: 20px !important;
    background-image: url('/assets/frontend/images/mehndi-artists-top-banner.png') !important;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
} 

.mehndi-subheader {
    padding: 240px 0;
    margin-top: 80px;
}

/**** Footer Css *****/

/* =========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================= */

#ws-whatsapp-float {
    position: fixed !important;

    /* Right-middle position */
    right: 20px;
    top: 90%;
    width: 58px;
    height: 58px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 999999 !important;
    text-decoration: none !important;
    line-height: 1;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    /* Center vertically */
    transform: translateY(-50%);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================================
   WHATSAPP FONT AWESOME ICON
   ========================================================= */

#ws-whatsapp-float i {
    color: #ffffff !important;

    font-size: 30px;
    line-height: 1;

    display: block !important;

    width: auto;
    height: auto;
}


/* =========================================================
   HOVER
   ========================================================= */

#ws-whatsapp-float:hover {
    transform: translateY(-50%) scale(1.08);

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.30);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    #ws-whatsapp-float {
        width: 54px;
        height: 54px;

        right: 18px;

        top: 55%;
    }

    #ws-whatsapp-float i {
        font-size: 28px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    #ws-whatsapp-float {
        width: 52px;
        height: 52px;

        right: 16px;

        /* Slightly below center so it doesn't cover
           important top content */
        top: 65%;
    }

    #ws-whatsapp-float i {
        font-size: 27px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    #ws-whatsapp-float {
        width: 50px;
        height: 50px;

        right: 14px;

        top: 65%;
    }

    #ws-whatsapp-float i {
        font-size: 26px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

    #ws-whatsapp-float {
        width: 47px;
        height: 47px;

        right: 12px;

        top: 65%;
    }

    #ws-whatsapp-float i {
        font-size: 24px;
    }
}

/* ==========================================================
   Mehndi Artists FAQ - unique classes so theme accordion styles
   cannot conflict with other pages.
   ========================================================== */
.mehndi-faq-section {
  padding: 70px 0;
}

.bg-primary {
    background-color: #693D39 !important;
  }

.mehndi-faq-section .mehndi-faq-title {
  margin-bottom: 35px;
  text-align: center;
}

.mehndi-faq-list {
  width: 100%;
}

.mehndi-faq-item {
  margin-bottom: 16px;
  border: 1px solid #ead7dc;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.mehndi-faq-question {
  width: 100%;
  min-height: 72px;
  padding: 20px 24px;
  border: 0;
  background: #fff;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  box-shadow: none !important;
  outline: none !important;
}

.mehndi-faq-question:hover,
.mehndi-faq-question:focus {
  background: #fff;
  color: #111;
}

.mehndi-faq-toggle {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border: 1px solid #c72d59;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c72d59;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  font-family: Arial, sans-serif;
}

.mehndi-faq-answer {
  display: none;
  padding: 0 24px 22px;
}

.mehndi-faq-answer.is-open {
  display: block;
}

.mehndi-faq-answer p {
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .mehndi-faq-section {
    padding: 50px 0;
  }

  .mehndi-faq-question {
    padding: 18px;
  }

  .mehndi-faq-answer {
    padding: 0 18px 18px;
  }
}

/****** Homepage Book Your Event *****/

/* =========================================================
   WedSpark CTA Information Groups
   ========================================================= */

.ws-info-groups {
    padding-left: 25px;
}

/* Group spacing */
.ws-info-group {
    width: 100%;
}

.ws-couples-group {
    margin-bottom: 35px;
}

/* Group Heading */
.ws-info-group-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.ws-info-group-title h4 {
    margin: 0;
    color: #550923;
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
}

.small-heading {
    text-align: center!important;
}

/* Lines beside heading */
.ws-info-line {
    height: 1px;
    background: #d4af37;
    flex: 1;
    opacity: 0.7;
}

/* Information Card */
.ws-info-card {
    height: 100%;
    padding: 10px 5px 5px;
}

/* Icon */
.ws-info-card > i {
    display: block;
    margin-bottom: 12px;
    color: #e8a28b;
    font-size: 38px;
}

/* Card Heading */
.ws-info-card .acr-infographic-item-body h5 {
    margin-bottom: 8px;
    color: #d4af37;
    font-size: 18px;
    font-weight: 600;
}

/* Card Description */
.ws-info-card .acr-infographic-item-body p {
    margin-bottom: 0;
    color: #515151!important;
    line-height: 1.8;
    font-size: 16px;
	font-weight: normal;
}

/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991px) {
    .ws-info-groups {
        padding-left: 0;
        margin-top: 30px;
    }

    .ws-couples-group {
        margin-bottom: 30px;
    }
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {
    .ws-info-groups {
        padding-left: 0;
    }

    .ws-info-group-title {
        gap: 10px;
        margin-bottom: 18px;
    }

    .ws-info-group-title h4 {
        font-size: 18px;
    }

    .ws-info-line {
        background: #d4af37;
    }

    .ws-info-card {
        margin-bottom: 25px;
        text-align: center;
    }

    .ws-info-card > i {
        font-size: 35px;
    }

    .ws-info-card .acr-infographic-item-body h5 {
        font-size: 17px;
    }

    .ws-info-card .acr-infographic-item-body p {
        font-size: 16px;
    }
}

/* =========================================================
   Small Mobile
   ========================================================= */

@media (max-width: 575px) {
    .ws-info-group-title h4 {
        font-size: 17px;
    }

    .ws-info-group-title {
        gap: 8px;
    }
}

/* =========================================================
   Vendor CTA Line - Homepage Banner
   ========================================================= */

.vendor-banner-cta {
    margin-top: 18px;
    margin-bottom: 22px;
    text-align: center;
    font-size: 17px;
    line-height: 1.6;
    color: #ffffff;
}

.vendor-banner-cta span {
    font-weight: 400;
    margin-right: 4px;
}

.vendor-banner-cta strong {
    font-weight: 400;
    margin-right: 6px;
}

.vendor-banner-cta a {
    color: #D4AF37;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vendor-banner-cta a:hover {
    font-weight: 400;
    color: #D4AF37;
    text-decoration: none;
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991px) {

    .vendor-banner-cta {
        margin-top: 16px;
        margin-bottom: 20px;
        font-size: 17px;
    }
	
	.banner.banner-2 .banner-text{	 
	  margin: 0 auto 45px; 
	}
	
	.banner-2 .banner-content .banner-text,
	.banner-2 .banner-content .acr-filter-form {
		margin-bottom:20px;
	}

}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {

    .vendor-banner-cta {
        margin-top: 14px;
        margin-bottom: 18px;
        padding: 0 15px;
        font-size: 17px;
        line-height: 1.7;
    }
	
	.banner.banner-2 .banner-text{	 
	  margin: 0 auto 45px; 
	}

    .vendor-banner-cta span,
    .vendor-banner-cta strong,
    .vendor-banner-cta a {
        display: inline;
    }
	
	.banner-2 .banner-content .banner-text,
	.banner-2 .banner-content .acr-filter-form {
		margin-bottom:20px;
	}

}


/* =========================================================
   Small Mobile
   ========================================================= */

@media (max-width: 480px) {

    .vendor-banner-cta {
        margin-top: 12px;
        margin-bottom: 16px;
        padding: 0 10px;
        font-size: 17px;
        line-height: 1.8;
    }
	
	.banner.banner-2 .banner-text{	 
	  margin: 0 auto 45px; 
	}
	
	.banner-2 .banner-content .banner-text,
	.banner-2 .banner-content .acr-filter-form {
		margin-bottom:20px;
	}

}
/* =========================================================
   BUILT FOR MEHNDI ARTISTS
   Modern Wedspark Feature Section
========================================================= */

.built-Mehndi-section {
    position: relative;
    background: #fff;
    overflow: hidden;
}


/* ---------------------------------------------------------
   SECTION HEADING
--------------------------------------------------------- */

.built-mehndi-heading {
    max-width: 850px;
    margin: 0 auto 55px;
}

.built-mehndi-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: .3px;
    color: #a9365b;
}

.built-mehndi-heading h2 {
    margin: 0;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 600;
    color: #550923;
}

.built-mehndi-heading .subtitle {
    max-width: 650px;
    margin: 18px auto 0;
    font-size: 16px;
    line-height: 1.8;
    color: #566a7f;
}

p.subtitle {
    color: #3F3F3F !important;
}

.makeup-subtitle{
	color:#fff!important;
	text-align:left!important;
}

/* ---------------------------------------------------------
   SMALL DECORATIVE DIVIDER
--------------------------------------------------------- */

.built-mehndi-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 18px auto 0;
}

.built-mehndi-divider span {
    display: block;
    width: 45px;
    height: 1px;
    background: #d4af37;
}

.built-mehndi-divider i {
    font-size: 13px;
    color: #d4af37;
}


/* ---------------------------------------------------------
   FEATURES WRAPPER
--------------------------------------------------------- */

.built-mehndi-features {
    position: relative;
}


/* Connecting line on desktop */

.built-mehndi-features::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 16.5%;
    right: 16.5%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        #ead9a3,
        #d4af37,
        #ead9a3,
        transparent
    );
    z-index: 0;
}


/* ---------------------------------------------------------
   FEATURE CARD
--------------------------------------------------------- */

.Mehndi-feature-card {
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: 330px;
    padding: 32px 30px 30px;
    background: #fff;
    border: 1px solid #eee5e8;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(85, 9, 35, 0.06);
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


/* Hover */

.Mehndi-feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, .45);
    box-shadow:
        0 20px 45px rgba(85, 9, 35, .12);
}


/* ---------------------------------------------------------
   TOP AREA
--------------------------------------------------------- */

.Mehndi-feature-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}


/* Number */

.Mehndi-feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f8f1f4;
    color: #550923;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    transition: all .35s ease;
}


/* Number hover */

.Mehndi-feature-card:hover .Mehndi-feature-number {
    background: #550923;
    color: #fff;
}


/* ---------------------------------------------------------
   ICON
--------------------------------------------------------- */

.Mehndi-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(
        145deg,
        #fff8e6,
        #fdf1c9
    );
    color: #d4af37;
    font-size: 23px;
    box-shadow:0 8px 18px rgba(212, 175, 55, .15);
    transition: all .35s ease;
}


.Mehndi-feature-card:hover .Mehndi-feature-icon {
    background: #d4af37;
    color: #fff;
    transform: rotate(-5deg) scale(1.05);
}


/* ---------------------------------------------------------
   CONTENT
--------------------------------------------------------- */

.Mehndi-feature-label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #a9365b;
    text-transform: capitalize;
}


.Mehndi-feature-content h5 {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
    color: #550923;
}


.Mehndi-feature-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #566a7f;
    text-align: left!important;
}


/* ---------------------------------------------------------
   BOTTOM ARROW
--------------------------------------------------------- */

.Mehndi-feature-arrow {
    position: absolute;
    right: 28px;
    bottom: 25px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f1f4;
    color: #550923;
    font-size: 12px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all .35s ease;
}


.Mehndi-feature-card:hover .Mehndi-feature-arrow {
    opacity: 1;
    transform: translateX(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .built-mehndi-heading {
        margin-bottom: 40px;
    }

    .built-mehndi-heading h2 {
        font-size: 32px;
    }

    .built-mehndi-features::before {
        display: none;
    }

    .Mehndi-feature-card {
        min-height: 310px;
        padding: 28px 25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .built-Mehndi-section {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .built-mehndi-heading {
        margin-bottom: 30px;
    }

    .built-mehndi-eyebrow {
        font-size: 15px;
    }

    .built-mehndi-heading h2 {
        font-size: 25px;
    }

    .built-mehndi-heading .subtitle {
        font-size: 14px;
        line-height: 1.7;
        margin-top: 14px;
    }

    .built-mehndi-divider {
        margin-top: 14px;
    }

    .Mehndi-feature-card {
        min-height: auto;
        padding: 25px 22px 30px;
        border-radius: 15px;
    }

    .Mehndi-feature-top {
        margin-bottom: 25px;
    }

    .Mehndi-feature-number {
        width: 43px;
        height: 43px;
        font-size: 13px;
    }

    .Mehndi-feature-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
        border-radius: 14px;
    }

    .Mehndi-feature-content h5 {
        font-size: 19px;
    }

    .Mehndi-feature-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .Mehndi-feature-arrow {
        opacity: 1;
        transform: none;

        right: 20px;
        bottom: 20px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .built-mehndi-heading h2 {
        font-size: 25px;
    }

    .Mehndi-feature-card {
        padding: 22px 20px 28px;
    }

    .Mehndi-feature-content h5 {
        font-size: 18px;
    }

}

/* =========================================================
   WEDSPARK - GET STARTED / ENQUIRY PAGE
   Scoped CSS - does not affect other website sections
========================================================= */


/* =========================================================
   HERO / SUBHEADER
========================================================= */

.ws-enquiry-subheader {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background-position: center center;
    background-size: cover;
}

.ws-enquiry-subheader .subheader-inner {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.ws-enquiry-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: #D4AF37;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ws-enquiry-subheader h1 {
    margin-bottom: 18px;
    font-size: 46px;
    line-height: 1.2;
    font-weight: 700;
}

.ws-enquiry-hero-text {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255,255,255,.92);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   COMMON SECTION HEADING
========================================================= */

.ws-enquiry-heading {
    max-width: 760px;
    margin: 0 auto 50px;
}

.ws-enquiry-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #A9365B;
    font-size: 37px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: capitalize;
}

.ws-enquiry-heading h2 {
    margin-bottom: 14px;
    color: #550923;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 400;
}

.ws-enquiry-heading p {
    margin: 0;
    color: #566a7f;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   AUDIENCE CHOICE SECTION
========================================================= */

.ws-enquiry-choice-section {
    padding: 40px 0;
    background: #ffffff;
}

.ws-enquiry-choice-card {
    position: relative;
    height: 100%;
    min-height: 390px;
    padding: 38px 35px;
    border: 1px solid rgba(85, 9, 35, .08);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 35px rgba(85, 9, 35, .07);
    overflow: hidden;
    transition: all .35s ease;
}

.ws-enquiry-choice-card::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    right: -75px;
    top: -75px;
    border-radius: 50%;
    background: rgba(169, 54, 91, .06);
    transition: all .4s ease;
}

.ws-enquiry-choice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(85, 9, 35, .13);
}

.ws-enquiry-choice-card:hover::before {
    transform: scale(1.3);
}


/* Couple card */

.ws-enquiry-couple-card {
    border-top: 4px solid #A9365B;
}


/* Vendor card */

.ws-enquiry-vendor-card {
    border-top: 4px solid #D4AF37;
}


/* =========================================================
   CHOICE ICON
========================================================= */

.ws-enquiry-choice-icon {
    position: relative;
    z-index: 2;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 18px;
    background: rgba(169, 54, 91, .10);
    color: #A9365B;
    font-size: 25px;
    transition: all .35s ease;
}

.ws-enquiry-vendor-card .ws-enquiry-choice-icon {
    background: rgba(212, 175, 55, .15);
    color: #9b7810;
}

.ws-enquiry-choice-card:hover .ws-enquiry-choice-icon {
    transform: translateY(-3px) rotate(-4deg);
}


/* =========================================================
   CHOICE CONTENT
========================================================= */

.ws-enquiry-choice-content {
    position: relative;
    z-index: 2;
}

.ws-enquiry-card-label {
    display: block;
    margin-bottom: 8px;
    color: #A9365B;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.ws-enquiry-vendor-card .ws-enquiry-card-label {
    color: #9b7810;
}

.ws-enquiry-choice-content h3 {
    margin-bottom: 14px;
    color: #550923;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 400;
}

.ws-enquiry-choice-content > p {
    margin-bottom: 20px;
    color: #566a7f;
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   CHOICE LIST
========================================================= */

.ws-enquiry-choice-content ul {
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
}

.ws-enquiry-choice-content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #566a7f;
    font-size: 14px;
}

.ws-enquiry-choice-content ul li i {
    color: #A9365B;
    font-size: 12px;
}

.ws-enquiry-vendor-card .ws-enquiry-choice-content ul li i {
    color: #b08b17;
}


/* =========================================================
   CHOICE BUTTON
========================================================= */

.ws-enquiry-choice-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    background: #550923;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all .3s ease;
}

.ws-enquiry-choice-btn:hover {
    background: #A9365B;
    color: #ffffff !important;
    transform: translateX(3px);
}

.ws-enquiry-choice-btn i {
    transition: transform .3s ease;
}

.ws-enquiry-choice-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   COUPLE / VENDOR FORM SECTIONS
========================================================= */

.ws-enquiry-form-section {
    padding: 55px 0;
    background: #e7d9e0;
}

.ws-enquiry-vendor-section {
    padding: 55px 0;
    background: #cccccc4d;
}


/* =========================================================
   INFORMATION SIDE
========================================================= */

.ws-enquiry-info {
    padding-right: 35px;
}

.ws-enquiry-info h2 {
    margin-bottom: 18px;
    color: #550923;
    font-size: 27px;
    line-height: 1.3;
    font-weight: 400;
}

.ws-enquiry-info > p {
    margin-bottom: 30px;
    color: #566a7f;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   BENEFITS
========================================================= */

.ws-enquiry-benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}

.ws-enquiry-benefit-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(169, 54, 91, .10);
    color: #A9365B;

    font-size: 17px;
}

.ws-enquiry-benefit h5 {
    margin: 0 0 5px;
    color: #550923;
    font-size: 16px;
    font-weight: 700;
}

.ws-enquiry-benefit p {
    margin: 0;
    color: #566a7f;
    font-size: 13px;
    line-height: 1.6;
}


/* Vendor benefits */

.ws-enquiry-vendor-info .ws-enquiry-benefit-icon {
    background: rgba(212, 175, 55, .13);
    color: #9b7810;
}


/* =========================================================
   VENDOR HIGHLIGHT
========================================================= */

.ws-enquiry-vendor-highlight {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 28px;
    padding: 18px 20px;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        rgba(85, 9, 35, .06),
        rgba(212, 175, 55, .08)
    );

    border: 1px solid rgba(85, 9, 35, .08);
}

.ws-enquiry-vendor-highlight > i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #D4AF37;
    color: #550923;
    font-size: 15px;
}

.ws-enquiry-vendor-highlight strong {
    display: block;
    margin-bottom: 3px;
    color: #550923;
    font-size: 14px;
}

.ws-enquiry-vendor-highlight span {
    display: block;
    color: #566a7f;
    font-size: 12px;
}


/* =========================================================
   FORM CARD
========================================================= */

.ws-enquiry-form-card {
    padding: 35px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(85, 9, 35, .08);
    box-shadow: 0 12px 40px rgba(85, 9, 35, .08);
}


/* =========================================================
   FORM HEADER
========================================================= */

.ws-enquiry-form-header {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 30px;
    padding-bottom: 22px;

    border-bottom: 1px solid rgba(85, 9, 35, .08);
}

.ws-enquiry-form-number {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #550923;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
}

.ws-enquiry-form-header h3 {
    margin: 0 0 4px;
    color: #550923;
    font-size: 25px;
    font-weight: 400;
}

.ws-enquiry-form-header p {
    margin: 0;
    color: #7a8794;
    font-size: 13px;
}


/* =========================================================
   FORM GROUPS
========================================================= */

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

.ws-enquiry-form-card label {
    display: block;
    margin-bottom: 8px;
    color: #550923;
    font-size: 15px;
    font-weight: 600;
}

.ws-enquiry-form-card label span {
    color: #3B1A28;
    font-size: 15px;
    font-weight: 400;
}


/* =========================================================
   INPUTS / SELECT / TEXTAREA
========================================================= */

.ws-enquiry-form-card .form-control {
    width: 100%;
    min-height: 48px;
    padding: 11px 14px;
    border: 1px solid #94a3b1;
    border-radius: 9px;
    background: #ffffff;
    color: #333333;
    font-size: 13px;
    box-shadow: none;
    transition: all .25s ease;
}

.ws-enquiry-form-card .form-control::placeholder {
    color: #a6adb4;
}

.ws-enquiry-form-card .form-control:focus {
    border-color: #A9365B;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(169, 54, 91, .09);
    outline: none;
}

.ws-enquiry-form-card textarea.form-control {
    min-height: 125px;
    resize: vertical;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.ws-enquiry-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 50px;
    margin-top: 5px;
    padding: 13px 22px;
    border: 0;
    border-radius: 9px;
    background: #550923;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

.ws-enquiry-submit-btn:hover {
    background: #A9365B;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(85, 9, 35, .18);
}

.ws-enquiry-submit-btn i {
    transition: transform .3s ease;
}

.ws-enquiry-submit-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   WHY WEDSPARK
========================================================= */

.ws-enquiry-why-section {
    padding: 45px 0;
    background: #f8f6f7;
}

.ws-enquiry-why-card {
    height: 100%;
    padding: 32px 28px;
    border: 1px solid rgba(85, 9, 35, .07);
    border-radius: 18px;
    background: #cccccc4d;
    text-align: center;
    box-shadow: 0 8px 30px rgba(85, 9, 35, .05);
    transition: all .35s ease;
}

.ws-enquiry-why-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 40px rgba(85, 9, 35, .10);
}

.ws-enquiry-why-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 18px;
    background: rgba(169, 54, 91, .10);
    color: #A9365B;
    font-size: 22px;
}

.ws-enquiry-why-card h4 {
    margin-bottom: 10px;
    color: #550923;
    font-size: 18px;
    font-weight: 700;
}

.ws-enquiry-why-card p {
    margin: 0;
    color: #566a7f;
    font-size: 13px;
    line-height: 1.75;
	text-align: center !important;
}


/* =========================================================
   FINAL CTA
========================================================= */

.ws-enquiry-final-cta {
    position: relative;
    padding: 50px 20px;
    background:
        linear-gradient(
            135deg,
            #550923 0%,
            #721638 55%,
            #A9365B 100%
        );

    overflow: hidden;
}

.ws-enquiry-final-cta::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    top: -190px;
    right: -100px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
}

.ws-enquiry-final-cta::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: -150px;
    left: -70px;
    border-radius: 50%;
    background: rgba(212,175,55,.08);
}

.ws-enquiry-final-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ws-enquiry-final-content > span {
    display: inline-block;
    margin-bottom: 12px;
    color: #D4AF37;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
}

.ws-enquiry-final-content h2 {
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 400;
}

.ws-enquiry-final-content p {
    max-width: 750px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,.88);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   FINAL CTA BUTTONS
========================================================= */

.ws-enquiry-final-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.ws-enquiry-final-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 210px;
    padding: 13px 22px;
    border: 1px solid #D4AF37;
    border-radius: 8px;
    background: #D4AF37;
    color: #550923 !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all .3s ease;
}

.ws-enquiry-final-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #550923 !important;
    transform: translateY(-2px);
}
p.enquiry-text {
    color: #fff!important;
    font-size: 21px;
    text-align: center;
}

/* Outline button */

.ws-enquiry-final-btn.outline {
    background: transparent;
    color: #ffffff !important;
    border-color: rgba(255,255,255,.6);
}

.ws-enquiry-final-btn.outline:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #550923 !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .ws-enquiry-subheader {
        min-height: 380px;
        padding: 80px 20px;
    }

    .ws-enquiry-subheader h1 {
        font-size: 38px;
    }

    .ws-enquiry-choice-section,
    .ws-enquiry-form-section,
    .ws-enquiry-vendor-section,
    .ws-enquiry-why-section {
        padding: 70px 0;
    }

    .ws-enquiry-info {
        padding-right: 0;
    }

    .ws-enquiry-info h2 {
        font-size: 30px;
    }

    .ws-enquiry-form-card {
        padding: 28px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .ws-enquiry-subheader {
        min-height: 340px;
        padding: 70px 18px;
    }

    .ws-enquiry-eyebrow {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .ws-enquiry-subheader h1 {
        font-size: 29px;
        line-height: 1.3;
    }

    .ws-enquiry-hero-text {
        font-size: 14px;
        line-height: 1.7;
    }


    /* Headings */

    .ws-enquiry-heading {
        margin-bottom: 35px;
    }

    .ws-enquiry-heading h2 {
        font-size: 27px;
    }

    .ws-enquiry-heading p {
        font-size: 14px;
    }


    /* Choice cards */

    .ws-enquiry-choice-section {
        padding: 55px 0;
    }

    .ws-enquiry-choice-card {
        min-height: auto;
        padding: 28px 24px;
        border-radius: 18px;
    }

    .ws-enquiry-choice-content h3 {
        font-size: 22px;
    }


    /* Form sections */

    .ws-enquiry-form-section,
    .ws-enquiry-vendor-section {
        padding: 55px 0;
    }

    .ws-enquiry-info {
        margin-bottom: 15px;
    }

    .ws-enquiry-info h2 {
        font-size: 27px;
    }

    .ws-enquiry-info > p {
        font-size: 14px;
    }


    /* Form */

    .ws-enquiry-form-card {
        padding: 24px 20px;
        border-radius: 17px;
    }

    .ws-enquiry-form-header {
        align-items: flex-start;
    }

    .ws-enquiry-form-number {
        flex: 0 0 45px;
        width: 45px;
        height: 45px;
        border-radius: 12px;
        font-size: 15px;
    }

    .ws-enquiry-form-header h3 {
        font-size: 18px;
    }


    /* Why section */

    .ws-enquiry-why-section {
        padding: 55px 0;
    }

    .ws-enquiry-why-card {
        padding: 27px 22px;
    }


    /* Final CTA */

    .ws-enquiry-final-cta {
        padding: 65px 18px;
    }

    .ws-enquiry-final-content h2 {
        font-size: 28px;
    }

    .ws-enquiry-final-content p {
        font-size: 14px;
    }

    .ws-enquiry-final-buttons {
        flex-direction: column;
    }

    .ws-enquiry-final-btn {
        width: 100%;
        min-width: 0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .ws-enquiry-subheader h1 {
        font-size: 26px;
    }

    .ws-enquiry-choice-icon {
        width: 58px;
        height: 58px;
        border-radius: 15px;
        font-size: 21px;
    }

    .ws-enquiry-benefit {
        gap: 12px;
    }

    .ws-enquiry-benefit-icon {
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        border-radius: 12px;
        font-size: 15px;
    }

    .ws-enquiry-form-card {
        padding: 20px 16px;
    }

}

/* =========================================================
   WEDSPARK GLOBAL TYPOGRAPHY
   ---------------------------------------------------------
   Paragraphs:
   - Inter
   - 16px
   - #3F3F3F
   - Left aligned

   Headings:
   - Poppins
   - #D4AF37
   ========================================================= */

p {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    line-height: 28px;
    color: #3F3F3F !important;
    text-align: center !important;
}

/* Keep all headings consistent throughout Wedspark */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif !important;
    color: #D4AF37 !important;
}

/* Keep paragraph text readable on dark/background-image sections */
.login-page .right-content p,
.register-page .right-content p,
blockquote p,
.cta p,
.cta.cta-1 p,
.cta.cta-2 p,
.sigma_footer p,
.sigma_footer.custom-footer p,
.sigma_footer.custom-footer .custom-newsletter p,
.sigma_footer.custom-footer .custom-footer-bottom p {
    color: #fff !important;
}

/* Required field asterisk */
.ws-required {
    color: #dc3545 !important;
    font-weight: 700;
    margin-left: 2px;
}

/* Optional label text */
.ws-optional {
    font-weight: 400;
    color: #777;
    font-size: 13px;
}

/* Privacy checkbox */
.ws-enquiry-privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 0;
}

.ws-enquiry-privacy-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 5px;
    flex: 0 0 16px;
    cursor: pointer;
}

.ws-enquiry-privacy-check span {
    line-height: 24px;
}

.ws-enquiry-privacy-check a {
    color: #550923;
    font-weight: 600;
    text-decoration: underline;
}

.ws-enquiry-privacy-check a:hover {
    color: #D4AF37;
}
p.trending {
    color: #3F3F3F!important;
    text-align: left!important;
}
/* =========================================================
   ENQUIRY AJAX RESPONSE
========================================================= */

.ws-enquiry-response {
    display: none;
    margin-bottom: 20px;
    padding: 14px 18px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 24px;
}

.ws-enquiry-response.success {
    display: block;
    color: #155724;
    background: #d4edda;
    border: 1px solid #c3e6cb;
}

.ws-enquiry-response.error {
    display: block;
    color: #721c24;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
}

.ws-enquiry-response.loading {
    display: block;
    color: #550923;
    background: #f8f6f7;
    border: 1px solid #ddd;
}

.ws-enquiry-response i {
    margin-right: 7px;
}

.post-content p {
	text-align: left!important;
	font-size: 16px;
	color: #3f3f3f;
}
.post-content p,
.post-content li {
	text-align: left;
	font-size: 16px;
	color: #3F3F3F;
}
.text-danger p {
    color: #dc3545!important;
    font-size: 15px!important;
    margin: 5px 0 0;
    line-height: 1.4;
    text-align: left!important;
    font-weight: bold;
}

/* =========================================================
   VENDOR PROFILE - COMPLETE FINAL DESIGN
========================================================= */

:root {
    --vendor-primary: #550923;
    --vendor-primary-hover: #54312e;
    --vendor-primary-light: #faf3f2;
    --vendor-heading: #111111;
    --vendor-text: #333333;
    --vendor-muted: #555555;
    --vendor-border: #dedede;
    --vendor-bg: #ffffff;
}

/* =========================================================
   GLOBAL
========================================================= */

.vendor-profile-page {
    background: #fff;
    color: var(--vendor-text);
    margin-top: 40px;
}

.vendor-profile-page *,
.vendor-profile-page *::before,
.vendor-profile-page *::after {
    box-sizing: border-box;
}

.vendor-profile-page h1,
.vendor-profile-page h2,
.vendor-profile-page h3,
.vendor-profile-page h4,
.vendor-profile-page h5,
.vendor-profile-page h6 {
    color: #d4af37;
}

.vendor-profile-page p {
    color: var(--vendor-muted);
    font-size: 15px;
    line-height: 1.75;
}

/* =========================================================
   BACK LINK
========================================================= */

.vendor-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #444;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
    text-decoration: none !important;
}

.vendor-back-link:hover {
    color: var(--vendor-primary);
}

/* =========================================================
   GALLERY LIGHTBOX
========================================================= */

.ws-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.94);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ws-lightbox.is-open {
    display: flex;
    opacity: 1;
}

.ws-lightbox-content {
    position: relative;
    width: min(1100px, 94vw);
    height: min(760px, 90vh);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ws-lightbox-image {
    max-width: 100%;
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    user-select: none;
}

.ws-lightbox-close,
.ws-lightbox-prev,
.ws-lightbox-next {
    position: absolute;
    z-index: 3;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(5px);
}

.ws-lightbox-close:hover,
.ws-lightbox-prev:hover,
.ws-lightbox-next:hover {
    background: #a9365b;
    transform: scale(1.08);
}

.ws-lightbox-close {
    top: 0;
    right: 0;
    font-size: 20px;
}

.ws-lightbox-prev {
    left: -65px;
    top: 50%;
    transform: translateY(-50%);
}

.ws-lightbox-next {
    right: -65px;
    top: 50%;
    transform: translateY(-50%);
}

.ws-lightbox-prev:hover,
.ws-lightbox-next:hover {
    transform: translateY(-50%) scale(1.08);
}

.ws-lightbox-counter {
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.ws-gallery-lightbox-trigger,
.vendor-gallery-overlay {
    cursor: pointer;
}

/* =========================================================
   LIGHTBOX MOBILE
========================================================= */

@media (max-width: 767px) {
    .ws-lightbox {
        padding: 15px;
    }

    .ws-lightbox-content {
        width: 100%;
        height: 100%;
    }

    .ws-lightbox-image {
        max-width: 94vw;
        max-height: 80vh;
    }

    .ws-lightbox-close {
        top: 5px;
        right: 5px;
    }

    .ws-lightbox-prev,
    .ws-lightbox-next {
        width: 40px;
        height: 40px;
        top: auto;
        bottom: 10px;
        transform: none;
    }

    .ws-lightbox-prev {
        left: 15px;
    }

    .ws-lightbox-next {
        right: 15px;
    }

    .ws-lightbox-prev:hover,
    .ws-lightbox-next:hover {
        transform: scale(1.08);
    }

    .ws-lightbox-counter {
        bottom: 22px;
    }
}

/* =========================================================
   GALLERY
   MAIN IMAGE + 4 SIDE IMAGES
========================================================= */

.vendor-gallery {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 6px;

    /*
     * Reduced from 520px.
     * Keeps the gallery compact on desktop.
     */
    height: 470px;

    overflow: hidden;
    border-radius: 10px;
    background: #f3f3f3;
}

/* =========================================================
   MAIN GALLERY IMAGE
========================================================= */

.vendor-gallery-main {
    position: relative;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    background: #f3f3f3;
}

.vendor-gallery-main img {
    width: 100%;
    height: 100%;
    display: block;

    /*
     * CONTAIN keeps the important part of portrait
     * and differently-sized vendor images visible.
     */
    object-fit: contain;
    object-position: center;
    background: #a9365ba3;
    transform: scale(1);
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

/* =========================================================
   SIDE GALLERY
========================================================= */

.vendor-gallery-side {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 6px;

    min-width: 0;
    min-height: 0;
}

/* =========================================================
   SIDE IMAGE
========================================================= */

.vendor-gallery-item {
    position: relative;

    min-width: 0;
    min-height: 0;

    overflow: hidden;

    background: #f3f3f3;

    transition: box-shadow 0.35s ease;
}

.vendor-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;

    /*
     * Side images remain COVER so all four tiles
     * maintain the same clean shape.
     */
    object-fit: cover;
    object-position: center;

    transform: scale(1);

    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

/* =========================================================
   IMAGE HOVER EFFECT
========================================================= */

.vendor-gallery-main:hover img,
.vendor-gallery-item:hover img {
    transform: scale(1.04);
    filter: brightness(0.92);
}

/* =========================================================
   SOFT HOVER OVERLAY
========================================================= */

.vendor-gallery-main::after,
.vendor-gallery-item::after {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(169, 54, 91, 0);

    transition: background 0.35s ease;

    pointer-events: none;
}

.vendor-gallery-main:hover::after,
.vendor-gallery-item:hover::after {
    background: rgba(169, 54, 91, 0.08);
}

/* =========================================================
   KEEP GALLERY CONTROLS ABOVE OVERLAY
========================================================= */

.vendor-gallery-main .vendor-photo-count,
.vendor-gallery-item .vendor-gallery-overlay {
    z-index: 2;
}

/* =========================================================
   SIDE IMAGE HOVER
========================================================= */

.vendor-gallery-item:hover {
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.45);
}

/* =========================================================
   EMPTY GALLERY ITEM
========================================================= */

.vendor-gallery-item.is-empty {
    display: none;
}

/* =========================================================
   MORE PHOTOS OVERLAY
   Example: +7
========================================================= */

.vendor-gallery-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.52);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 28px;
    font-weight: 700;

    cursor: pointer;

    transition: background 0.3s ease;
}

.vendor-gallery-overlay:hover {
    background: rgba(0, 0, 0, 0.62);
}

/* =========================================================
   PHOTO COUNT BUTTON
========================================================= */

.vendor-photo-count {
    position: absolute;

    bottom: 15px;
    left: 15px;

    z-index: 2;

    background: rgba(255, 255, 255, 0.95);

    color: #222;

    padding: 10px 15px;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 600;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.vendor-photo-count i {
    color: var(--vendor-primary);
    margin-right: 6px;
}

/* =========================================================
   VENDOR HEADER
========================================================= */

.vendor-header-section {
    padding-top: 25px;
}

.vendor-header-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.vendor-header-info {
    flex: 1;
    min-width: 0;
}

.vendor-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vendor-title-row h1 {
    margin: 0;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
}

.vendor-save-btn {
    width: 38px;
    height: 38px;

    border: 0;
    background: transparent;

    color: #777;

    font-size: 20px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.vendor-save-btn:hover {
    color: var(--vendor-primary);
}

/* =========================================================
   RATING
========================================================= */

.vendor-rating-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 9px;
}

.vendor-rating-stars {
    display: flex;
    gap: 2px;
}

.vendor-rating-stars i {
    color: #e5a400;
    font-size: 16px;
}

.vendor-rating-text {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.vendor-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    background: #eaf8ef;
    color: #218448;

    padding: 5px 10px;

    border-radius: 20px;

    font-size: 12px;
    font-weight: 600;
}

/* =========================================================
   META
========================================================= */

.vendor-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.vendor-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: #555;

    font-size: 14px;
    font-weight: 500;
}

.vendor-meta-item i {
    color: var(--vendor-primary);
    font-size: 13px;
}

.vendor-meta-dot {
    color: #aaa;
}

/* =========================================================
   PRICE
========================================================= */

.vendor-price {
    margin-top: 13px;

    color: #333;

    font-size: 14px;
}

.vendor-price strong {
    color: #111;

    font-size: 16px;
    font-weight: 700;
}

/* =========================================================
   TOP ACTION BUTTONS
   WHATSAPP | CALL | REQUEST QUOTE
========================================================= */

.vendor-action-buttons {
    display: flex;
    align-items: center;
    gap: 12px;

    flex-shrink: 0;

    padding-top: 30px;
}

.vendor-action-btn {
    min-width: 125px;
    height: 45px;

    padding: 0 18px;

    border-radius: 5px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none !important;

    transition: all 0.3s ease;
}

/* =========================================================
   WHATSAPP
========================================================= */

.vendor-action-whatsapp {
    color: #159447;
    border: 1px solid #39b86c;
    background: #fff;
}

.vendor-action-whatsapp:hover {
    background: #159447;
    color: #fff;
}

/* =========================================================
   CALL
========================================================= */

.vendor-action-call {
    color: #333;
    border: 1px solid #550923;
    background: #fff;
}

.vendor-action-call:hover {
    background: #d4af37;
    color: #fff;
}

/* =========================================================
   REQUEST QUOTE
========================================================= */

.vendor-action-quote {
    color: #fff;
    background: #550923;
}

.vendor-action-quote:hover {
    background: #d4af37;
    color: #fff;
}

/* =========================================================
   TABS
========================================================= */

.vendor-tabs {
    display: flex;
    gap: 35px;

    border-bottom: 1px solid #ddd;

    margin-top: 25px;
}

.vendor-tab {
    position: relative;

    padding: 14px 5px 15px;

    color: #444;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none !important;
}

.vendor-tab:hover {
    color: var(--vendor-primary);
}

.vendor-tab.active {
    color: var(--vendor-primary);
    font-weight: 700;
}

.vendor-tab.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -1px;

    height: 3px;

    background: var(--vendor-primary);

    border-radius: 3px 3px 0 0;
}

/* =========================================================
   MAIN CONTENT
========================================================= */

.vendor-main-section {
    padding-top: 28px;
}

.vendor-content-card {
    width: 100%;

    border: 1px solid var(--vendor-border);
    border-radius: 7px;

    padding: 28px;

    background: #fff;
}

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

.vendor-section {
    padding-bottom: 30px;
    margin-bottom: 30px;

    border-bottom: 1px solid #ddd;
}

.vendor-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.vendor-section-title {
    display: flex;
    align-items: center;

    gap: 12px;

    margin: 0 0 18px;

    color: #111;

    font-size: 21px;
    line-height: 1.4;

    font-weight: 700;
}

.vendor-section-title i {
    color: #550923;

    font-size: 20px;

    width: 25px;

    text-align: center;
}

.vendor-about-text {
    color: #444;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
	text-align: left !important;
}

/* =========================================================
   SERVICES
========================================================= */

.vendor-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.vendor-service-card {
    min-height: 160px;
    border: 1px solid #ddd;
    border-radius: 7px;
    padding: 20px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.vendor-service-card:hover {
    border-color: var(--vendor-primary);
    transform: translateY(-2px);
}

.vendor-service-card > i {
    color: var(--vendor-primary);
    font-size: 27px;
    margin-bottom: 12px;
}

.vendor-service-card h6 {
    margin: 0 0 7px;
    color: #111;
    font-size: 14px;
    font-weight: 700;
}

.vendor-service-price {
    color: #111;
    font-size: 15px;
    font-weight: 700;
}

.vendor-service-start {
    color: #555;
    font-size: 13px;
    margin-top: 5px;
}

/* =========================================================
   WHY CHOOSE US
========================================================= */

.vendor-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.vendor-why-item {
    background: var(--vendor-primary-light);
    border-radius: 6px;
    padding: 20px 12px;
    text-align: center;
}

.vendor-why-item i {
    color: #550923;
    font-size: 24px;
    margin-bottom: 10px;
}

.vendor-why-item strong {
    display: block;
    color: #111;
    font-size: 14px;
    font-weight: 700;
}

/* =========================================================
   BOTTOM AREA
   LEFT = SERVICE AREAS + SHARE PROFILE
   RIGHT = SEND MESSAGE
========================================================= */

.vendor-bottom-contact {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 25px;
    margin-top: 30px;
}

/* =========================================================
   LEFT COLUMN
========================================================= */

.vendor-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* =========================================================
   SERVICE AREAS
========================================================= */

.vendor-service-area-card {
    border: 1px solid #ddd;
    border-radius: 7px;
    padding: 25px;
    background: #fff;
}

.vendor-area-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.vendor-area-box {
    border: 1px solid #ddd;
    border-radius: 7px;
    padding: 18px;
    display: flex;
    gap: 15px;
}

.vendor-area-box > i {
    color: var(--vendor-primary);
    font-size: 22px;
    margin-top: 3px;
}

.vendor-area-box strong {
    display: block;
    color: #111;
    font-size: 14px;
    margin-bottom: 6px;
}

.vendor-area-box span {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* =========================================================
   SHARE PROFILE
========================================================= */

.vendor-share-card {
    border: 1px solid #ddd;
    border-radius: 7px;
    padding: 25px;
    background: #fff;
    margin: 20px;
}

.vendor-sidebar-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 8px;
    color: #111;
    font-size: 19px;
    font-weight: 700;
}

.vendor-sidebar-title i {
    color: var(--vendor-primary);
}

.vendor-sidebar-subtitle {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
	text-align: left !important;
}

.vendor-share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.vendor-share-btn {
    width: 42px;
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    background: #fff;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.vendor-share-btn:hover {
    color: var(--vendor-primary);
    border-color: var(--vendor-primary);
}

/* =========================================================
   SEND MESSAGE CARD
========================================================= */

.vendor-message-card {
    border: 1px solid #ddd;
    border-radius: 7px;
    padding: 25px;
    background: #fff;
    margin: 20px;
}

/* =========================================================
   SEND MESSAGE FORM
   DESKTOP:
   ROW 1 = NAME | PHONE | EMAIL
   ROW 2 = DATE | MESSAGE
   ROW 3 = SEND BUTTON
========================================================= */

.vendor-message-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.vendor-message-form .form-group {
    margin: 0;
    width: 100%;
}

/* =========================================================
   FORM INPUTS
========================================================= */

.vendor-message-form .form-control {
    width: 100%;
    min-height: 46px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 13px;
    font-size: 14px;
    color: #333;
    background: #fff;
}

.vendor-message-form .form-control::placeholder {
    color: #777;
}

.vendor-message-form .form-control:focus {
    border-color: var(--vendor-primary);
    box-shadow: 0 0 0 2px rgba(105, 61, 57, 0.08);
    outline: none;
}

/* =========================================================
   DATE FIELD
========================================================= */

.vendor-message-form .date-field {
    grid-column: 1;
}

/* =========================================================
   MESSAGE FIELD
========================================================= */

.vendor-message-form .message-field {
    grid-column: 2 / 4;
}

.vendor-message-form .message-field .form-control {
    min-height: 110px;
    height: 110px;
    resize: vertical;
}

/* =========================================================
   SUBMIT FIELD
========================================================= */

.vendor-message-form .submit-field {
    grid-column: 1 / -1;
}

/* =========================================================
   SUBMIT BUTTON
========================================================= */

.vendor-submit-btn {
    width: 100%;
    min-height: 46px;
    border: 0;
    border-radius: 5px;
    background: var(--vendor-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vendor-submit-btn:hover {
    background: var(--vendor-primary-hover);
}

/* =========================================================
   RELATED VENDORS
========================================================= */

.vendor-related-section {
    margin-top: 40px;
}

.vendor-related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.vendor-related-header h4 {
    margin: 0;
    font-size: 21px;
    font-weight: 700;
}

.vendor-view-all {
    color: var(--vendor-primary);
    font-size: 14px;
    font-weight: 600;
}

.vendor-related-card {
    border: 1px solid #ddd;
    border-radius: 7px;
    overflow: hidden;
    background: #fff;
    height: 100%;
}

.vendor-related-image {
    height: 180px;
    overflow: hidden;
}

.vendor-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vendor-related-body {
    padding: 15px;
}

.vendor-related-body h5 {
    font-size: 16px;
    margin: 0 0 7px;
}

.vendor-related-body h5 a {
    color: #111;
}

.vendor-related-body p {
    margin: 0 0 10px;
    font-size: 13px;
}

/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 991px) {
    .vendor-header-main {
        flex-direction: column;
        align-items: stretch;
    }

    .vendor-action-buttons {
        width: 100%;
        padding-top: 10px;
    }

    .vendor-action-btn {
        flex: 1;
    }

    .vendor-services-grid,
    .vendor-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Bottom section becomes one column */

    .vendor-bottom-contact {
        grid-template-columns: 1fr;
    }

    /* Message form tablet layout */

    .vendor-message-form {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Name + Phone */

    .vendor-message-form .form-group:nth-child(1),
    .vendor-message-form .form-group:nth-child(2) {
        grid-column: auto;
    }

    /* Email full width */

    .vendor-message-form .form-group:nth-child(3) {
        grid-column: 1 / -1;
    }

    /* Date left */

    .vendor-message-form .date-field {
        grid-column: 1;
    }

    /* Message right */

    .vendor-message-form .message-field {
        grid-column: 2;
    }

    /* Submit full width */

    .vendor-message-form .submit-field {
        grid-column: 1 / -1;
    }

    /* =====================================================
       GALLERY TABLET
    ===================================================== */

    .vendor-gallery {
        height: 420px;
    }
}

/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 767px) {
    .vendor-profile-page {
        margin-top: 20px;
    }

    /* =====================================================
       GALLERY MOBILE
    ===================================================== */

    .vendor-gallery {
        height: 360px;

        grid-template-columns: 1.35fr 1fr;

        gap: 5px;
    }

    .vendor-gallery-side {
        gap: 5px;
    }

    .vendor-title-row h1 {
        font-size: 26px;
    }

    .vendor-tabs {
        gap: 20px;

        overflow-x: auto;

        flex-wrap: nowrap;
    }

    .vendor-tab {
        white-space: nowrap;
    }

    .vendor-content-card {
        padding: 20px;
    }

    .vendor-area-grid {
        grid-template-columns: 1fr;
    }

    /* Message form one column */

    .vendor-message-form {
        grid-template-columns: 1fr;
    }

    .vendor-message-form .form-group:nth-child(1),
    .vendor-message-form .form-group:nth-child(2),
    .vendor-message-form .form-group:nth-child(3),
    .vendor-message-form .date-field,
    .vendor-message-form .message-field,
    .vendor-message-form .submit-field {
        grid-column: 1 / -1;
    }

    .vendor-message-form .message-field .form-control {
        min-height: 110px;

        height: 110px;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {
    /* =====================================================
       SMALL MOBILE GALLERY
    ===================================================== */

    .vendor-gallery {
        height: 330px;

        grid-template-columns: 1.35fr 1fr;

        gap: 4px;
    }

    .vendor-gallery-side {
        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: repeat(2, minmax(0, 1fr));

        gap: 4px;
    }

    /*
     * On very small screens only two side images
     * are shown to keep the gallery compact.
     */

    .vendor-gallery-item:nth-child(n + 3) {
        display: none;
    }

    .vendor-photo-count {
        bottom: 8px;

        left: 8px;

        padding: 7px 9px;

        font-size: 11px;
    }

    .vendor-title-row h1 {
        font-size: 23px;
    }

    .vendor-action-buttons {
        display: flex;

        width: 100%;

        gap: 8px;
    }

    .vendor-action-btn {
        min-width: 0;

        width: 100%;
    }

    .vendor-action-quote {
        grid-column: 1 / -1;
    }

    .vendor-services-grid,
    .vendor-why-grid {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .vendor-service-card {
        min-height: 145px;
    }

    .vendor-section-title {
        font-size: 19px;
    }

    .vendor-about-text {
        font-size: 14px;
    }

    .vendor-content-card {
        padding: 15px;
    }

    .vendor-service-area-card,
    .vendor-share-card,
    .vendor-message-card {
        padding: 18px;
    }
}

.about-us-section{
	text-align:left!important;
}