* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Nunito", sans-serif;
}

body {
	background: #111;
}

/* HEADER */

header {
	width: 100%;
	background: #ff1979;
	position: relative;
}

.navbar {
	max-width: 1400px;
	margin: auto;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 30px;
}

/* LOGO */

.logo img {
	height: 65px;
}

/* DESKTOP MENU */

.nav-menu {
	display: flex;
	list-style: none;
	gap: 50px;
}

.nav-menu a {
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
}

.nav-menu .active {
	background: rgba(255, 255, 255, 0.15);
	padding: 10px 25px;
	border-radius: 30px;
}

/* TOGGLE BUTTON */

.menu-toggle {
	width: 40px;
	height: 40px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: relative;
	z-index: 9999;
}

.menu-toggle i {
	position: absolute;
	color: #fff;
	font-size: 30px;
	transition: 0.4s ease;
}

.close-icon {
	opacity: 0;
	transform: rotate(180deg);
}

.menu-toggle.active .open-icon {
	opacity: 0;
	transform: rotate(180deg);
}

.menu-toggle.active .close-icon {
	opacity: 1;
	transform: rotate(0);
}

/* MOBILE MENU */

.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 300px;
	height: 100vh;
	background: #ff1979;
	transition: 0.4s;
	z-index: 999;
	padding-top: 90px;
}

.mobile-menu.active {
	right: 0;
}

.mobile-menu ul {
	list-style: none;
}

.mobile-menu ul li a {
	display: block;
	padding: 18px 25px;
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* OVERLAY */

.overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	z-index: 998;
}

.overlay.active {
	opacity: 1;
	visibility: visible;
}

/* RESPONSIVE */

@media (max-width: 991px) {
	.nav-menu {
		display: none;
	}

	.menu-toggle {
		display: flex;
	}

	.logo img {
		height: 55px;
	}
}

@media (max-width: 500px) {
	.mobile-menu {
		width: 100%;
	}

	.navbar {
		height: 85px;
		padding: 0 15px;
	}
}

/* Hero Section Css */
.hero {
	position: relative;
	min-height: 100vh;
	background: url("https://x.uuu.cam/pics/viparea/sunny-leone/bule-solo-abusemecom/hd-sunny-leone-4.jpg")
		center center no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 120px 20px;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(80, 0, 0, 0.55);
}

.hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1100px;
}

.search-box {
	max-width: 1050px;
	margin: 0 auto 60px;
	text-align: left;
}

.search-box label {
	display: block;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 15px;
}

.search-row {
	display: flex;
}

.search-row select {
	flex: 1;
	height: 60px;
	border: none;
	outline: none;
	padding: 0 20px;
	font-size: 15px;
	font-weight: 600;
}

.search-row button {
	width: 90px;
	border: none;
	background: #ff1979;
	color: #fff;
	cursor: pointer;
	font-size: 25px;
}

.hero p {
	color: #fff;
	font-size: 22px;
	max-width: 400px;
	margin: auto;
}

.hero-btns {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
	min-width: 280px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 15px;
	color: #fff;
	transition: 0.3s;
}

.btn-primary {
	background: #ff1979;
}

.btn-secondary {
	border: 1px solid #ff1979;
}

.btn-primary:hover,
.btn-secondary:hover {
	transform: translateY(-3px);
}

/* Welcome section css ===========================================*/
.welcome-section {
	background: #000;
	padding: 80px 0;
}

.welcome-section .container {
	width: 90%;
	max-width: 1400px;
	margin: auto;
}

.welcome-section h2 {
	color: #fff;
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 50px;
	line-height: 1.4;
	font-family: "Nunito", sans-serif;
}

.welcome-section p {
	color: #fff;
	font-size: 18px;
	line-height: 2;
	margin-bottom: 28px;
	font-weight: 400;
	font-family: "Nunito", sans-serif;
}

.welcome-section p span {
	color: #ff1979;
	font-weight: 700;
}

/* Tablet */

@media (max-width: 991px) {
	.welcome-section {
		padding: 60px 0;
	}

	.welcome-section h2 {
		font-size: 32px;
		margin-bottom: 35px;
	}

	.welcome-section p {
		font-size: 18px;
		line-height: 1.9;
	}
}

/* Mobile */

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

	.welcome-section .container {
		width: 92%;
	}

	.welcome-section h2 {
		font-size: 24px;
		margin-bottom: 25px;
	}

	.welcome-section p {
		font-size: 16px;
		line-height: 1.8;
		text-align: left;
		margin-bottom: 20px;
		text-align: justify;
	}
}

/* Footer Fixed Call to action butoon css */
.mobile-contact-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	display: none;
	z-index: 99999;
}

.mobile-contact-bar a {
	width: 50%;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-decoration: none;
	color: #fff;
	font-family: "Nunito", sans-serif;
	font-size: 15px;
	font-weight: 700;
}

.call-btn {
	background: #ff1979;
}

.whatsapp-btn {
	background: #32c84a;
}

.mobile-contact-bar i {
	font-size: 18px;
}

/* Show Only Mobile */

@media (max-width: 768px) {
	.mobile-contact-bar {
		display: flex;
	}

	body {
		padding-bottom: 60px;
	}
}

/* Hide On Desktop */

@media (min-width: 769px) {
	.mobile-contact-bar {
		display: none !important;
	}
}

/* images Section css */
.escort-gallery {
	background: #121212;
	padding: 80px 0;
}

.container {
	width: min(1400px, 92%);
	margin: auto;
}

.section-heading {
	text-align: center;
	margin-bottom: 50px;
}

.section-heading h1 {
	color: #fff;
	font-size: clamp(26px, 4vw, 30px);
	margin-bottom: 20px;
	line-height: 1.3;
	font-weight: 700;
}

.section-heading p {
	color: #bdbdbd;
	font-size: clamp(15px, 2vw, 20px);
	line-height: 1.8;
	max-width: 1000px;
	margin: auto;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 25px;
}

.escort-card {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}

.escort-card img {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
	display: block;
	transition: 0.5s;
}

.escort-card:hover img {
	transform: scale(1.08);
}

.verified {
	position: absolute;
	top: 15px;
	left: 15px;
	background: #2fa52b;
	color: #fff;
	padding: 2px 6px;
	border-radius: 5px;
	font-weight: 700;
	z-index: 5;
	font-size: 12px;
}

.escort-info {
	position: absolute;
	left: 0;
	bottom: -100%;
	width: 100%;
	background: #ff1979;
	color: #fff;
	padding: 15px;
	transition: 0.5s;
}

.escort-card:hover .escort-info {
	bottom: 0;
}

.escort-info h3 {
	font-size: 24px;
	font-weight: 700;
}

.escort-info p {
	font-size: 18px;
	font-weight: 500;
}

/* Tablet */

@media (max-width: 991px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile */

@media (max-width: 768px) {
	.escort-gallery {
		padding: 50px 0;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.escort-info {
		bottom: 0; /* mobile me permanently visible */
		padding: 18px;
	}

	.escort-info h3 {
		font-size: 15px;
	}

	.escort-info p {
		font-size: 12px;
	}
}

/* Service Section Css */
.services-section {
	background: #050505;
	padding: 100px 0;
	font-family: "Nunito", sans-serif;
}

.services-section .container {
	width: 90%;
	max-width: 1300px;
	margin: auto;
}

.section-title {
	text-align: center;
	margin-bottom: 80px;
}

.section-title h2 {
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 25px;
	line-height: 1.2;
}

.section-title p {
	max-width: 700px;
	margin: auto;
	color: #8e8e9a;
	font-size: 18px;
	line-height: 1.8;
}

.service-item {
	margin-bottom: 60px;
}

.service-item h3 {
	color: #ff1979;
	font-size: 25px;
	font-weight: 700;
}

.service-item p {
	color: #e7e7e7;
	font-size: 18px;
	line-height: 1.9;
	font-weight: 400;
}

/* Tablet */

@media (max-width: 991px) {
	.services-section {
		padding: 80px 0;
	}

	.section-title {
		margin-bottom: 60px;
	}

	.section-title h2 {
		font-size: 48px;
	}

	.section-title p {
		font-size: 18px;
	}

	.service-item h3 {
		font-size: 28px;
	}

	.service-item p {
		font-size: 20px;
	}
}

/* Mobile */

@media (max-width: 767px) {
	.services-section {
		padding: 60px 0;
	}

	.container {
		width: 92%;
	}

	.section-title {
		margin-bottom: 40px;
	}

	.section-title h2 {
		font-size: 30px;
	}

	.section-title p {
		font-size: 15px;
		line-height: 1.7;
	}

	.service-item {
		margin-bottom: 40px;
	}

	.service-item h3 {
		font-size: 22px;
		margin-bottom: 15px;
	}

	.service-item p {
		font-size: 15px;
		line-height: 1.8;
		text-align: justify;
	}
}

/* CTA Banner section Css ------------------------------------*/
.cta-banner {
	position: relative;
	min-height: 740px;

	background:
		linear-gradient(rgba(180, 0, 0, 0.813), rgba(180, 0, 0, 0.632)),
		url("https://cdni.lamalinks.com/460/1/61/77673135/77673135_011_7f2a.jpg");

	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;

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

	padding: 40px 20px;
}

.banner-content {
	position: relative;
	z-index: 2;
	width: 90%;
	max-width: 1200px;
}

.banner-content h2 {
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 30px;
}

.banner-content p {
	color: #fff;
	font-size: 15px;
	line-height: 1.7;
	max-width: 950px;
	margin: 0 auto;
}

.banner-btns {
	margin-top: 60px;
	display: flex;
	justify-content: center;
	gap: 25px;
	flex-wrap: wrap;
}

.btn-pink,
.btn-border {
	min-width: 230px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	text-decoration: none;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	transition: 0.4s;
}

.btn-pink {
	background: #ff1979;
}

.btn-border {
	border: 1px solid #ff1979;
	background: transparent;
}

.btn-pink:hover,
.btn-border:hover {
	transform: translateY(-3px);
}

/* Rate Chart Css ===============================*/
.price-table-section {
	background: #efefef;
	padding: 80px 0;
	font-family: "Nunito", sans-serif;
}

.price-table-section .container {
	width: 95%;
	max-width: 1400px;
	margin: auto;
}

.price-table-section h2 {
	text-align: center;
	color: #ff1979;
	font-size: 30px;
	font-weight: 800;
	margin-bottom: 40px;
}

.table-responsive {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.price-table {
	width: 100%;
	min-width: 800px;
	border-collapse: separate;
	border-spacing: 0;
	background: #fff;
}

.price-table thead th {
	background: #ff1979;
	color: #fff;
	padding: 25px 20px;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	border-right: 2px solid rgba(255, 255, 255, 0.4);
}

.price-table thead th:first-child {
	border-top-left-radius: 18px;
}

.price-table thead th:last-child {
	border-top-right-radius: 18px;
	border-right: none;
}

.price-table tbody td {
	padding: 28px 20px;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	color: #111;
	border: 1px solid #d8d8d8;
	background: #f3f3f3;
}

.price-table tbody tr:hover td {
	background: #ececec;
}

/* Growing demand  section css */
.demand-section {
	background: #ff1979;
	padding: 90px 0;
	font-family: "Nunito", sans-serif;
}

.demand-section .container {
	width: 90%;
	max-width: 1300px;
	margin: auto;
}

.demand-section h2 {
	color: #fff;
	text-align: center;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 50px;
}

.demand-section p {
	color: #fff;
	font-size: 15px;
	line-height: 1.9;
	margin-bottom: 35px;
	font-weight: 500;
}

.demand-section strong {
	font-weight: 800;
}

/* Tablet */

@media (max-width: 991px) {
	.demand-section {
		padding: 70px 0;
	}

	.demand-section h2 {
		font-size: 30px;
		margin-bottom: 35px;
	}

	.demand-section p {
		font-size: 15px;
		line-height: 1.8;
		text-align: justify;
	}
}

/* Mobile */

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

	.demand-section .container {
		width: 92%;
	}

	.demand-section h2 {
		font-size: 30px;
		margin-bottom: 25px;
	}

	.demand-section p {
		font-size: 15px;
		line-height: 1.9;
		margin-bottom: 20px;
		text-align: justify;
	}
}

/* Contact details Section Css ==================================*/
.contact-section {
	position: relative;
	padding: 100px 0;
	background: url("https://cdni.lamalinks.com/460/1/61/62700741/62700741_012_4555.jpg") center center no-repeat;
	background-size: cover;
	overflow: hidden;
}

.contact-overlay {
	position: absolute;
	inset: 0;
	background: rgba(120, 0, 0, 0.872);
}

.contact-section .container {
	width: 92%;
	max-width: 1400px;
	margin: auto;
	position: relative;
	z-index: 2;
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 650px;
	gap: 50px;
	align-items: center;
}

.contact-info h2 {
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
}

.contact-info > p {
	color: #d9d9d9;
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 50px;
	max-width: 700px;
}

.contact-item {
	display: flex;
	gap: 18px;
	margin-bottom: 30px;
}

.icon-box {
	min-width: 58px;
	width: 58px;
	height: 58px;
	background: #ff1979;
	display: flex;
	align-items: center;
	justify-content: center;
}

.icon-box i {
	color: #fff;
	font-size: 24px;
}

.info h4 {
	color: #fff;
	font-size: 20px;
    font-weight: 700;
	margin-bottom: 8px;
}

.info a,
.info p {
	display: block;
	color: #d7d7d7;
	text-decoration: none;
	font-size: 15px;
	line-height: 1.8;
}

.contact-form-box {
	background: rgba(35, 35, 35, 0.95);
	padding: 40px;
}

.contact-form-box h3 {
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
}

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

.form-group label {
	display: block;
	color: #fff;
	font-size: 15px;
	margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	border: none;
	outline: none;
	background: #161616;
	color: #fff;
	padding: 18px 20px;
	font-size: 15px;
}

.submit-btn {
	width: 100%;
	height: 65px;
	border: none;
	background: #ff1979;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
}


/* footer Section Css ========================================= */
.custom-footer{
    background:#050505;
    padding:60px 0 20px;
    font-family:'Nunito',sans-serif;
}

.custom-footer .container{
    width:92%;
    max-width:1400px;
    margin:auto;
}

/* Heading */

.footer-title{
    text-align:center;
    color:#fff;
    font-size:30px;
    font-weight:700;
    margin-bottom:35px;
}

/* City Links */

.city-links{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    margin-bottom:60px;
}

.city-links a{
    background:#ff1979;
    color:#fff;
    text-decoration:none;
    padding:12px 18px;
    font-size:15px;
    font-weight:700;
    transition:.3s;
}

.city-links a:hover{
    background:#ff3c93;
}

/* Disclaimer */

.disclaimer-title{
    text-align:center;
    color:#ff1979;
    font-size:30px;
    font-weight:800;
    margin-bottom:30px;
}

.footer-description{
    max-width:1250px;
    margin:auto;
    text-align:center;
    color:#9da4b0;
    font-size:15px;
    line-height:1.9;
}

/* Menu */

.footer-menu{
    list-style:none;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:50px;
    margin:70px 0 50px;
    padding:0;
}

.footer-menu a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
}

/* Bottom */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.footer-bottom p{
    color:#9da4b0;
    font-size:15px;
    margin:0;
}

/* Tablet */

@media(max-width:991px){

    .footer-title{
        font: size 30px;px;
    }

    .disclaimer-title{
        font-size:30px;
    }

    .city-links a{
        font-size:15px;
    }

    .footer-description{
        font-size:15px;
    }

    .footer-menu a{
        font: size 15px;
    }

    .footer-bottom p{
        font-size:15px;
    }

}

/* Mobile */

@media(max-width:767px){

    .custom-footer{
        padding:50px 0 20px;
    }

    .footer-title{
        font-size:30px;
        margin-bottom:25px;
    }

    .city-links{
        gap:10px;
        margin-bottom:40px;
    }

    .city-links a{
        width:100%;
        text-align:center;
        font-size:15px;
        padding:10px;
    }

    .disclaimer-title{
        font-size:28px;
        margin-bottom:20px;
    }

    .footer-description{
        font-size:15px;
        line-height:1.9;
    }

    .footer-menu{
        gap:20px;
        margin:40px 0;
    }

    .footer-menu a{
        font-size:15px;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .footer-bottom p{
        font-size:15px;
    }

}

/* Importsamt section css */
.luxury-section{
    background:#fff;
    padding:60px 0;
    font-family:'Nunito',sans-serif;
}

.luxury-section .container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.luxury-section h2{
    color:#000;
    font-size:30px; /* Main Heading Fixed */
    font-weight:700;
    line-height:1.3;
    margin-bottom:25px;
    text-align:center;
}

.luxury-section p{
    color:#000;
    font-size:15px; /* Paragraph Fixed */
    line-height:2;
    margin-bottom:20px;
    font-weight:400;
        text-align:justify;
}

/* Tablet */

@media(max-width:991px){

    .luxury-section{
        padding:50px 0;
    }

    .luxury-section h2{
        font-size:30px;
    }

    .luxury-section p{
        font-size:15px;
    }

}

/* Mobile */

@media(max-width:767px){

    .luxury-section{
        padding:40px 0;
    }

    .luxury-section .container{
        width:92%;
    }

    .luxury-section h2{
        font-size:30px;
        margin-bottom:20px;
    }

    .luxury-section p{
        font-size:15px;
        line-height:1.9;
    }

}