 html,
 body {
     overflow-x: hidden;
     width: 100%;
 }

 /* Headings (h1 to h6) */

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     color: gold;
     font-weight: 700;
     letter-spacing: 0.5px;
     text-shadow: 0 0 6px rgba(255, 215, 0, 0.4);
     margin-bottom: 1rem;
     line-height: 1.3;
 }

 /* Paragraphs */

 p {
     color: #ddd;
     font-size: 16px;
     line-height: 1.7;
     margin-bottom: 1rem;
     font-weight: 400;
 }

 /* Span text inside paragraphs */

 span {
     color: #f8f8f8;
     font-weight: 500;
 }

 /* Links */

 a {
     color: #ff4c4c;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 a:hover {
     color: gold;
     text-decoration: underline;
 }

 body {
     margin: 0;
     background-color: #0b0b0b;
     font-family: 'Segoe UI', sans-serif;
 }

 .navbar {
     background-color: #0b0b0b;
     padding: 1rem 2rem;
 }

 .navbar-brand {
     color: gold;
     font-family: 'Playfair Display', serif;
     font-size: 28px;
     font-weight: bold;
     letter-spacing: 1px;
 }

 .navbar-brand:hover {
     color: #ffd700;
 }

 .nav-link {
     color: white;
     font-size: 16px;
     margin-right: 1rem;
     text-transform: uppercase;
 }

 .nav-link:hover {
     color: gold;
 }

 @media (max-width: 768px) {
     .navbar-brand {
         font-size: 22px;
     }
     .nav-link {
         font-size: 15px;
         margin: 0.5rem 0;
     }
 }

 .hero-booking {
     min-height: 50vh;
 }

 .bg-img {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     z-index: 0;
 }

 .hero-overlay {
     background: rgba(0, 0, 0, 0.6);
     z-index: 1;
 }

 .z-2 {
     z-index: 2 !important;
 }

 .hero-booking input[type="tel"],
 .hero-booking input[type="date"],
 .hero-booking select {
     background-color: transparent !important;
     color: #fff !important;
     border: 1px solid white !important;
     border-radius: 4px;
 }

 .hero-booking select option {
     background-color: #000;
     color: #fff;
 }

 .hero-booking input::placeholder {
     color: #ccc !important;
 }

 .hero-booking input:focus,
 .hero-booking select:focus {
     border-color: gold !important;
     outline: none;
     box-shadow: none;
 }

 .hero-booking .btn-outline-light {
     border-color: white;
     color: white;
 }

 .hero-booking .btn-outline-light:hover {
     background-color: gold;
     color: black;
     border-color: gold;
 }

 .special-services {
     background-color: #000;
     color: #fff;
 }

 .text-glow {
     color: gold;
     font-size: 32px;
     text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
 }

 .service-box {
     background-color: rgba(255, 255, 255, 0.05);
     padding: 25px 15px;
     border-radius: 16px;
     border: 1px solid rgba(255, 215, 0, 0.2);
     transition: all 0.3s ease;
 }

 .service-box i {
     color: gold;
     margin-bottom: 12px;
     display: block;
 }

 .service-box p {
     margin: 0;
     color: #f1f1f1;
     font-weight: 500;
     font-size: 16px;
     letter-spacing: 0.5px;
 }

 .service-box:hover {
     background-color: rgba(255, 215, 0, 0.1);
     transform: scale(1.05);
     border-color: gold;
     box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
 }

 /* Escort Cards */

 .escort-cards {
     background-color: #000;
     color: #fff;
 }

 .text-glow {
     color: gold;
     font-size: 32px;
     text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
 }

 .escort-card {
     border-radius: 10px;
     overflow: hidden;
     transition: all 0.3s ease;
     border: 2px solid transparent;
     position: relative;
     box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
 }

 .escort-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
     border-color: gold;
 }

 .red-card {
     background-color: #900000;
 }

 .black-card {
     background-color: #111;
 }

 .escort-img {
     width: 100%;
     height: 260px;
     object-fit: cover;
     display: block;
 }

 .card-tag {
     position: absolute;
     top: 0;
     left: 0;
     background-color: crimson;
     color: #fff;
     font-size: 12px;
     padding: 2px 8px;
     font-weight: bold;
     border-radius: 0 0 6px 0;
     z-index: 2;
 }

 .card-tag.vip {
     background-color: gold;
     color: black;
 }

 .escort-info {
     padding: 10px 15px;
     text-align: center;
 }

 .escort-info h5 {
     margin: 0;
     font-size: 18px;
     font-weight: bold;
 }

 .escort-info p {
     font-size: 14px;
     margin: 4px 0;
 }

 .likes {
     font-size: 14px;
     color: #fff;
 }

 .likes i {
     margin-right: 5px;
     color: #ff0040;
 }

 /* Responsive 5 cards per row (lg) */

 @media (min-width: 1200px) {
     .col-lg-2-4 {
         flex: 0 0 20%;
         max-width: 20%;
     }
 }

 /* Escort Card Styles */

 .escort-card-wrapper {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     padding: 30px 15px;
     background-color: #111;
 }

 .escort-card.red-style {
     background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
     border: 1px solid #ff0055;
     border-radius: 12px;
     overflow: hidden;
     text-align: center;
     max-width: 220px;
     margin: 15px;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     box-shadow: 0 0 15px rgba(255, 0, 85, 0.2);
     position: relative;
 }

 .escort-card.red-style:hover {
     transform: scale(1.05);
     box-shadow: 0 0 25px rgba(255, 0, 85, 0.5);
 }

 .escort-img {
     width: 100%;
     height: 270px;
     object-fit: cover;
 }

 .tag.verified {
     position: absolute;
     top: 10px;
     left: 10px;
     background: #ff0055;
     color: #fff;
     padding: 5px 10px;
     font-size: 0.75rem;
     font-weight: 600;
     border-radius: 4px;
     z-index: 2;
     letter-spacing: 0.5px;
 }

 .escort-details {
     padding: 15px 10px;
     color: #fff;
 }

 .escort-name {
     font-size: 1.3rem;
     margin-bottom: 5px;
     color: #ff3377;
     font-weight: 600;
 }

 .escort-age {
     margin: 0;
     font-size: 0.95rem;
     color: #ddd;
 }

 .escort-likes {
     margin-top: 8px;
     color: #ff66a3;
     font-size: 0.9rem;
 }

 .seductive-section {
     background: #000;
     font-family: 'Poppins', sans-serif;
     color: #fff;
     text-align: left;
     max-width: 1200px;
     margin: auto;
 }

 .seductive-content p {
     font-size: 1.1rem;
     line-height: 1.9;
     margin-bottom: 10px;
     text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
 }

 .highlight {
     color: #ff4e4e;
     font-weight: bold;
     text-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
 }

 .bold-red {
     color: #ff2a2a;
     font-weight: 600;
 }

 .content-section {
     background: #000;
     color: #fff;
     font-family: 'Poppins', sans-serif;
 }

 .content-container {
     max-width: 1200px;
     margin: auto;
     text-align: left;
     padding: 10px;
 }

 .headline-question {
     font-size: 2rem;
     color: #ffd700;
     text-shadow: 0 0 10px rgba(255, 42, 42, 0.6);
     margin-bottom: 25px;
 }

 .content-container p {
     font-size: 1.1rem;
     line-height: 1.8;
     margin-bottom: 10px;
     text-shadow: 0 0 5px rgba(255, 0, 0, 0.2);
 }

 .brand-name {
     color: #ff2a2a;
     font-weight: bold;
 }

 .highlight-red {
     color: #ff4d4d;
     font-weight: 600;
 }

 .btn-outline-danger:hover {
     background-color: #ff0033;
     color: #fff;
     box-shadow: 0 0 10px #ff0033;
     transition: 0.3s ease;
 }

 .category-card:hover img {
     transform: scale(1.05);
 }

 .category-card {
     transition: transform 0.4s ease;
     display: flex;
     flex-direction: column;
     justify-content: flex-start !important;
     align-items: center;
     height: 100%;
     text-align: center;
 }

 .category-card img {
     width: 100%;
     height: 200px;
     object-fit: cover;
     border-radius: 10px;
     margin-bottom: 10px;
 }

 .glow-box {
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     box-shadow: 0 0 10px rgba(255, 77, 77, 0.6);
 }

 .glow-box:hover {
     transform: translateY(-4px);
     box-shadow: 0 0 20px rgba(255, 77, 77, 0.9);
 }

 .floating-buttons {
     position: fixed;
     bottom: 20px;
     right: 20px;
     z-index: 9999;
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .float-btn {
     width: 50px;
     height: 50px;
     background-color: #ff1a4d;
     color: #fff;
     border-radius: 50%;
     text-align: center;
     line-height: 50px;
     font-size: 22px;
     box-shadow: 0 0 15px rgba(255, 26, 77, 0.8);
     transition: all 0.3s ease;
 }

 .float-btn:hover {
     background-color: #ff4d6d;
     transform: scale(1.1);
     box-shadow: 0 0 20px rgba(255, 26, 77, 1);
 }

 .float-btn.whatsapp {
     background-color: #25D366;
     box-shadow: 0 0 15px rgba(37, 211, 102, 0.8);
 }

 .float-btn.whatsapp:hover {
     background-color: #2fe86e;
     box-shadow: 0 0 20px rgba(37, 211, 102, 1);
 }

 .footer-link {
     color: #fff;
     text-decoration: none;
     transition: all 0.3s ease;
     font-size: 0.95rem;
 }

 .footer-link:hover {
     color: #ffffff;
     text-decoration: underline;
 }

 .text-pink {
     color: #ffd700;
 }

 .split-section {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: space-between;
     gap: 2rem;
     padding: 2rem 0;
 }

 .split-text {
     flex: 1 1 55%;
 }

 .split-image {
     flex: 1 1 35%;
     text-align: center;
 }

 .split-image img {
     max-width: 100%;
     height: auto;
     border-radius: 12px;
     object-fit: cover;
 }

 @media (max-width: 768px) {
     .split-section {
         flex-direction: column;
         text-align: center;
     }
     .split-text,
     .split-image {
         flex: 1 1 100%;
     }
     .split-image img {
         width: 80%;
         max-width: 300px;
     }
 }