:root {
    --primary-color: #e91e63;
    --secondary-color: #c2185b;
    --text-color: #333;
    --light-gray: #f4f4f4;
    --white: #ffffff;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container & Grid */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-3 {
    width: 25%;
    padding: 0 15px;
}

.col-md-4 {
    width: 33.333333%;
    padding: 0 15px;
}

.col-6 {
    width: 50%;
    padding: 0 15px;
}

.col-md-5 {
    width: 41.666667%;
    padding: 0 15px;
}

.col-md-6 {
    width: 50%;
    padding: 0 15px;
}

.col-md-7 {
    width: 58.333333%;
    padding: 0 15px;
}

.col-md-8 {
    width: 66.666667%;
    padding: 0 15px;
}

.col-md-12 {
    width: 100%;
    padding: 0 15px;
}

.offset-md-2 {
    margin-left: 16.666667%;
}

.align-items-center {
    align-items: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

/* Header */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav a {
    font-weight: 600;
    color: var(--text-color);
}

.main-nav a:hover {
    color: var(--primary-color);
}

.header-cta {
    display: flex;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
}

.btn-green {
    background: #28a745;
    color: var(--white);
}

.btn-green:hover {
    background: #218838;
}

.btn-outline-pink {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-pink:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    background-color: #e91e63;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

/* Black Shemale Page Styles */
.black-hero {
    background: url('images/blackshemale.jpg') no-repeat center center/cover;
    position: relative;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

.black-hero .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

/* Video Chat Page Styles */
.video-chat-hero {
    background: url('images/shemaleprofile5.jpg') no-repeat center center/cover;
    position: relative;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

.video-chat-hero .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

/* Video Theme for Comparison Table */
.comparison-table.video-theme th {
    background-color: #e91e63;
}

@media (max-width: 768px) {
    .comparison-table.video-theme td:before {
        color: #e91e63;
    }
}

.black-benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-text {
    flex: 1;
    padding-right: 50px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subheadline {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-image-container {
    flex: 1;
    height: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.hero-badges {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
}

.hero-badges span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Search Bar */
.search-bar-section {
    background: var(--primary-color);
    padding: 20px 0;
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.search-bar {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    align-items: flex-end;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.search-item {
    flex: 1;
}

.search-item label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

.search-item select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background: var(--light-gray);
}

.bg-pink-light {
    background: #fff0f5;
}

.bg-pink-gradient {
    background: linear-gradient(135deg, #e91e63, #ff4081);
}

.bg-dark {
    background: #1a1a1a;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.lead-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.icon-wrapper {
    margin-bottom: 20px;
}

/* Member Section */
.member-img-wrapper img {
    border-radius: 10px;
    margin-bottom: 20px;
    width: 100%;
    height: 300px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.member-group h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 24px;
}

/* Why Choose Section */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.reason-item {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.reason-item.reason-item-light {
    background: #fff;
    border: 1px solid #eee;
    backdrop-filter: none;
}

.reason-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 10px;
    display: inline-block;
}

/* Profiles Section */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

@media (min-width: 992px) {
    .profiles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.profile-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.profile-card:hover .profile-img img {
    transform: scale(1.05);
}

.profile-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #4caf50;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.profile-info {
    padding: 20px;
    text-align: center;
}

.profile-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.city {
    color: #777;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.profile-bio {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

/* Footer */
.site-footer {
    background: #222;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 0;
        z-index: 999;
        box-sizing: border-box;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .main-nav li {
        width: 100%;
        margin: 0;
        text-align: center;
    }

    .main-nav a {
        display: block;
        width: 100%;
        padding: 15px 20px;
        border-bottom: 1px solid #f5f5f5;
    }

    .main-nav li:last-child a {
        border-bottom: none;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
    }
    
    .hero-image-container {
        display: block;
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }

    .hero-section {
        height: auto;
        padding-top: 40px;
        padding-bottom: 100px;
    }

    .hero-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    .col-md-6, .col-md-8, .col-md-5, .col-md-7, .col-md-4, .offset-md-2 {
        width: 100%;
        margin-bottom: 30px;
        margin-left: 0;
    }

    .col-md-3 {
        width: 100%;
    }

    .search-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .section-title {
        font-size: 28px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
}

/* Additional Styles for About Page */
.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

.rounded {
    border-radius: 10px;
}

.shadow {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.custom-list {
    list-style: none;
    margin-top: 20px;
}

.custom-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.custom-list li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -5px;
}

.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-box {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.f-icon {
    font-size: 30px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 15px;
    background: #fff0f5;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    line-height: 40px;
}

/* Types of Shemales List Styles */
.types-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 40px;
}

.type-row {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.type-row:hover {
    transform: translateY(-5px);
}

.type-row.reverse {
    flex-direction: row-reverse;
}

.type-image {
    flex: 1;
    height: 350px;
    overflow: hidden;
}

.type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.type-row:hover .type-image img {
    transform: scale(1.05);
}

.type-desc {
    flex: 1;
    padding: 40px;
    text-align: left;
}

.type-desc h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 20px;
}

.type-desc p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .type-row, .type-row.reverse {
        flex-direction: column;
    }
    
    .type-image {
        width: 100%;
        height: 250px;
    }
    
    .type-desc {
        padding: 30px 20px;
        text-align: center;
    }
}

/* Success Stories Page Styles */
.success-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
}

.success-hero .page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.success-hero .lead {
    font-size: 1.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Story Cards */
.story-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 60px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-images {
    position: relative;
    height: 300px;
    width: 100%;
}

.story-img-main {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
}

.story-img-secondary {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
}

.story-content {
    padding: 20px;
}

.story-location {
    display: inline-block;
    background: #ffeef2;
    color: #e91e63;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.story-date {
    color: #777;
    font-style: italic;
    margin-bottom: 15px;
}

.story-card.reverse .row {
    flex-direction: row-reverse;
}

/* Lessons Grid */
.lessons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.lesson-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.lesson-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

/* Success Steps */
.success-steps {
    list-style: none;
    margin-top: 30px;
}

.success-steps li {
    display: flex;
    margin-bottom: 30px;
}

.step-count {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    margin-right: 20px;
}

.cta-section {
    background: #ddd;
    padding: 80px 0;
}

/* BBW Page Styles */
.bbw-hero {
    background: url('images/bbwshemaledating.jpg') no-repeat center center/cover;
    position: relative;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

.max-w-800 {
    max-width: 800px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.content-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.bbw-benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.benefit-card.reverse {
    flex-direction: row-reverse;
}

.benefit-img {
    flex: 1;
    height: 300px;
}

.benefit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-content {
    flex: 1;
    padding: 40px;
}

.audience-list {
    display: grid;
    gap: 20px;
}

.audience-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.img-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(233, 30, 99, 0.1);
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
}

.red-flags-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.red-flags-table th, .red-flags-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.red-flags-table th {
    background: rgba(0,0,0,0.3);
    font-weight: 600;
    color: #e91e63;
}

/* Mobile Optimizations for BBW Page */
@media (max-width: 768px) {
    /* Hide Header CTA Button on Mobile */
    .header-cta {
        display: none;
    }

    /* Responsive Red Flags Table */
    .red-flags-table, 
    .red-flags-table thead, 
    .red-flags-table tbody, 
    .red-flags-table th, 
    .red-flags-table td, 
    .red-flags-table tr { 
        display: block; 
    }
    
    .red-flags-table thead tr { 
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .red-flags-table tr { 
        margin-bottom: 15px; 
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 10px;
        padding: 10px;
    }
    
    .red-flags-table td { 
        border: none;
        border-bottom: 1px solid rgba(255,255,255,0.1); 
        position: relative;
        padding: 35px 10px 10px 10px; 
        text-align: left;
    }
    
    .red-flags-table td:before { 
        position: absolute;
        top: 10px;
        left: 10px;
        font-weight: bold;
        color: #e91e63;
        content: attr(data-label);
    }
    
    .red-flags-table td:last-child {
        border-bottom: 0;
    }
}

.red-flags-table tr:last-child td {
    border-bottom: none;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-item h3 {
    padding: 20px;
    margin: 0;
    cursor: pointer;
    background: #f8f9fa;
    font-size: 1.1rem;
    position: relative;
    transition: background 0.3s;
}

.faq-item h3:hover {
    background: #eee;
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.faq-item.active h3::after {
    content: '-';
}

.faq-item p {
    padding: 20px;
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
}

.faq-item.active p {
    display: block;
}

/* Granny Page Styles */
.granny-hero {
    background: url('images/grannyshemale.jpg') no-repeat center center/cover;
    position: relative;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

.granny-hero .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    color: #333;
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
}

.comparison-table tr:hover {
    background: #f9f9f9;
}

/* Hover Zoom Effect */
.hover-zoom {
    transition: transform 0.3s ease;
}

.hover-zoom:hover {
    transform: scale(1.05);
}

/* Mobile Optimizations for Granny Page */
@media (max-width: 768px) {
    .comparison-table, 
    .comparison-table thead, 
    .comparison-table tbody, 
    .comparison-table th, 
    .comparison-table td, 
    .comparison-table tr { 
        display: block; 
    }
    
    .comparison-table thead tr { 
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .comparison-table tr { 
        margin-bottom: 15px; 
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 10px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    
    .comparison-table td { 
        border: none;
        border-bottom: 1px solid #eee; 
        position: relative;
        padding: 15px;
        text-align: left;
    }
    
    .comparison-table td:before { 
        position: static;
        display: block;
        width: 100%; 
        padding-right: 0; 
        white-space: normal;
        text-align: left;
        font-weight: bold;
        color: var(--primary-color);
        content: attr(data-label);
        margin-bottom: 8px;
    }
    
    .comparison-table td:last-child {
        border-bottom: 0;
    }
}

/* Black Theme for Comparison Table */
.comparison-table.black-theme th {
    background-color: #1a1a1a;
}

@media (max-width: 768px) {
    .comparison-table.black-theme td:before {
        color: #1a1a1a;
    }
}

/* Sissy Page Styles */
.sissy-hero {
    background: url('images/shemalegirl.jpg') no-repeat center center/cover;
    position: relative;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

.sissy-hero .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

/* Restored Styles for Index Page Sections */

/* Terms Grid */
.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.term-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.term-item:hover {
    transform: translateY(-5px);
}

.term-item h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    display: inline-block;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
    padding: 3px;
    background: #fff;
}

.quote-icon {
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.1;
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    position: relative;
    z-index: 1;
}

.author {
    font-weight: 700;
    color: var(--text-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Blog Section Styles */
.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    color: var(--text-color);
    line-height: 1.4;
}

.blog-card p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-card .btn {
    margin: 0 20px 25px;
}

/* CTA Section specific - Scoped to #home-cta */
#home-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

#home-cta p {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Page CTA - Scoped to #about-cta */
#about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-color);
}

/* BBW Page CTA - Scoped to #bbw-cta */
#bbw-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

#bbw-cta p {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Success Page CTA - Scoped to #success-cta */
#success-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

#success-cta p {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Restored Index Page Specific Styles */

/* Hero Buttons - Scoped to Home */
#home .hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* How It Works Steps - Scoped to #how-it-works */
#how-it-works .steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

#how-it-works .step {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

#how-it-works .step:hover {
    transform: translateY(-5px);
}

#how-it-works .step .step-number {
    position: static;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1; /* Override global .step-number opacity */
}

/* Safety Guidelines Box - Scoped to #how-it-works */
#how-it-works .safety-box {
    background-color: #fff5f8;
    border-left: 5px solid var(--primary-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-top: 50px;
    text-align: left;
}

#how-it-works .safety-box h3 {
    margin-bottom: 25px;
    color: var(--text-color);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

#how-it-works .safety-box ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 20px;
}

#how-it-works .safety-box li {
    position: relative;
    padding-left: 35px;
    line-height: 1.6;
    color: #555;
}

#how-it-works .safety-box li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.6;
}

#how-it-works .safety-box strong {
    color: #333;
    font-weight: 600;
}

/* Popular Cities Grid - Scoped to #cities */
#cities .cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

#cities .city-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

#cities .city-card:hover {
    transform: translateY(-5px);
}

#cities .city-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

#cities .city-info {
    padding: 20px;
    text-align: center;
}

#cities .city-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

#cities .city-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

#cities .city-info a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

#cities .city-info a:hover {
    text-decoration: underline;
}

/* Mobile adjustments for restored sections */
@media (max-width: 768px) {
    #home .hero-buttons {
        justify-content: center;
    }
    
    #how-it-works .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    #how-it-works .step {
        width: 100%;
        max-width: 100%;
    }
}

/* Mumbai Page Styles */
.mumbai-hero {
    background: url('images/mumbai.jpg') no-repeat center center/cover;
    position: relative;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

/* Mumbai CTA - Scoped to #mumbai-cta */
#mumbai-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}
#mumbai-cta p {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Mumbai Clubs Section - Scoped to #mumbai-clubs */
#mumbai-clubs .step-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    height: 100%;
}

#mumbai-clubs .step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

#mumbai-clubs .step-card h3 {
    background: var(--primary-color);
    color: #fff;
    padding: 15px 20px;
    margin: 0;
    font-size: 1.25rem;
}

#mumbai-clubs .step-card p {
    padding: 15px 20px;
    margin-bottom: 0;
    color: #555;
    font-size: 0.95rem;
}

#mumbai-clubs .step-card p strong {
    color: var(--text-color);
    display: block;
    margin-bottom: 5px;
}

/* Delhi Page Styles */
.delhi-hero {
    background: url('images/dlhiindia-696x277.jpg') no-repeat center center/cover;
    position: relative;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

/* Delhi CTA - Scoped to #delhi-cta */
#delhi-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}
#delhi-cta p {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Delhi Clubs Grid - Scoped to #delhi-clubs */
#delhi-clubs .clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

#delhi-clubs .club-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

#delhi-clubs .club-card:hover {
    transform: translateY(-5px);
}

#delhi-clubs .club-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

#delhi-clubs .club-info {
    padding: 20px;
    text-align: left;
}

#delhi-clubs .club-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

#delhi-clubs .club-info p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 10px;
}

#delhi-clubs .club-info strong {
    color: var(--text-color);
}

/* Delhi Comparison Table - Scoped to #delhi-comparison */
#delhi-comparison .comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
}

#delhi-comparison .comparison-table th,
#delhi-comparison .comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

#delhi-comparison .comparison-table th {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
}

#delhi-comparison .comparison-table tr:last-child td {
    border-bottom: none;
}

#delhi-comparison .comparison-table tr:hover {
    background-color: #f9f9f9;
}

/* Delhi Terms Grid - Scoped to #delhi-terms */
#delhi-terms .terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

#delhi-terms .term-item {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}

#delhi-terms .term-item strong {
    color: #fff; /* Ensure contrast on dark bg */
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* Mobile Adjustments for Delhi Page */
@media (max-width: 768px) {
    #delhi-comparison .table-responsive {
        overflow-x: auto;
    }
    
    #delhi-comparison .comparison-table th,
    #delhi-comparison .comparison-table td {
        min-width: 150px; /* Ensure table is readable on scroll */
        padding: 15px;
    }
}

/* Bangalore Page Styles */
#bangalore-hero {
    background: url('images/sugarmommabanlore-696x279.jpg') no-repeat center center/cover;
    position: relative;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

#bangalore-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

#bangalore-hero .hero-content {
    position: relative;
    z-index: 1;
}

#bangalore-benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

#bangalore-benefits .benefit-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

#bangalore-benefits .benefit-item:hover {
    transform: translateY(-5px);
}

#bangalore-benefits .benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* Bangalore Steps */
#bangalore-find-online .steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

#bangalore-find-online .step-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

#bangalore-find-online .step-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

/* Bangalore Clubs */
#bangalore-clubs .clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

#bangalore-clubs .club-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

#bangalore-clubs .club-card:hover {
    transform: translateY(-5px);
}

#bangalore-clubs .club-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

#bangalore-clubs .club-info {
    padding: 20px;
    text-align: left;
}

#bangalore-clubs .club-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Bangalore Preparation */
#bangalore-preparation .preparation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

#bangalore-preparation .prep-box {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

#bangalore-preparation .prep-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#bangalore-preparation .prep-box h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Bangalore Safety */
#bangalore-safety .safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

#bangalore-safety .safety-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

#bangalore-safety .safety-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

#bangalore-safety .safety-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Bangalore FAQ */
#bangalore-faq .faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

#bangalore-faq .faq-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

#bangalore-faq .faq-item h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Chennai Page Styles */
/* Chennai Hero Section - Fixed to match Granny style */
#chennai-hero {
    background: url('images/banner3.jpg') no-repeat center center/cover;
    position: relative;
    padding: 150px 0;
    text-align: center;
    color: #fff;
}

#chennai-hero .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

#chennai-hero .hero-content {
    position: relative;
    z-index: 2;
}

#chennai-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

#chennai-hero .hero-subheadline {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Chennai Overview Fixes */
#chennai-overview .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#chennai-overview .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 15px;
}

@media (max-width: 768px) {
    #chennai-overview .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    #chennai-overview h2.section-title {
        font-size: 1.8rem;
    }
}

#chennai-overview h2.section-title {
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 20px;
}

#chennai-overview img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#chennai-profile .content-box {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

#chennai-online .online-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

#chennai-online .online-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

#chennai-online .online-card:hover {
    transform: translateY(-5px);
}

#chennai-online .icon-box {
    margin-bottom: 20px;
}

#chennai-offline .offline-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

#chennai-offline .offline-item:hover {
    transform: translateY(-5px);
}

#chennai-offline .offline-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

#chennai-safety .safety-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

#chennai-safety .safety-box.warning {
    border-left: 4px solid #ff4444;
}

#chennai-safety .safety-box h3 {
    margin-bottom: 20px;
    color: #333;
}

#chennai-safety ul {
    padding-left: 0;
}

#chennai-safety ul li {
    margin-bottom: 15px;
    list-style: none;
    position: relative;
    padding-left: 25px;
}

#chennai-safety ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.5em;
    line-height: 1;
    top: -2px;
}

#chennai-relationships .rel-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

#chennai-relationships .rel-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

#chennai-guide .guide-list {
    padding-left: 20px;
}

#chennai-guide .guide-list li {
    margin-bottom: 15px;
}

#chennai-cta {
    background: linear-gradient(rgba(233, 30, 99, 0.9), rgba(233, 30, 99, 0.9)), url('images/banner2.jpg') no-repeat center center/cover;
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

/* Chennai Page Updates - Fixes */
#chennai-offline .chennai-offline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 992px) {
    #chennai-offline .chennai-offline-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #chennai-offline .chennai-offline-grid {
        grid-template-columns: 1fr;
    }
}

#chennai-guide .challenge-section,
#chennai-guide .persuade-section {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-color);
}

#chennai-guide h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

#chennai-cta .btn {
    margin-top: 30px;
    display: inline-block;
}

/* Fix for mobile horizontal scroll */
#chennai-hero, #chennai-overview, #chennai-cta, #chennai-offline, #chennai-guide {
    overflow-x: hidden;
    width: 100%;
}

#chennai-hero .hero-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Pune Page Styles */
#pune-why .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    #pune-why .row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #pune-why .row {
        grid-template-columns: 1fr;
    }
}

#pune-why .col-md-4 {
    width: 100%;
    max-width: 100%;
    flex: none;
    padding: 0;
}

/* FAQ Styles for Pune and Bangalore */
#pune-faq .faq-item h3,
#bangalore-faq .faq-item h3 {
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    user-select: none;
}

#pune-faq .faq-item h3::after,
#bangalore-faq .faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

#pune-faq .faq-item.active h3::after,
#bangalore-faq .faq-item.active h3::after {
    content: '-';
}

#pune-faq .faq-item p,
#bangalore-faq .faq-item p {
    display: none;
    margin-top: 15px;
    color: #555;
    line-height: 1.6;
}

#pune-faq .faq-item.active p,
#bangalore-faq .faq-item.active p {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

#pune-hero {
    background: url('images/punneindia-696x307.jpg') no-repeat center center/cover;
    position: relative;
    padding: 150px 0;
    text-align: center;
    color: #fff;
}

#pune-hero .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

#pune-hero .hero-content {
    position: relative;
    z-index: 2;
}

#pune-why .why-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}

#pune-why .why-card:hover {
    transform: translateY(-5px);
}

#pune-types .pune-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    #pune-types .pune-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #pune-types .pune-types-grid {
        grid-template-columns: 1fr;
    }
}

#pune-types .type-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#pune-types .type-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

#pune-types .type-content {
    padding: 20px;
}

#pune-topics .topic-list {
    list-style: none;
    padding: 0;
}

#pune-topics .topic-list li {
    background: #fff;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary-color);
}

#pune-chat-types .chat-type-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    border: 1px solid #eee;
}

#pune-chat-types .chat-type-box.highlight {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#pune-faq .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

#pune-faq .faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

#pune-faq .faq-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

#pune-cta {
    background: linear-gradient(rgba(233, 30, 99, 0.9), rgba(233, 30, 99, 0.9)), url('images/banner2.jpg') no-repeat center center/cover;
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

#pune-hero, #pune-overview, #pune-cta, #pune-why, #pune-types, #pune-topics, #pune-chat-types, #pune-faq {
    overflow-x: hidden;
    width: 100%;
}

/* Blog Page Styles */
#blog-page .blog-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/banner.jpg') no-repeat center center/cover;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

#blog-page .blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Kolkata Page Styles */

#kolkata-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/Kolkata.jpg') no-repeat center center/cover;
    padding: 150px 0;
    text-align: center;
    color: #fff;
    position: relative;
}

#kolkata-hero .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

#kolkata-hero .hero-content {
    position: relative;
    z-index: 2;
}

#kolkata-profiles .kolkata-profile-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    #kolkata-profiles .kolkata-profile-types {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #kolkata-profiles .kolkata-profile-types {
        grid-template-columns: 1fr;
    }
}

#kolkata-profiles .type-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

#kolkata-profiles .type-card:hover {
    transform: translateY(-5px);
}

#kolkata-profiles .type-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

#kolkata-profiles .type-content {
    padding: 20px;
}

#kolkata-profiles .type-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

#kolkata-comparison .comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
}

#kolkata-comparison .comparison-table th,
#kolkata-comparison .comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

#kolkata-comparison .comparison-table th {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
}

#kolkata-comparison .comparison-table tr:hover {
    background-color: #f9f9f9;
}

#kolkata-chat-reasons .reason-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#kolkata-chat-reasons .reason-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary-color);
}

#kolkata-chat-reasons .reason-box h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

#kolkata-topics .topics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    #kolkata-topics .topics-grid {
        grid-template-columns: 1fr;
    }
}

#kolkata-topics .topic-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
}

#kolkata-topics .topic-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

#kolkata-clubs .clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

#kolkata-clubs .club-card {
    background: #333;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

#kolkata-clubs .club-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

#kolkata-clubs .club-details {
    padding: 20px;
    color: #ddd;
}

#kolkata-clubs .club-details h3 {
    color: #fff;
    margin-bottom: 10px;
}

#kolkata-clubs .club-details strong {
    color: var(--primary-color);
}

#kolkata-mistakes .mistakes-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    #kolkata-mistakes .mistakes-container {
        grid-template-columns: 1fr;
    }
}

#kolkata-mistakes .mistake-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

#kolkata-mistakes .mistake-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

#kolkata-mistakes .mistake-item h3 {
    color: #d9534f;
    margin-bottom: 10px;
}

#kolkata-help .help-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}

#kolkata-help .help-box:hover {
    transform: translateY(-5px);
}

#kolkata-help .help-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

#kolkata-cta {
    background: linear-gradient(rgba(233, 30, 99, 0.9), rgba(233, 30, 99, 0.9)), url('images/banner2.jpg') no-repeat center center/cover;
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

/* Global Responsive Fix for new sections */
#kolkata-hero, #kolkata-overview, #kolkata-profiles, #kolkata-comparison, #kolkata-chat-reasons, #kolkata-topics, #kolkata-clubs, #kolkata-mistakes, #kolkata-help, #kolkata-cta {
    overflow-x: hidden;
    width: 100%;
}

/* Breadcrumb Styles */
.breadcrumb-nav {
    background-color: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: #6c757d;
    content: "/";
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Shemales vs Female Page Styles */
#svf-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/shemales.jpg') no-repeat center center/cover;
    padding: 150px 0;
    text-align: center;
    color: #fff;
    position: relative;
}

#svf-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#svf-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

#svf-hero .hero-subheadline {
    font-size: 1.2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    #svf-hero h1 {
        font-size: 2rem;
    }
}

/* Specific Section Styles */
#svf-intro, #svf-definition, #svf-history, #svf-legal, #svf-identity, #svf-social, #svf-feminism, #svf-perception, #svf-orientation, #svf-preference, #svf-conclusion {
    overflow-x: hidden;
}

#svf-history, #svf-feminism {
    border-left: 5px solid var(--primary-color);
}

#svf-page .img-responsive {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

#svf-page p {
    line-height: 1.8;
    margin-bottom: 20px;
}

#svf-page .lead-text {
    font-size: 1.2rem;
    color: #444;
}

@media (max-width: 768px) {
    #svf-page .img-responsive {
        height: 250px;
        margin-top: 20px;
    }
}

/* Find a Shemale Near Me Page Styles */
#find-near-me #fnm-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/shemaledateong.jpg') no-repeat center center/cover;
    padding: 180px 0;
    text-align: center;
    color: #fff;
    position: relative;
}

#find-near-me #fnm-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#find-near-me #fnm-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    line-height: 1.2;
}

#find-near-me #fnm-hero .hero-subheadline {
    font-size: 1.4rem;
    opacity: 1;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
    max-width: 800px;
}

#find-near-me .section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

#find-near-me .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 10px;
}

#find-near-me .info-box {
    background-color: #e3f2fd;
    border-left: 5px solid #2196f3;
    padding: 20px;
    border-radius: 5px;
}

#find-near-me .bg-light {
    background-color: #f8f9fa !important;
}

#find-near-me .step-container h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

#find-near-me .bg-pink-light {
    background-color: #fce4ec;
}

#find-near-me .safety-box h3 {
    color: #c2185b;
    margin-bottom: 15px;
}

#find-near-me .cta-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid #444;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#find-near-me .cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #ff4081);
}

#find-near-me .cta-box h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}

#find-near-me .cta-box p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #ccc;
}

#find-near-me .btn-green {
    background: linear-gradient(to right, #4caf50, #43a047);
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 800;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

#find-near-me .btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
    background: linear-gradient(to right, #43a047, #388e3c);
}

#find-near-me .text-primary {
    color: var(--primary-color) !important;
}

#find-near-me .styled-list {
    padding-left: 20px;
}

#find-near-me .styled-list li {
    margin-bottom: 10px;
    position: relative;
    list-style-type: disc;
}

#find-near-me .img-responsive {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Mobile Adjustments for find-near-me */
@media (max-width: 768px) {
    #find-near-me #fnm-hero h1 {
        font-size: 2rem;
    }
    
    #find-near-me .section-title {
        font-size: 1.8rem;
    }
    
    #find-near-me .img-responsive {
        height: 250px;
        margin-top: 20px;
    }
}

/* Muscle Shemale Page Styles */
#muscle-shemale-page .hero-content {
    flex-direction: column;
    justify-content: center;
}

#muscle-shemale-page #ms-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/muscleshemale.jpg') no-repeat center center/cover;
    padding: 180px 0;
    text-align: center;
    color: #fff;
    position: relative;
}

#muscle-shemale-page #ms-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

#muscle-shemale-page #ms-hero .hero-subheadline {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

#muscle-shemale-page .section-title {
    color: var(--primary-color);
    position: relative;
    margin-bottom: 30px;
    font-weight: 700;
}

#muscle-shemale-page .section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 10px;
}

#muscle-shemale-page .comparison-table th {
    background-color: #333;
    color: #fff;
}

#muscle-shemale-page .preference-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s;
}

#muscle-shemale-page .preference-box:hover {
    transform: translateY(-5px);
}

#muscle-shemale-page .preference-box .icon {
    font-size: 2.5rem;
}

#muscle-shemale-page .detailed-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

#muscle-shemale-page .detailed-list li::before {
    content: '';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

#muscle-shemale-page .challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    #muscle-shemale-page .challenges-grid {
        grid-template-columns: 1fr;
    }
    #muscle-shemale-page #ms-hero h1 {
        font-size: 2.5rem;
    }
}

#muscle-shemale-page .challenge-item {
    background: rgba(255,255,255,0.8);
    padding: 20px;
    border-radius: 8px;
}

#muscle-shemale-page .cta-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    padding: 60px 30px !important; /* Force padding override if needed */
    color: #fff;
    border: 1px solid #333;
    text-align: center;
}

#muscle-shemale-page .cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #e91e63, #ff4081, #e91e63);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

#muscle-shemale-page .cta-box h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

#muscle-shemale-page .cta-box p {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#muscle-shemale-page .cta-box .btn-green {
    padding: 18px 50px;
    font-size: 1.4rem;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #4caf50, #2e7d32);
    border: none;
}

#muscle-shemale-page .cta-box .btn-green:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.6);
    background: linear-gradient(45deg, #66bb6a, #388e3c);
}

