:root {
--primary-color: #e91e63;
--secondary-color: #9c27b0;
--dark-color: black;
--light-color: #f8f9fa;
--overlay-color: rgba(0, 0, 0, 0.8);
--transition: all 0.3s ease;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 1rem;
font-weight: 600;
line-height: 1.5;
color: #212529;
text-align: left;
}
.container{
max-width:1320px;
}
.maindiv {
/*            display: flex;*/
/*            flex-wrap: wrap;*/
justify-content: center;
padding:12px;
/*            max-width: 1200px;*/
margin: 0 auto;
}
.contentdiv {
background: white;
border: 1px double #c45b5b;
border-radius: 12px;
/*            border-radius:25px;*/
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
padding:10px;
/*            margin: 15px;*/
/*            width: 100%;*/
/*            max-width: 350px;*/
transition: var(--transition);
/*            position: relative;*/
overflow: hidden;
/*            text-align:center;*/
min-height:525px;
}
.contentdiv:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.contentdiv img {
width:100%;
/*            height: 200px;*/
object-fit: cover;
border-radius: 8px;
margin-bottom: 15px;
/*            border-radius:50%;*/
}
.contentdiv h2 {
color: white;
margin-bottom: 15px;
font-size: 1rem;
background: linear-gradient(to right, #5b0e12, #69191b, #6f1e1d, #731f1e);
text-align:center;
padding:12px;
border-radius:18px;
}
.contentdiv p {
margin-bottom: 20px;
color: black;
}
.highlight {
color: var(--primary-color);
font-weight: 600;
}
.contentdiv ul {
margin-bottom: 20px;
padding-left: 20px;
}
.contentdiv ul li {
margin-bottom: 8px;
color:black;
position: relative;
}
.contentdiv ul li:before {
/*            content: "•";*/
color: var(--primary-color);
font-weight: bold;
display: inline-block;
width: 1em;
margin-left: -1em;
}
.contentdiv a {
display: inline-block;
/*            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));*/
background: linear-gradient(to right, #5b0e12, #69191b, #6f1e1d, #731f1e);
color: white;
padding: 5px 10px;
border-radius:14px;
text-decoration: none;
font-weight: 400;
transition: var(--transition);
border: none;
cursor: pointer;
/*font-size:14px;*/
}
.contentdiv a:hover {
transform: translateY(-2px);
box-shadow: 0 5px 10px rgba(233, 30, 99, 0.3);
}
/* Model Popup Styles */
.model {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--overlay-color);
z-index: 1000;
overflow-y: auto;
padding: 20px;
opacity: 0;
transition: opacity 0.3s ease;
}
.model.active {
display: flex;
justify-content: center;
align-items: center;
opacity: 1;
}
.model-content {
background: white;
border-radius: 15px;
width: 90%;
max-width: 800px;
padding: 30px;
position: relative;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
transform: scale(0.9);
transition: transform 0.3s ease;
max-height: 90vh;
overflow-y: auto;
}
.model.active .model-content {
transform: scale(1);
}
.model h1 {
color: var(--primary-color);
margin-bottom: 20px;
font-size: 2rem;
text-align: center;
background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.model p {
margin-bottom: 20px;
color: black;
}
.model ul {
margin-bottom: 25px;
padding-left: 25px;
}
.model ul li {
margin-bottom: 10px;
color: var(--primary-color);
position: relative;
/*            padding-left: 25px;*/
}
.model ul li:before {
/*            content: "✓";*/
color: var(--primary-color);
font-weight: bold;
position: absolute;
left: 0;
}
.cta-button {
display: inline-block;
background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
color: white;
padding: 10px 20px;
border-radius: 30px;
text-decoration: none;
font-weight: 600;
transition: var(--transition);
border: none;
cursor: pointer;
}
.cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
color:white;
text-decoration:none;
}
.close-btn {
position: absolute;
top: 15px;
right: 15px;
font-size: 24px;
color: #888;
cursor: pointer;
transition: var(--transition);
background: none;
border: none;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}
.close-btn:hover {
color: var(--primary-color);
background: rgba(233, 30, 99, 0.1);
}
.text-center {
text-align: center;
}
@media (max-width: 768px) {
.model-content {
width: 95%;
padding: 20px;
}
.model h1 {
font-size: 1.5rem;
}
}
/*`````````````````````````````````````````````````````````````````````````````*/
.navbar {
padding: 10px 0;
}
.navbar-brand img {
height: 68px;
}
@media only screen and (max-width: 650px) {
.navbar-brand img {height: 50px;padding-left: 22px;}
}
.nav-item {
margin-left: 10px;
}
.post-ad-btn {
background-color: #680f1e;
color: white;
border-radius: 4px;
padding: 8px 15px;
font-weight: 600;
white-space: nowrap;
}
.post-ad-btn:hover {
background-color: #5a0d1a;
color: white;
text-decoration: none;
}
/* Navbar search bar */
.navbar-search {
position: relative;
width: 150px;
}
.navbar-search-input {
padding: 6px 30px 6px 10px;
border-radius: 4px;
border: 1px solid #ddd;
width: 100%;
font-size: 0.9rem;
}
.navbar-search-btn {
position: absolute;
right: 5px;
top: 50%;
transform: translateY(-50%);
background: none;
border: none;
color: #680f salads;
cursor: pointer;
}
/* Mobile specific styles */
@media (max-width: 991.98px) {
.navbar-search {
width: 10px;
margin-left: 5px;
}
.navbar-nav .nav-item {
margin-left: 0;
margin-bottom: 8px;
}
.navbar-collapse {
padding: 15px;
background-color: white;
box-shadow: 0 5px 10px rgba(0,0,0,0.1);
margin-top: 10px;
border-radius: 5px;
}
.mobile-extras {
margin-top: 15px;
padding-top: 15px;
border-top: 1px solid #eee;
}
.social-links {
display: flex;
justify-content: center;
margin-top: 15px;
}
.social-links a {
margin: 0 10px;
font-size: 1.2rem;
color: #680f1e;
}
}
/* Desktop specific styles */
@media (min-width: 992px) {
.navbar-search {
width: 200px;
margin-left: 230%;
}
.nav-item.dropdown {
margin-left: 15px;
}
}
/* Hero section */
.hero-section {background-image: url('a/1.webp');background-size: cover;background-position: 0px -80px;padding: 120px 0;position: relative;color: white;}
/* Mobile devices */
@media only screen and (max-width: 650px) {
.hero-section {padding: 18px 0; /* Reduced padding for mobile */min-height: 158px; /* Ensures section has minimum height */background-attachment: scroll; /* Fixes iOS background issues */background-position: 0px -18px !important;}
.search-container {
width: 90%; /* Better width for mobile */
margin: 0 auto; /* Center the search box */
}
.search-box {
flex-direction: column; /* Stack elements vertically on mobile */
}
.search-input, .search-btn {
margin: 0px 2px; /* Add some vertical spacing */
}
.search-input {/* max-width:75%; *//* margin-left:80px; */}
}
.hero-overlay {position: absolute;top: 0;left: 0;width: 100%;height: 100%;background-color: rgba(0, 0, 0, 0.5);}
.hero-content {
position: relative;
z-index: 1;
}
.search-container {
max-width: 700px;
margin: 0 auto;
}
.search-box {
position: relative;
}
.search-input {
padding: 10px 8px;
border-radius: 4px;
border: none;
width: 100%;
font-size: 1rem;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.search-btn {
position: absolute;
right: 5px;
top: 5px;
bottom: 5px;
background-color: #680f1e;
color: white;
border: none;
border-radius:  внесение;
padding: 0 15px;
cursor: pointer;
}
/* Advanced search modal */
.modal-header {
border-bottom: none;
padding-bottom: 0;
}
.modal-title {font-weight: 700;/* color: #680f1e; */padding-bottom: 18px;}
.modal-footer {
border-top: none;
padding-top: 0;
}
.btn-primary {
background-color: #680f1e;
border-color: #680f1e;
}
/*----------------------------------------------------------------------------------------------------------*/
.header-container {
/*            max-width: 1200px;*/
margin: 00px auto;
padding: 15px;
background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
/*            border-radius: 12px;*/
/*            border-left: 6px solid #ff2d78;*/
text-align: center;
overflow: hidden;
position: relative;
}
.header-container::before {/* content: ""; */position: absolute;top: 0;left: 0;width: 100%;height: 100%;background: url('https://images.unsplash.com/photo-1517842645767-c639042777db?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;opacity: 0.03;z-index: 0;}
.tagline {
font-size:1.8rem;
font-weight: 800;
color: #222;
margin-bottom: 20px;
position: relative;
z-index: 1;
background: linear-gradient(90deg, #ff2d78, #ff6b95);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.description {font-size: 1rem;color: #555;max-width: 800px;margin: 0 auto 12px;position: relative;z-index: 1;text-align: justify;/*            line-height: 1.8;*/}
.highlight-box {
display: inline-block;
background: linear-gradient(90deg, rgba(255,45,120,0.1), rgba(255,107,149,0.1));
padding: 15px 30px;
border-radius: 50px;
margin-top: 15px;
border: 1px solid rgba(255,45,120,0.2);
}
.highlight-text {
font-weight: 600;
color: #ff2d78;
font-size: 0.9rem;
letter-spacing: 0.5px;
text-transform: uppercase;
}
@media (max-width: 768px) {
.header-container {padding: 0px 20px;margin: 20px auto;}
.tagline {font-size: 1.2rem;line-height: 1.3;}
.description {font-size: 1rem;height: 148px;overflow: auto;/* margin-bottom: 12px; */border-bottom: 1px solid #510404;}
}
/*        -----------------------------------------------------------------------------------------------------*/
.legal-box {
background-color: #fff3cd;
color: #856404;
padding: 20px;
border-left: 6px solid #ffc107;
border-radius: 6px;
font-size: 14px;
line-height: 1.6;
font-family: 'Segoe UI', sans-serif;
/* margin: 30px 0; */
}
.legal-box h4, .legal-box h3 {
color: #a94442;
margin-top: 10px;
font-size: 15px;
}
.legal-box ul {
margin-left: 20px;
list-style: disc;
}
.legal-box .highlight {
background: #ffeeba;
padding: 10px;
margin: 10px 0;
font-weight: 600;
border-radius: 4px;
}
.legal-toggle {
text-align: right;
margin-bottom: 10px;
}
.legal-toggle button {
background-color: #ffc107;
border: none;
padding: 5px 10px;
font-size: 13px;
border-radius: 4px;
cursor: pointer;
}
/*    ===================================================================*/
#top-escort-locations {
padding: 60px 20px;
background-color: #fff;
font-family: 'Poppins', sans-serif;
text-align: center;
}
.section-title {
font-size: 30px;
font-weight: 700;
color: #333;
margin-bottom:25px;
}
.state-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px;
}
.state-card {
background: #f9f9f9;
border-radius: 12px;
box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
padding: 25px;
width: 280px;
text-align: left;
transition: all 0.3s ease-in-out;
}
.state-card:hover {
transform: translateY(-5px);
}
.state-title {
font-size: 20px;
font-weight: 600;
color: #b10056;
margin-bottom: 15px;
}
.city-list {
list-style: none;
padding: 0;
margin: 0;
}
.city-list li {
font-size: 15px;
padding: 8px 0;
display: flex;
align-items: center;
gap: 10px;
border-bottom: 1px solid #eee;
}
.city-list li:last-child {
border-bottom: none;
}
.city-list i {
color: #e91e63;
font-size: 14px;
}
.city-list a {
color: #333;
text-decoration: none;
transition: color 0.3s;
}
.city-list a:hover {
color: #b10056;
}
@media (max-width: 768px) {
.state-grid {
flex-direction: column;
align-items: center;
}
.state-card {
width: 90%;
}
}
/*===============================================================================================*/
#top-searches {
background: #fff;
padding: 60px 20px;
font-family: 'Poppins', sans-serif;
}
#top-searches .heading h2 {
font-size: 32px;
font-weight: 600;
color: #333;
}
#top-searches .heading h2 span {
color: #e91e63;
}
.top-search-list {
list-style: none;
padding: 0;
display: flex;
flex-wrap: wrap;
gap: 15px;
justify-content: center;
margin-top: 30px;
}
.top-search-list li {
background: #f3f3f3;
padding: 10px 20px;
border-radius: 25px;
transition: 0.3s ease-in-out;
box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.top-search-list li:hover {
background: #e91e63;
}
.top-search-list li a {
color: #333;
text-decoration: none;
font-weight: 500;
}
.top-search-list li:hover a {
color: #fff;
}
/*=============================================footer css================================*/
.footer-section {
background-color: #9b1145;
color: #fff;
font-family: 'Poppins', sans-serif;
padding-top: 50px;
}
.footer-wrapper {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 30px;
}
.footer-about {
flex: 1 1 300px;
}
.footer-logo {
width: 140px;
margin-bottom: 15px;
}
.footer-about p {
color: #f1f1f1;
font-size: 14px;
line-height: 1.6;
}
.footer-links {
display: flex;
flex: 2 1 600px;
gap: 40px;
flex-wrap: wrap;
}
.link-group h4 {
font-size: 16px;
font-weight: 600;
color: #fff;
margin-bottom: 10px;
letter-spacing: 0.5px;
}
.link-group ul {
list-style: none;
padding: 0;
margin: 0;
}
.link-group ul li {
margin-bottom: 8px;
}
.link-group ul li a {
color: #eee;
font-size: 14px;
text-decoration: none;
transition: 0.3s;
}
.link-group ul li a:hover {
color: #ffcdd2;
}
.footer-disclaimer {
border-top: 1px solid #ccc;
margin-top: 40px;
padding: 30px 0;
color: #ddd;
font-size: 13px;
line-height: 1.6;
}
.footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
padding: 20px 0;
border-top: 1px solid #ccc;
}
.network-btn a {
background: #fff;
color: #9b1145;
font-weight: 500;
padding: 10px 20px;
border-radius: 12px;
display: inline-block;
font-size: 14px;
text-decoration: none;
}
.network-btn i {
margin: 0 5px;
}
.footer-social a {
color: #fff;
font-size: 16px;
margin-left: 12px;
transition: 0.3s;
}
.footer-social a:hover {
color: #ffcdd2;
}
.footer-copy {
text-align: center;
font-size: 13px;
color: #eee;
padding-bottom: 20px;
margin-top: 10px;
}
/* Responsive */
@media(max-width: 768px) {
.footer-wrapper {
flex-direction: column;
gap: 40px;
}
.footer-bottom {
flex-direction: column;
gap: 15px;
text-align: center;
}
.footer-links {
justify-content: space-between;
}
}
/*==========================================================================================*/
.site-footer {
background-color: #590505;
padding: 45px 0 20px;
font-size: 15px;
line-height: 24px;
color: #737373;
}
.site-footer hr {
border-top-color: #bbb;
opacity: 0.5;
}
.site-footer hr.small {
margin: 20px 0;
}
.site-footer h6 {
color: #fff;
font-size: 16px;
text-transform: uppercase;
margin-top: 5px;
letter-spacing: 2px;
}
.site-footer a {
color: #737373;
}
.site-footer a:hover {
color: #3366cc;
text-decoration: none;
}
.footer_logo img {
max-width: 150px;
margin-bottom: 15px;
}
.logo-caption {
font-size: 14px;
color: #999;
}
.footer_link {
list-style: none;
padding-left: 0;
}
.footer_link li {
margin-bottom: 10px;
}
.footer_link a {
color: #737373;
}
.footer_link a:hover {
color: #fff;
text-decoration: none;
}
.footer_content p {
font-size: 13px;
color: #999;
margin-top: 20px;
}
.copyright-text {
margin: 0;
font-size: 14px;
}
.social-icons {
list-style: none;
padding-left: 0;
margin-bottom: 0;
display: flex;
justify-content: flex-end;
}
.social-icons li {
margin-left: 10px;
}
.social-icons a {
background-color: #33353d;
color: #818a91;
font-size: 16px;
display: inline-block;
line-height: 44px;
width: 44px;
height: 44px;
text-align: center;
border-radius: 100%;
-webkit-transition: all .2s linear;
-o-transition: all .2s linear;
transition: all .2s linear;
}
.social-icons a:hover {
color: #fff;
background-color: #29aafe;
}
.se-network a {
color: #737373;
display: flex;
align-items: center;
}
.se-network a:hover {
color: #fff;
text-decoration: none;
}
.se-network i {
margin-right: 8px;
}
@media (max-width: 767px) {
.social-icons {
justify-content: center;
}
.social-icons li {
margin: 0 5px;
}
.copyright-text, .se-network {
text-align: center;
margin-bottom: 15px;
}
.footer_link li {
margin-bottom: 8px;
}
}


.marquee-text {
  color: #2d89ef;   /* Blue tone */
  font-size: 14px;
  font-weight: 500;
}

.marquee-warning {
  color: #e81123;   /* Red tone for warning */
  font-size: 14px;
  font-weight: 600;
}

.marquee-text a,
.marquee-warning a {
  color: inherit;
  text-decoration: underline;
}
