/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #e91e63;
    --light-pink: #fce4ec;
    --dark-pink: #c2185b;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --gray: #757575;
    --dark-gray: #212121;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --success: #4CAF50;
    --online: #4CAF50;
    --offline: #f44336;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-pink));
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.logo a {
    text-decoration: none;
    color: var(--white);
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.logo-pink {
    color: #ffeb3b;
}

.logo-white {
    color: var(--white);
}

.tagline {
    font-size: 12px;
    opacity: 0.9;
}

/* Search Bar */
.search-container {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.search-form {
    display: flex;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
}

.search-btn {
    background: var(--primary-red);
    border: none;
    padding: 12px 20px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--dark-pink);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: none;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
}

.search-result-item {
    padding: 15px;
    border-bottom: 1px solid var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-result-item:hover {
    background: var(--light-pink);
}

.search-result-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.search-result-info h4 {
    color: var(--primary-red);
    margin-bottom: 5px;
}

.search-result-info p {
    font-size: 14px;
    color: var(--gray);
}

/* City Selector */
.city-selector {
    position: relative;
}

.city-dropdown {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    background: var(--white);
    color: var(--dark-gray);
    font-weight: 500;
    cursor: pointer;
    outline: none;
    box-shadow: var(--shadow);
    min-width: 150px;
}

/* Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

.main-nav {
    margin-left: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 20px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(rgba(233, 30, 99, 0.9), rgba(194, 24, 91, 0.9)),
                url('https://images.unsplash.com/photo-1529626455594-4ff0802cfb7e?auto=format&fit=crop&w=1200');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-whatsapp {
    display: inline-block;
    background: #25D366;
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.hero-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.hero-whatsapp i {
    margin-right: 10px;
}

/* Categories Section */
.categories-section {
    padding: 60px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-red);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-red);
}

/* Small Categories Grid */
.small-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.small-category-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 15px;
    padding: 25px 15px;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.small-category-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.2);
    border-color: var(--primary-red);
    background: var(--light-pink);
}

.category-icon-small {
    width: 60px;
    height: 60px;
    background: var(--light-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 24px;
    color: var(--primary-red);
    transition: var(--transition);
}

.small-category-box:hover .category-icon-small {
    background: var(--primary-red);
    color: var(--white);
    transform: scale(1.1);
}

.category-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-gray);
    text-align: center;
    transition: var(--transition);
}

.small-category-box:hover .category-name {
    color: var(--dark-pink);
}

/* Person Cards Grid */
.persons-section {
    padding: 60px 0;
    background: var(--light-pink);
}

.persons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.person-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    min-height: 180px;
}

.person-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.15);
}

.person-image {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.person-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.person-card:hover .person-image img {
    transform: scale(1.05);
}

.online-status {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
}

.online-status.online {
    background: var(--online);
}

.online-status.offline {
    background: var(--offline);
}

.person-info {
    width: 60%;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.person-name {
    font-size: 20px;
    margin-bottom: 8px;
}

.person-name a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.person-name a:hover {
    color: var(--dark-pink);
    text-decoration: underline;
}

.person-age {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 5px;
}

.person-region {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.person-region i {
    color: var(--primary-red);
}

.person-description {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.person-price {
    color: var(--primary-red);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.whatsapp-btn {
    display: block;
    width: 100%;
    background: #25D366;
    color: var(--white);
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.whatsapp-btn i {
    margin-right: 8px;
}

/* Profile Detail Page */
.profile-header {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-pink));
    color: var(--white);
    padding: 60px 0;
}

.profile-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.profile-main-image {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.profile-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-basic-info h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.profile-age-location {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.profile-price {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffeb3b;
}

.profile-details-section {
    padding: 60px 0;
    background: var(--white);
}

.profile-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.profile-about {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.profile-about h2 {
    color: var(--primary-red);
    margin-bottom: 20px;
    font-size: 24px;
}

.profile-info-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.info-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 5px;
    display: block;
}

.info-value {
    color: var(--dark-gray);
}

.profile-gallery {
    padding: 60px 0;
    background: var(--light-pink);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer */
.main-footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #b0b0b0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
    font-size: 14px;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    background: var(--light-pink);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb-nav a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--primary-red);
}

.breadcrumb-nav .separator {
    color: var(--gray);
}

.breadcrumb-nav .current {
    color: var(--dark-pink);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-content {
        gap: 15px;
    }
    
    .search-container {
        order: 3;
        max-width: 100%;
        margin-top: 15px;
    }
    
    .city-selector {
        order: 2;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .profile-container {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        order: 4;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--dark-pink);
        transition: var(--transition);
        z-index: 999;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 10px;
        justify-content: flex-start;
    }
    
    .hero-banner {
        padding: 60px 0;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .persons-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .person-card {
        flex-direction: column;
        height: auto;
    }
    
    .person-image {
        width: 100%;
        height: 780px;
    }
    
    .person-info {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .hero-content h2 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .hero-whatsapp {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .persons-grid {
        grid-template-columns: 1fr;
    }
    
    .small-categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .category-icon-small {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Age Verification Banner */
.age-verification {
    background: var(--dark-gray);
    color: var(--white);
    text-align: center;
    padding: 15px;
    font-size: 14px;
    border-bottom: 2px solid var(--primary-red);
}

.age-verification i {
    color: var(--primary-red);
    margin-right: 10px;
}

/* Warning Message */
.warning-message {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 14px;
    text-align: center;
}

.warning-message i {
    margin-right: 10px;
}

/* Page Header for Inner Pages */
.page-header {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-pink));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* About, Contact, Policy Pages */
.policy-content, .about-content {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.policy-section, .about-section {
    margin-bottom: 30px;
}

.policy-section h2, .about-section h2 {
    color: var(--primary-red);
    margin-bottom: 15px;
    font-size: 28px;
}

.policy-section p, .about-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Filter Section */
.category-filter {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-gray);
    font-weight: 600;
}

.filter-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 16px;
    background: var(--white);
}

.filter-group select:focus {
    border-color: var(--primary-red);
    outline: none;
}

.filter-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}

.filter-btn {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn:hover {
    background: var(--dark-pink);
}

.reset-btn {
    background: var(--light-gray);
    color: var(--dark-gray);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.reset-btn:hover {
    background: var(--gray);
    color: var(--white);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.no-results i {
    font-size: 60px;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 24px;
    color: var(--dark-pink);
    margin-bottom: 15px;
}

.card-btns {
            display: flex;
            gap: 9px;
        }
        .btn-detail, .btn-contact {
            flex: 1;
            padding: 10px 6px;
            border-radius: 24px;
            border: none;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: transform .2s, box-shadow .2s;
            text-decoration: none;
            white-space: nowrap;
        }
        .btn-detail {
            background: var(--primary-red);
            color: #fff;
        }
        .btn-detail:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(233,30,99,.3);
        }
        .btn-contact {
            background: #25d366;
            color: #fff;
        }
        .btn-contact:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(37,211,102,.3);
        }
/* ========== PROFILE DETAIL PAGE STYLES ========== */

/* Profile Section */
.profile-section {
    background: #fff;
    margin: 40px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 900px;
}

/* Carousel */
.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #111;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}

.carousel-track img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
    z-index: 2;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    cursor: pointer;
    transition: background .3s, transform .3s;
}

.carousel-dots .dot.active {
    background: var(--primary-red);
    transform: scale(1.3);
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.4);
    color: #fff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s;
}

.carousel-arrow:hover { 
    background: rgba(0,0,0,.65); 
}

.carousel-arrow.prev { 
    left: 14px; 
}

.carousel-arrow.next { 
    right: 14px; 
}

/* Profile Info */
.profile-info {
    padding: 30px 32px 34px;
}

.profile-info h1 {
    font-size: 28px;
    color: var(--dark-gray);
    margin-bottom: 6px;
}

.profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    margin-bottom: 14px;
    font-size: 14px;
    color: #666;
}

.profile-meta span i { 
    color: var(--primary-red); 
    margin-right: 5px; 
}

.badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.badge {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.badge.verified { 
    background: var(--primary-red); 
}

.badge.online { 
    background: var(--success); 
}

.badge.premium { 
    background: #2196F3; 
}

.profile-desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 22px;
    max-width: 600px;
}

/* WhatsApp Button for Profile Page */
.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(37,211,102,.35);
    transition: transform .2s, box-shadow .2s;
    border: none;
    cursor: pointer;
}

.wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,.45);
}

.wa-btn i { 
    font-size: 18px; 
}

/* Similar Profiles Section */
.similar-section {
    padding: 60px 0;
    background: var(--light-pink);
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: 36px;
    color: var(--primary-red);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-red);
}

.section-heading p {
    color: var(--gray);
    font-size: 16px;
}

/* Make sure .persons-grid works for profile page */
.similar-section .persons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* Card buttons - ensure they work */
.card-btns {
    display: flex;
    gap: 9px;
    margin-top: 15px;
}

.btn-detail, .btn-contact {
    flex: 1;
    padding: 10px 6px;
    border-radius: 24px;
    border: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-detail {
    background: var(--primary-red);
    color: #fff;
}

.btn-detail:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(233,30,99,.3);
}

.btn-contact {
    background: #25d366;
    color: #fff;
}

.btn-contact:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,211,102,.3);
}

/* Floating WhatsApp - ensure it works */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
}

/* Responsive for Profile Page */
@media (max-width: 992px) {
    .carousel-wrapper {
        height: 700px;
    }
    
    .profile-info {
        padding: 20px 25px 25px;
    }
    
    .similar-section .persons-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .carousel-wrapper {
        height: 750px;
    }
    
    .profile-info h1 {
        font-size: 24px;
    }
    
    .wa-btn {
        width: 100%;
        justify-content: center;
    }
    
    .similar-section .persons-grid {
        grid-template-columns: 1fr;
    }
    
    .section-heading h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .carousel-wrapper {
        height: 550px;
    }
    
    .profile-info {
        padding: 15px 20px 20px;
    }
    
    .profile-meta {
        gap: 10px;
        font-size: 13px;
    }
    
    .badge {
        font-size: 11px;
        padding: 3px 10px;
    }
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lazy loading for non-critical images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img.loaded {
    opacity: 1;
}

/* Critical above-the-fold styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
.header {
    background: #1a1a1a;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Hero section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('/assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #d4af37; /* Gold color for luxury feel */
}

/* Category grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.category-card {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    background: #d4af37;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: #b8941f;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .header nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 20px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
}

/* Print styles */
@media print {
    .no-print {
        display: none;
    }
}

/* ===== CONTENT SECTIONS ===== */

/* Category Content */
.category-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.category-content h2 {
    color: #333;
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.category-content h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.category-content .features ul,
.category-content .booking-info ol {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.category-content li {
    margin: 10px 0;
    padding-left: 10px;
}

/* Profile Intro */
.profile-intro {
    padding: 40px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.profile-intro h2,
.profile-intro h3 {
    color: white;
}

.profile-intro .intro-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    margin: 20px 0;
}

.profile-highlights ul,
.booking-process ol {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
}

.safety-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

/* About Content */
.about-content {
    padding: 60px 0;
}

.about-content h2 {
    color: #d4af37;
    margin: 30px 0 15px;
    font-size: 1.8rem;
}

.about-content ul {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

.about-content li {
    margin: 10px 0;
    padding-left: 10px;
}

/* Contact Content */
.contact-content {
    padding: 60px 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.contact-method h3 {
    color: #d4af37;
    margin-bottom: 10px;
}

.contact-method a {
    display: inline-block;
    background: #d4af37;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
    font-weight: bold;
}

.contact-info ul {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

.privacy-notice {
    background: #e8f4fd;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 4px solid #2196f3;
}

/* Responsive */
@media (max-width: 768px) {
    .category-content,
    .about-content,
    .contact-content {
        padding: 40px 20px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .profile-intro .intro-content {
        padding: 20px;
    }
}