/* css/style.css - CORRECTED MOBILE MENU */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #f8b5d1;
    --secondary-pink: #fce4ec;
    --accent-pink: #f48fb1;
    --dark-pink: #ec407a;
    --light-pink: #fce7f3;
    --text-color: #5a3d5c;
    --text-light: #957b9e;
    --white: #ffffff;
    --shadow: rgba(248, 181, 209, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--light-pink);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background-color: var(--white);
    box-shadow: 0 4px 20px var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: var(--dark-pink);
    font-weight: 700;
}

.logo-romantic {
    color: var(--text-color);
}

.tagline {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a:hover {
    background-color: var(--secondary-pink);
    color: var(--dark-pink);
}

.main-nav a.active {
    background-color: var(--primary-pink);
    color: var(--white);
}

/* MOBILE MENU TOGGLE - HIDDEN ON DESKTOP */
.mobile-menu-toggle {
    display: none; /* Hidden by default on all screens */
    font-size: 1.8rem;
    color: var(--dark-pink);
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background-color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 600px;
    background: linear-gradient(rgba(248, 181, 209, 0.7), rgba(236, 64, 122, 0.5)), 
                url('../images/hero-banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-title span {
    color: var(--primary-pink);
    font-family: 'Dancing Script', cursive;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--dark-pink);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background-color: var(--primary-pink);
    color: var(--white);
    transform: translateY(-5px);
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-pink);
    margin: 15px auto 30px;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--secondary-pink);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--primary-pink);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow);
}

.service-icon {
    font-size: 3rem;
    color: var(--dark-pink);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-link {
    color: var(--dark-pink);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

/* Massage Girls Section */
.massage-girls {
    padding: 100px 0;
    background-color: var(--light-pink);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.girls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.girl-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.girl-card:hover {
    transform: translateY(-10px);
}

.girl-image {
    position: relative;
    overflow: hidden;
}

.girl-image img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.girl-card:hover .girl-image img {
    transform: scale(1.05);
}

.girl-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(236, 64, 122, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.girl-card:hover .girl-overlay {
    opacity: 1;
}

.view-profile {
    color: var(--white);
    background-color: transparent;
    border: 2px solid var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-profile:hover {
    background-color: var(--white);
    color: var(--dark-pink);
}

.girl-info {
    padding: 20px;
    text-align: center;
}

.girl-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.girl-country {
    color: var(--dark-pink);
    font-weight: 600;
    margin-bottom: 10px;
}

.girl-specialty {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* SEO Content Section */
.seo-content {
    padding: 100px 0;
    background-color: var(--white);
}

.content-paragraphs {
    max-width: 900px;
    margin: 0 auto 60px;
}

.content-paragraphs p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-paragraphs strong {
    color: var(--dark-pink);
}

.locations-section {
    max-width: 900px;
    margin: 0 auto;
}

.locations-section h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-color);
    text-align: center;
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.location-tag {
    background-color: var(--secondary-pink);
    color: var(--text-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--primary-pink);
}

.location-tag:hover {
    background-color: var(--primary-pink);
    color: var(--white);
    transform: translateY(-3px);
}

/* Sticky Contact Buttons */
.sticky-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.sticky-btn span {
    display: none;
    margin-left: 10px;
}

.sticky-btn:hover {
    width: 200px;
    border-radius: 50px;
    justify-content: flex-start;
    padding-left: 25px;
}

.sticky-btn:hover span {
    display: inline;
}

.telegram {
    background-color: #0088cc;
}

.whatsapp {
    background-color: #25D366;
}

/* Footer */
.main-footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    /* Show mobile menu button only on mobile */
    .mobile-menu-toggle {
        display: flex; /* Now visible only on mobile screens */
    }
    
    /* Hide regular navigation on mobile */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .main-nav a {
        padding: 15px 20px;
        margin-bottom: 10px;
        border-radius: 10px;
        justify-content: flex-start;
    }
    
    .hero {
        height: 70vh;
        min-height: 500px;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .girls-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .sticky-contact {
        bottom: 20px;
        left: 20px;
    }
    
    .sticky-btn {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .girls-grid {
        grid-template-columns: 1fr;
    }
    
    .sticky-btn:hover {
        width: 55px;
        border-radius: 50%;
        padding-left: 0;
    }
    
    .sticky-btn:hover span {
        display: none;
    }
}









/* Labuan Escort Hero */
.escort-hero {
    background: linear-gradient(rgba(248, 181, 209, 0.7), rgba(236, 64, 122, 0.5)), 
                url('../images/hero-banner2.jpg') no-repeat center center/cover;
}

/* Introduction Section */
.intro-section {
    padding: 80px 0;
    background-color: var(--secondary-pink);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 50px;
    color: var(--text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: var(--dark-pink);
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.feature p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Rating Stars for Massage Girls */
.girl-rating {
    margin-top: 8px;
    color: #ffc107;
    font-size: 0.9rem;
}

.girl-rating .far {
    color: #e0e0e0;
}

/* Escort SEO Content */
.escort-seo {
    background-color: var(--light-pink);
}

/* Booking Process */
.booking-process {
    margin-top: 60px;
    padding: 40px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

.booking-process h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 20px;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--primary-pink);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 20px;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Responsive Adjustments for Escort Page */
@media (max-width: 768px) {
    .intro-text {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .booking-process {
        padding: 30px 20px;
        margin: 40px 15px 0;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}










/* B2B Hero */
.b2b-hero {
    background: linear-gradient(rgba(248, 181, 209, 0.7), rgba(236, 64, 122, 0.5)), 
                url('../images/hero-banner3.jpg') no-repeat center center/cover;
}

/* What is B2B Section */
.what-is-b2b {
    padding: 100px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.b2b-explanation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.b2b-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-color);
}

.b2b-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.b2b-feature {
    text-align: center;
    padding: 20px;
    background-color: var(--secondary-pink);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.b2b-feature:hover {
    transform: translateY(-5px);
}

.b2b-feature i {
    font-size: 2rem;
    color: var(--dark-pink);
    margin-bottom: 15px;
}

.b2b-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.b2b-feature p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.b2b-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px var(--shadow);
}

/* B2B Benefits Section */
.b2b-benefits {
    padding: 100px 0;
    background-color: var(--light-pink);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--dark-pink);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* B2B SEO Content */
.b2b-seo-content {
    padding: 100px 0;
    background-color: var(--white);
}

.seo-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.seo-main-content h3 {
    font-size: 1.6rem;
    margin: 30px 0 20px;
    color: var(--text-color);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-pink);
}

.seo-main-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.cta-box {
    background-color: var(--secondary-pink);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    border: 2px solid var(--primary-pink);
}

.cta-box h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.contact-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.whatsapp-btn, .telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.telegram-btn {
    background-color: #0088cc;
    color: white;
}

.whatsapp-btn:hover, .telegram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Sidebar */
.seo-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background-color: var(--light-pink);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
}

.sidebar-card h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-color);
    text-align: center;
}

.location-list, .technique-list {
    list-style: none;
}

.location-list li, .technique-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-list li:last-child, .technique-list li:last-child {
    border-bottom: none;
}

.location-list i {
    color: var(--dark-pink);
}

.technique-list i {
    color: #4CAF50;
}

.hours-info p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.hours-info strong {
    color: var(--dark-pink);
}

/* FAQ Section */
.faq-section {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 2px solid var(--secondary-pink);
}

.faq-section h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--text-color);
    text-align: center;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--secondary-pink);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: var(--secondary-pink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 0;
}

.faq-question i {
    color: var(--dark-pink);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--white);
}

.faq-answer p {
    padding: 20px 0;
    margin: 0;
    color: var(--text-light);
}

.faq-item.active .faq-question {
    background-color: var(--primary-pink);
}

.faq-item.active .faq-question h4 {
    color: white;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: var(--light-pink);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px var(--shadow);
    position: relative;
}

.testimonial-card:before {
    content: '"';
    font-family: 'Dancing Script', cursive;
    font-size: 5rem;
    color: var(--primary-pink);
    position: absolute;
    top: -20px;
    left: 20px;
    opacity: 0.3;
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid var(--secondary-pink);
    padding-top: 20px;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-pink);
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Responsive Design for B2B Page */
@media (max-width: 992px) {
    .b2b-explanation {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .b2b-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .seo-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .b2b-features {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .whatsapp-btn, .telegram-btn {
        justify-content: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .b2b-content p {
        font-size: 1.1rem;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .sidebar-card {
        padding: 20px 15px;
    }
}





