.text-hotpink {
    color: #FF3366 !important;
}

.navbar {
    background-color: #c30867;
}

/* Navbar links */

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

/* Control search bar width */

.navbar form.d-flex input.form-control {
    width: 220px;
}

/* Make nav links stand out */

.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.7rem 1rem;
    color: #fff;
}

.nav-link:hover {
    color: #ff4444 !important;
}

/* Icons */

.icon-link {
    color: #111;
    transition: color .3s ease;
}

.icon-link:hover {
    color: #FF3366;
}

.section-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.section-text {
    flex: 1;
}

.section-text h2 {
    color: #ffff00;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
}

.section-text p {
    margin: 20px 0;
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
}

.section-image {
    flex: 1;
    text-align: center;
}

.section-image img {
    max-width: 100%;
    border-radius: 50%;
    border: 8px solid #ffff00;
}

@media (max-width: 768px) {
    .section-container {
        flex-direction: column;
        text-align: center;
    }
    .section-text h2 {
        font-size: 28px;
    }
    .section-text p {
        font-size: 16px;
    }
    .section-image {
        margin-top: -52px;
    }
    .section-image img {
        width: 98%;
        /* make image smaller */
    }
}

.connect-section {
    background: #012a35;
    background: #000;
    color: #fff;
    padding: 11px 1px;
    text-align: center;
}

.connect-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.connect-title {
    font-size: 1.4rem !important;
    font-weight: 750;
    color: #ffff00;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.connect-subtitle {
    font-size: 1.3rem;
    color: #ffb8c8;
    margin-bottom: 40px;
    font-style: italic;
}

.connect-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #e5e5e5;
    margin-bottom: 2px;
    text-align: justify;
}

@media (max-width: 768px) {
    .connect-title {
        font-size: 1.8rem;
    }
    .connect-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    .connect-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

p {
    font-family: "Poppins", sans-serif !important;
}

/* For smaller screens */

@media (max-width: 768px) {
    p {
        font-size: 1rem 1 !important;
        line-height: 1.7 !important;
        text-align: left !important;
        margin-bottom: 16px !important;
    }
}

/*pleasure-section*/

.pleasure-section {
    position: relative;
    background: linear-gradient(135deg, #ffb6c1, #ffe6f0);
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
    border-radius: 20px;
    margin: 30px auto;
    max-width: 1200px;
}

.pleasure-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
}

.pleasure-title span {
    color: #ff0077;
}

.pleasure-subtext {
    font-size: 1.1rem;
    color: #444;
    margin: 10px 0 25px;
}

.pleasure-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #007bff;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.pleasure-btn:hover {
    background: #0056b3;
}

/* Floating icons */

.floating-icons .icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.8;
    animation: floatUp 10s linear infinite;
}

.icon.lips {
    top: 80%;
    left: 15%;
    animation-delay: 0s;
}

.icon.heart {
    top: 90%;
    left: 50%;
    animation-delay: 3s;
}

.icon.heels {
    top: 85%;
    left: 80%;
    animation-delay: 1.5s;
}

.icon.star {
    top: 95%;
    left: 35%;
    animation-delay: 2.5s;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-300px) scale(1.3);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .pleasure-title {
        font-size: 1.8rem;
    }
    .pleasure-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .floating-icons .icon {
        font-size: 1.5rem;
    }
}

/* Hero Split Section */

.hero-split {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(to bottom, #000000, #111111);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Left Side: Text */

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffff00;
    margin-bottom: 15px;
    line-height: 1.2;
}

.animated-text {
    display: inline-block;
    animation: glowText 2s infinite alternate;
}

@keyframes glowText {
    0% {
        text-shadow: 0 0 5px #ffff00;
    }
    50% {
        text-shadow: 0 0 15px #ff3366, 0 0 25px #ffff00;
    }
    100% {
        text-shadow: 0 0 5px #ffff00;
    }
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* CTA Buttons */

.hero-cta .btn-primary,
.hero-cta .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    margin-right: 15px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: #ffff00;
    color: #fff;
}

.btn-primary:hover {
    background: #ff3366;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #ffff00;
    color: #ffff00;
}

.btn-secondary:hover {
    background: #ffff00;
    color: #fff;
}

/* Right Side: Video/Image */

.hero-rainy {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: url('../images/banner.webp') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 14px;
}

.hero-tagline {
    font-size: 1.6rem;
    text-transform: uppercase;
    color: #ffff00;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-content h1 strong {
    color: #ffff00;
}

.hero-content h1 em {
    font-style: italic;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */

.hero-btn {
    background: #ffff00;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.hero-btn:hover {
    background: #ff3366;
    box-shadow: 0 0 15px #ff3366;
}

.hero-btn-secondary {
    background: transparent;
    border: 2px solid #ffff00;
    color: #ffff00;
}

.hero-btn-secondary:hover {
    background: #ffff00;
    color: #fff;
    box-shadow: 0 0 15px #ff3366;
}

/* Mobile responsiveness */

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}

/* UNIQUE STEPS SECTION */

/* DISTINCT STEPS STYLE */

.fg-steps-section {
    background: linear-gradient(180deg, #212529 0%, #212529 100%);
    padding: 7px 7px;
}

.fg-section-title {
    text-align: center;
    font-size: 1.5rem;
    color: #ff3366;
    font-weight: 760;
    margin-bottom: 15px;
}

.fg-section-subtitle {
    text-align: center;
    color: #ddd;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.fg-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.fg-step-card {
    display: flex;
    align-items: flex-start;
    background: rgb(5 76 91);
    border-left: 6px solid #ff3366;
    /* bold side accent for visual difference */
    border-radius: 12px;
    padding: 20px 15px;
    box-shadow: 0 4px 20px rgba(255, 0, 51, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.fg-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 0, 51, 0.35);
}

.fg-step-number {
    width: 50px;
    height: 50px;
    background: #ff3366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 15px;
}

.fg-step-content h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
}

.fg-step-content p {
    font-size: 0.98rem;
    color: #ddd;
    line-height: 1.5;
}

/* MOBILE RESPONSIVE */

@media (max-width: 768px) {
    .fg-step-card {
        flex-direction: row;
        padding: 15px 10px;
    }
    .fg-step-number {
        margin-right: 10px;
    }
}

/* UNIQUE ABOUT SECTION */

/* UNIQUE ABOUT SECTION */

.fg-about-section {
    background: linear-gradient(to bottom, #0b5765 0%, #0a8ea8 100%);
    padding: 11px 7px;
}

.fg-container {
    max-width: 1200px;
    margin: 0 auto;
}

.fg-about-title {
    margin-bottom: 25px;
    color: #ebbf3c;
    font-weight: 700;
    text-align: center;
    /* title aligned to left */
    font-size: 1.8rem;
    /* adjust size for mobile */
    margin-left: 0;
    /* remove extra left margin */
    margin-right: 0;
    /* remove extra right margin */
    max-width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: fgFadeInUp 1s forwards;
}

.fg-about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fg-about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fgFadeInUp 1s 0.3s forwards;
}

.fg-about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff;
}

.fg-about-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #fff;
}

.fg-about-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.fg-about-list li i {
    color: #ff3366;
    margin-right: 10px;
    font-size: 1.2rem;
}

.fg-about-cta {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #ff3366;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    width: max-content;
    transition: background 0.3s ease, transform 0.2s ease;
}

.fg-about-cta:hover {
    background: #e62a57;
    transform: translateY(-2px);
}

@keyframes fgFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .fg-about-section {
        padding: 11px 7px;
    }
    .fg-about-title {
        font-size: 1.4rem;
    }
}

/* Grid Layout */

.escort-cards {
    width: 100%;
    padding: 30px 0;
    background: url(../images/bg.jpg) no-repeat;
}

.card-grid {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Card Base */

.escort-card {
    background: #111;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.escort-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Image */

.escort-image img {
    width: 100%;
    height: 343px;
    object-fit: cover;
    object-position: top;
}

.escort-info {
    padding: 6px;
    color: #fff;
    display: flex;
    flex-direction: column;
    /* keep elements stacked */
}

/* Wrap h3 and p on the same row */

.escort-info h3,
.escort-info p {
    margin: 0;
}

.escort-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.escort-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.escort-info p {
    font-size: 0.95rem;
}

/* Buttons inside info */

.escort-info a {
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 14px;
    border-radius: 30px;
    display: inline-block;
    transition: background 0.3s ease;
}

.escort-info a:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Different color strips per card */

.main-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    background: #c30867;
    color: #ffff;
    padding: 30px 0;
    max-width: 1200px;
}

.content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.image-section {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.image-section img {
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.highlight {
    background: #0066ff;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
}

h1 span.red {
    color: #ffff00;
}

p {
    margin-bottom: 18px;
    font-size: 16px;
    opacity: 0.95;
}

.benefits {
    margin: 25px 0;
}

.benefits ul {
    list-style: none;
}

.benefits li {
    margin: 12px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits li::before {
    content: '✔️';
    color: #00ff88;
    font-weight: bold;
    font-size: 18px;
}

.buttons {
    margin-top: 30px;
}

/* Responsive */

@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        text-align: center;
    }
    h1 {
        font-size: 24px;
    }
    .image-section img {
        max-width: 320px;
    }
}

/* Mobile tweaks */

@media (max-width: 576px) {
    .escort-image img {
        height: 445px;
    }
}

.how-it-works {
    background: linear-gradient(180deg, #212529 0%, #212529 100%);
    color: #fff;
    padding: 14px 15px;
    text-align: center;
    position: relative;
}

.section-title {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 23px;
    color: #ccc;
    line-height: 1.6;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    background: rgb(5 76 91);
    border-radius: 16px !important;
    padding: 20px 9px !important;
    box-shadow: 0 4px 25px rgba(255, 0, 51, 0.15);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 35px rgba(255, 0, 51, 0.35);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #fff;
    color: #ffff00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 auto 18px;
}

.step-card h3 {
    font-size: 1.25rem !important;
    margin-bottom: 12px !important;
    color: #fff !important;
    text-transform: capitalize;
}

.step-card p {
    font-size: 0.98rem !important;
    color: #ddd !important;
    line-height: 1.5 !important;
}

/* Section background + padding */

.fun-section {
    background: #111;
    padding: 80px 20px;
    color: #fff;
}

/* Flex container */

.fun-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
}

/* Image */

.fun-image {
    flex: 1 1 600px;
    /* takes more space on large screens */
    text-align: center;
}

.fun-image img {
    width: 100%;
    max-width: 700px;
    /* much larger on desktop */
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

/* Content */

.fun-content {
    flex: 1 1 500px;
    text-align: left;
}

.fun-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffcc00;
    margin-bottom: 20px;
    line-height: 1.2;
}

.fun-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
}

/* --- Mobile/Tablet adjustments --- */

@media (max-width: 991px) {
    .fun-container {
        flex-direction: column;
        /* stack image + text */
        gap: 40px;
        text-align: center;
    }
    .fun-content {
        text-align: center;
    }
    .fun-content h2 {
        font-size: 2rem;
    }
    .fun-content p {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .fun-section {
        padding: 50px 15px;
    }
    .fun-content h2 {
        font-size: 1.6rem;
    }
    .fun-image img {
        max-width: 100%;
        /* fill mobile width */
    }
}

/* Entire section */

.categories-section {
    background: #212529;
    /* deep dark red background */
    color: #fff;
    padding: 30px 20px;
}

/* Top intro block full width */

.categories-intro {
    max-width: 1240px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.categories-intro h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 0, 76, 0.5);
}

.categories-intro p {
    font-size: 1rem;
    line-height: 1.8;
    color: #ddd;
    margin: 0;
}

/* Cards Grid */

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Card Styles */

.card {
    background: #b9b083;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.card-image {
    position: relative;
}

.card-image img {
    width: 100%;
    height: 383px;
    object-fit: cover;
    display: block;
    object-position: top;
}

.card-views {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #dee2e6;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-content {
    padding: 15px;
    text-align: center;
}

.card-content h3 {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
    color: #fff;
}

/* Make images smaller on small screens */

@media (max-width: 600px) {
    .card-image img {
        height: 275px;
    }
    .categories-intro h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
        /* force 2 per row */
    }
}

.card-image {
    position: relative;
    overflow: hidden;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    text-align: center;
    z-index: 2;
}

.card-content h3 {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

/* Black fog/gradient behind the text */

.card-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    z-index: 1;
}

.two-column-section {
    background: #780650;
    padding: 12px 6px;
    color: #fff;
}

.two-column-container {
    display: flex;
    align-items: center;
    /* Vertically center */
    max-width: 1200px;
    margin: auto;
    gap: 30px;
    flex-wrap: wrap;
    /* Stack on small screens */
}

/* Left text takes most of the width */

.text-column {
    flex: 1;
    /* Fill remaining space */
}

/* Right image takes only fixed width */

.image-column {
    flex: 0 0 auto;
    /* Donâ€™t stretch */
    width: 300px;
    /* Set width for image area */
}

.image-column img {
    width: 100%;
    /* Fit container */
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.text-column h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.text-column p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive */

@media (max-width: 768px) {
    .two-column-container {
        flex-direction: column;
    }
    .image-column {
        width: 100%;
        /* Full width on mobile */
        text-align: center;
    }
    .image-column img {
        max-width: 300px;
        /* Limit image size */
        width: 100%;
    }
}

.Hyderabad-areas-bubbles {
    background: #212529;
    padding: 17px 8px;
    text-align: center;
    color: #fff;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 13px;
    color: #ffff00;
}

.Hyderabad-areas-bubbles {
    padding: 20px;
    background-color: #212529;
    /* optional */
}

.Hyderabad-areas-bubbles .section-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center;
}

.bubbles-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    /* smooth scroll on mobile */
}

.bubbles-container::-webkit-scrollbar {
    height: 6px;
    /* small scrollbar */
}

.bubbles-container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

.bubble {
    flex: 0 0 auto;
    /* prevent shrinking */
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    position: relative;
    text-decoration: none;
    transition: transform 0.3s;
}

.bubble:hover {
    transform: scale(1.05);
}

.bubble .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 8px 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-weight: bold;
    border-radius: 0 0 50% 50%;
}

@media (max-width: 768px) {
    .bubble {
        width: 120px;
        height: 120px;
    }
}

/* ===== CONTENT SECTION ===== */

.content-section {
    background: #830662;
    padding: 18px 9px;
    text-align: left;
}

.content-section .container {
    max-width: 1100px;
    margin: auto;
}

.content-section h2 {
    text-align: center;
    font-size: 24px;
    color: #ffff00;
    margin-bottom: 10px;
}

.content-section .underline {
    height: 3px;
    background: #ffff00;
    margin: 0 auto 30px auto;
    border-radius: 2px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #fff;
    text-align: justify;
}

/* ===== AREAS SECTION ===== */

.areas-section {
    background: #f5f5f5;
    padding: 50px 20px;
}

.areas-section .container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.areas-section h3 {
    font-size: 24px;
    color: #0d6e74;
    margin-bottom: 25px;
}

.area-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.area-buttons a {
    background: #0d6e74;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.area-buttons a:hover {
    background: #ffff00;
}

/* categories css */

.girls-section {
    background: #1b7385;
    padding: 17px 10px;
    color: #fff;
}

.girls-section .section-title {
    text-align: center;
    color: #ffc107;
    font-size: 2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.girls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.girl-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 0, 51, 0.2);
}

.girl-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

/* bottom overlay (fog effect) */

.girl-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 80%, rgba(0, 0, 0, 0) 100%);
}

.girl-card .overlay .left h3 {
    margin: 0;
    font-size: 1rem;
    color: #fff;
    font-weight: bold;
}

.girl-card .overlay .right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.girl-card .overlay .age {
    font-size: 0.9rem;
    color: #fff;
}

.girl-card .overlay .whatsapp {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #25D366;
    color: #fff;
    font-size: 1rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease;
}

.girl-card .overlay .whatsapp:hover {
    background: #1ebe5d;
}

/* Responsive tweak */

@media (max-width: 768px) {
    .girl-card img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .girls-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .girl-card img {
        height: 285px;
    }
    .girl-card .overlay .left h3 {
        font-size: 0.85rem;
    }
    .girl-card .overlay .age {
        font-size: 0.75rem;
    }
    .girl-card .overlay .whatsapp {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
}

/* Category Block Styling */

.category-block {
    margin-bottom: 50px;
}

.category-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-left: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

.category-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 70%;
    background: #ffc107;
    border-radius: 3px;
}

.category-block:not(:last-child)::after {
    content: "";
    display: block;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin-top: 40px;
}

/* Overlay Layout */

.girl-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 80%, rgba(0, 0, 0, 0) 100%);
}

/* Watch Video button */

.girl-card .overlay .left a {
    background: #ff4081;
    color: #fff;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.girl-card .overlay .left a:hover {
    background: #e73370;
}

/* WhatsApp button */

.girl-card .overlay .whatsapp {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #25D366;
    color: #fff;
    font-size: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease;
}

.girl-card .overlay .whatsapp:hover {
    background: #1ebe5d;
}

.faq-section {
    background: linear-gradient(135deg, #1a0033, #3b0066);
    padding: 80px 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 1200px;
    margin: auto;
}

.faq-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-section h2 span {
    color: #ff66cc;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.faq-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.faq-card h3 span {
    display: inline-block;
    background: #ff66cc;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    margin-right: 10px;
    font-size: 14px;
}

.faq-card p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.6;
}

/* Mobile */

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.bottom-fixed-contact {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.bottom-btn {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    padding: 10px 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.bottom-btn i {
    font-size: 18px;
}

.call-btn {
    background: linear-gradient(45deg, #ff2d55, #ff6f91);
    box-shadow: 0 0 10px rgba(255, 45, 85, 0.4);
}

.call-btn:hover {
    background: linear-gradient(45deg, #ff007f, #ff4d6d);
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: linear-gradient(45deg, #25D366, #1ebe5d);
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    background: linear-gradient(45deg, #1ebe5d, #128c7e);
    transform: translateY(-2px);
}

/* Mobile and Tablet Styles */

@media (max-width: 1024px) {
    .bottom-fixed-contact {
        width: 90%;
        bottom: 10px;
        padding: 8px;
        gap: 10px;
    }
    .bottom-btn {
        flex: 1;
        justify-content: center;
        font-size: 14px;
        padding: 12px 0;
    }
}

/* Hide on PC / Desktop */

@media (min-width: 1025px) {
    .bottom-fixed-contact {
        display: none !important;
    }
}

/* Floating Contact Bar - PC Only */

/* Floating Contact Bar - PC Only */

.floating-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.8s ease-in-out;
}

/* Both Buttons - Half Width */

.floating-contact-bar a {
    flex: 1;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

/* Call Button */

.call-btn {
    background: linear-gradient(90deg, #ff3366, #ff6699);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.15);
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}

.call-btn:hover {
    background: linear-gradient(90deg, #ff6699, #ff3366);
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.8);
}

/* WhatsApp Button */

.whatsapp-btn {
    background: #25d366;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.15);
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.8);
}

/* Animation */

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Hide on Mobile Devices */

@media (max-width: 991px) {
    .floating-contact-bar {
        display: none !important;
    }
}